 /* ----- ROSE-RED PALETTE (#EB0046) ----- */
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
    body { background-color: #ffffff; color: #1a0010; line-height: 1.5; scroll-behavior: smooth; }
    h1, h2, h3, h4, h5, h6 { font-weight: 600; letter-spacing: -0.02em; font-family: "Bricolage Grotesque", sans-serif!important;}
   h1 span { font-family: "Bricolage Grotesque", sans-serif!important;}

    :root {
      --wheat-50:  #fff0f4;
      --wheat-100: #ffd6e2;
      --wheat-200: #ffadc5;
      --wheat-300: #ff6b96;
      --wheat-400: #f5235f;
      --wheat-500: #eb0046;
      --wheat-600: #c4003b;
      --wheat-700: #9c002f;
      --wheat-800: #730023;
      --wheat-900: #4a0017;
      --wheat-950: #2a000d;
    }
 /* ----- fixed header (white bg, wheat accents) ----- */
        .header-rocket {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: white;            /* header bg white */
            transition: all 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .header-rocket.scrolled {
            border-color: var(--wheat-200);  /* soft wheat border */
            box-shadow: 0 4px 12px -2px rgba(235, 0, 70, 0.08); /* warm shadow */
            padding-top: 0.25rem !important;
            padding-bottom: 0.25rem !important;
        }

        .header-rocket:not(.scrolled) {
            padding-top: .75rem !important;
            padding-bottom: .75rem !important;
        }

        /* logo / brand */
        .logo-wrapper {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: inherit;
        }

        .logo-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: linear-gradient(135deg, var(--wheat-400), var(--wheat-600)); /* wheat gradient */
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px rgba(196, 0, 59, 0.15);
            transition: all 0.3s;
            margin-right: 0.75rem;
        }

        .logo-icon i {
            color: white;
            font-size: 1.25rem;
        }

        .logo-wrapper:hover .logo-icon {
            box-shadow: 0 6px 12px rgba(235, 0, 70, 0.25);
            transform: scale(1.02);
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--wheat-900);      /* deep wheat for brand name */
            letter-spacing: -0.02em;
        }

        /* brand logo text */
        .logo-text-brand {
            font-family: 'Pacifico', cursive;
            font-size: 1.6rem;
            color: #1a0010;
            letter-spacing: -0.01em;
            line-height: 1;
        }
        .logo-text-brand span {
            color: var(--wheat-500); /* #EB0046 */
        }

        /* desktop navigation links */
        .nav-link-custom {
            color: var(--wheat-800);
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            transition: all 0.2s;
            text-decoration: none;
        }

        .nav-link-custom:hover {
            color: var(--wheat-600);
            background-color: var(--wheat-50);  /* ultra light wheat */
        }

        /* --- animated phone button with image left --- */
        .phone-btn-enhanced {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(145deg, var(--wheat-500), var(--wheat-700));
            padding: 0.6rem 2rem 0.6rem .6rem;
            border-radius: 60px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 1.4rem;
            letter-spacing: 0.01em;
            
            border: 1px solid rgba(255, 255, 200, 0.3);
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
            position: relative;
            overflow: hidden;
            gap: 1rem;
        }

        /* image circle (left side) */
        .phone-btn-enhanced .btn-image {
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            border: 2px solid var(--wheat-300);
            transition: transform 0.3s ease;
        }
        .phone-btn-enhanced .btn-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        /* fallback if image missing (svg icon) */
        .btn-image-fallback {
            background: var(--wheat-100);
            color: var(--wheat-700);
            font-size: 1.6rem;
        }

        /* text container */
        .phone-btn-enhanced .btn-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1.2;
        }
        .phone-btn-enhanced .btn-text .small-label {
            font-size: 0.75rem;
            opacity: 0.9;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .phone-btn-enhanced .btn-text .phone-number {
            font-size: 1.2rem;
            font-weight: 700;
        }

        /* lucide phone icon (optional inside text) */
        .phone-btn-enhanced .btn-text i {
            margin-right: 0.3rem;
            font-size: 1.2rem;
        }

        /* animations */
        .phone-btn-enhanced:hover {
            transform: scale(1.05) translateY(-3px);
            background: linear-gradient(145deg, var(--wheat-600), var(--wheat-800));
            box-shadow: 0 25px 35px -8px #9c002f;
            border-color: var(--wheat-400);
        }

        .phone-btn-enhanced:hover .btn-image {
            transform: rotate(8deg) scale(1.05);
        }

        /* subtle ring pulse animation */
        .phone-btn-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 60px;
            background: rgba(255, 255, 200, 0.3);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .phone-btn-enhanced:hover::before {
            opacity: 1;
            animation: pulse-ring 1.5s infinite;
        }

        @keyframes pulse-ring {
            0% { box-shadow: 0 0 0 0 rgba(235, 35, 95, 0.7); }
            70% { box-shadow: 0 0 0 12px rgba(235, 35, 95, 0); }
            100% { box-shadow: 0 0 0 0 rgba(235, 35, 95, 0); }
        }

        /* responsive */
        @media (max-width: 576px) {
            .phone-btn-enhanced { padding: 0.7rem 1.2rem; font-size: 1.2rem; }
            .phone-btn-enhanced .btn-image { width: 40px; height: 40px; }
        }

        /* lucide icon fallback */
        .lucide-phone:before { content: "\f095"; font-family: "Font Awesome 6 Free"; font-weight: 900; }

        /* mobile menu toggle (hamburger) */
        .menu-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            background-color: var(--wheat-50);   /* light wheat bg */
            border: 1px solid var(--wheat-100);
            border-radius: 0.5rem;
            transition: background 0.2s;
        }

        .menu-toggle:hover {
            background-color: var(--wheat-100);
            border-color: var(--wheat-200);
        }

        .hamburger {
            width: 1.5rem;
            height: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 0.25rem;
        }

        .hamburger span {
            display: block;
            height: 2px;
            background-color: var(--wheat-700);
            transition: all 0.3s;
            border-radius: 2px;
        }

        /* hamburger open animation */
        .menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background-color: var(--wheat-800);
        }
        .menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
            background-color: var(--wheat-800);
        }

        /* mobile menu collapsible */
        .mobile-menu {
            transition: all 0.3s ease-in-out;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            margin-top: 0;
        }

        .mobile-menu.show {
            max-height: 24rem;
            opacity: 1;
            margin-top: 1rem;
        }

        .mobile-nav-card {
            background: white;
            border-radius: 0.75rem;
            border: 1px solid var(--wheat-200);
            box-shadow: 0 10px 20px -8px rgba(156, 0, 47, 0.15);
            padding: 0.5rem;
        }

        .mobile-nav-link {
            display: block;
            color: var(--wheat-800);
            font-weight: 500;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: all 0.2s;
        }

        .mobile-nav-link:hover {
            background-color: var(--wheat-50);
            color: var(--wheat-600);
        }

        .mobile-phone-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, var(--wheat-500), var(--wheat-700));
            color: white;
            font-weight: 500;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: all 0.2s;
            border: none;
            width: 100%;
        }

        .mobile-phone-btn:hover {
            background: linear-gradient(135deg, var(--wheat-600), var(--wheat-800));
            color: white;
        }

        /* demo content card (white, wheat outlines) */
        .demo-content {
            max-width: 900px;
            margin: 2rem auto;
            padding: 2rem;
            background: white;
            border-radius: 2rem;
            border: 1px solid var(--wheat-100);
            box-shadow: 0 15px 30px -12px rgba(235, 0, 70, 0.08);
        }

        .spacer {
            height: 100vh;
        }
    
        


 /* ----- hero section exact replica (with wheat palette) ----- */
        .flight-hero {
          
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
           
            padding-top: 4rem;  /* pt-30 approx */
            background-color: var(--wheat-950); /* fallback deep wheat */
        }

        /* background image + overlay */
        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .overlay-wheat {
            position: absolute;
            inset: 0;
            background-color: var(--wheat-950); /* deep warm base */
            opacity: 0.85;                       /* ~ wheat-950/80 */
            backdrop-filter: blur(1px);
        }

        /* content container */
        .hero-content {
           
            margin: 0 auto;
           
            position: relative;
            z-index: 10;
            padding: 4rem 1rem;
            color: white;
        }

        /* badge */
        .support-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background-color: rgba(255,255,255,0.08);
            backdrop-filter: blur(8px);
            border-radius: 9999px;
            padding: 0.75rem 1.5rem;
            border: 1px solid rgba(235, 35, 95, 0.2); /* wheat-400/20 */
            margin-bottom: 2rem;
        }
        .support-badge i {
            color: var(--wheat-300);
            font-size: 1rem;
        }
        .badge-text {
            font-size: 1rem;
            font-weight: 500;
            color: var(--wheat-100);
        }

        /* main heading */
        .hero-title {
            font-size: 3rem;      /* responsive */
            font-weight: 700;
            line-height: 1.2;
        }
        .hero-title .text-light {
            color: white;
        }
        .hero-title .text-accent {
            color: var(--wheat-300);  /* primary-300 equivalent */
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--wheat-100);
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* stats grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            
            margin: 0 auto;
            padding: 1.5rem 0;
        }
        .stat-item {
           background: #0000001c;
           backdrop-filter: blur(10px);
           border-radius: 1rem;
           padding:15px;
           text-align: center;
           
        }
        .stat-icon {
            display: flex;
            justify-content: center;
            margin-bottom: 0.5rem;
        }
        .stat-icon svg {
            font-size: 2rem;
            color: var(--wheat-400);
        }
        .stat-number {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
        }
        .stat-label {
            font-size: 0.875rem;
            color: var(--wheat-200);
        }

        /* cta buttons */
        .btn-phone-wheat {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, var(--wheat-500), var(--wheat-700));
            color: white;
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            transition: all 0.3s;
            box-shadow: 0 10px 15px -3px rgba(196, 0, 59, 0.3);
            border: none;
            text-decoration: none;
        }
        .btn-phone-wheat:hover {
            background: linear-gradient(135deg, var(--wheat-600), var(--wheat-800));
            transform: scale(1.05);
            box-shadow: 0 20px 25px -5px rgba(156, 0, 47, 0.4);
            color: white;
        }

        .btn-outline-wheat {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            border: 2px solid var(--wheat-400);
            background-color: transparent;
            backdrop-filter: blur(4px);
            color: var(--wheat-100);
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        .btn-outline-wheat:hover {
            background-color: rgba(235, 35, 95, 0.1); /* wheat-400/10 */
            color: white;
            border-color: var(--wheat-300);
        }

        /* trust indicators */
        .trust-wrapper {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            
            gap: 2rem;
            color: var(--wheat-200);
            padding-top: 2rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.2rem;
        }
        .rating-stars i {
            color: #fbbf24;  /* yellow-400 */
            fill: currentColor;
            font-size: 1rem;
        }
        .trust-divider {
            width: 1px;
            height: 1.5rem;
            background-color: rgba(235, 35, 95, 0.3); /* wheat-400/30 */
        }
        .trust-text {
            font-size: 0.9rem;
        }

        /* background floating blur patterns (wheat tones) */
        .bg-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.15;
            pointer-events: none;
        }
        .blob-1 {
            position: absolute;
            top: 25%;
            left: 25%;
            width: 16rem;
            height: 16rem;
            background: var(--wheat-300);
            border-radius: 50%;
            filter: blur(80px);
        }
        .blob-2 {
            position: absolute;
            bottom: 30%;
            right: 20%;
            width: 18rem;
            height: 18rem;
            background: var(--wheat-400);
            border-radius: 50%;
            filter: blur(90px);
        }

        /* responsive title */
        @media (min-width: 768px) {
            .hero-title {
                font-size: 4rem;
            }
        }
        @media (min-width: 1024px) {
            .hero-title {
                font-size: 4.5rem;
            }
        }




