
/* ===================================================
   REAL FM - Custom & Responsive Styles
   =================================================== */

:root {
    --primary-color: #21a3d1;
    --primary-gold: #c59d5f;
    --primary-hover: #198fb8;
    --dark-bg: #1b1b1b;
    --dark-surface: #222222;
    --light-bg: #f9f9f9;
    --text-color: #555555;
    --heading-color: #111111;
    --border-color: #eeeeee;
    --transition: all 0.3s ease;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: var(--heading-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* ---------------- Topbar ---------------- */
.top-bar2 {
    background-color: var(--dark-bg);
    padding: 10px 0;
    font-size: 13px;
    color: #aaaaaa;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar2 a {
    color: #aaaaaa;
}
.top-bar2 a:hover {
    color: var(--primary-color);
}
.top-bar2 .bar-left li {
    margin-right: 25px;
    display: inline-block;
}
.top-bar2 .bar-left li i {
    color: var(--primary-color);
    margin-right: 6px;
    font-size: 15px;
}
.top-bar2 .bar-right .bar-social li {
    margin-left: 15px;
    display: inline-block;
}
.top-bar2 .sidebar-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    margin-left: 20px;
    padding: 0;
    line-height: 1;
}
.top-bar2 .sidebar-btn:hover {
    color: var(--primary-color);
}

/* ---------------- Main Navbar ---------------- */
.logo-area2 {
    background-color: #ffffff;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid #f0f0f0;
}
.logo-area2 .logo img {
    max-height: 60px;
    width: auto;
}
.menu-nav {
    margin-bottom: 0;
    align-items: center;
}
.menu-nav .nav-item {
    position: relative;
    padding: 10px 14px;
}
.menu-nav .nav-item .nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
}
.menu-nav .nav-item .nav-link:hover,
.menu-nav .nav-item.active > .nav-link {
    color: var(--primary-color);
}
.menu-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.menu-nav .nav-item:hover > .nav-link::after,
.menu-nav .nav-item.active > .nav-link::after {
    width: 100%;
}
.menu-nav .dropdown-menu {
    border: none;
    border-top: 3px solid var(--primary-color);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 12px 0;
    min-width: 280px;
    background: #ffffff;
}
.menu-nav .dropdown-menu a {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    display: block;
    color: #444444;
    text-transform: none;
}
.menu-nav .dropdown-menu a:hover {
    color: var(--primary-color);
    background-color: #f6fbfe;
    padding-left: 25px;
}

/* ---------------- Sticky Header ---------------- */
.sticky-header {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    z-index: 999;
    transition: top 0.4s ease;
}
.sticky-header.show {
    top: 0;
}

/* ---------------- Original White Info Sidebar ---------------- */
.sidebar {
    background-color: #ffffff;
    padding: 40px 30px;
    height: 100%;
    width: 380px;
    max-width: 90vw;
    position: fixed;
    top: 0;
    right: -470px;
    overflow-y: auto;
    z-index: 9999;
    transition: all 400ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
}
.sidebar.opened {
    right: 0 !important;
}
.sidebar .side-logo {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidebar .side-logo img {
    max-height: 46px;
    width: auto;
}
.sidebar .side-logo #close-sidebar i {
    font-size: 16px;
    color: var(--primary-color);
    border: 1px solid #eeeeee;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.sidebar .side-logo #close-sidebar:hover i {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}
.sidebar .side-content h5,
.sidebar .side-gallery h5,
.sidebar .side-contact h5 {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    letter-spacing: 0.5px;
}
.sidebar .side-content h5::before,
.sidebar .side-gallery h5::before,
.sidebar .side-contact h5::before {
    position: absolute;
    content: "";
    background: #eeeeee;
    height: 1px;
    top: 11px;
    right: 0;
}
.sidebar .side-content h5::before { width: 62%; }
.sidebar .side-gallery h5::before { width: 68%; }
.sidebar .side-contact h5::before { width: 55%; }

.sidebar .side-content p {
    font-size: 14px;
    color: #666666;
    line-height: 24px;
    margin-bottom: 30px;
    text-align: justify;
}
.sidebar .side-gallery {
    margin-bottom: 30px;
}
.sidebar .side-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.sidebar .side-gallery .gallery-grid img {
    width: 100%;
    height: 75px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}
.sidebar .side-gallery .gallery-grid img:hover {
    transform: scale(1.05);
}
.sidebar .side-contact ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}
.sidebar .side-contact ul li {
    font-size: 14px;
    color: #666666;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}
.sidebar .side-contact ul li i {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 2px;
}
.sidebar .side-contact ul li a {
    color: #666666;
    text-decoration: underline;
}
.sidebar .side-contact ul li a:hover {
    color: #00B4F5;
}
.sidebar .side-social a {
    font-size: 14px;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eeeeee;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    transition: var(--transition);
}
.sidebar .side-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.sidebar-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
}
.sidebar-overlay.visible {
    visibility: visible;
    opacity: 1;
}

