
        /* =========================================
                   ROOT VARIABLES
                ========================================= */
        :root {
            --primary-emerald: #0E4B36;
            --secondary-green: #166534;
            --accent-gold: #D4A74F;
            --accent-gold-dark: #b8922f;
            --bg-warm-ivory: #f5f9f6;
            --card-cream: #F7F4EA;
            --text-dark: #1D2B22;
            --border-mint: #D8E2D0;
            --font-heading: 'Cinzel', serif;
            --font-body: 'Inter', sans-serif;
            --shadow-soft: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
            --shadow-gold: 0 18px 28px -8px rgba(212, 167, 79, 0.25);
            --transition-smooth: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            --gold-gradient: linear-gradient(105deg, #E0B85C 0%, #C9972E 45%, #A87412 100%);
            --border-radius-card: 28px;
            --border-radius-btn: 40px;
            --border-radius-sm: 16px;
        }

        /* =========================================
                   RESET & BASE
                ========================================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Google Sans Flex", sans-serif;
            background: var(--bg-warm-ivory);
            color: var(--text-dark);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
        }

        /* =========================================
                   TOPBAR STYLES
                ========================================= */
        .topbar {
            background: var(--primary-emerald);
            border-bottom: 2px solid var(--accent-gold);
        }

        .topbar-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 45px;
            flex-wrap: wrap;
        }

        .topbar-left {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .topbar-left .topbar-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 16px;
            color: #fff;
            text-decoration: none;
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            transition: var(--transition-smooth);
            white-space: nowrap;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }

        .topbar-left .topbar-link:last-child {
            border-right: none;
        }

        .topbar-left .topbar-link i {
            color: var(--accent-gold);
            font-size: 0.75rem;
        }

        .topbar-left .topbar-link:hover {
            background: rgba(212, 167, 79, 0.12);
            color: var(--accent-gold);
        }

        .topbar-right {
            flex: 1;
            min-width: 280px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.2);
            border-left: 2px solid var(--accent-gold);
        }

        .topbar-right .marquee-wrapper {
            width: 100%;
            overflow: hidden;
            padding: 0 15px;
        }

        .topbar-right marquee {
            color: #fff;
            font-size: 0.85rem;
            font-weight: 500;
            padding: 10px 0;
            line-height: 1.4;
        }

        .topbar-right marquee i {
            color: var(--accent-gold);
            margin: 0 5px;
        }

        .marquee-separator {
            display: inline-block;
            margin: 0 16px;
            color: var(--accent-gold);
            font-size: 0.7rem;
        }

        @media (max-width: 992px) {
            .topbar-wrapper {
                flex-direction: column;
                min-height: auto;
            }

            .topbar-left {
                width: 100%;
                justify-content: center;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }

            .topbar-left .topbar-link {
                padding: 8px 12px;
                font-size: 0.75rem;
            }

            .topbar-right {
                width: 100%;
                border-left: none;
                border-top: 1px solid rgba(212, 167, 79, 0.2);
            }

            .topbar-right marquee {
                font-size: 0.75rem;
                padding: 8px 0;
            }
        }

        @media (max-width: 576px) {
            .topbar-left .topbar-link {
                padding: 5px 7px;
                font-size: 0.65rem;
                gap: 4px;
            }

            .topbar-right marquee {
                font-size: 0.68rem;
            }

            .marquee-separator {
                margin: 0 6px;
            }
        }

        /* =========================================
                   NAVBAR STYLES
                ========================================= */
        .navbar-custom {
            background: linear-gradient(180deg, #0A2E1F 0%, var(--primary-emerald) 50%, #0A2E1F 100%);
            border-bottom: 3px solid var(--accent-gold);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1030;
        }

        .navbar-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
        }

        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .brand-logo-wrapper {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--accent-gold);
            transition: var(--transition-smooth);
            flex-shrink: 0;
        }

        .brand-logo-wrapper:hover {
            transform: rotate(360deg);
            border-color: #fff;
            box-shadow: 0 0 20px rgba(212, 167, 79, 0.4);
        }

        .brand-logo-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: fill;
        }

        .brand-text-custom {
            display: flex;
            flex-direction: column;
        }

        .brand-name-custom {
            /* font-family: var(--font-heading); */
            font-size: 18px;
            font-weight: 700;
            color: var(--accent-gold);
            line-height: 1.2;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            transition: var(--transition-smooth);
        }

        .navbar-brand-custom:hover .brand-name-custom {
            color: #fff;
        }

        .brand-subtitle-custom {
            font-size: 11px;
            color: #b8c9b8;
            letter-spacing: 0.5px;
            font-weight: 400;
        }

        .navbar-menu-custom {
            display: flex;
            align-items: center;
        }

        .nav-list-custom {
            display: flex;
            align-items: center;
            gap: 2px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .nav-link-custom {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 10px 14px;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            border-radius: 6px;
            transition: var(--transition-smooth);
            white-space: nowrap;
            text-decoration: none;
        }

        .nav-link-custom:hover,
        .nav-link-custom.active {
            background: rgba(212, 167, 79, 0.15);
            color: var(--accent-gold);
        }

        .nav-link-custom i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .nav-link-custom:hover i {
            transform: translateY(-1px);
        }

        .dropdown-toggle-custom::after {
            display: none;
        }

        /* =========================================
                   MEGA MENU DESKTOP
                ========================================= */
        .mega-menu-desktop {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, #0A2E1F 0%, #0D3B2A 100%);
            border-top: 3px solid var(--accent-gold);
            border-bottom: 3px solid var(--accent-gold);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            padding: 30px 0;
            z-index: 1029;
            animation: megaMenuSlideDown 0.3s ease;
        }

        @keyframes megaMenuSlideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mega-menu-desktop.show {
            display: block;
        }

        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .mega-col-title-custom {
         
            color: var(--accent-gold);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(212, 167, 79, 0.25);
            position: relative;
        }

        .mega-col-title-custom::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gold-gradient);
        }

        .mega-list-custom {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mega-list-custom li {
            margin-bottom: 8px;
        }

        .mega-list-custom a {
            color: #c8d6c8;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 8px;
            transition: var(--transition-smooth);
            border-radius: 4px;
            text-decoration: none;
        }

        .mega-list-custom a:hover {
            color: var(--accent-gold);
            padding-left: 12px;
            background: rgba(255, 255, 255, 0.05);
        }

        .mega-list-custom a i {
            color: var(--accent-gold);
            font-size: 10px;
            flex-shrink: 0;
        }

        /* =========================================
                   MOBILE SIDEBAR
                ========================================= */
        .offcanvas-custom {
            background: linear-gradient(180deg, #0A2E1F 0%, #0D3B2A 50%, #0A2E1F 100%);
            border-left: 3px solid var(--accent-gold);
        }

        .offcanvas-custom .offcanvas-header {
            background: rgba(0, 0, 0, 0.2);
            border-bottom: 2px solid rgba(212, 167, 79, 0.25);
            padding: 15px 20px;
        }

        .offcanvas-custom .offcanvas-title {
            color: red;
         
            font-weight: 600;
        }

        .offcanvas-custom .btn-close {
            filter: invert(1) brightness(2);
            opacity: 0.8;
        }

        .offcanvas-custom .btn-close:hover {
            opacity: 1;
        }

        .mobile-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .mobile-nav-link:hover {
            background: rgba(212, 167, 79, 0.1);
            color: var(--accent-gold);
        }

        .mobile-mega-accordion .accordion-button {
            background: transparent;
            color: #fff;
            padding: 14px 20px;
            font-size: 15px;
            font-weight: 500;
            box-shadow: none;
            border: none;
            border-radius: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .mobile-mega-accordion .accordion-button:not(.collapsed) {
            background: rgba(212, 167, 79, 0.15);
            color: var(--accent-gold);
            box-shadow: none;
        }

        .mobile-mega-accordion .accordion-button::after {
            filter: invert(1) brightness(2);
        }

        .mobile-mega-accordion .accordion-body {
            padding: 0;
            background: rgba(0, 0, 0, 0.1);
        }

        .mobile-mega-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-mega-list li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .mobile-mega-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px 12px 30px;
            color: #c8d6c8;
            font-size: 14px;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .mobile-mega-list a:hover {
            color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.05);
            padding-left: 35px;
        }

        .mobile-mega-list a i {
            color: var(--accent-gold);
            font-size: 11px;
        }

        .navbar-toggler-custom {
            background: transparent;
            border: 2px solid var(--accent-gold);
            padding: 15px 10px;
            border-radius: 6px;
            transition: var(--transition-smooth);
        }

        .navbar-toggler-custom:hover {
            background: rgba(212, 167, 79, 0.12);
            border-color: #fff;
        }

        .navbar-toggler-custom:focus {
            box-shadow: 0 0 0 3px rgba(212, 167, 79, 0.25);
        }

        .navbar-toggler-icon-custom {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--accent-gold);
            position: relative;
            transition: var(--transition-smooth);
        }

        .navbar-toggler-icon-custom::before,
        .navbar-toggler-icon-custom::after {
            content: '';
            display: block;
            width: 24px;
            height: 2px;
            background: var(--accent-gold);
            position: absolute;
            left: 0;
            transition: var(--transition-smooth);
        }

        .navbar-toggler-icon-custom::before {
            top: -7px;
        }

        .navbar-toggler-icon-custom::after {
            top: 7px;
        }

        @media (min-width: 992px) {
            .navbar-toggler-custom {
                display: none;
            }

            .offcanvas-custom {
                display: none !important;
            }

            .navbar-menu-custom {
                display: flex !important;
            }
        }

        @media (max-width: 991.98px) {
            .navbar-menu-custom {
                display: none !important;
            }

            .mega-menu-desktop {
                display: none !important;
            }

            .navbar-wrapper {
                min-height: 60px;
            }

            .brand-logo-wrapper {
                width: 42px;
                height: 42px;
            }

            .brand-name-custom {
                font-size: 15px;
            }

            .brand-subtitle-custom {
                font-size: 10px;
            }
        }

        @media (max-width: 575.98px) {
            .brand-name-custom {
                font-size: 13px;
            }

            .brand-subtitle-custom {
                font-size: 8px;
            }

            .brand-logo-wrapper {
                width: 36px;
                height: 36px;
            }

            .offcanvas-custom {
                width: 100% !important;
            }
        }

        /* =========================================
                   MIDDLEBAR STYLES
                ========================================= */
        .middlebar {
            background: linear-gradient(180deg, var(--bg-warm-ivory) 0%, var(--card-cream) 100%);
            padding: 5px 10px;
        }

        .middlebar-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 30px;
        }

        .middlebar-item {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .middlebar-left {
            justify-content: flex-end;
        }

        .middlebar-right {
            justify-content: flex-start;
        }

        .banner-rect {
            border-radius: var(--border-radius-sm);
            overflow: hidden;
            border: 3px solid var(--border-mint);
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
            background: #fff;
            cursor: pointer;
        }

        .banner-rect img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            transition: var(--transition-smooth);
        }

        .banner-rect::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(14, 75, 54, 0.6), transparent);
            pointer-events: none;
            z-index: 1;
        }

        .banner-rect {
            position: relative;
        }

        .banner-rect:hover {
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-gold);
            transform: translateY(-5px);
        }

        .banner-rect:hover img {
            transform: scale(1.08);
        }

        .logo-square {
            width: 170px;
            height: 170px;
            border-radius: var(--border-radius-sm);
            overflow: hidden;
            border: 4px solid var(--accent-gold);
            box-shadow: var(--shadow-gold);
            transition: var(--transition-smooth);
            background: #fff;
            z-index: 5;
        }

        .logo-square img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            transition: var(--transition-smooth);
        }

        .logo-square:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 45px -10px rgba(212, 167, 79, 0.5);
        }

        .logo-square:hover img {
            transform: scale(1.1);
        }

        @media (max-width: 992px) {
            .middlebar-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .middlebar-center,
            .middlebar-right {
                display: none;
            }

            .middlebar-left {
                grid-column: 1 / -1;
                justify-content: center;
                width: 100%;
            }

            .banner-rect {
                width: 100%;
                height: 200px;
                border-radius: 0;
                border-left: none;
                border-right: none;
                box-shadow: none;
            }

            .banner-rect:hover {
                transform: none;
                box-shadow: none;
                border-color: var(--border-mint);
            }
        }

        @media (max-width: 576px) {
            .banner-rect {
                height: 160px;
            }
        }

        /* =========================================
                   HERO SECTION
                ========================================= */
        .hero-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            background: var(--primary-emerald);
        }

        .hero-carousel {
            position: relative;
            width: 100%;
        }

        .hero-carousel .carousel-inner {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .hero-carousel .carousel-item {
            position: relative;
            height: 600px;
            min-height: 400px;
            background: var(--primary-emerald);
        }

        .hero-carousel .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            display: block;
        }

        .hero-carousel .carousel-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-carousel .carousel-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            width: 80%;
            max-width: 800px;
            text-align: center;
            padding: 40px 50px;
            background: rgba(14, 75, 54, 0.85);
            border-radius: 20px;
            border: 2px solid var(--accent-gold);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .hero-carousel .carousel-caption h2 {
         
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 15px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }

        .hero-carousel .carousel-caption p {
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 25px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.6;
        }

        .hero-carousel .carousel-caption .btn-gold {
            display: inline-block;
            padding: 14px 40px;
            background: var(--gold-gradient);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid var(--accent-gold);
            border-radius: 50px;
            text-decoration: none;
            transition: var(--transition-smooth);
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 20px rgba(212, 167, 79, 0.3);
            cursor: pointer;
        }

        .hero-carousel .carousel-caption .btn-gold:hover {
            background: var(--accent-gold);
            border-color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 8px 35px rgba(212, 167, 79, 0.6);
            color: var(--primary-emerald);
        }

        .hero-carousel .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 15;
            display: flex;
            gap: 12px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .hero-carousel .carousel-indicators button {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            border: 2px solid var(--accent-gold);
            background: transparent;
            transition: var(--transition-smooth);
            padding: 0;
            margin: 0;
            cursor: pointer;
            text-indent: -9999px;
        }

        .hero-carousel .carousel-indicators button.active {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
            transform: scale(1.3);
            box-shadow: 0 0 20px rgba(212, 167, 79, 0.5);
        }

        .hero-carousel .carousel-control-prev,
        .hero-carousel .carousel-control-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 15;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(14, 75, 54, 0.8);
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            opacity: 0;
            transition: var(--transition-smooth);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            cursor: pointer;
            text-decoration: none;
        }

        .hero-carousel .carousel-control-prev {
            left: 25px;
        }

        .hero-carousel .carousel-control-next {
            right: 25px;
        }

        .hero-carousel .carousel-control-prev .carousel-control-icon,
        .hero-carousel .carousel-control-next .carousel-control-icon {
            color: var(--accent-gold);
            font-size: 22px;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-carousel .carousel-control-prev:hover,
        .hero-carousel .carousel-control-next:hover {
            background: var(--accent-gold);
            border-color: #ffffff;
            box-shadow: 0 0 30px rgba(212, 167, 79, 0.4);
        }

        .hero-carousel .carousel-control-prev:hover .carousel-control-icon,
        .hero-carousel .carousel-control-next:hover .carousel-control-icon {
            color: #ffffff;
        }

        .hero-carousel:hover .carousel-control-prev,
        .hero-carousel:hover .carousel-control-next {
            opacity: 1;
        }

        @media (max-width: 992px) {
            .hero-carousel .carousel-item {
                height: 500px;
                min-height: 350px;
            }

            .hero-carousel .carousel-caption {
                width: 85%;
                padding: 30px 35px;
            }

            .hero-carousel .carousel-caption h2 {
                font-size: 2.2rem;
            }

            .hero-carousel .carousel-caption p {
                font-size: 1.1rem;
            }

            .hero-carousel .carousel-control-prev,
            .hero-carousel .carousel-control-next {
                width: 45px;
                height: 45px;
            }

            .hero-carousel .carousel-control-prev .carousel-control-icon,
            .hero-carousel .carousel-control-next .carousel-control-icon {
                font-size: 18px;
            }

            .hero-carousel .carousel-control-prev {
                left: 15px;
            }

            .hero-carousel .carousel-control-next {
                right: 15px;
            }
        }

        @media (max-width: 768px) {
            .hero-carousel .carousel-item {
                height: 400px;
                min-height: 300px;
            }

            .hero-carousel .carousel-caption {
                width: 90%;
                padding: 25px 30px;
                border-width: 1.5px;
            }

            .hero-carousel .carousel-caption h2 {
                font-size: 1.8rem;
            }

            .hero-carousel .carousel-caption p {
                font-size: 0.95rem;
            }

            .hero-carousel .carousel-caption .btn-gold {
                padding: 10px 30px;
                font-size: 0.85rem;
            }

            .hero-carousel .carousel-indicators {
                bottom: 20px;
                gap: 10px;
            }

            .hero-carousel .carousel-indicators button {
                width: 12px;
                height: 12px;
            }

            .hero-carousel .carousel-control-prev,
            .hero-carousel .carousel-control-next {
                width: 38px;
                height: 38px;
                opacity: 0.6;
            }

            .hero-carousel .carousel-control-prev .carousel-control-icon,
            .hero-carousel .carousel-control-next .carousel-control-icon {
                font-size: 16px;
            }

            .hero-carousel .carousel-control-prev {
                left: 10px;
            }

            .hero-carousel .carousel-control-next {
                right: 10px;
            }
        }

        @media (max-width: 576px) {
            .hero-carousel .carousel-item {
                height: 300px;
                min-height: 220px;
            }

            .hero-carousel .carousel-caption {
                width: 92%;
                padding: 15px 20px;
                border-width: 1.5px;
                border-radius: 12px;
            }

            .hero-carousel .carousel-caption h2 {
                font-size: 1.3rem;
            }

            .hero-carousel .carousel-caption p {
                font-size: 0.75rem;
            }

            .hero-carousel .carousel-caption .btn-gold {
                padding: 8px 20px;
                font-size: 0.7rem;
                border-width: 1.5px;
            }

            .hero-carousel .carousel-indicators {
                bottom: 12px;
                gap: 8px;
            }

            .hero-carousel .carousel-indicators button {
                width: 10px;
                height: 10px;
            }

            .hero-carousel .carousel-control-prev,
            .hero-carousel .carousel-control-next {
                width: 32px;
                height: 32px;
                opacity: 0.5;
                border-width: 1.5px;
            }

            .hero-carousel .carousel-control-prev .carousel-control-icon,
            .hero-carousel .carousel-control-next .carousel-control-icon {
                font-size: 14px;
            }

            .hero-carousel .carousel-control-prev {
                left: 6px;
            }

            .hero-carousel .carousel-control-next {
                right: 6px;
            }
        }

        @media (max-width: 400px) {
            .hero-carousel .carousel-item {
                height: 250px;
                min-height: 180px;
            }

            .hero-carousel .carousel-caption {
                padding: 12px 15px;
                border-radius: 10px;
            }

            .hero-carousel .carousel-caption h2 {
                font-size: 1rem;
            }

            .hero-carousel .carousel-caption p {
                font-size: 0.65rem;
            }

            .hero-carousel .carousel-caption .btn-gold {
                padding: 5px 14px;
                font-size: 0.6rem;
            }

            .hero-carousel .carousel-control-prev,
            .hero-carousel .carousel-control-next {
                width: 28px;
                height: 28px;
            }

            .hero-carousel .carousel-control-prev .carousel-control-icon,
            .hero-carousel .carousel-control-next .carousel-control-icon {
                font-size: 12px;
            }

            .hero-carousel .carousel-indicators button {
                width: 8px;
                height: 8px;
            }
        }

        /* =========================================
                   SECTION PADDING UTILITY
                ========================================= */
        .section-padding {
            padding: 80px 0;
        }

        .gold-divider {
            width: 80px;
            height: 3px;
            background: var(--gold-gradient);
            border-radius: 2px;
            margin: 15px auto 25px;
        }

        .heading {
         
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-emerald);
            line-height: 1.2;
            margin-bottom: 0;
        }

        .heading span {
            color: var(--accent-gold);
        }

        .subheading {
            font-size: 1.05rem;
            color: #4a5a4f;
            max-width: 650px;
            margin: 0 auto;
            font-weight: 400;
        }

        .premium-badge {
            display: inline-block;
            background: rgba(212, 167, 79, 0.12);
            color: var(--accent-gold);
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
            border: 1px solid rgba(212, 167, 79, 0.25);
        }

        .premium-badge i {
            margin-right: 8px;
        }

        /* =========================================
                   ABOUT SECTION
                ========================================= */
        .mak-about {
            background: var(--bg-warm-ivory);
            position: relative;
            overflow: hidden;
        }

        .mak-about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.8fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .mak-about-img-wrap {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            border: 4px solid var(--accent-gold);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            transition: var(--transition-smooth);
            aspect-ratio: 2 / 3;
            width: 100%;
            max-width: 450px;
            margin: 0 auto;
        }

        .mak-about-img-wrap::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(14, 75, 54, 0.2), transparent);
            z-index: 1;
        }

        .mak-about-img-wrap:hover {
            transform: scale(1.02);
            box-shadow: 0 30px 80px rgba(212, 167, 79, 0.25);
        }

        .mak-about-img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            display: block;
            transition: var(--transition-smooth);
        }

        .mak-about-img-wrap:hover .mak-about-img {
            transform: scale(1.05);
        }

        .mak-about-content .heading {
            font-size: 2.5rem;
        }

        .mak-about-content .heading span {
            display: block;
            font-size: 1.8rem;
            margin-top: 5px;
        }

        .gold-divider {
            margin: 18px 0 28px;
        }

        .mak-about-para {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #3a4a3f;
            margin-bottom: 18px;
            font-weight: 400;
        }

        .mak-about-para:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 992px) {
            .mak-about-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .mak-about-image {
                order: -1;
                display: flex;
                justify-content: center;
            }

            .mak-about-img-wrap {
                max-width: 400px;
            }

            .mak-about-content .heading {
                font-size: 2rem;
            }

            .mak-about-content .heading span {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 50px 0;
            }

            .mak-about-img-wrap {
                max-width: 450px;
            }

            .mak-about-content .heading {
                font-size: 1.6rem;
            }

            .mak-about-content .heading span {
                font-size: 1.2rem;
            }

            .mak-about-para {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 576px) {
            .mak-about-img-wrap {
                max-width: 400px;
                height: 500px;
                border-width: 3px;
            }

            .mak-about-content .heading {
                font-size: 1.3rem;
            }

            .mak-about-content .heading span {
                font-size: 1rem;
            }

            .mak-about-para {
                font-size: 0.9rem;
                line-height: 1.7;
            }

            .gold-divider {
                width: 60px;
                margin: 12px 0 20px;
            }
        }

        /* =========================================
                   SERVICES SECTION
                ========================================= */
        .mak-services {
            background: var(--bg-warm-ivory);
            position: relative;
        }

        .custom-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .mak-services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .mak-service-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            transition: var(--transition-smooth);
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
        }

        .mak-service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
            border-color: var(--accent-gold);
        }

        .mak-service-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1 / .7;
            background: #f0f3f0;
            flex-shrink: 0;
        }

        .mak-service-img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            display: block;
            transition: var(--transition-smooth);
        }

        .mak-service-card:hover .mak-service-img {
            transform: scale(1.05);
        }

        .mak-service-content {
            padding: 20px 22px 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .mak-service-title {
         
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary-emerald);
            margin-bottom: 10px;
            line-height: 1.3;
            min-height: 48px;
        }

        .mak-service-desc {
            font-size: 0.88rem;
            color: #4a5a4f;
            line-height: 1.7;
            margin-bottom: 15px;
            flex: 1;
        }

        .mak-service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: var(--transition-smooth);
            margin-top: auto;
            padding-top: 10px;
            border-top: 1px solid var(--border-mint);
        }

        .mak-service-link i {
            font-size: 0.75rem;
            transition: var(--transition-smooth);
        }

        .mak-service-link:hover {
            color: var(--primary-emerald);
            gap: 12px;
        }

        .mak-service-link:hover i {
            transform: translateX(4px);
        }

        @media (max-width: 1200px) {
            .mak-services-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 992px) {
            .mak-services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .heading {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 50px 0;
            }

            .mak-services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .mak-service-content {
                padding: 15px 16px 20px;
            }

            .mak-service-title {
                font-size: 0.9rem;
                min-height: 40px;
            }

            .mak-service-desc {
                font-size: 0.8rem;
            }

            .heading {
                font-size: 1.6rem;
            }

            .subheading {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .mak-services-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .mak-service-content {
                padding: 12px 12px 16px;
            }

            .mak-service-title {
                font-size: 0.8rem;
                min-height: 34px;
            }

            .mak-service-desc {
                font-size: 0.7rem;
                line-height: 1.5;
                margin-bottom: 10px;
            }

            .mak-service-link {
                font-size: 0.75rem;
            }

            .heading {
                font-size: 1.3rem;
            }

            .subheading {
                font-size: 0.8rem;
            }

            .gold-divider {
                width: 50px;
                margin: 10px auto 15px;
            }
        }

        /* =========================================
                   CTA SECTION
                ========================================= */
        .mak-cta-section {
            position: relative;
            width: 100%;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #0A2E1F;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(212, 167, 79, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(212, 167, 79, 0.08) 0%, transparent 50%),
                repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(212, 167, 79, 0.015) 40px, rgba(212, 167, 79, 0.015) 41px),
                repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(212, 167, 79, 0.015) 40px, rgba(212, 167, 79, 0.015) 41px);
            border-top: 3px solid var(--accent-gold);
            border-bottom: 3px solid var(--accent-gold);
        }

        .mak-cta-section .container-fluid {
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .mak-cta-section .row {
            min-height: 500px;
            align-items: center;
            justify-content: center;
        }

        .mak-cta-heading {
         
            font-size: 2.8rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
            text-align: center;
        }

        .mak-cta-heading span {
            color: var(--accent-gold);
            position: relative;
        }

        .mak-cta-heading span::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold-gradient);
            border-radius: 2px;
            opacity: 0.5;
        }

        .mak-cta-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            margin-bottom: 30px;
            max-width: 80%;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .mak-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            align-items: center;
            justify-content: center;
        }

        .mak-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--gold-gradient);
            color: #fff;
            padding: 16px 40px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            border: 2px solid transparent;
            transition: var(--transition-smooth);
            box-shadow: 0 8px 35px rgba(212, 167, 79, 0.4);
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .mak-cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: var(--transition-smooth);
        }

        .mak-cta-primary:hover::before {
            left: 100%;
        }

        .mak-cta-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 14px 50px rgba(212, 167, 79, 0.5);
            background: #fff;
            color: var(--primary-emerald);
            border-color: var(--accent-gold);
        }

        .mak-cta-primary i {
            font-size: 1.2rem;
        }

        .mak-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: 60px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition-smooth);
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
        }

        .mak-cta-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(212, 167, 79, 0.15);
        }

        .mak-cta-secondary i {
            font-size: 1.1rem;
            color: var(--accent-gold);
        }

        .mak-trust-wrapper {
            text-align: center;
        }

        .mak-trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 20px;
            margin-top: 28px;
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
        }

        .mak-trust-badge .stars {
            color: var(--accent-gold);
            font-size: 1rem;
            letter-spacing: 3px;
        }

        .mak-trust-badge .trust-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .mak-trust-badge .trust-text strong {
            color: #fff;
            font-weight: 700;
        }

        .mak-trust-badge .trust-divider {
            width: 1px;
            height: 25px;
            background: rgba(255, 255, 255, 0.12);
        }

        .mak-trust-badge .trust-icon {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }

        @media (max-width: 992px) {
            .mak-cta-heading {
                font-size: 1.8rem;
            }

            .mak-cta-desc {
                font-size: 0.95rem;
                max-width: 100%;
            }

            .mak-cta-primary {
                padding: 14px 30px;
                font-size: 1rem;
            }

            .mak-cta-secondary {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .mak-cta-heading {
                font-size: 1.5rem;
            }

            .mak-cta-desc {
                font-size: 0.9rem;
            }

            .mak-cta-group {
                flex-direction: column;
                gap: 14px;
            }

            .mak-cta-primary {
                padding: 12px 28px;
                font-size: 0.95rem;
                width: 100%;
                justify-content: center;
            }

            .mak-cta-secondary {
                padding: 10px 22px;
                font-size: 0.85rem;
                width: 100%;
                justify-content: center;
            }

            .mak-trust-badge {
                flex-wrap: wrap;
                justify-content: center;
                padding: 10px 16px;
                gap: 10px;
                border-radius: 30px;
            }

            .mak-trust-badge .trust-divider {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .mak-cta-heading {
                font-size: 1.2rem;
            }

            .mak-cta-desc {
                font-size: 0.85rem;
                line-height: 1.6;
            }

            .mak-cta-primary {
                padding: 10px 20px;
                font-size: 0.85rem;
            }

            .mak-cta-secondary {
                padding: 8px 18px;
                font-size: 0.8rem;
            }

            .mak-trust-badge {
                padding: 8px 14px;
                gap: 8px;
            }

            .mak-trust-badge .stars {
                font-size: 0.85rem;
            }

            .mak-trust-badge .trust-text {
                font-size: 0.75rem;
            }
        }

        /* =========================================
                   CONTENT SECTION
                ========================================= */
        .mak-content-full {
            background: #ffffff;
            padding: 80px 0;
            position: relative;
        }

        .mak-content-wrapper {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 20px;
        }

        .mak-content-title {
         
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--primary-emerald);
            line-height: 1.2;
            margin-bottom: 0;
        }

        .mak-content-title span {
            color: var(--accent-gold);
        }

        .mak-content-para {
            font-size: 1rem;
            color: #4a5a4f;
            line-height: 1.9;
            margin-bottom: 18px;
        }

        .mak-content-para strong {
            color: var(--primary-emerald);
            font-weight: 700;
        }

        .mak-content-subtitle {
         
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-emerald);
            margin: 30px 0 5px;
            line-height: 1.3;
        }

        .mak-content-subtitle span {
            color: var(--accent-gold);
        }

        .mak-content-list {
            list-style: none;
            padding: 0;
            margin: 20px 0 25px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 25px;
        }

        .mak-content-list li {
            font-size: 0.95rem;
            color: #3a4a3f;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 6px 0;
        }

        .mak-content-list li i {
            color: var(--accent-gold);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .mak-content-list li strong {
            color: var(--primary-emerald);
            font-weight: 600;
        }

        .mak-content-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 30px;
        }

        .buttoon {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 35px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: var(--transition-smooth);
            border: 2px solid transparent;
        }

        .buttoon i {
            font-size: 1.1rem;
        }

        .buttoon-green {
            background: var(--gold-gradient);
            color: #fff;
            box-shadow: 0 8px 30px rgba(212, 167, 79, 0.3);
        }

        .buttoon-green:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(212, 167, 79, 0.4);
            background: #fff;
            color: var(--primary-emerald);
            border-color: var(--accent-gold);
        }

        .buttoon {
            background: #25D366;
            color: #fff;
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
        }

        .buttoon:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
            background: #1da95c;
            color: #fff;
        }

        @media (max-width: 992px) {
            .mak-content-full {
                padding: 50px 0;
            }

            .mak-content-title {
                font-size: 2rem;
            }

            .mak-content-subtitle {
                font-size: 1.3rem;
            }

            .mak-content-list {
                grid-template-columns: 1fr;
                gap: 4px;
            }
        }

        @media (max-width: 768px) {
            .mak-content-full {
                padding: 40px 0;
            }

            .mak-content-title {
                font-size: 1.6rem;
            }

            .mak-content-para {
                font-size: 0.92rem;
            }

            .mak-content-subtitle {
                font-size: 1.1rem;
            }

            .mak-content-list li {
                font-size: 0.88rem;
            }

            .mak-content-btns {
                flex-direction: column;
                align-items: stretch;
            }

            .buttoon {
                justify-content: center;
                padding: 12px 25px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .mak-content-title {
                font-size: 1.3rem;
            }

            .mak-content-para {
                font-size: 0.85rem;
                line-height: 1.7;
            }

            .mak-content-subtitle {
                font-size: 1rem;
            }

            .mak-content-list li {
                font-size: 0.82rem;
            }

            .buttoon {
                padding: 10px 18px;
                font-size: 0.82rem;
            }
        }

        /* =========================================
                   TESTIMONIAL SECTION
                ========================================= */
        .mak-testimonial-section {
            background: var(--card-cream);
            position: relative;
            padding: 80px 0;
        }

        .mak-testimonial-heading {
         
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-emerald);
            text-align: center;
        }

        .mak-testimonial-heading span {
            color: var(--accent-gold);
        }

        .mak-testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            max-width: 95%;
            margin: 0 auto;
            padding: 0 15px;
        }

        .mak-testimonial-card {
            background: #fff;
            border-radius: 24px;
            padding: 30px 28px 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            border: 2px solid var(--border-mint);
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .mak-testimonial-card:hover {
            transform: translateY(-6px);
            border-color: var(--accent-gold);
            box-shadow: 0 20px 60px rgba(212, 167, 79, 0.12);
        }

        .mak-testimonial-content {
            flex: 1;
        }

        .mak-quote-icon {
            font-size: 2rem;
            color: var(--accent-gold);
            opacity: 0.25;
            margin-bottom: 8px;
        }

        .mak-testimonial-text {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #3a4a3f;
            font-style: italic;
            margin-bottom: 12px;
            flex: 1;
        }

        .mak-stars {
            color: var(--accent-gold);
            font-size: 0.85rem;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .mak-testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 18px;
            border-top: 2px solid var(--border-mint);
            margin-top: auto;
        }

        .mak-author-img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--accent-gold);
            flex-shrink: 0;
        }

        .mak-author-img img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            display: block;
        }

        .mak-author-name {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-emerald);
            margin-bottom: 2px;
        }

        .mak-author-location {
            font-size: 0.82rem;
            color: #6a7a6f;
            margin-bottom: 0;
        }

        .mak-author-location i {
            color: var(--accent-gold);
            margin-right: 4px;
        }

        @media (max-width: 992px) {
            .mak-testimonial-section {
                padding: 50px 0;
            }

            .mak-testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                max-width: 800px;
            }

            .mak-testimonial-heading {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 768px) {
            .mak-testimonial-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .mak-testimonial-card {
                padding: 20px 18px 18px;
            }

            .mak-testimonial-text {
                font-size: 0.85rem;
            }

            .mak-testimonial-heading {
                font-size: 1.4rem;
            }

            .mak-author-img {
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 576px) {
            .mak-testimonial-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                max-width: 450px;
            }

            .mak-testimonial-card {
                padding: 18px 16px 16px;
                border-radius: 18px;
            }

            .mak-testimonial-text {
                font-size: 0.82rem;
            }

            .mak-testimonial-heading {
                font-size: 1.2rem;
            }

            .mak-author-img {
                width: 40px;
                height: 40px;
            }
        }

        /* =========================================
                   AWARDS SECTION
                ========================================= */
        .mak-awards-premium {
            background: #0A2E1F;
            position: relative;
            padding: 80px 0;
            border-top: 3px solid var(--accent-gold);
            border-bottom: 3px solid var(--accent-gold);
        }

        .mak-awards-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(212, 167, 79, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(212, 167, 79, 0.06) 0%, transparent 50%),
                repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(212, 167, 79, 0.015) 40px, rgba(212, 167, 79, 0.015) 41px),
                repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(212, 167, 79, 0.015) 40px, rgba(212, 167, 79, 0.015) 41px);
            z-index: 0;
            pointer-events: none;
        }

        .mak-awards-premium .custom-container {
            position: relative;
            z-index: 1;
        }

        .mak-awards-badge {
            display: inline-block;
            background: rgba(212, 167, 79, 0.12);
            color: var(--accent-gold);
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
            border: 1px solid rgba(212, 167, 79, 0.2);
        }

        .mak-awards-badge i {
            margin-right: 8px;
        }

        .mak-awards-heading {
         
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 0;
        }

        .mak-awards-heading span {
            color: var(--accent-gold);
        }

        .mak-awards-subheading {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.75);
            max-width: 650px;
            margin: 0 auto;
            font-weight: 400;
        }

        .mak-awards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .mak-award-premium-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 30px 25px 35px;
            text-align: center;
            position: relative;
            border: 2px solid rgba(212, 167, 79, 0.15);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            transition: var(--transition-smooth);
            overflow: hidden;
        }

        .mak-award-premium-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-gold);
            box-shadow: 0 20px 60px rgba(212, 167, 79, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .mak-award-ribbon {
            position: absolute;
            top: -8px;
            right: 20px;
            background: var(--gold-gradient);
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            box-shadow: 0 4px 20px rgba(212, 167, 79, 0.4);
            z-index: 2;
        }

        .mak-award-seal {
            position: absolute;
            top: -8px;
            left: 20px;
            background: var(--primary-emerald);
            color: var(--accent-gold);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            border: 2px solid var(--accent-gold);
            z-index: 2;
        }

        .mak-award-img-wrap {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid var(--accent-gold);
            margin: 10px auto 20px;
            box-shadow: 0 8px 30px rgba(212, 167, 79, 0.25);
            position: relative;
            z-index: 1;
        }

        .mak-award-photo {
            width: 100%;
            height: 100%;
            object-fit: fill;
            display: block;
            transition: var(--transition-smooth);
        }

        .mak-award-premium-card:hover .mak-award-photo {
            transform: scale(1.05);
        }

        .mak-award-card-title {
         
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 5px;
        }

        .mak-award-issuer {
            font-size: 0.9rem;
            color: var(--accent-gold);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .mak-award-card-desc {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .mak-award-year {
            display: inline-block;
            background: rgba(212, 167, 79, 0.12);
            color: var(--accent-gold);
            padding: 4px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid rgba(212, 167, 79, 0.15);
        }

        .mak-award-year i {
            margin-right: 6px;
        }

        .mak-award-gold-border {
            width: 60px;
            height: 2px;
            background: var(--gold-gradient);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        @media (max-width: 992px) {
            .mak-awards-premium {
                padding: 50px 0;
            }

            .mak-awards-grid {
                grid-template-columns: 1fr;
                max-width: 550px;
                gap: 30px;
            }

            .mak-awards-heading {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .mak-awards-premium {
                padding: 40px 0;
            }

            .mak-awards-heading {
                font-size: 1.5rem;
            }

            .mak-award-premium-card {
                padding: 25px 20px 30px;
            }

            .mak-award-img-wrap {
                width: 110px;
                height: 110px;
            }

            .mak-award-card-title {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .mak-awards-premium {
                padding: 30px 0;
            }

            .mak-awards-heading {
                font-size: 1.3rem;
            }

            .mak-award-premium-card {
                padding: 20px 16px 25px;
                border-radius: 18px;
            }

            .mak-award-img-wrap {
                width: 90px;
                height: 90px;
                border-width: 3px;
            }

            .mak-award-card-title {
                font-size: 0.9rem;
            }

            .mak-award-card-desc {
                font-size: 0.82rem;
            }

            .mak-award-ribbon {
                width: 40px;
                height: 40px;
                font-size: 18px;
                right: 12px;
            }

            .mak-award-seal {
                width: 36px;
                height: 36px;
                font-size: 16px;
                left: 12px;
            }
        }

        /* =========================================
                   FOOTER STYLES
                ========================================= */
        .mak-footer {
            background: linear-gradient(180deg, #0A2E1F 0%, var(--primary-emerald) 50%, #0A2E1F 100%);
            color: #c8d6c8;
            padding: 60px 0 0;
            border-top: 3px solid var(--accent-gold);
            margin-top: auto;
        }

        .mak-footer-pattern {
            height: 8px;
            background: repeating-linear-gradient(90deg, var(--accent-gold) 0px, var(--accent-gold) 20px, transparent 20px, transparent 30px);
            opacity: 0.2;
            margin-bottom: 50px;
        }

        .mak-footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
        }

        .mak-footer-col-about {
            padding-right: 20px;
        }

        .mak-footer-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 18px;
        }

        .mak-footer-logo {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--accent-gold);
            flex-shrink: 0;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mak-footer-logo i {
            font-size: 28px;
            color: var(--primary-emerald);
        }

        .mak-footer-name {
         
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 2px;
        }

        .mak-footer-tagline {
            font-size: 0.8rem;
            color: #a8b8a8;
            margin-bottom: 0;
        }

        .mak-footer-about {
            font-size: 0.92rem;
            line-height: 1.7;
            color: #b0c0b0;
            margin-bottom: 20px;
        }

        .mak-footer-social {
            display: flex;
            gap: 12px;
        }

        .mak-social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1.5px solid rgba(212, 167, 79, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 0.95rem;
            transition: var(--transition-smooth);
            text-decoration: none;
        }

        .mak-social-icon:hover {
            background: var(--accent-gold);
            color: var(--primary-emerald);
            border-color: var(--accent-gold);
            transform: translateY(-3px);
        }

        .mak-footer-title {
         
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--accent-gold);
            margin-bottom: 18px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(212, 167, 79, 0.15);
            position: relative;
        }

        .mak-footer-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 35px;
            height: 2px;
            background: var(--gold-gradient);
        }

        .mak-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mak-footer-links li {
            margin-bottom: 8px;
        }

        .mak-footer-links a {
            color: #b0c0b0;
            font-size: 0.88rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition-smooth);
        }

        .mak-footer-links a i {
            color: var(--accent-gold);
            font-size: 0.65rem;
        }

        .mak-footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }

        .mak-footer-divider {
            border-top: 1px solid rgba(212, 167, 79, 0.12);
            margin-bottom: 25px;
        }

        .mak-footer-bottom-content {
            padding-bottom: 25px;
        }

        .mak-footer-bottom-content p {
            font-size: 0.85rem;
            color: #90a090;
            margin-bottom: 0;
        }

        .mak-footer-bottom-content p a {
            color: var(--accent-gold);
            text-decoration: none;
        }

        .mak-footer-bottom-content p a:hover {
            color: #fff;
        }

        .mak-footer-policy-links {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .mak-footer-policy-links a {
            color: #90a090;
            font-size: 0.85rem;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .mak-footer-policy-links a:hover {
            color: var(--accent-gold);
        }

        .mak-footer-link-separator {
            color: #4a5a4f;
        }

        @media (max-width: 992px) {
            .mak-footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .mak-footer-col-about {
                grid-column: 1 / -1;
                padding-right: 0;
            }
        }

        @media (max-width: 768px) {
            .mak-footer-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 576px) {
            .mak-footer {
                padding: 40px 0 0;
            }

            .mak-footer-brand {
                gap: 12px;
            }

            .mak-footer-logo {
                width: 45px;
                height: 45px;
            }

            .mak-footer-logo i {
                font-size: 22px;
            }

            .mak-footer-name {
                font-size: 1rem;
            }

            .mak-footer-about {
                font-size: 0.85rem;
            }

            .mak-footer-bottom-content p {
                font-size: 0.75rem;
            }

            .mak-footer-policy-links a {
                font-size: 0.75rem;
            }
        }

        /* =========================================
                   FLOATING BUTTONS
                ========================================= */
        .float-phone,
        .float-whatsapp {
            position: fixed;
            z-index: 99999;
        }

        .float-phone {
            left: 15px;
            bottom: 30px;
        }

        .float-whatsapp {
            right: 15px;
            bottom: 30px;
        }

        .float-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 22px;
            border: 2px solid #fff;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
            transition: all 0.35s ease;
        }

        .float-btn i {
            color: #fff;
        }

        .phone-btn {
            background: var(--gold-gradient);
        }

        .phone-btn i {
            color: #0E4B36 !important;
        }

        .whatsapp-btn {
            background: #06b045;
        }

        .float-btn:hover {
            transform: translateY(-4px) scale(1.08);
        }

        @media (max-width: 576px) {
            .float-phone {
                left: 10px !important;
                bottom: 75px !important;
            }

            .float-whatsapp {
                right: 10px !important;
                bottom: 75px !important;
            }

            .float-btn {
                width: 48px;
                height: 48px;
                font-size: 18px;
            }
        }





        /* =========================================
   SOLUTION SECTION STYLES
========================================= */
        .mak-solution {
            background: var(--bg-warm-ivory);
            position: relative;
        }

        .mak-solution-heading {
         
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--primary-emerald);
            line-height: 1.2;
            margin-bottom: 0;
        }

        .mak-solution-heading span {
            color: var(--accent-gold);
        }

        .mak-solution-para {
            font-size: 1rem;
            color: #4a5a4f;
            line-height: 1.9;
            margin-bottom: 18px;
        }

        .mak-solution-para strong {
            color: var(--primary-emerald);
            font-weight: 700;
        }

        .mak-solution-subheading {
         
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-emerald);
            margin: 30px 0 5px;
            line-height: 1.3;
        }

        .mak-solution-subheading span {
            color: var(--accent-gold);
        }

        .mak-solution-list {
            list-style: none;
            padding: 0;
            margin: 20px 0 25px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 25px;
        }

        .mak-solution-list li {
            font-size: 0.95rem;
            color: #3a4a3f;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 6px 0;
        }

        .mak-solution-list li i {
            color: var(--accent-gold);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .mak-solution-list li strong {
            color: var(--primary-emerald);
            font-weight: 600;
        }

        /* Gold Badge - Full Width */
        .mak-solution-badge {
            background: linear-gradient(135deg, rgba(14, 75, 54, 0.05) 0%, rgba(212, 167, 79, 0.08) 100%);
            border: 2px solid var(--accent-gold);
            border-radius: var(--border-radius-card);
            padding: 30px 40px;
            margin-top: 35px;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
        }

        .mak-solution-badge:hover {
            box-shadow: var(--shadow-gold);
            border-color: var(--accent-gold-dark);
            transform: translateY(-2px);
        }

        .mak-solution-badge h4 {
         
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-emerald);
            margin-bottom: 8px;
        }

        .mak-solution-badge h4 i {
            color: var(--accent-gold);
            margin-right: 10px;
        }

        .mak-solution-badge p {
            font-size: 0.95rem;
            color: #4a5a4f;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 0;
        }

        /* =========================================
   RESPONSIVE DESIGN
========================================= */

        @media (max-width: 992px) {
            .mak-solution-heading {
                font-size: 2rem;
            }

            .mak-solution-subheading {
                font-size: 1.3rem;
            }

            .mak-solution-list {
                grid-template-columns: 1fr;
                gap: 4px;
            }

            .mak-solution-badge {
                padding: 25px 30px;
            }

            .mak-solution-badge h4 {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .mak-solution-heading {
                font-size: 1.6rem;
            }

            .mak-solution-para {
                font-size: 0.92rem;
            }

            .mak-solution-subheading {
                font-size: 1.1rem;
            }

            .mak-solution-list li {
                font-size: 0.88rem;
            }

            .mak-solution-badge {
                padding: 20px 25px;
            }

            .mak-solution-badge h4 {
                font-size: 1rem;
            }

            .mak-solution-badge p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 576px) {
            .mak-solution-heading {
                font-size: 1.3rem;
            }

            .mak-solution-para {
                font-size: 0.85rem;
                line-height: 1.7;
            }

            .mak-solution-subheading {
                font-size: 1rem;
            }

            .mak-solution-list li {
                font-size: 0.82rem;
            }

            .mak-solution-badge {
                padding: 16px 18px;
                border-radius: var(--border-radius-sm);
            }

            .mak-solution-badge h4 {
                font-size: 0.85rem;
            }

            .mak-solution-badge p {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 400px) {
            .mak-solution-heading {
                font-size: 1.1rem;
            }

            .mak-solution-para {
                font-size: 0.8rem;
            }

            .mak-solution-subheading {
                font-size: 0.9rem;
            }

            .mak-solution-list li {
                font-size: 0.78rem;
            }

            .mak-solution-badge h4 {
                font-size: 0.75rem;
            }

            .mak-solution-badge p {
                font-size: 0.7rem;
            }
        }


        /* =========================================
   CERTIFICATION SECTION STYLES
========================================= */
        .mak-certification {
            background: var(--card-cream);
            position: relative;
        }

        .mak-cert-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .mak-cert-card {
            position: relative;
            border-radius: var(--border-radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            border: 3px solid var(--border-mint);
            transition: var(--transition-smooth);
            background: #fff;
            height: 100%;
        }

        .mak-cert-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-gold);
        }

        .mak-cert-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            background: #f0f3f0;
        }

        .mak-cert-img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            display: block;
            transition: var(--transition-smooth);
        }

        .mak-cert-card:hover .mak-cert-img {
            transform: scale(1.05);
        }

        /* Overlay with Badge */
        .mak-cert-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 25px;
            background: linear-gradient(to top, rgba(14, 75, 54, 0.85) 0%, transparent 100%);
            opacity: 0;
            transition: var(--transition-smooth);
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
        }

        .mak-cert-card:hover .mak-cert-overlay {
            opacity: 1;
        }

        .mak-cert-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gold-gradient);
            color: #fff;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 20px rgba(212, 167, 79, 0.4);
        }

        .mak-cert-badge i {
            font-size: 0.9rem;
        }

        /* Gold Corner Accent */
        .mak-cert-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60px;
            height: 60px;
            background: var(--gold-gradient);
            clip-path: polygon(0 0, 100% 0, 100% 100%);
            opacity: 0;
            transition: var(--transition-smooth);
            z-index: 2;
        }

        .mak-cert-card:hover::before {
            opacity: 0.7;
        }

        /* Decorative Border Glow */
        .mak-cert-card::after {
            content: '';
            position: absolute;
            inset: -4px;
            border: 2px solid transparent;
            border-radius: calc(var(--border-radius-card) + 4px);
            transition: var(--transition-smooth);
            pointer-events: none;
            z-index: 1;
        }

        .mak-cert-card:hover::after {
            border-color: var(--accent-gold);
        }

        /* =========================================
   RESPONSIVE DESIGN
========================================= */

        @media (max-width: 992px) {
            .mak-cert-card {
                border-radius: var(--border-radius-sm);
            }

            .mak-cert-card::after {
                border-radius: calc(var(--border-radius-sm) + 4px);
            }

            .mak-cert-img-wrap {
                aspect-ratio: 4 / 3;
            }
        }

        @media (max-width: 768px) {
            .mak-cert-card {
                border-width: 2px;
            }

            .mak-cert-overlay {
                padding: 15px 20px;
            }

            .mak-cert-badge {
                padding: 6px 14px;
                font-size: 0.75rem;
            }

            .mak-cert-badge i {
                font-size: 0.8rem;
            }

            .mak-cert-card::before {
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 576px) {
            .mak-cert-card {
                border-radius: 14px;
            }

            .mak-cert-card::after {
                border-radius: 18px;
            }

            .mak-cert-img-wrap {
                aspect-ratio: 4 / 3;
            }

            .mak-cert-overlay {
                padding: 12px 15px;
            }

            .mak-cert-badge {
                padding: 5px 12px;
                font-size: 0.7rem;
            }

            .mak-cert-badge i {
                font-size: 0.7rem;
            }

            .mak-cert-card::before {
                width: 35px;
                height: 35px;
            }
        }

        /* =========================================
   FAQ SECTION - PREMIUM DARK (ARSHAD)
========================================= */
        .arshad-faq {
            background: linear-gradient(180deg, #0A2E1F 0%, var(--primary-emerald) 40%, #0A2E1F 100%);
            position: relative;
            border-top: 3px solid var(--accent-gold);
            border-bottom: 3px solid var(--accent-gold);
            overflow: hidden;
        }

        /* Premium Pattern Overlay */
        .arshad-faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 20% 30%, rgba(212, 167, 79, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(212, 167, 79, 0.05) 0%, transparent 50%),
                repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(212, 167, 79, 0.015) 60px, rgba(212, 167, 79, 0.015) 61px),
                repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(212, 167, 79, 0.015) 60px, rgba(212, 167, 79, 0.015) 61px);
            z-index: 0;
            pointer-events: none;
        }

        /* Decorative Glow */
        .arshad-faq::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(212, 167, 79, 0.03) 0%, transparent 70%);
            animation: arshadFaqGlow 40s linear infinite;
            z-index: 0;
            pointer-events: none;
        }

        @keyframes arshadFaqGlow {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .arshad-faq-container {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 10px;
        }

        /* =========================================
   ARSHAD DARK THEME HEADINGS
========================================= */
        .arshad-heading-light {
            color: #ffffff;
        }

        .arshad-heading-light span {
            color: var(--accent-gold);
        }

        .arshad-subheading-light {
            color: rgba(255, 255, 255, 0.75);
            max-width: 650px;
            margin: 0 auto;
            font-weight: 400;
        }

        .arshad-premium-badge-dark {
            background: rgba(212, 167, 79, 0.15);
            color: var(--accent-gold);
            border-color: rgba(212, 167, 79, 0.25);
            display: inline-block;
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
            border: 1px solid rgba(212, 167, 79, 0.25);
        }

        .arshad-premium-badge-dark i {
            margin-right: 8px;
        }

        .arshad-gold-divider {
            width: 80px;
            height: 3px;
            background: var(--gold-gradient);
            border-radius: 2px;
            margin: 15px auto 25px;
        }

        /* =========================================
   FAQ ACCORDION STYLES
========================================= */
        .arshad-faq-row {
            max-width: 1200px;
            margin: 0 auto;
        }

        .arshad-faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
        }

        .arshad-faq-item {
            background: rgba(255, 255, 255, 0.05) !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 167, 79, 0.15) !important;
            border-radius: 16px !important;
            overflow: hidden;
            transition: var(--transition-smooth);
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
            width: 100%;
        }

        .arshad-faq-item:hover {
            border-color: rgba(212, 167, 79, 0.3) !important;
            background: rgba(255, 255, 255, 0.08) !important;
        }

        .arshad-faq-item .accordion-header {
            background: transparent !important;
        }

        .arshad-faq-item .accordion-button {
         
            font-weight: 600;
            color: #ffffff !important;
            background: transparent !important;
            padding: 18px 22px;
            border: 0;
            box-shadow: none !important;
            border-radius: 0 !important;
            gap: 12px;
            transition: var(--transition-smooth);
            font-size: 0.95rem;
            line-height: 1.4;
            width: 100%;
            text-align: left;
            display: flex;
            align-items: center;
        }

        .arshad-faq-item .accordion-button:not(.collapsed) {
            color: var(--accent-gold) !important;
            background: rgba(212, 167, 79, 0.08) !important;
        }

        .arshad-faq-item .accordion-button:focus {
            box-shadow: none !important;
            border-color: transparent !important;
        }

        .arshad-faq-item .accordion-button::after {
            filter: invert(1) brightness(2);
            opacity: 0.7;
            flex-shrink: 0;
            margin-left: auto;
        }

        .arshad-faq-item .accordion-button:not(.collapsed)::after {
            filter: invert(0) sepia(1) saturate(3) hue-rotate(0deg);
            opacity: 1;
        }

        .arshad-faq-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 32px;
            height: 32px;
            background: rgba(212, 167, 79, 0.15);
            color: var(--accent-gold);
            border-radius: 50%;
            font-size: 0.75rem;
            font-weight: 700;
         
            flex-shrink: 0;
            transition: var(--transition-smooth);
        }

        .arshad-faq-item .accordion-button:not(.collapsed) .arshad-faq-number {
            background: var(--gold-gradient);
            color: #fff;
            box-shadow: 0 4px 15px rgba(212, 167, 79, 0.4);
        }

        .arshad-faq-item .accordion-body {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            font-size: 0.92rem;
            background: rgba(0, 0, 0, 0.2) !important;
            padding: 20px 24px;
            border-top: 1px solid rgba(212, 167, 79, 0.08);
        }

        .arshad-faq-item .accordion-body p {
            margin-bottom: 0;
        }

        /* Accordion Collapse Transition */
        .arshad-faq-item .accordion-collapse {
            transition: all 0.3s ease;
        }

        /* =========================================
   RESPONSIVE DESIGN
========================================= */

        @media (max-width: 1200px) {
            .arshad-faq-container {
                padding: 0 15px;
            }
        }

        @media (max-width: 992px) {
            .arshad-faq {
                padding: 50px 0;
            }

            .arshad-faq-item .accordion-button {
                font-size: 0.88rem;
                padding: 16px 18px;
            }

            .arshad-faq-item .accordion-body {
                font-size: 0.88rem;
                padding: 16px 18px;
            }

            .arshad-gold-divider {
                width: 60px;
            }
        }

        @media (max-width: 768px) {
            .arshad-faq {
                padding: 40px 0;
            }

            .arshad-faq-row .col-lg-6 {
                padding: 0 5px;
            }

            .arshad-faq-item .accordion-button {
                font-size: 0.82rem;
                padding: 14px 16px;
                gap: 10px;
            }

            .arshad-faq-item .accordion-body {
                font-size: 0.82rem;
                padding: 14px 16px;
            }

            .arshad-faq-number {
                min-width: 28px;
                height: 28px;
                font-size: 0.65rem;
            }

            .arshad-heading-light {
                font-size: 1.6rem;
            }

            .arshad-subheading-light {
                font-size: 0.9rem;
            }

            .arshad-gold-divider {
                width: 50px;
                margin: 12px auto 18px;
            }
        }

        @media (max-width: 576px) {
            .arshad-faq {
                padding: 30px 0;
                border-top: 2px solid var(--accent-gold);
                border-bottom: 2px solid var(--accent-gold);
            }

            .arshad-faq-container {
                padding: 0 8px;
            }

            .arshad-faq-row .col-12 {
                padding: 0 4px;
            }

            .arshad-faq-row .g-4 {
                --bs-gutter-y: 0.8rem;
                --bs-gutter-x: 0.8rem;
            }

            .arshad-faq-item {
                border-radius: 12px !important;
            }

            .arshad-faq-item .accordion-button {
                font-size: 0.75rem;
                padding: 12px 14px;
                gap: 8px;
            }

            .arshad-faq-item .accordion-body {
                font-size: 0.75rem;
                padding: 12px 14px;
                line-height: 1.6;
            }

            .arshad-faq-number {
                min-width: 24px;
                height: 24px;
                font-size: 0.6rem;
            }

            .arshad-heading-light {
                font-size: 1.3rem;
            }

            .arshad-subheading-light {
                font-size: 0.82rem;
            }

            .arshad-premium-badge-dark {
                font-size: 0.7rem;
                padding: 4px 14px;
            }

            .arshad-gold-divider {
                width: 40px;
                margin: 10px auto 14px;
            }
        }

        @media (max-width: 400px) {
            .arshad-faq-item .accordion-button {
                font-size: 0.7rem;
                padding: 10px 12px;
                gap: 6px;
            }

            .arshad-faq-item .accordion-body {
                font-size: 0.7rem;
                padding: 10px 12px;
            }

            .arshad-faq-number {
                min-width: 20px;
                height: 20px;
                font-size: 0.55rem;
            }

            .arshad-heading-light {
                font-size: 1.1rem;
            }

            .arshad-subheading-light {
                font-size: 0.75rem;
            }
        }

        /* =========================================
   WHATSAPP TESTIMONIALS SECTION - ARSHAD
========================================= */
        .arshad-screenshots {
            background: var(--bg-warm-ivory);
            position: relative;
            padding: 80px 0;
        }

        .arshad-screenshots-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 10px;
        }

        /* Section Headings - Reuse existing styles */
        .arshad-premium-badge {
            display: inline-block;
            background: rgba(37, 211, 102, 0.12);
            color: #25D366;
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
            border: 1px solid rgba(37, 211, 102, 0.2);
        }

        .arshad-premium-badge i {
            margin-right: 8px;
        }

        .arshad-heading {
         
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 0;
        }

        .arshad-heading span {
            color: var(--accent-gold);
        }

        .arshad-gold-divider {
            width: 80px;
            height: 3px;
            background: var(--gold-gradient);
            border-radius: 2px;
            margin: 15px auto 25px;
        }

        .arshad-subheading {
            font-size: 1.05rem;
            color: #4a5a4f;
            max-width: 650px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* =========================================
   SCREENSHOTS GRID
========================================= */
        .arshad-screenshots-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .arshad-screenshot-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            border: 2px solid var(--border-mint);
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
        }

        .arshad-screenshot-card:hover {
            transform: translateY(-8px);
            border-color: #25D366;
            box-shadow: 0 20px 60px rgba(37, 211, 102, 0.12);
        }

        .arshad-screenshot-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3 / 4;
            background: #f0f3f0;
            flex-shrink: 0;
        }

        .arshad-screenshot-img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            display: block;
            transition: var(--transition-smooth);
        }

        .arshad-screenshot-card:hover .arshad-screenshot-img {
            transform: scale(1.03);
        }

        /* Overlay with Verified Badge */
        .arshad-screenshot-overlay {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 2;
        }

        .arshad-screenshot-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(37, 211, 102, 0.95);
            color: #fff;
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .arshad-screenshot-badge i {
            font-size: 0.8rem;
        }