/* search css starts here */

 /* container style (matches original .bg-ss container) */
        .bg-ss {
            max-width: 560px;
            margin: 0 0 0 auto;
            
        }

        /* main card - white with wheat borders & soft shadow */
        .shadow-sm.bg-white.rounded {

            border-radius: 1rem !important;
            box-shadow: 0 8px 20px -6px rgba(235, 0, 70, 0.12) !important;
            background: #EB004644 !important;
            padding: 3rem !important;
            backdrop-filter: blur(10px);
        }

        /* radio buttons (trip type) */
        .trip-option .form-check-input {
            border-color: var(--wheat-400);
        }
        .trip-option .form-check-input:checked {
            background-color: var(--wheat-500);
            border-color: var(--wheat-600);
        }
        .trip-option .form-check-label small {
            color: var(--wheat-100) !important;
            font-weight: 500;
        }

        /* form labels */
        .search-label {
            color: var(--wheat-100);
            font-weight: 400;
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
            padding-left: 0.2rem;
        }

        /* input fields, selects */
        .pop-dd {
            border: 0px;
            border-radius: 0.75rem;
            background-color: #ffffff1c; /* white bg for inputs */;
            transition: all 0.2s;
            padding: 1rem;
            color: var(--wheat-50);
        }
        .pop-dd:focus {
            border-color: var(--wheat-400);
            box-shadow: 0 0 0 3px rgba(235, 35, 95, 0.2);
            outline: none;
        }
        .pop-dd::placeholder {
            color: var(--wheat-50);
            opacity: 0.7;
            
        }

        /* passenger input field (special) */
        .inp_fld_ps {
            
            cursor: pointer;
        }

        /* passenger popup box */
        #box_px {
            border: 1px solid var(--wheat-200);
            border-radius: 1rem;
            box-shadow: 0 15px 30px -12px rgba(156, 0, 47, 0.2) !important;
            z-index: 1050;
            width: 320px;
            background: white !important;
        }

        .number-spinner {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: var(--wheat-50) !important;
    padding: 0.2rem 0.3rem !important;
    border-radius: 40px !important;
    border: 1px solid var(--wheat-200) !important;
    justify-content: space-between;
}