/* ---------------- Mobile Navigation Drawer ---------------- */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 290px;
    height: 100%;
    background-color: var(--dark-bg);
    color: #ffffff;
    z-index: 9999;
    overflow-y: auto;
    padding: 30px 20px;
    transition: left 0.4s ease;
    box-shadow: 5px 0 25px rgba(0,0,0,0.3);
}
.mobile-nav-drawer.active {
    left: 0;
}
.mobile-nav-drawer .close-drawer-btn {
    font-size: 22px;
    color: #ffffff;
    background: transparent;
    border: none;
    cursor: pointer;
    float: right;
}
.mobile-nav-drawer .drawer-logo {
    margin-bottom: 25px;
    max-height: 45px;
}
.mobile-nav-drawer .drawer-menu ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.mobile-nav-drawer .drawer-menu ul li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-drawer .drawer-menu ul li a {
    color: #dddddd;
    padding: 10px 0;
    display: block;
    font-size: 14px;
}
.mobile-nav-drawer .drawer-menu ul li a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}
.mobile-nav-drawer .drawer-menu .submenu {
    padding-left: 15px;
    display: none;
    background-color: rgba(0,0,0,0.2);
}
.mobile-nav-drawer .drawer-menu .has-dropdown.open .submenu {
    display: block;
}

/* ---------------- Hero Slider ---------------- */
.hero-slider-area {
    position: relative;
    overflow: hidden;
}
.hero-slider-area .swiper-slide {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.hero-slider-area .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}
.hero-slider-area .slider-box {
    position: relative;
    z-index: 2;
    max-width: 750px;
    color: #ffffff;
    padding: 60px 0;
}
.hero-slider-area .slider-title p {
    color: #c59d5f;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.hero-slider-area .slider-desc h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.25;
}
.hero-slider-area .slider-btn .btn-main {
    background-color: #c59d5f;
    color: #ffffff;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
    transition: var(--transition);
}
.hero-slider-area .slider-btn .btn-main:hover {
    background-color: #b0894b;
    transform: translateY(-2px);
}
.hero-slider-area .slider-btn .btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 10px 26px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    transition: var(--transition);
}
.hero-slider-area .slider-btn .btn-outline:hover {
    background-color: #ffffff;
    color: var(--heading-color);
    transform: translateY(-2px);
}
.hero-slider-area .swiper-button-next,
.hero-slider-area .swiper-button-prev {
    color: #ffffff;
    background: rgba(0,0,0,0.4);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: var(--transition);
}
.hero-slider-area .swiper-button-next:hover,
.hero-slider-area .swiper-button-prev:hover {
    background: var(--primary-color);
}
.hero-slider-area .swiper-button-next::after,
.hero-slider-area .swiper-button-prev::after {
    font-size: 18px;
}

/* ---------------- Breadcrumb ---------------- */
.breadcrumb-area {
    background-image: url('assets/images/brea.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 110px 0 70px;
    color: #ffffff;
    text-align: center;
}
.breadcrumb-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17,17,17,0.75);
}
.breadcrumb-area .breadcrumb-box {
    position: relative;
    z-index: 2;
}
.breadcrumb-area h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}
.breadcrumb-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.breadcrumb-area ul li {
    display: inline-block;
    color: #e0e0e0;
    font-size: 14px;
    text-transform: uppercase;
}
.breadcrumb-area ul li a {
    color: var(--primary-color);
}
.breadcrumb-area ul li::after {
    content: '/';
    margin: 0 10px;
    color: #aaaaaa;
}
.breadcrumb-area ul li:last-child::after {
    content: '';
}

/* ---------------- Section Standard ---------------- */
.section-padding {
    padding: 80px 0;
}
.section-title {
    margin-bottom: 45px;
}
.section-title span {
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}
.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    position: relative;
}

/* ---------------- About Us ---------------- */
.about-us .about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}
.about-us .about-content h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}
.about-us .about-content .about-para p {
    margin-bottom: 14px;
    font-size: 15px;
}
.about-us .about-tag-line {
    color: var(--primary-gold);
    font-size: 18px;
    font-weight: 700;
    margin-top: 25px;
    border-left: 3px solid var(--primary-gold);
    padding-left: 15px;
}

/* ---------------- Service Cards & Detail ---------------- */
.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.service-card .card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.service-card .card-body {
    padding: 25px;
}
.service-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 18px;
}
.service-card .read-more {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.service-detail-sidebar {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.service-detail-sidebar h4 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}
.service-detail-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-detail-sidebar ul li {
    margin-bottom: 10px;
}
.service-detail-sidebar ul li a {
    display: block;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
}
.service-detail-sidebar ul li a.active,
.service-detail-sidebar ul li a:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.service-callout-box {
    background: var(--dark-bg);
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}
.service-callout-box h4 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
}
.service-callout-box p {
    color: #cccccc;
    font-size: 14px;
}

/* ---------------- Features Grid (Community Portal) ---------------- */
.feature-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border: 1px solid #eeeeee;
    transition: var(--transition);
    height: calc(100% - 30px);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}