.ww{
    color: #C9972E;
}
        /* WhatsApp Green Gradient Overlay Bottom */
        .arshad-screenshot-img-wrap::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(to top, rgba(37, 211, 102, 0.15), transparent);
            pointer-events: none;
            z-index: 1;
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .arshad-screenshot-card:hover .arshad-screenshot-img-wrap::after {
            opacity: 1;
        }

        /* Screenshot Label */
        .arshad-screenshot-label {
            padding: 12px 16px 14px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary-emerald);
            display: flex;
            align-items: center;
            gap: 8px;
            background: #ffffff;
            border-top: 1px solid var(--border-mint);
            transition: var(--transition-smooth);
        }

        .arshad-screenshot-label i {
            color: #25D366;
            font-size: 1rem;
        }

        .arshad-screenshot-card:hover .arshad-screenshot-label {
            background: rgba(37, 211, 102, 0.04);
            border-top-color: #25D366;
        }

        /* =========================================
   WHATSAPP BUTTON
========================================= */
        .arshad-whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #25D366;
            color: #fff;
            padding: 14px 40px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: var(--transition-smooth);
            border: 2px solid transparent;
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
            letter-spacing: 0.5px;
        }

        .arshad-whatsapp-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
            background: #1da95c;
            color: #fff;
        }

        .arshad-whatsapp-btn i {
            font-size: 1.2rem;
        }

        /* =========================================
   RESPONSIVE DESIGN
========================================= */

        @media (max-width: 1200px) {
            .arshad-screenshots-container {
                padding: 0 15px;
            }

            .arshad-screenshots-grid {
                gap: 20px;
            }
        }

        @media (max-width: 992px) {
            .arshad-screenshots-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                max-width: 700px;
            }

            .arshad-heading {
                font-size: 2rem;
            }

            .arshad-screenshot-label {
                font-size: 0.8rem;
                padding: 10px 14px 12px;
            }
        }

        @media (max-width: 768px) {
            .arshad-screenshots {
                padding: 50px 0;
            }

            .arshad-screenshots-grid {
                gap: 16px;
                max-width: 500px;
            }

            .arshad-heading {
                font-size: 1.6rem;
            }

            .arshad-subheading {
                font-size: 0.9rem;
            }

            .arshad-screenshot-img-wrap {
                aspect-ratio: 3 / 4;
            }

            .arshad-screenshot-label {
                font-size: 0.75rem;
                padding: 8px 12px 10px;
            }

            .arshad-screenshot-badge {
                font-size: 0.6rem;
                padding: 4px 10px;
            }

            .arshad-whatsapp-btn {
                padding: 12px 30px;
                font-size: 0.9rem;
            }

            .arshad-gold-divider {
                width: 60px;
                margin: 12px auto 18px;
            }
        }

        @media (max-width: 576px) {
            .arshad-screenshots {
                padding: 30px 0;
            }

            .arshad-screenshots-container {
                padding: 0 8px;
            }

            .arshad-screenshots-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
                max-width: 400px;
            }

            .arshad-heading {
                font-size: 1.3rem;
            }

            .arshad-subheading {
                font-size: 0.82rem;
            }

            .arshad-premium-badge {
                font-size: 0.7rem;
                padding: 4px 14px;
            }

            .arshad-screenshot-img-wrap {
                aspect-ratio: 3 / 4;
            }

            .arshad-screenshot-label {
                font-size: 0.65rem;
                padding: 6px 8px 8px;
                gap: 5px;
            }

            .arshad-screenshot-label i {
                font-size: 0.75rem;
            }

            .arshad-screenshot-badge {
                font-size: 0.5rem;
                padding: 3px 8px;
                gap: 4px;
            }

            .arshad-screenshot-badge i {
                font-size: 0.6rem;
            }

            .arshad-whatsapp-btn {
                padding: 10px 24px;
                font-size: 0.8rem;
                gap: 8px;
            }

            .arshad-whatsapp-btn i {
                font-size: 1rem;
            }

            .arshad-gold-divider {
                width: 40px;
                margin: 10px auto 14px;
            }
        }

        @media (max-width: 400px) {
            .arshad-screenshots-grid {
                gap: 10px;
            }

            .arshad-heading {
                font-size: 1.1rem;
            }

            .arshad-subheading {
                font-size: 0.75rem;
            }

            .arshad-screenshot-label {
                font-size: 0.55rem;
                padding: 4px 6px 6px;
            }

            .arshad-screenshot-label i {
                font-size: 0.65rem;
            }

            .arshad-whatsapp-btn {
                padding: 8px 18px;
                font-size: 0.7rem;
                gap: 6px;
            }

            .arshad-whatsapp-btn i {
                font-size: 0.85rem;
            }
        }

        /* Added text justification for user-friendly readability */
        p,
        .accordion-body,
        .mak-about-para,
        .mak-cta-desc,
        .mak-solution-para,
        .mak-solution-list li,
        .arshad-subheading,
        .arshad-subheading-light,
        .mak-testimonial-desc,
        .mak-testimonial-para,
        .arshad-faq-item .accordion-body p,
        .mak-service-card p {
            text-align: justify !important;
            text-align-last: left;
        }
  




        /* =========================================
   CONTACT US SECTION - ARSHAD
========================================= */
.arshad-contact {
    background: var(--bg-warm-ivory);
    position: relative;
    padding: 80px 0;
}