.pop-dd option { color: var(--wheat-900); }

        /* passenger popup text */
        #box_px small {
            color: var(--wheat-800);
        }
        #box_px b {
            color: var(--wheat-900);
        }

        /* number spinner controls */
        .pm-clicks {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 999px;
            background: var(--wheat-100);
            color: var(--wheat-700);
            cursor: pointer;
            transition: all 0.15s;
        }
        .pm-clicks:hover {
            background: var(--wheat-300);
            color: var(--wheat-900);
        }
        .pm-clicks svg {
            stroke: currentColor;
        }

        .count.bt_new {
            width: 45px;
            border: none;
            font-weight: 600;
            background: transparent;
            color: var(--wheat-800);
        }

        /* done button inside passenger popup */
        .pax_btn {
            background: var(--wheat-500);
            border: none;
            color: white;
            font-weight: 600;
            padding: 0.5rem 1.8rem;
            border-radius: 2rem;
            transition: 0.2s;
        }
        .pax_btn:hover {
            background: var(--wheat-600);
            box-shadow: 0 4px 10px rgba(196, 0, 59, 0.3);
        }

        /* select arrow custom (maintain bootstrap) */
        .form-select.pop-dd {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23a55c18' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
        }

        /* search button (wheat gradient) */
        .done.w-100 {
            background: linear-gradient(135deg, var(--wheat-500), var(--wheat-700));
            border: none;
            color: white;
            font-weight: 700;
            padding: 1rem 1.5rem;
            border-radius: 0.75rem;
            transition: all 0.3s;
            box-shadow: 0 8px 16px -6px rgba(196, 0, 59, 0.3);
            border: 1px solid var(--wheat-400);
        }
        .done.w-100:hover {
            background: linear-gradient(135deg, var(--wheat-600), var(--wheat-800));
            transform: translateY(-2px);
            box-shadow: 0 15px 20px -8px rgba(156, 0, 47, 0.4);
        }

        /* small text dark fix */
        .text-dark {
            color: var(--wheat-900) !important;
        }

        /* border top inside popup */
        .border-top {
            border-color: var(--wheat-200) !important;
        }

        /* icon svg fill color (wheat) */
        .Icon__StyledIcon-sc-psgqgs-0 path {
            fill: var(--wheat-500);
        }
        .pess-pop svg path {
            fill: var(--wheat-500);
        }
        /* ensure all icons use wheat */
        .pess-pop svg {
            stroke: var(--wheat-500);
        }
        .pm-clicks svg {
            stroke: var(--wheat-700);
        }

        /* preserve layout spacing exactly */
        .pop-divs {
            position: relative;
        }
        .mob-ard {
            display: none; /* original had col col-1 mob-ard empty */
        }

        /* minor tweak to keep background consistent */
        .bg-ss {
            background: transparent; /* container background none (white page) */
        }
.form-control:disabled { background-color: #0000001c !important; color: var(--wheat-50) !important; cursor: not-allowed; }

/* search css ends here */


/* featured section starts here */
/* === container for cards (uses existing class) === */
      
        /* grid layout: 4 columns on large, responsive */
        .solarfeat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        /* individual card – clean, soft, elevated */
        .solarfeat-card {
            background: white;
            border-radius: 2rem;
            padding: 2rem 1.5rem;
            box-shadow: 0 12px 30px -8px rgba(235, 0, 70, 0.08);
            border: 1px solid var(--wheat-100);
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
            align-items: flex-start;   /* left aligned for clean look */
            text-align: left;
        }

        .solarfeat-card:hover {
            transform: translateY(-6px);
            border-color: var(--wheat-300);
            box-shadow: 0 24px 40px -12px rgba(196, 0, 59, 0.2);
        }

        /* icon container – clean circle with wheat background */
        .solarfeat-icon {
            width: 70px;
            height: 70px;
            background: var(--wheat-50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            border: 1px solid var(--wheat-200);
            transition: 0.2s;
        }

        .solarfeat-card:hover .solarfeat-icon {
            background: var(--wheat-100);
            border-color: var(--wheat-400);
        }

        /* icon images – sized appropriately */
        .solarfeat-icon img {
            width: 36px;
            height: 36px;
            object-fit: contain;
            filter: brightness(0) saturate(100%) invert(30%) sepia(52%) saturate(548%) hue-rotate(350deg) brightness(92%) contrast(92%);
            /* makes icon take wheat-700 tone (consistent with palette) */
        }

        /* headings */
        .solarfeat-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--wheat-800);
            margin-bottom: 0.75rem;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        /* description text */
        .solarfeat-card p {
            color: var(--wheat-700);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            opacity: 0.9;
            flex: 1;
        }

        /* "Learn More +" link style – clean & minimal */
        .solarfeat-more {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--wheat-600);
            letter-spacing: 0.3px;
            cursor: default;  /* as it's not a real link in mockup, but we keep style */
            transition: 0.2s;
            border-bottom: 2px solid transparent;
            padding-bottom: 2px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .solarfeat-card:hover .solarfeat-more {
            color: var(--wheat-800);
            border-bottom-color: var(--wheat-400);
        }

        /* Responsive: tablet -> 2 columns, mobile -> 1 column */
        @media (max-width: 992px) {
            .solarfeat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }
        @media (max-width: 576px) {
            .solarfeat-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .solarfeat-card {
                padding: 1.75rem;
            }
        }

        /* optional small polish: plus sign */
        .solarfeat-more::after {
            content: "＋";
            font-size: 1.2rem;
            line-height: 1;
            margin-left: 4px;
            font-weight: 400;
            transition: transform 0.15s;
        }
        .solarfeat-card:hover .solarfeat-more::after {
            transform: translateX(4px);
        }

        /* icon images alt fallback (if images fail) */
        .solarfeat-icon img {
            transition: 0.2s;
        }


/* featured section ends here */

/* call to action starts here */

/* CTA container – extends feature card style */
        .cta-section {
            
            margin: 3rem auto;
            background: white;
            border-radius: 3rem;
            padding: 3.5rem 2.5rem;
            border: 1px solid var(--wheat-200);
            box-shadow: 0 20px 40px -12px rgba(235, 0, 70, 0.12);
            transition: all 0.2s;
            position: relative;
            overflow: hidden;
        }

        /* subtle wheat gradient background (very light) */
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--wheat-50) 0%, white 60%);
            opacity: 0.7;
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        /* eyebrow / badge */
        .cta-badge {
            display: inline-block;
            background: var(--wheat-100);
            color: var(--wheat-700);
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            border: 1px solid var(--wheat-300);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        /* main heading */
        .cta-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--wheat-900);
            line-height: 1.2;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .cta-title span {
            color: var(--wheat-600);
        }

        /* description */
        .cta-description {
            font-size: 1.2rem;
            color: var(--wheat-700);
            max-width: 650px;
            margin: 0 auto 2.5rem auto;
            opacity: 0.9;
        }

        /* CTA button group */
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* primary button (wheat gradient, matches feature card "learn more" vibe but stronger) */
        .btn-cta-primary {
            background: linear-gradient(135deg, var(--wheat-500), var(--wheat-700));
            border: none;
            color: white;
            font-weight: 600;
            padding: 1rem 2.8rem;
            border-radius: 60px;
            font-size: 1.2rem;
            box-shadow: 0 10px 20px -8px rgba(196, 0, 59, 0.4);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border: 1px solid var(--wheat-400);
            text-decoration: none;
        }

        .btn-cta-primary:hover {
            background: linear-gradient(135deg, var(--wheat-600), var(--wheat-800));
            transform: translateY(-4px);
            box-shadow: 0 20px 30px -8px rgba(156, 0, 47, 0.5);
            color: white;
        }

        /* secondary button (outline, matches card border) */
        .btn-cta-secondary {
            background: transparent;
            border: 2px solid var(--wheat-400);
            color: var(--wheat-700);
            font-weight: 600;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            font-size: 1.2rem;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
        }

        .btn-cta-secondary:hover {
            background: var(--wheat-50);
            border-color: var(--wheat-600);
            color: var(--wheat-800);
            transform: translateY(-2px);
        }

        /* small trust / meta line */
        .cta-meta {
            margin-top: 2.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            color: var(--wheat-600);
            font-size: 0.95rem;
            flex-wrap: wrap;
        }

        .cta-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-meta-item i {
            font-size: 1.1rem;
            color: var(--wheat-500);
        }

        .separator-dot {
            width: 6px;
            height: 6px;
            background: var(--wheat-300);
            border-radius: 50%;
        }

        /* responsive adjustments */
        @media (max-width: 768px) {
            .cta-section {
                padding: 2.5rem 1.5rem;
            }
            .cta-title {
                font-size: 2.2rem;
            }
            .cta-description {
                font-size: 1.1rem;
            }
            .btn-cta-primary, .btn-cta-secondary {
                padding: 0.9rem 2rem;
                font-size: 1.1rem;
                width: 100%;
                justify-content: center;
            }
            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            .cta-meta {
                gap: 1rem;
                flex-direction: column;
            }
            .separator-dot {
                display: none;
            }
        }

        /* small icon styling */
        .btn-cta-primary i, .btn-cta-secondary i {
            font-size: 1.2rem;
        }

        /* optional plane icon in heading */
        .cta-title i {
            color: var(--wheat-400);
            font-size: 2.5rem;
            margin-right: 10px;
            vertical-align: middle;
        }