.feature-card .icon-box {
    width: 55px;
    height: 55px;
    background: rgba(33, 163, 209, 0.12);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.feature-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 0;
}

/* ---------------- Experience / Products Gallery ---------------- */
.portfolio-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.portfolio-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.portfolio-card:hover img {
    transform: scale(1.08);
}
.portfolio-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    color: #ffffff;
}
.portfolio-card .overlay h5 {
    color: #ffffff;
    margin: 0;
    font-size: 18px;
}

/* ---------------- Testimonial Equal Height & Clean Pagination ---------------- */
.testimonial-area {
    background-color: #ffffff;
}
.testimonial-swiper .swiper-wrapper {
    align-items: stretch;
}
.testimonial-swiper .swiper-slide {
    height: auto;
    display: flex;
}
.testimonial-card {
    background: #ffffff;
    padding: 35px 30px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: 230px;
    position: relative;
}
.testimonial-card .quote-text {
    flex-grow: 1;
    margin-bottom: 25px;
}
.testimonial-card .quote-text p {
    font-size: 14.5px;
    font-style: italic;
    color: #555555;
    line-height: 25px;
    margin-bottom: 0;
}
.testimonial-card .quote-icon {
    font-size: 26px;
    color: #c59d5f;
    opacity: 0.6;
    position: absolute;
    top: 25px;
    right: 25px;
}
.testimonial-card .author-info {
    display: flex;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid #f9f9f9;
    padding-top: 15px;
}
.testimonial-card .author-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 14px;
    object-fit: cover;
}
.testimonial-card .author-info h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--heading-color);
}
.testimonial-card .author-info span {
    font-size: 13px;
    color: #888888;
}

/* Pagination Dots Lower Placement */
.testimonial-slider-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 40px !important;
    text-align: center;
}
.testimonial-slider-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #cccccc;
    display: inline-block;
    margin: 0 4px;
    opacity: 1 !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.testimonial-slider-pagination .swiper-pagination-bullet-active {
    background: #007bff !important;
}

/* ---------------- Contact Page ---------------- */
.team-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}
.team-card .team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(33, 163, 209, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}
.team-card h4 {
    font-size: 20px;
    margin-bottom: 5px;
}
.team-card .designation {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}
.team-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.team-card ul li {
    font-size: 14px;
    margin-bottom: 8px;
}
.team-card ul li i {
    color: var(--primary-color);
    margin-right: 8px;
}

.contact-form-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}
.contact-form-box .form-control {
    height: 48px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    margin-bottom: 20px;
}
.contact-form-box textarea.form-control {
    height: 140px;
}
.contact-form-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(33, 163, 209, 0.15);
}
.contact-form-box .btn-submit {
    background: var(--primary-color);
    color: #ffffff;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}
.contact-form-box .btn-submit:hover {
    background: var(--primary-hover);
}

/* ---------------- Table Styles ---------------- */
.table-custom {
    width: 100%;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}
.table-custom th {
    background: var(--dark-bg);
    color: #ffffff;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    border: none;
}
.table-custom td {
    padding: 14px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #eeeeee;
    font-size: 14px;
}
.table-custom tr:last-child td {
    border-bottom: none;
}

/* ---------------- Footer ---------------- */
.footer2 {
    background-color: var(--dark-bg);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 70px 0 25px;
    color: #cccccc;
}
.footer2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17,17,17,0.92);
}
.footer2 .container {
    position: relative;
    z-index: 2;
}
.footer2 .footer-logo-info img {
    max-height: 55px;
    margin-bottom: 20px;
}
.footer2 .footer-logo-info ul li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}
.footer2 .footer-logo-info ul li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 12px;
    margin-top: 3px;
}
.footer2 .f-links h5 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}
.footer2 .f-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary-color);
}
.footer2 .f-links ul li {
    margin-bottom: 8px;
}
.footer2 .f-links ul li a {
    color: #bbbbbb;
    font-size: 14px;
}
.footer2 .f-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.footer2 .copyright {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 13px;
    color: #888888;
}

/* ---------------- Back to Top ---------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-3px);
}

/* ---------------- Responsive Breakpoints ---------------- */
@media (max-width: 991px) {
    .menu-box {
        display: none !important;
    }
    .hero-slider-area .slider-desc h1 {
        font-size: 34px;
    }
    .breadcrumb-area {
        padding: 80px 0 50px;
    }
    .breadcrumb-area h2 {
        font-size: 28px;
    }
    .section-title h2 {
        font-size: 28px;
    }
    .about-us .about-image {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .top-bar2 .bar-right {
        justify-content: flex-start !important;
        margin-top: 8px;
    }
    .hero-slider-area .swiper-slide {
        min-height: 480px;
    }
    .hero-slider-area .slider-desc h1 {
        font-size: 26px;
    }
    .hero-slider-area .slider-btn .btn-main,
    .hero-slider-area .slider-btn .btn-outline {
        display: block;
        margin-right: 0;
        text-align: center;
    }
    .section-padding {
        padding: 50px 0;
    }
    .sidebar {
        width: 320px;
        padding: 30px 20px;
    }
}