.arshad-contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

/* =========================================
   HEADINGS
========================================= */
.arshad-premium-badge {
    display: inline-block;
    background: rgba(212, 167, 79, 0.12);
    color: var(--accent-gold);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 167, 79, 0.25);
}

.arshad-premium-badge i {
    margin-right: 8px;
}

.arshad-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-emerald);
    line-height: 1.2;
    margin-bottom: 0;
}

.arshad-heading span {
    color: var(--accent-gold);
}

.arshad-gold-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin: 15px auto 25px;
}

.arshad-subheading {
    font-size: 1.05rem;
    color: #4a5a4f;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}

/* =========================================
   CONTACT INFO CARDS (LEFT)
========================================= */
.arshad-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-right: 20px;
}

.arshad-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    background: #ffffff;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--border-mint);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.arshad-contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.arshad-contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: rgba(212, 167, 79, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.arshad-contact-card:hover .arshad-contact-icon {
    background: var(--gold-gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(212, 167, 79, 0.3);
}

.arshad-contact-detail h4 {

    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-emerald);
    margin-bottom: 4px;
}

.arshad-contact-detail p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.arshad-contact-detail p a {
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.arshad-contact-detail p a:hover {
    color: var(--accent-gold);
}

.arshad-contact-detail span {
    font-size: 0.82rem;
    color: #6a7a6f;
}

/* Trust Badge */
.arshad-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(212, 167, 79, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(212, 167, 79, 0.2);
    margin-top: 6px;
}

.arshad-trust-badge i {
    font-size: 1.4rem;
    color: var(--accent-gold);
}

.arshad-trust-badge span {
    font-size: 0.92rem;
    color: #3a4a3f;
}

.arshad-trust-badge span strong {
    color: var(--primary-emerald);
}

/* =========================================
   CONTACT FORM (RIGHT)
========================================= */
.arshad-contact-form-wrapper {
    background: #ffffff;
    border-radius: var(--border-radius-card);
    padding: 40px 45px;
    border: 2px solid var(--border-mint);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.arshad-contact-form-wrapper:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.arshad-form-title {

    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-emerald);
    margin-bottom: 5px;
}

.arshad-form-subtext {
    font-size: 0.92rem;
    color: #6a7a6f;
    margin-bottom: 25px;
}

.arshad-form-group {
    margin-bottom: 18px;
}

.arshad-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.arshad-form-group label i {
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.arshad-required {
    color: #dc3545;
    font-weight: 700;
}

.arshad-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-mint);
    border-radius: 12px;
    font-size: 0.95rem;

    color: var(--text-dark);
    background: var(--bg-warm-ivory);
    transition: var(--transition-smooth);
    outline: none;
}

