        /* HEADER BASE */
        .custom-header {
            background: #ffffff;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        }

        .header-container {
            max-width: 1200px;
            margin: auto;
            padding: 25px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        /* LOGO - Responsive sizing */
        .logo {
            flex-shrink: 0;
        }

        .logo a {
            display: block;
            transition: transform 0.3s ease;
        }

        .logo a:hover {
            transform: scale(1.05);
        }

        .logo img {
            height: auto;
            width: auto;
            max-height: 70px;
            max-width: 180px;
            object-fit: contain;
        }

        /* DESKTOP MENU */
        .main-nav .menu {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .main-nav a {
            text-decoration: none;
            color: #222;
            font-size: 18px;
            font-weight: 600;
            position: relative;
            padding: 8px 5px;
            transition: color 0.3s;
        }

        .main-nav a:hover {
            color: #e63946;
        }

        /* Active link indicator */
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #e63946;
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .main-nav a:hover::after {
            width: 100%;
        }

        /* DROPDOWN */
        .has-dropdown {
            position: relative;
        }

        .has-dropdown .arrow {
            color: #777;
            font-size: 14px;
            margin-left: 3px;
            transition: transform 0.3s;
        }

        .has-dropdown:hover .arrow {
            transform: rotate(180deg);
        }

        .dropdown {
            position: absolute;
            top: 130%;
            left: 0;
            background: #fff;
            min-width: 220px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            list-style: none;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: rotateX(-15deg);
            transform-origin: top;
            transition: all 0.35s ease;
            border-radius: 8px;
            z-index: 100;
        }

        .dropdown li {
            padding: 0;
        }

        .dropdown a {
            display: block;
            padding: 12px 20px;
            color: #333;
            font-weight: 500;
            font-size: 14px;
        }

        .dropdown a:hover {
            background: #f8f9fa;
            color: #e63946;
        }

        /* FLIP EFFECT */
        .has-dropdown:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: rotateX(0);
        }

        /* MOBILE MENU TOGGLE */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1000;
            position: relative;
            width: 40px;
            height: 40px;
        }

        .hamburger {
            display: block;
            width: 24px;
            height: 2px;
            background: #222;
            position: relative;
            transition: all 0.3s ease;
        }

        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 2px;
            background: #222;
            left: 0;
            transition: all 0.3s ease;
        }

        .hamburger::before {
            top: -8px;
        }

        .hamburger::after {
            bottom: -8px;
        }

        /* Hamburger animation when active */
        .mobile-toggle.active .hamburger {
            background: transparent;
        }

        .mobile-toggle.active .hamburger::before {
            transform: rotate(45deg);
            top: 0;
        }

        .mobile-toggle.active .hamburger::after {
            transform: rotate(-45deg);
            bottom: 0;
        }

        /* RESPONSIVE BREAKPOINTS */

        /* Tablet - 992px and below */
        @media (max-width: 992px) {
            .header-container {
                padding: 25px 20px;
            }

            .logo img {
                max-height: 60px;
                max-width: 160px;
            }

            .mobile-toggle {
                display: block;
            }

            .main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: #fff;
                padding: 80px 20px 40px;
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
                transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
                overflow-y: auto;
                z-index: 998;
            }

            .main-nav.active {
                right: 0;
            }

            .main-nav .menu {
                flex-direction: column;
                gap: 0;
                width: 100%;
                margin-top: 0;
            }

            .main-nav .menu>li {
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
            }

            .main-nav a {
                display: block;
                padding: 15px 0;
                font-size: 16px;
            }

            .dropdown {
                position: static;
                box-shadow: none;
                transform: none;
                opacity: 1;
                visibility: visible;
                display: none;
                padding-left: 15px;
                border-radius: 0;
                border-top: 1px solid #f0f0f0;
                margin-top: 0;
                transition: max-height 0.4s ease;
                max-height: 0;
                overflow: hidden;
            }

            .dropdown.active {
                display: block;
                max-height: 500px;
            }

            .dropdown li {
                border-bottom: none;
            }

            .dropdown a {
                padding: 12px 0;
                font-size: 15px;
                color: #666;
            }

            .has-dropdown .arrow {
                float: right;
                margin-right: 10px;
                margin-top: 5px;
                transition: transform 0.3s ease;
            }

            .has-dropdown.active .arrow {
                transform: rotate(180deg);
            }

            .main-nav a::after {
                display: none;
            }

            /* Overlay for mobile menu */
            .menu-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 997;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .menu-overlay.active {
                opacity: 1;
                visibility: visible;
            }
        }

        /* Mobile - 576px and below */
        @media (max-width: 576px) {
            .header-container {
                padding: 12px 15px;
            }

            .logo img {
                max-height: 50px;
                max-width: 140px;
            }

            .main-nav {
                width: 85%;
                max-width: 300px;
            }

            .main-nav a {
                font-size: 15px;
                padding: 14px 0;
            }
        }

        /* Small Mobile - 400px and below */
        @media (max-width: 400px) {
            .logo img {
                max-height: 45px;
                max-width: 130px;
            }

            .main-nav {
                width: 90%;
            }
        }

        /* Desktop enhancements */
        @media (min-width: 993px) {
            .header-container {
                padding: 15px 20px;
            }

            .logo img {
                max-height: 75px;
                max-width: 200px;
            }
        }





        /*gallEy CSS-SECTION*/

        /* ================= HERO SECTION ================= */
        .gallery-hero {
            width: 100%;
            height: 60vh;
            background-image: url("../images/gallery/1.jpg");
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .gallery-hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .gallery-hero-title {
            font-size: 48px;
            color: #ffffff;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .gallery-hero-subtitle {
            font-size: 18px;
            color: #eaeaea;
        }

        /* ================= GALLERY SECTION ================= */
        .gallery-section {
            padding: 60px 20px;
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 25px;
        }

        /* ================= GALLERY ITEM ================= */
        .gallery-item {
            background: #ffffff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transform: translateY(30px);
            opacity: 0;
            transition:
                transform 0.4s ease,
                box-shadow 0.4s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            display: block;
            transition: transform 0.4s ease;
        }

        /* Hover Effects */
        .gallery-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
        }

        .gallery-item:hover img {
            transform: scale(1.07);
        }

        /* ================= SCROLL ANIMATION ================= */
        .fade-up {
            animation: fadeUp 0.9s ease forwards;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ================= RESPONSIVE ================= */
        @media (max-width: 768px) {
            .gallery-hero {
                height: 45vh;
            }

            .gallery-hero-title {
                font-size: 34px;
            }

            .gallery-hero-subtitle {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .gallery-section {
                padding: 40px 15px;
            }

            .gallery-hero-title {
                font-size: 28px;
            }
        }











        /* OUR TEAM PAGE */

        .our-team-page {
            width: 100%;
            font-family: Arial, Helvetica, sans-serif;
        }

        /* HERO */
        .team-hero {
            height: 420px;
            background: #111;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .team-hero-title {
            font-size: 52px;
            font-weight: 800;
        }

        .team-hero-subtitle {
            font-size: 22px;
            margin-top: 10px;
        }

        /* BLOCK */
        .team-block {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .team-title {
            font-size: 40px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 50px;
        }

        /* FOUNDER */
        .person-full img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .person-full .person-info {
            padding: 25px 0;
            text-align: center;
        }

        /* GRID */
        .person-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .person-card img {
            width: 100%;
            height: 360px;
            object-fit: cover;
        }

        /* TEXT */
        .person-info {
            text-align: center;
            padding-top: 15px;
        }

        .person-name {
            font-size: 22px;
            font-weight: 700;
        }

        .person-role {
            font-size: 16px;
            color: #555;
            margin: 6px 0;
        }

        .person-detail {
            font-size: 14px;
            color: #666;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .team-hero-title {
                font-size: 38px;
            }

            .team-title {
                font-size: 30px;
            }

            .person-grid {
                grid-template-columns: 1fr;
            }

            .person-full img {
                height: 320px;
            }
        }

        /* ============================================================
   NEW FOOTER CSS (Complete)
   Works with your HTML:
   #footer.dark, .container, .footer-widgets-wrap,
   .col_two_third, .col_one_third, .col_last,
   .widget, .widget_links, .footer-ul,
   #copyrights, #gotoTop, social-icon etc.
============================================================ */

        /* ---------- Base Footer ---------- */
        #footer {
            position: relative;
            background: #0b0b0d;
            color: rgba(255, 255, 255, 0.78);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }

        /* soft gradient glow */
        #footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(800px 300px at 20% 10%,
                    rgba(255, 255, 255, 0.07),
                    transparent 55%),
                radial-gradient(900px 340px at 85% 20%,
                    rgba(255, 255, 255, 0.05),
                    transparent 60%);
            pointer-events: none;
        }

        /* container */
        #footer .container {
            width: min(1200px, 92%);
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* ---------- Footer Widgets Wrap ---------- */
        #footer .footer-widgets-wrap {
            padding: 70px 0 40px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 35px;
        }

        /* Left area (2/3) contains 3 columns */
        #footer .col_two_third {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        /* Right area (1/3) */
        #footer .col_one_third.col_last {
            display: grid;
            align-content: start;
            gap: 18px;
        }

        /* Remove theme margins if any */
        #footer .col_one_third,
        #footer .col_two_third,
        #footer .col_last {
            margin: 0 !important;
            padding: 0 !important;
        }

        /* ---------- Widgets ---------- */
        #footer .widget {
            margin: 0 !important;
            padding: 0;
        }

        #footer .widget>h4 {
            margin: 0 0 14px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.3px;
            text-transform: uppercase;
            color: #ffffff;
        }

        /* ---------- Footer Logo + Intro ---------- */
        #footer .footer-logo {
            display: block;
            width: 200px;
            max-width: 100%;
            height: auto;
            margin: 0 0 14px;
            filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
        }

        #footer p {
            margin: 0 0 12px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.72);
            font-size: 14px;
        }

        #footer p a {
            color: rgba(255, 255, 255, 0.78);
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        }

        #footer p a:hover {
            color: #ffffff;
            border-bottom-color: rgba(255, 255, 255, 0.45);
        }

        /* ---------- Contact Box (Email Map area) ---------- */
        #footer abbr {
            text-decoration: none;
            border: 0;
            opacity: 0.9;
        }

        #footer abbr strong {
            color: #fff;
            font-weight: 700;
        }

        #footer a[href^="mailto:"] {
            color: #ffffff;
            border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
            text-decoration: none;
        }

        #footer a[href^="mailto:"]:hover {
            border-bottom-style: solid;
        }

        /* ---------- Links Menu ---------- */
        #footer .widget_links .footer-ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        #footer .widget_links .footer-ul li {
            margin: 9px 0;
        }

        #footer .widget_links .footer-ul a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            padding: 6px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.10);
            transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }

        #footer .widget_links .footer-ul a:hover {
            color: #ffffff;
            border-bottom-color: rgba(255, 255, 255, 0.30);
            transform: translateX(2px);
        }

        /* ---------- Address Styling ---------- */
        #footer address {
            margin: 0;
            padding: 14px 14px 12px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            font-style: normal;
        }

        #footer address strong {
            display: inline-block;
            margin: 0 0 10px;
            color: #ffffff;
        }

        #footer address p {
            margin: 0 0 10px;
            color: rgba(255, 255, 255, 0.72);
        }

        #footer a[href^="tel:"] {
            color: #ffffff;
            text-decoration: none;
            border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
        }

        #footer a[href^="tel:"]:hover {
            border-bottom-style: solid;
        }

        /* ---------- Social Icons ---------- */
        #footer .social-icon {
            display: inline-flex !important;
            width: 46px;
            height: 46px;
            border-radius: 14px;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.10);
            color: #fff;
            text-decoration: none !important;
            transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }

        #footer .social-icon:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.18);
        }

        /* your markup uses <i class="fa fa-facebook fa-2x"> twice */
        #footer .social-icon i {
            font-size: 20px !important;
            /* override fa-2x a little */
            line-height: 1;
        }

        /* row + columns in footer */
        #footer .row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        #footer .col-md-6 {
            width: auto;
        }

        /* ---------- Copyright Bar ---------- */
        #copyrights {
            position: relative;
            z-index: 1;
            padding: 18px 0;
            background: rgba(255, 255, 255, 0.04);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 13px;
            color: rgba(255, 255, 255, 0.68);
        }

        #copyrights .container {
            width: min(1200px, 92%);
            margin: 0 auto;
        }

        #copyrights .col_half {
            margin: 0 !important;
        }

        /* ---------- Go To Top ---------- */
        #gotoTop {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 46px;
            height: 46px;
            border-radius: 14px;
            display: none;
            /* theme/JS toggles */
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9999;
            background: rgba(0, 0, 0, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.14);
            color: #fff;
            backdrop-filter: blur(6px);
        }

        #gotoTop:hover {
            background: rgba(0, 0, 0, 0.85);
        }

        /* ---------- Responsive ---------- */
        @media (max-width: 1100px) {
            #footer .footer-widgets-wrap {
                grid-template-columns: 1fr;
            }

            #footer .col_two_third {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 700px) {
            #footer .footer-widgets-wrap {
                padding: 55px 0 30px;
                gap: 22px;
            }

            #footer .col_two_third {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            #footer .footer-logo {
                width: 180px;
            }

            #footer address {
                padding: 12px;
                border-radius: 12px;
            }
        }

        /* ============================================================
   OPTIONAL: If you want this footer style ONLY on homepage,
   uncomment below and place whole CSS under ".home"
============================================================ */
        /*
.home #footer { }
.home #footer .footer-widgets-wrap { }
.home #copyrights { }
*/