/* call to action ends here */


/* support starts here */

 /* main section – dark background */
        .cta-hero {
            background: var(--wheat-950); /* rich dark, slightly softer than pure black */
            padding: 3rem 2rem;
           
        }

        /* image card with play bubble (wheat accents) */
        .image-card {
            position: relative;
            border-radius: 2.5rem;
            overflow: hidden;
          
           
        }

        .image-card img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .image-card:hover img {
            transform: scale(1.03);
        }

        /* play button bubble (wheat) */
        .play-bubble {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 70px;
            height: 70px;
            background: var(--wheat-500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(235, 0, 70, 0.5);
            transition: all 0.25s;
            border: 2px solid var(--wheat-300);
        }

        .play-bubble:hover {
            background: var(--wheat-600);
            transform: scale(1.1) translateY(-3px);
            box-shadow: 0 18px 30px rgba(196, 0, 59, 0.7);
        }

        .play-bubble svg {
            width: 34px;
            height: 34px;
            fill: white;
            margin-left: 3px; /* fine-tune play icon */
        }

        /* eyebrow with dot (wheat) */
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--wheat-400);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            background: #ffffff10;
            padding:10px 30px 10px 10px;
            border-radius: 40px;
            
        }

        .dot {
            width: 12px;
            height: 12px;
            background: var(--wheat-500);
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 10px var(--wheat-400);
        }

        /* main heading – bright white + wheat accent */
        .hero-title {
            font-size: 2.6rem;
            font-weight: 700;
            line-height: 1.2;
            color: white;
         
        }

        .hero-title span {
            color: var(--wheat-600);
        }

        /* lead paragraph (light gray, readable) */
        .lead-para {
            color: #ddd;
            font-size: 1.15rem;
            line-height: 1.6;
        }

        /* call points list (wheat bullets) */
        .call-points {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .call-points li {
            color: #fff;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .call-points li::before {
            content: "⦿";
            color: var(--wheat-500);
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* feature line with wheat bar */
        .feature-line {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 2rem 0 1.5rem;
        }

        .bar {
            width: 70px;
            height: 4px;
            background: var(--wheat-500);
            border-radius: 4px;
            box-shadow: 0 0 12px var(--wheat-400);
        }

        .feature-line p {
            color: #ccc;
            margin: 0;
            font-style: italic;
        }

        /* contact row – phone bubble + number */
        .contact-row {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(6px);
            padding: 0.8rem 1.8rem 0.8rem 1.2rem;
            border-radius: 80px;
            
            width: fit-content;
        }

        .phone-bubble {
            width: 58px;
            height: 58px;
            background: var(--wheat-600);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 16px rgba(196, 0, 59, 0.4);
            border: 1px solid var(--wheat-400);
        }

        .phone-bubble svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .contact-row small {
            color: var(--wheat-400);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .num {
            font-size: 1.6rem;
            font-weight: 700;
            color: white;
            line-height: 1.2;
        }

        /* learn / contact button (wheat outline, bright) */
        .btn-learn {
            background: transparent;
            border: 2px solid var(--wheat-500);
            color: var(--wheat-300);
            font-weight: 600;
            padding: 0.9rem 2.5rem;
            border-radius: 60px;
            font-size: 1.2rem;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            backdrop-filter: blur(4px);
        }

        .btn-learn:hover {
            background: var(--wheat-500);
            color: #121212;
            border-color: var(--wheat-400);
            transform: translateY(-3px);
            box-shadow: 0 16px 30px -8px var(--wheat-700);
        }

        .btn-learn span {
            font-size: 1.4rem;
            transition: transform 0.2s;
            display: inline-block;
        }

        .btn-learn:hover span {
            transform: translateX(5px);
        }

        /* responsive fine-tune */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .contact-row {
                padding: 0.6rem 1.2rem;
            }
            .num {
                font-size: 1.3rem;
            }
            .phone-bubble {
                width: 48px;
                height: 48px;
            }
            .phone-bubble svg {
                width: 24px;
                height: 24px;
            }
            .play-bubble {
                width: 55px;
                height: 55px;
            }
            .play-bubble svg {
                width: 28px;
                height: 28px;
            }
        }

/* support ends here */


/* content section starts here */

 /* main container card – light, soft, with subtle wheat border */
        .sleek-section {
           
            margin: 0 auto;
            background: white;
            border-radius: 3.5rem;
          
            
        }

      

        /* section title – large, elegant */
        .section-title-nrm {
            font-size: 2.8rem;
            font-weight: 600;
            line-height: 1.2;
            color: var(--wheat-800);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .section-title-nrm span {
            color: var(--wheat-600);
            position: relative;
            display: inline-block;
        }

        .section-title-nrm span::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--wheat-200);
            z-index: -1;
            border-radius: 4px;
            opacity: 0.5;
        }

        /* lead paragraph */
        .lead-text {
            font-size: 1.25rem;
            color: var(--wheat-700);
            line-height: 1.6;
            margin-bottom: 2rem;
            font-weight: 400;
           
        }

        /* feature grid (4 items) – clean & modern */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.8rem;
            margin: 2rem 0 1.5rem;
        }

        .feature-item {
            background: var(--wheat-50);
            border-radius: 2rem;
            padding: 2rem 1.5rem;
            text-align: center;
            border: 1px solid var(--wheat-100);
            transition: all 0.25s;
        }

        .feature-item:hover {
            background: white;
            border-color: var(--wheat-400);
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -12px rgba(196, 0, 59, 0.15);
        }

        .feature-item i {
            font-size: 2.8rem;
            color: var(--wheat-600);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .feature-item h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--wheat-800);
            margin-bottom: 0.5rem;
        }

        .feature-item p {
            color: var(--wheat-700);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 0;
        }

        /* modifications row (pill style) */
        .modifications-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 1.5rem 0 1rem;
        }

        .mod-pill {
            background: var(--wheat-50);
            border: 1px solid var(--wheat-200);
            color: var(--wheat-800);
            font-weight: 500;
            padding: 0.6rem 1.5rem;
            border-radius: 60px;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1rem;
            transition: 0.15s;
        }

        .mod-pill i {
            color: var(--wheat-600);
            font-size: 1.2rem;
        }

        .mod-pill:hover {
            background: var(--wheat-100);
            border-color: var(--wheat-400);
            transform: scale(1.02);
        }

        /* benefits row */
        .benefits-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0 2.5rem;
        }

        .benefit-item {
            background: white;
            border: 1px solid var(--wheat-200);
            color: var(--wheat-800);
            font-weight: 500;
            padding: 0.5rem 1.5rem;
            border-radius: 60px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 8px -4px rgba(235, 0, 70, 0.1);
        }

        .benefit-item i {
            color: var(--wheat-500);
            font-size: 1.2rem;
        }

        /* CTA line (flex row) */
        .cta-line {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            background: var(--wheat-50);
            padding: 1.5rem 2rem;
            border-radius: 5rem;
            margin: 2.5rem 0 1.5rem;
            border: 1px solid var(--wheat-200);
        }

        .cta-text {
            color: var(--wheat-800);
            font-size: 1.1rem;
            font-weight: 450;
            max-width: 700px;
        }

        .cta-btn {
            background: var(--wheat-500);
            color: white;
            font-weight: 600;
            padding: 0.9rem 2.2rem;
            border-radius: 60px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: 0.25s;
            border: 1px solid var(--wheat-400);
            box-shadow: 0 10px 18px -8px rgba(196, 0, 59, 0.3);
        }

        .cta-btn:hover {
            background: var(--wheat-600);
            transform: translateY(-3px);
            box-shadow: 0 18px 25px -8px var(--wheat-700);
            color: white;
        }

        .cta-btn i {
            font-size: 1.4rem;
            transition: transform 0.2s;
        }

        .cta-btn:hover i {
            transform: translateX(4px);
        }

        /* responsive */
        @media (max-width: 992px) {
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .section-title-nrm {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .sleek-section {
                padding: 2rem 1.5rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .cta-line {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.2rem;
                border-radius: 2.5rem;
            }
            .modifications-row {
                gap: 0.6rem;
            }
            .benefits-row {
                gap: 0.6rem;
            }
        }

        /* additional styling for generic paragraphs (keep original classes) */
        p {
            color: var(--wheat-700);
            line-height: 1.6;
        }

        h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--wheat-800);
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

        /* small note */
        .italic-note {
            color: var(--wheat-700);
            font-style: italic;
            border-left: 4px solid var(--wheat-400);
            padding-left: 1.5rem;
            margin-top: 2rem;
        }

/* content section ends here */

/* footer starts here */


 /* footer wrapper – dark background, subtle border */
        .footer-wrapper {
          
            margin: 0 auto;
            background: #121212; /* rich dark base */
            box-shadow: 0 30px 50px -25px rgba(0, 0, 0, 0.8);
            border: 1px solid #2a2a2a;
            overflow: hidden;
        }

        .footer {
            background: #121212;
            color: #e0d6c0; /* warm light text */
            padding: 3.5rem 2rem 1.5rem;
        }

        /* logo area */
        .footer-logo img {
            max-width: 180px;
            height: auto;
            margin-bottom: 1.2rem;
            filter: brightness(1.2) sepia(0.2) hue-rotate(350deg); /* wheat tint for logo */
            opacity: 0.95;
        }

        .footer-desc {
            color: #fff; /* warm wheat-300-ish */
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* social links – dark mode */
        .social-links {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #1e1e1e;
            border-radius: 50%;
            color: var(--wheat-400);
            border: 1px solid #3a3a3a;
            transition: all 0.2s;
        }

        .social-links a:hover {
            background: var(--wheat-600);
            color: white;
            border-color: var(--wheat-400);
            transform: translateY(-3px);
        }

        .social-links a i {
            font-size: 1.2rem;
        }

        /* column titles */
        h5 {
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
            position: relative;
            display: inline-block;
        }

        h5::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--wheat-500);
            border-radius: 3px;
            box-shadow: 0 0 8px var(--wheat-400);    right: 0;
    margin: 0 auto;
        }

        /* footer links list */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links li a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #fff; /* warm light */
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.2s;
        }

        .footer-links li a i {
            font-size: 1rem;
            color: var(--wheat-500);
            transition: transform 0.2s;
        }

        .footer-links li a:hover {
            color: white;
        }

        .footer-links li a:hover i {
            transform: translateX(4px);
            color: var(--wheat-400);
        }

        /* contact items (reach us) – dark optimized */
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            flex-shrink: 0;
            width: 38px;
            height: 38px;
            background: #1e1e1e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--wheat-400);
            border: 1px solid #3a3a3a;
        }

        .contact-icon i {
            font-size: 1.2rem;
        }

        .contact-text {
            display: flex;
            flex-direction: column;
        }

        .contact-text strong {
            color: white;
            font-size: 1rem;
            line-height: 1.4;
        }

        .contact-text small {
            color: var(--wheat-400);
            font-size: 0.8rem;
        }

        /* disclaimer section – dark card with wheat border */
        .disclaimer {
            background: #1a1a1a;
            border-radius: 2rem;
            padding: 2rem 2rem;
            margin: 3rem 0 2rem;
            border: 1px solid #3a3a3a;
            box-shadow: inset 0 1px 3px rgba(255,255,255,0.03);
        }

        .disclaimer h6 {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
            font-weight: 700;
            color: var(--wheat-300);
            margin-bottom: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .disclaimer h6 i {
            color: var(--wheat-500);
            font-size: 1.2rem;
        }

        .disclaimer p {
            color: #b8aa8f; /* soft warm */
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .disclaimer p:last-child {
            margin-bottom: 0;
        }

        /* copyright bar */
        .copyright {
            border-top: 1px solid #2a2a2a;
            padding-top: 1.5rem;
            margin-top: 1rem;
            text-align: center;
        }

        .copyright p {
            color: #a09178;
            font-size: 0.9rem;
        }

        .copyright a {
            color: var(--wheat-400);
            text-decoration: none;
            border-bottom: 1px dotted #5a5a5a;
            transition: 0.15s;
        }

        .copyright a:hover {
            color: var(--wheat-300);
            border-bottom-color: var(--wheat-400);
        }

        /* responsiveness */
        @media (max-width: 768px) {
            .footer {
                padding: 2rem 1.5rem 1rem;
            }
            h5::after {
                width: 30px;
            }
        }

/* footer ends here */

/* about us css starts here */

/* ----- about hero - dark gradient, clean, modern ----- */
        .about-hero {
            background: radial-gradient(ellipse at 30% 40%, #2b1d0c 0%, #0f0a04 100%);
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
            color: #fff;
            border-bottom: 1px solid rgba(235, 35, 95, 0.15);
        }

        /* soft glowing wheat blobs (more subtle) */
        .about-hero::before {
            content: '';
            position: absolute;
            width: 35rem;
            height: 35rem;
            background: var(--wheat-700);
            opacity: 0.08;
            border-radius: 50%;
            filter: blur(120px);
            top: -10rem;
            right: -5rem;
            z-index: 0;
            pointer-events: none;
        }
        .about-hero::after {
            content: '';
            position: absolute;
            width: 28rem;
            height: 28rem;
            background: var(--wheat-500);
            opacity: 0.06;
            border-radius: 50%;
            filter: blur(110px);
            bottom: -8rem;
            left: 5%;
            z-index: 0;
        }

        /* badge - glassmorphism on dark */
        .about-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 245, 210, 0.06);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(235, 35, 95, 0.25);
            border-radius: 60px;
            padding: 0.6rem 1.6rem 0.6rem 1.4rem;
            font-size: 1rem;
            font-weight: 500;
            color: var(--wheat-300);
            margin-bottom: 2rem;
            letter-spacing: 0.3px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .about-badge i {
            color: var(--wheat-400);
            font-size: 1.1rem;
        }

        /* main heading - clean white + wheat accent */
        .about-title {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .about-title span {
            color: var(--wheat-400); /* subtle gold */
        }
        @media (min-width: 768px) {
            .about-title { font-size: 2.5rem; }
        }

        /* lead paragraph - soft off-white */
        .about-lead {
            font-size: 1rem;
            color: rgba(255, 245, 230, 0.85);
            margin-bottom: 2.8rem;
            line-height: 1.7;
            max-width: 90%;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }

        /* stats grid - clean and minimal */
        .about-stats-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2.8rem 4rem;
            margin-top: 1.2rem;
        }
        .about-stat-item {
            text-align: left;
        }
        .about-stat-item h3 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1;
            margin-bottom: 0.2rem;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 4px rgba(0,0,0,0.4);
        }
        .about-stat-item p {
            font-size: 1rem;
            color: var(--wheat-300);
            font-weight: 400;
            margin: 0;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            opacity: 0.9;
        }

        /* image styling - clean wheat border + glow */
        .about-image {
            border-radius: 2.5rem !important;
            box-shadow: 0 30px 40px -15px rgba(0,0,0,0.7),
                        0 0 0 1px rgba(235, 35, 95, 0.3) inset,
                        0 0 30px rgba(235, 35, 95, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s;
        }
        .about-image:hover {
            transform: scale(1.01);
            box-shadow: 0 35px 50px -18px #000000, 0 0 0 1px var(--wheat-400) inset;
        }

        /* fallback image (onerror) - dark mode friendly */
        .about-image-fallback {
            background: linear-gradient(145deg, #362812, #1f1507);
            width: 100%;
            aspect-ratio: 1/0.9;
            border-radius: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--wheat-300);
            font-size: 1.8rem;
            text-align: center;
            border: 1px dashed var(--wheat-700);
            box-shadow: 0 20px 30px -10px black;
        }

        /* responsive */
        @media (max-width: 992px) {
            .about-title { font-size: 3rem; }
            .about-lead { max-width: 100%; }
            .about-stats-grid { gap: 2rem; }
        }
        @media (max-width: 576px) {
            .about-stats-grid { gap: 1.5rem; }
            .about-stat-item h3 { font-size: 2rem; }
        }

        /* container z-index already inline, keep */
        .about-hero .container {
            position: relative;
            z-index: 5;
        }





 /* --- redesigned "who we are" section (light background, semantic classes) --- */
        .who-section {
            background: #ffffff;  /* crisp white base */
            padding: 5rem 0;
            position: relative;
            border-bottom: 1px solid var(--wheat-200);
        }

        /* soft top accent (very light wheat) */
        .who-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--wheat-300), var(--wheat-500), var(--wheat-300));
            opacity: 0.4;
        }

        /* left side title */
        .who-title {
            font-size: 2.1rem;
            font-weight: 700;
            color: var(--wheat-900);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }
        .who-title span {
            color: var(--wheat-700);
            display: block;
            font-size: 2rem;
            font-weight: 400;
            margin-top: 0.3rem;font-family: "Bricolage Grotesque", sans-serif!important;
        }

        .who-description {
            font-size: 1rem;
            color: #4a3e2e;  /* dark brown but soft */
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 95%;
        }

        /* badge pills (light wheat background) */
        .who-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.9rem;
            margin: 2rem 0 1rem;
        }
        .who-pill {
            background: var(--wheat-100);
            border: 1px solid var(--wheat-300);
            color: var(--wheat-800);
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-weight: 500;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            transition: all 0.2s;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
        }
        .who-pill i {
            color: var(--wheat-600);
            margin-right: 0.6rem;
            font-size: 1.1rem;
        }
        .who-pill:hover {
            background: var(--wheat-200);
            border-color: var(--wheat-400);
            transform: translateY(-2px);
            box-shadow: 0 8px 14px -8px rgba(184,125,23,0.25);
        }

        /* right side feature cards (light, airy) */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.8rem;
        }

        .feature-card {
            background: #fefcf7;
            border: 1px solid var(--wheat-200);
            border-radius: 2rem;
            padding: 1.8rem 1rem 1.5rem;
            text-align: center;
            transition: 0.2s ease;
            box-shadow: 0 5px 20px -8px rgba(90, 60, 20, 0.08);
        }
        .feature-card:hover {
            border-color: var(--wheat-400);
            background: #ffffff;
            box-shadow: 0 20px 30px -12px rgba(218, 165, 50, 0.12);
            transform: scale(1.01);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--wheat-100);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            border: 1px solid var(--wheat-300);
            color: var(--wheat-700);
            font-size: 1.8rem;
            transition: 0.2s;
        }
        .feature-card:hover .feature-icon {
            background: var(--wheat-200);
            color: var(--wheat-800);
            border-color: var(--wheat-500);
        }

        .feature-card h5 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--wheat-900);
            margin-bottom: 0.4rem;
        }
        .feature-card p {
            font-size: 0.9rem;
            color: #6b5a44;
            margin-bottom: 0;
            padding: 0 0.2rem;
        }

        /* responsive */
        @media (max-width: 768px) {
            .who-title { font-size: 2.4rem; }
            .who-description { font-size: 1.1rem; }
            .feature-grid { gap: 1rem; }
            .feature-card { padding: 1.5rem 0.8rem; }
        }
        @media (max-width: 576px) {
            .feature-grid { grid-template-columns: 1fr; }
        }

        /* small utility to keep original badge style? but we use who-pill */





        .why-section {
            background: #ffffff;
            padding: 5rem 0 4rem;
            position: relative;
            border-bottom: 1px solid var(--wheat-200);
        }

        /* subtle top border accent */
        .why-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 10%;
            width: 80%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--wheat-400), transparent);
            opacity: 0.4;
        }

        /* section header */
        .why-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 2rem;
        }
        .why-title {
            font-size: 2.1rem;
            font-weight: 700;
            color: var(--wheat-900);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }
        .why-title:after, .why-title:before {
            content: '';
            height: 2px;
            width: 60px;
            background: var(--wheat-400);
            opacity: 0.4;
            display: inline-block;
        }
        .why-subtitle {
            font-size: 1rem;
            color: #5a4c38;
            line-height: 1.7;
            margin: 0 auto;
        }

        /* feature list items (left & right col) */
        .why-feature-list {
            display: flex;
            flex-direction: column;
            gap: 2.2rem;
        }
        .why-feature-item {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            padding: 0.5rem 1rem 0.5rem 0.5rem;
            border-radius: 1.5rem;
            transition: background 0.2s;
        }
        .why-feature-item:hover {
            background: rgba(235, 35, 95, 0.04);
        }
        .feature-icon-wrapper {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            background: var(--wheat-100);
            border-radius: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--wheat-700);
            border: 1px solid var(--wheat-300);
            font-size: 1.8rem;
            transition: 0.2s;
        }
        .why-feature-item:hover .feature-icon-wrapper {
            background: var(--wheat-200);
            color: var(--wheat-800);
            border-color: var(--wheat-500);
        }
        .feature-content h5 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--wheat-800);
            margin-bottom: 0.3rem;
        }
        .feature-content p {
            color: #5f5340;
            line-height: 1.6;
            margin-bottom: 0;
            max-width: 320px;
        }

        /* stats grid (clean and centered) */
        .why-stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3.5rem 5rem;
            margin: 3.5rem 0 2.5rem;
            padding: 1.5rem 0;
            border-top: 1px solid var(--wheat-200);
            border-bottom: 1px solid var(--wheat-200);
        }
        .why-stat-block {
            text-align: center;
            min-width: 110px;
        }
        .why-stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--wheat-800);
            line-height: 1;
            letter-spacing: -0.02em;
            margin-bottom: 0.2rem;
        }
        .why-stat-label {
            font-size: 1rem;
            color: #7a684b;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        /* bottom description */
        .why-footer-text {
            text-align: center;
            max-width: 950px;
            margin: 2rem auto 0;
            font-size: 1.2rem;
            color: #4f4435;
            line-height: 1.7;
            background: var(--wheat-50);
            padding: 2rem 2.5rem;
            border-radius: 3rem;
            border: 1px solid var(--wheat-200);
        }

        /* lucide icon fallback via Font Awesome (optional) */
        .lucide { font-style: normal; }
        .lucide-briefcase-business:before { content: "\f0b1"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
        .lucide-thumbs-up:before { content: "\f164"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
        .lucide-badge-dollar-sign:before { content: "\f155"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
        .lucide-smile:before { content: "\f118"; font-family: "Font Awesome 6 Free"; font-weight: 900; }

        /* responsive */
        @media (max-width: 768px) {
            .why-title { font-size: 2.4rem; }
            .why-title:before, .why-title:after { width: 30px; }
            .why-stats-grid { gap: 2rem; }
            .why-stat-number { font-size: 2.2rem; }
            .why-footer-text { padding: 1.5rem; }
        }
        @media (max-width: 576px) {
            .why-feature-item { flex-direction: column; align-items: center; text-align: center; gap: 0.8rem; }
            .feature-content p { max-width: 100%; }
            .why-stats-grid { gap: 1.8rem; }
        }





         /* ----- redesigned "greatest + mission" section (light background, .great-* classes) ----- */
        .great-section {
            background: #ffffff;
            padding: 5rem 0;
            position: relative;
            border-bottom: 1px solid var(--wheat-200);
        }

        /* subtle decorative element */
        .great-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 15%;
            width: 70%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--wheat-400), transparent);
            opacity: 0.3;
        }

        /* left column */
        .great-content {
            padding-right: 1.5rem;
        }

        .great-title {
            font-size: 2.1rem;
            font-weight: 700;
            color: var(--wheat-900);
            line-height: 1.2;
            margin-bottom: 1.8rem;
            letter-spacing: -0.02em;
        }

        .great-text {
            font-size: 1rem;
            color: #4f4435;
            line-height: 1.7;
            margin-bottom: 1.8rem;
        }

        /* mission box (right side) */
        .great-mission-box {
            background: var(--wheat-50);
            border: 1px solid var(--wheat-300);
            border-radius: 3rem;
            padding: 3rem 2.5rem;
            box-shadow: 0 20px 35px -12px rgba(162, 119, 44, 0.12);
            transition: transform 0.3s ease, box-shadow 0.3s;
            text-align: center;
        }
        .great-mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 45px -15px rgba(184, 125, 23, 0.2);
            border-color: var(--wheat-400);
        }

        .mission-icon {
            color: var(--wheat-700);
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .great-mission-box h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--wheat-800);
            margin-bottom: 1.2rem;
            letter-spacing: -0.02em;
        }

        .great-mission-box p {
            font-size: 1rem;
            color: #5f5340;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* responsive */
        @media (max-width: 768px) {
            .great-title { font-size: 2.4rem; }
            .great-mission-box { padding: 2.5rem 1.8rem; }
            .great-mission-box h2 { font-size: 2.2rem; }
        }
        @media (max-width: 576px) {
            .great-content { padding-right: 0; }
        }

        /* small extra */
        .great-footer-note {
            background: #f5efe2;
            text-align: center;
            padding: 0.5rem;
            font-size: 0.9rem;
            color: #9b6214;
        }
/* about us css ends here */

/* contact us css ends here */

/* --- contact section (bootstrap + wheat) --- */
        .contact-section {
            background: #ffffff;
            padding: 8rem 0;
        }

        /* badge */
        .contact-badge {
            display: inline-block;
            background: var(--wheat-100);
            color: var(--wheat-700);
            border: 1px solid var(--wheat-300);
            padding: 0.4rem 1.2rem;
            border-radius: 60px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            margin-bottom: 1.5rem;
        }

        /* headings */
        .contact-title {
            color: var(--wheat-900);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        @media (min-width: 768px) {
            .contact-title { font-size: 2.8rem; }
        }

        .contact-subtitle {
            color: #5f5340;
            font-size: 1.2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* cards */
        .contact-card {
            background: #ffffff;
            border: 1px solid var(--wheat-200);
            border-radius: 2rem !important;
            padding: 2.5rem 1.8rem;
            text-align: center;
            transition: all 0.25s ease;
            box-shadow: 0 10px 25px -8px rgba(162, 119, 44, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .contact-card:hover {
            border-color: var(--wheat-400);
            box-shadow: 0 20px 30px -12px rgba(184, 125, 23, 0.2);
            transform: translateY(-6px);
        }

        /* icon circle */
        .contact-icon-circle {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--wheat-400), var(--wheat-600));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 16px -6px rgba(184, 125, 23, 0.3);
        }
        .contact-icon-circle svg {
            width: 36px;
            height: 36px;
            stroke: white;
            fill: none;
            stroke-width: 1.8;
        }

        /* card title */
        .contact-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--wheat-800);
            margin-bottom: 1rem;
        }

        /* card description */
        .contact-card p {
            color: #6b5a44;
            line-height: 1.7;
            margin-bottom: 1.8rem;
            flex-grow: 1;
        }

        /* contact link (phone/email) */
        .contact-link {
            color: var(--wheat-700);
            font-weight: 600;
            font-size: 1.3rem;
            text-decoration: none;
            transition: color 0.2s;
            display: block;
        }
        .contact-link:hover {
            color: var(--wheat-800);
            text-decoration: underline;
            text-decoration-color: var(--wheat-400);
            text-underline-offset: 4px;
        }

        .contact-label-small {
            font-size: 0.85rem;
            color: #8f7f66;
            margin-top: 0.25rem;
        }

        /* address text */
        .contact-address {
            color: var(--wheat-700);
            font-weight: 500;
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 240px;
            margin-left: auto;
            margin-right: auto;
        }

        /* responsive spacing */
        @media (max-width: 768px) {
            .contact-card { padding: 2rem 1.2rem; }
            .contact-title { font-size: 2.2rem; }
        }

/* contact us css ends here */
/* terms css starts here */

 /* --- terms card (wheat palette, modern) --- */
        .terms-wrapper {
            padding: 5rem 0;
        }

        .terms-card {
            background: #ffffff;
            border-radius: 3rem;
            border: 1px solid var(--wheat-200);
            box-shadow: 0 30px 50px -25px rgba(124, 82, 26, 0.15);
            padding: 3rem 2.5rem;
            transition: box-shadow 0.2s;
            max-width: 1000px;
            margin: 0 auto;
        }
        .terms-card:hover {
            box-shadow: 0 35px 60px -25px rgba(184, 125, 23, 0.25);
        }

        /* header icon + title */
        .terms-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2.5rem;
            border-bottom: 2px solid var(--wheat-200);
            padding-bottom: 1.5rem;
        }
        .terms-header i {
            font-size: 2.8rem;
            color: var(--wheat-600);
        }
        .terms-header h1 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--wheat-900);
            margin: 0;
            letter-spacing: -0.02em;
        }

        /* intro paragraph */
        .terms-intro {
            background: var(--wheat-50);
            border-left: 5px solid var(--wheat-400);
            padding: 1.5rem 2rem;
            border-radius: 2rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
            color: #4f4435;
            border: 1px solid var(--wheat-200);
        }
        .terms-intro i {
            font-size: 2rem;
            color: var(--wheat-600);
            flex-shrink: 0;
        }

        /* section blocks */
        .terms-section {
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--wheat-200);
        }
        .terms-section:last-of-type {
            border-bottom: none;
        }

        .section-title {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--wheat-800);
            margin-bottom: 1.2rem;
        }
        .section-title i {
            font-size: 1.8rem;
            color: var(--wheat-500);
        }

        .terms-section p {
            color: #5f5340;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .terms-section ul {
            padding-left: 2rem;
            margin-bottom: 1rem;
            color: #5f5340;
        }
        .terms-section li {
            margin-bottom: 0.3rem;
        }

        /* contact block inside section 18 */
        .contact-block {
            background: var(--wheat-50);
            border-radius: 1.5rem;
            padding: 1.2rem 1.8rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border: 1px solid var(--wheat-300);
            margin: 1.5rem 0 0.5rem;
        }
        .contact-block i {
            font-size: 2rem;
            color: var(--wheat-600);
        }
        .contact-block a {
            color: var(--wheat-700);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: 0.2s;
        }
        .contact-block a:hover {
            color: var(--wheat-800);
            border-bottom-color: var(--wheat-400);
        }

        /* divider (hr) */
        .terms-divider {
            margin: 2.5rem 0 1.8rem;
            border: 0;
            border-top: 2px solid var(--wheat-200);
            opacity: 0.8;
        }

        /* acceptance note */
        .terms-acceptance {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            background: var(--wheat-100);
            border-radius: 3rem;
            padding: 1.2rem 2rem;
            border: 1px solid var(--wheat-300);
            color: var(--wheat-800);
            font-weight: 500;
        }
        .terms-acceptance i {
            font-size: 2.2rem;
            color: var(--wheat-600);
        }

        /* footer last updated */
        .terms-footer-note {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
            color: #a58f72;
            font-size: 0.9rem;
        }
        .terms-footer-note i {
            color: var(--wheat-500);
        }

        /* responsive */
        @media (max-width: 768px) {
            .terms-card { padding: 2rem 1.5rem; }
            .terms-header h1 { font-size: 1.8rem; }
            .section-title { font-size: 1.25rem; }
        }