.arshad-form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 167, 79, 0.12);
    background: #ffffff;
}

.arshad-form-control::placeholder {
    color: #a8b8a8;
    font-size: 0.9rem;
}

.arshad-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.arshad-form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #6a7a6f;
    margin-bottom: 20px;
    padding: 10px 14px;
    background: rgba(212, 167, 79, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(212, 167, 79, 0.1);
}

.arshad-form-note i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* Submit Button */
.arshad-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 35px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    cursor: pointer;
}

.arshad-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
    background: #1da95c;
}

.arshad-submit-btn:active {
    transform: translateY(-1px);
}

.arshad-submit-btn i {
    font-size: 1.3rem;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */

@media (max-width: 1200px) {
    .arshad-contact-container {
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    .arshad-contact {
        padding: 50px 0;
    }
    .arshad-contact-info {
        padding-right: 0;
    }
    .arshad-contact-form-wrapper {
        padding: 30px 35px;
    }
    .arshad-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .arshad-contact {
        padding: 40px 0;
    }
    .arshad-heading {
        font-size: 1.6rem;
    }
    .arshad-subheading {
        font-size: 0.9rem;
    }
    .arshad-contact-form-wrapper {
        padding: 25px 28px;
        border-radius: var(--border-radius-sm);
    }
    .arshad-contact-card {
        padding: 16px 18px;
    }
    .arshad-contact-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1rem;
    }
    .arshad-form-title {
        font-size: 1.3rem;
    }
    .arshad-submit-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    .arshad-gold-divider {
        width: 60px;
        margin: 12px auto 18px;
    }
}

@media (max-width: 576px) {
    .arshad-contact {
        padding: 30px 0;
    }
    .arshad-contact-container {
        padding: 0 8px;
    }
    .arshad-heading {
        font-size: 1.3rem;
    }
    .arshad-subheading {
        font-size: 0.82rem;
    }
    .arshad-premium-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }
    .arshad-contact-form-wrapper {
        padding: 18px 16px;
        border-width: 1.5px;
    }
    .arshad-contact-card {
        padding: 14px 14px;
        gap: 14px;
        border-width: 1.5px;
    }
    .arshad-contact-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.9rem;
    }
    .arshad-contact-detail h4 {
        font-size: 0.85rem;
    }
    .arshad-contact-detail p {
        font-size: 0.88rem;
    }
    .arshad-contact-detail span {
        font-size: 0.72rem;
    }
    .arshad-form-title {
        font-size: 1.1rem;
    }
    .arshad-form-subtext {
        font-size: 0.8rem;
    }
    .arshad-form-group label {
        font-size: 0.82rem;
    }
    .arshad-form-control {
        padding: 10px 14px;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    .arshad-form-control::placeholder {
        font-size: 0.8rem;
    }
    .arshad-form-textarea {
        min-height: 100px;
    }
    .arshad-form-note {
        font-size: 0.72rem;
        padding: 8px 12px;
    }
    .arshad-submit-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        border-radius: 50px;
    }
    .arshad-submit-btn i {
        font-size: 1.1rem;
    }
    .arshad-trust-badge {
        padding: 12px 16px;
        gap: 10px;
    }
    .arshad-trust-badge i {
        font-size: 1.1rem;
    }
    .arshad-trust-badge span {
        font-size: 0.8rem;
    }
    .arshad-gold-divider {
        width: 40px;
        margin: 10px auto 14px;
    }
}