/* terms css ends here */

/* privacy css starts here */
/* --- privacy card (same as terms-card) --- */
        .privacy-wrapper {
            padding: 5rem 0;
        }

        .privacy-card {
            background: #ffffff;
            border-radius: 3rem;
            border: 1px solid var(--wheat-200);
            box-shadow: 0 30px 50px -25px rgba(124, 82, 26, 0.15);
            padding: 3rem 2.5rem;
            transition: box-shadow 0.2s;
            max-width: 1000px;
            margin: 0 auto;
        }
        .privacy-card:hover {
            box-shadow: 0 35px 60px -25px rgba(184, 125, 23, 0.25);
        }

        /* header */
        .privacy-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2.5rem;
            border-bottom: 2px solid var(--wheat-200);
            padding-bottom: 1.5rem;
        }
        .privacy-header i {
            font-size: 2.8rem;
            color: var(--wheat-600);
        }
        .privacy-header h1 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--wheat-900);
            margin: 0;
            letter-spacing: -0.02em;
        }

        /* intro */
        .privacy-intro {
            background: var(--wheat-50);
            border-left: 5px solid var(--wheat-400);
            padding: 1.5rem 2rem;
            border-radius: 2rem;
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
            color: #4f4435;
            border: 1px solid var(--wheat-200);
        }

        /* sections */
        .privacy-section {
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--wheat-200);
        }
        .privacy-section:last-of-type {
            border-bottom: none;
        }

        .section-title {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--wheat-800);
            margin-bottom: 1.2rem;
        }
        .section-title i {
            font-size: 1.8rem;
            color: var(--wheat-500);
        }

        .privacy-section p {
            color: #5f5340;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .privacy-section ul {
            padding-left: 2rem;
            margin-bottom: 1rem;
            color: #5f5340;
        }
        .privacy-section li {
            margin-bottom: 0.3rem;
        }

        /* contact block */
        .contact-block {
            background: var(--wheat-50);
            border-radius: 1.5rem;
            padding: 1.2rem 1.8rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border: 1px solid var(--wheat-300);
            margin: 1.5rem 0 0.5rem;
        }
        .contact-block i {
            font-size: 2rem;
            color: var(--wheat-600);
        }
        .contact-block a {
            color: var(--wheat-700);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: 0.2s;
        }
        .contact-block a:hover {
            color: var(--wheat-800);
            border-bottom-color: var(--wheat-400);
        }

        /* divider */
        .privacy-divider {
            margin: 2.5rem 0 1.8rem;
            border: 0;
            border-top: 2px solid var(--wheat-200);
            opacity: 0.8;
        }

        /* acceptance note */
        .privacy-acceptance {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            background: var(--wheat-100);
            border-radius: 3rem;
            padding: 1.2rem 2rem;
            border: 1px solid var(--wheat-300);
            color: var(--wheat-800);
            font-weight: 500;
        }
        .privacy-acceptance i {
            font-size: 2.2rem;
            color: var(--wheat-600);
        }

        /* footer note */
        .privacy-footer-note {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
            color: #a58f72;
            font-size: 0.9rem;
        }
        .privacy-footer-note i {
            color: var(--wheat-500);
        }

        @media (max-width: 768px) {
            .privacy-card { padding: 2rem 1.5rem; }
            .privacy-header h1 { font-size: 1.8rem; }
            .section-title { font-size: 1.25rem; }
        }
/* privacy css ends here */