@media (max-width: 400px) {
    .arshad-heading {
        font-size: 1.1rem;
    }
    .arshad-subheading {
        font-size: 0.75rem;
    }
    .arshad-contact-form-wrapper {
        padding: 14px 12px;
    }
    .arshad-contact-card {
        padding: 10px 12px;
        gap: 10px;
    }
    .arshad-contact-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.8rem;
    }
    .arshad-form-title {
        font-size: 1rem;
    }
    .arshad-form-control {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    .arshad-submit-btn {
        padding: 10px 16px;
        font-size: 0.78rem;
        gap: 8px;
    }
    .arshad-submit-btn i {
        font-size: 1rem;
    }
}

















   /* Reset and base for the section */
    .arshadkhan-cta-section {
        position: relative;
        padding: 4rem 0;
        overflow: hidden;
        /* background will be video, so we keep it transparent */
        background-color: #0a2a3b; /* fallback solid color */
        color: #fff;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        min-height: 400px;
        display: flex;
        align-items: center;
    }

    /* Video background: horizontally flipped using scaleX(-1) */
    .arshadkhan-video-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow: hidden;
        pointer-events: none; /* allow clicks to pass through to CTA */
    }

    .arshadkhan-bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scaleX(-1); /* horizontal flip */
        -webkit-transform: scaleX(-1); /* for Safari */
        display: block;
    }

    /* overlay to improve text readability */
    .arshadkhan-cta-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1;
    }

    /* container and content above overlay */
    .arshadkhan-container {
        position: relative;
        z-index: 2;
    }

    .arshadkhan-row {
        justify-content: center;
    }

    .arshadkhan-col {
        text-align: center;
    }

    .arshadkhan-cta-heading {
        font-size: 2.8rem;
        font-weight: 700;
        letter-spacing: -0.5px;
        margin-bottom: 1.2rem;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .arshadkhan-cta-heading span {
        color: #f6c445;
        background: rgba(0,0,0,0.2);
        padding: 0 10px;
        border-radius: 8px;
        display: inline-block;
    }

    .arshadkhan-cta-desc {
        font-size: 1.2rem;
        max-width: 850px;
        margin: 0 auto 2rem;
        line-height: 1.7;
        opacity: 0.95;
        text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    }

    .arshadkhan-cta-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .arshadkhan-cta-primary,
    .arshadkhan-cta-secondary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 0.9rem 2.2rem;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        border: 1px solid rgba(255,255,255,0.15);
        background: rgba(255,255,255,0.08);
        backdrop-filter: blur(4px);
        color: #fff;
    }

    .arshadkhan-cta-primary {
        background: #f6c445;
        color: #0a2a3b;
        border-color: #f6c445;
        box-shadow: 0 8px 20px rgba(246, 196, 69, 0.35);
    }

    .arshadkhan-cta-primary:hover {
        background: #ffd966;
        transform: translateY(-3px);
        color: #0a2a3b;
        box-shadow: 0 12px 28px rgba(246, 196, 69, 0.45);
    }

    .arshadkhan-cta-secondary {
        background: transparent;
        border: 2px solid #25D366;
        color: #fff;
    }

    .arshadkhan-cta-secondary:hover {
        background: #25D366;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
    }

    .arshadkhan-trust-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .arshadkhan-trust-badge {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(6px);
        padding: 0.8rem 2rem;
        border-radius: 50px;
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        font-size: 1rem;
    }

    .arshadkhan-trust-icon {
        color: #f6c445;
        font-size: 1.4rem;
    }

    .arshadkhan-trust-divider {
        width: 2px;
        height: 28px;
        background: rgba(255,255,255,0.2);
        display: inline-block;
    }

    .arshadkhan-stars {
        color: #f6c445;
        letter-spacing: 3px;
        font-size: 1.1rem;
    }

    .arshadkhan-trust-text {
        font-weight: 300;
        letter-spacing: 0.3px;
        color: #f0f0f0;
    }

    .arshadkhan-trust-text strong {
        font-weight: 700;
        color: #fff;
    }

    /* responsive */
    @media (max-width: 768px) {
        .arshadkhan-cta-heading {
            font-size: 2rem;
        }
        .arshadkhan-cta-desc {
            font-size: 1rem;
            padding: 0 10px;
        }
        .arshadkhan-cta-primary,
        .arshadkhan-cta-secondary {
            padding: 0.7rem 1.5rem;
            font-size: 1rem;
        }
        .arshadkhan-trust-badge {
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            gap: 8px;
        }
        .arshadkhan-trust-divider {
            height: 20px;
        }
    }

    @media (max-width: 480px) {
        .arshadkhan-cta-section {
            padding: 2.5rem 0;
        }
        .arshadkhan-cta-heading {
            font-size: 1.6rem;
        }
        .arshadkhan-cta-group {
            flex-direction: column;
            align-items: center;
            gap: 0.9rem;
        }
        .arshadkhan-cta-primary,
        .arshadkhan-cta-secondary {
            width: 90%;
            justify-content: center;
        }
    }