/* --- Variables & Global --- */
:root {
    --primary-red: #d12c2c;
    --text-dark: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.15); 
    --glass-border: rgba(255, 255, 255, 0.3);
    --accent-blue: #0066cc;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

html { scroll-behavior: smooth; }

body { 
    background: #f0f2f5; 
    color: var(--text-dark); 
    overflow-x: hidden; 
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- 1 & 5. Header & Glass Effect --- */
/* --- BIZNESS SPACES: HEADER CSS --- */


.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* State when user scrolls */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.navbar .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. Logo - Original Design */
.logo { 
    font-size: 22px; 
    font-weight: 800; 
    letter-spacing: -1px; 
    text-decoration: none; 
    color: #000000; 
}
.logo span { color: #777777; font-weight: 400; }

/* 3. Navigation Menu */
.nav-menu { 
    display: flex; 
    list-style: none; 
    gap: 22px; 
    align-items: center;
}

.nav-menu a { 
    text-decoration: none; 
    color: #1a1a1a; 
    font-weight: 600; 
    font-size: 14px; 
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

/* Underline Animation (Only for text links) */
.nav-menu li:not(.mobile-only) a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #d12c2c;
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-menu li:not(.mobile-only) a:hover::after { width: 100%; }

/* 4. Enhanced Enquire Button */
.btn-enquire, .mobile-btn-enquire { 
    background: #000000; 
    color: #ffffff !important; 
    padding: 12px 28px; 
    text-decoration: none; 
    border-radius: 8px; 
    font-weight: 700; 
    font-size: 14px;
    display: inline-block;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Button Hover State */
.btn-enquire:hover, .mobile-btn-enquire:hover { 
    background: #111111;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Premium Shimmer Effect */
.btn-enquire::before, .mobile-btn-enquire::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}
.btn-enquire:hover::before, .mobile-btn-enquire:hover::before {
    left: 100%;
}

/* 5. Utility */
.nav-btns { display: flex; align-items: center; }
.phone-link { 
    color: #0066cc; 
    text-decoration: none; 
    font-weight: 600; 
    margin-right: 20px; 
    font-size: 14px; 
}

/* 6. Hamburger Menu */
.hamburger { 
    display: none; 
    cursor: pointer; 
    flex-direction: column; 
    gap: 6px; 
    z-index: 1001; 
}
.hamburger span { 
    width: 28px; height: 3px; 
    background: #000000; 
    transition: 0.3s; 
    border-radius: 2px; 
}

/* 7. Mobile View Fixes */
@media (max-width: 1200px) {
    .hamburger { display: flex; }
    
    /* Remove Enquire/Phone from top bar on Mobile */
    .nav-btns .btn-enquire, 
    .nav-btns .phone-link { 
        display: none !important; 
    }

    /* Mobile Side Menu */
    .nav-menu {
        position: fixed;
        top: 0; left: -100%;
        flex-direction: column;
        background: #ffffff; 
        width: 85%; height: 100vh;
        padding: 100px 40px;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: 20px 0 50px rgba(0,0,0,0.1);
    }

    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 15px 0; width: 100%; }
    .nav-menu a { font-size: 18px; color: #000000; }

    /* Enquire Button inside Mobile Side-Menu only */
    .mobile-only { display: block; width: 100%; margin-top: 20px; }
    .nav-menu .mobile-btn-enquire {
        display: block;
        width: 100%;
        text-align: center;
        padding: 18px;
        font-size: 16px;
        border-radius: 12px;
    }
}




/* Hide mobile-drawer list items on Desktop */
@media (min-width: 1201px) {
    .mobile-only { display: none !important; }
}

/* Hamburger Base Spans */
.hamburger span {
    transition: all 0.3s ease;
    display: block;
}

/* The "X" Animation when .is-open is added */
.hamburger.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}





@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700;800&display=swap');

/* ===============================
   GLOBAL RESET
================================ */
.hero-banner * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ===============================
   HERO SECTION LAYOUT
================================ */
.hero-banner {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 50%), 
                url('Assets/pc.webp'); 
    background-size: cover;
    background-position: center;
    padding: 60px 5%;
    overflow-x: hidden;
}

.hero-banner-wrapper {      
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    /* Responsive Grid: Text takes more space on PC */
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 50px;
    z-index: 1;
}

/* ===============================
   LEFT CONTENT (RESPONSIVE TYPOGRAPHY)
================================ */
.hero-banner-content {
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-banner-eyebrow {
    display: inline-block;
    font-size: clamp(11px, 1.5vw, 13px);
    font-weight: 1000;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: clamp(20px, 4vh, 30px);
    text-transform: uppercase;
    opacity: 2.95;
}

.hero-banner-title {
    /* clamp(min, preferred, max) - scales with screen width */
    font-size: clamp(34px, 5vw, 66px);
    font-weight: 1800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

.hero-banner-description {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    font-weight: 500;
}

/* ===============================
   ULTRA-TRANSPARENT FORM CARD
================================ */
.hero-banner-glass-card {
    background: rgba(255, 255, 255, 0.65); 
    backdrop-filter: blur(5px); 
    -webkit-backdrop-filter: blur(4px);
    border-radius:18px;
    padding: 35px;
    box-shadow: 0 30px 60px rgba(160, 56, 56, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    max-width: 410px; 
    width: 100%;
    margin-left: auto;
}

.hero-banner-form-header {
    margin-bottom: 20px;
    text-align: center;
}

.hero-banner-form-header h3 {
    color: #1e2a4a;
    font-size: 22px;
    font-weight: 800;
}

.hero-banner-form-header p {
    color: #414141;
    font-size: 13px;
    margin-top: 4px;
}

/* INPUTS */
.hero-banner-glass-card input,
.hero-banner-glass-card select,
.hero-banner-glass-card textarea {
    width: 100%;
    background: rgba(248, 250, 252, 0.6); 
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 11px;
    padding: 12px 15px;
    margin-bottom: 12px;
    color: #1e293b;
    font-size: 14px;
    outline: none;
}

.hero-banner-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}




/* BUTTONS & STATES */
.hero-banner-btn-consultation {
    width: 100%;
    height: 52px;
    background: #d12c2c;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}


/* 1. Ensure the select stays within the parent width */
#state {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

/* 2. Style the dropdown options (Limited support in some browsers) */
#state option {
    background-color: white; /* Keeps the list clean against the glass card */
    color: #333;
    padding: 10px;
}

/* 3. The most important part for your Glass Card */
.hero-banner-glass-card {
    position: relative;
    overflow: visible !important; /* Ensures the dropdown doesn't get cut off if it's long */
}
.btn-success { background: #10b981 !important; pointer-events: none; }

/* LOADING ANIMATION */
.dots-loader { display: flex; gap: 4px; justify-content: center; }
.dots-loader div { width: 6px; height: 6px; background: white; border-radius: 50%; animation: dots 0.6s infinite alternate; }
.dots-loader div:nth-child(2) { animation-delay: 0.2s; }
.dots-loader div:nth-child(3) { animation-delay: 0.4s; }

@keyframes dots { 
    from { opacity: 1; transform: scale(1); } 
    to { opacity: 0.3; transform: scale(0.8); } 
}

/* ===============================
   MOBILE ADAPTATION (CONTENT FIXES)
================================ */
/* --- TABLET (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .hero-banner {
        /* Fix: Integrated cover and no-repeat for proper scaling */
        background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%), 
                    url('Assets/phone.webp') no-repeat center center / cover;
        text-align: center;
        padding: 80px 20px;
    }

    .hero-banner-wrapper { 
        display: grid;
        grid-template-columns: 1fr; /* Stack content vertically */
        gap: 40px; 
    }

    .hero-banner-content {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center text and buttons */
    }

    .hero-banner-description {
        margin: 0 auto 20px auto;
        max-width: 80%;
    }

    .hero-banner-glass-card { 
        margin: 0 auto; 
        background: rgba(255, 255, 255, 0.7); 
        width: 100%;
        max-width: 550px;
    }
}

/* --- MOBILE (max-width: 480px) --- */
@media (max-width: 480px) {
    .hero-banner {
        background-position: 70% center; /* Adjusts focal point for portrait screens */
        padding-top: 60px;
    }

    .hero-banner-title { 
        line-height: 1.2; 
        font-size: 1.75rem; /* Standard mobile header size */
    }

    .hero-banner-glass-card {
        /* Fix: Corrected 'px 20px' to valid '20px' */
        padding: 30px;
        max-width: 100%;
    }

    .hero-banner-input-row { 
        display: grid;
        grid-template-columns: 1fr; 
        gap: 12px; /* Adds space between stacked inputs and buttons */
    }
}

.hero-banner-input-row { 
        display: grid;
        grid-template-columns: 1fr; 
        gap: 0; /* Remove the grid gap because inputs already have margin-bottom */
    }

    /* This ensures the spacing between 'Full Name' and 'Phone No' 
       matches the spacing of all other inputs exactly */
    .hero-banner-input-row input {
        margin-bottom: 12px; 
    }
/* --- ANIMATIONS --- */
@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}
@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(5px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.hero-banner-btn-consultation {
    width: 100%;
    height: 52px;
    background: #d12c2c;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 10px;

    transition: background 0.3s ease, 
                transform 0.3s ease, 
                box-shadow 0.3s ease;
}

/* HOVER EFFECT */
.hero-banner-btn-consultation:hover {
    background: #b91c1c;                 /* darker red */
    transform: translateY(-2px);         /* slight lift */
    box-shadow: 0 10px 25px rgba(209, 44, 44, 0.35);
}

/* CLICK EFFECT */
.hero-banner-btn-consultation:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(209, 44, 44, 0.25);
}


@media (max-width: 480px) {
    .hero-banner {
        backdrop-filter: none; /* better performance on low-end phones */
    }
}

@media (max-width: 480px) {
    .hero-banner {
        backdrop-filter: none; /* better performance on low-end phones */
    }
}


/* --- Solutions Grid --- */

/* ===== Solutions Section ===== */

.solutions {
    padding: 70px 0;
    background: transparent;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 20px;
}

.section-head h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-head p {
    max-width: 680px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
}

/* Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* Card */
.glass-card1 {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Image */
.img-container img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 1;
    gap: 20px; /* adds uniform spacing between all children */
}

   


.card-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Button */
/* --- Premium Glassy Explore Button --- */
.btn-explore {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: auto ;                /* push to bottom */
    padding: 12px 28px;
    background: var(--text-dark);    /* dark base */
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;             /* soft rounded corners */
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Glassy + Subtle Glow */
.btn-explore:hover {
    transform: translateY(-4px) scale(1.03);
    background: var(--primary-red);    /* theme highlight */
    box-shadow: 0 10px 25px rgba(209,44,44,0.35);
    color: #fff;
}

/* Optional: subtle shine sliding effect */
.btn-explore::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.08);
    transform: rotate(45deg) translateX(-100%);
    transition: all 0.6s ease;
}

.btn-explore:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;    /* button centered */
    flex-grow: 1;
}

.card-content h4,
.card-content p {
    width: 100%;
    text-align: left;
}




/* --- City Grid Section --- */
.city-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.city-grid {
    display: grid;
    /* Desktop: 6 columns */
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.city-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 180px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    /* Glass-morphism applied to card labels */
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: flex-end;
}

.city-overlay h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}



/* Hover Effects */
.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-card:hover .city-overlay {
    background: linear-gradient(to top, var(--primary-red) 0%, rgba(209, 44, 44, 0.4) 100%);
}

/* --- Responsive Layouts --- */

/* Tablet View: 3 per row */
@media (max-width: 968px) {
    .city-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .city-card {
        height: 200px;
    }
}

/* Smartphone View: 4x3 layout (3 per row to make it 4 rows) */
@media (max-width: 600px) {
    .city-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns x 4 rows = 12 cards */
        gap: 10px;
    }
    .city-card {
        height: 140px;
        border-radius: 12px;
    }
    .city-overlay h3 {
        font-size: 13px;
    }
    .section-head h2 {
        font-size: 28px;
    }
}




.view-more-container {
    padding-top: 60px;
    padding-bottom: 15px;
    display: flex;
    justify-content: center;
    background: transparent;
}

.liquid-glass-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    
    /* The Glass Foundation */
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    
    /* Thin Luminous Border */
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    
    /* Soft Shadow & Inner Light */
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.03),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
    
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

/* The Animated Arrow */
.arrow-right {
    width: 18px;
    height: 2px;
    background: var(--text-dark);
    position: relative;
    transition: 0.4s ease;
}

.arrow-right::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--text-dark);
    border-bottom: 2px solid var(--text-dark);
    transform: rotate(-45deg);
}

/* --- THE HOVER MAGIC --- */
.liquid-glass-btn:hover {
    transform: translateY(-5px) scale(1.02);
    color: #fff;
    background: var(--primary-red); /* Your theme red */
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(209, 44, 44, 0.25);
}

.liquid-glass-btn:hover .arrow-right,
.liquid-glass-btn:hover .arrow-right::after {
    background: #fff;
    border-color: #fff;
    transform: translateX(5px) rotate(-45deg); /* Arrow nudges forward */
}

/* Mobile: Larger touch target */
@media (max-width: 600px) {
    .liquid-glass-btn {
        width: 85%;
        justify-content: center;
        padding: 16px 30px;
    }
}



/* --- future of work space section --- */
/* ===== EXISTING TRUST SECTION STYLES ===== */
.trust-corporate-excellence {
  padding: clamp(60px, 8vw, 100px) 20px;
  background: #fff;
  color: var(--text-dark, #1a1a1a);
  /* Added to prevent any children from leaking out */
  overflow: hidden; 
}



.trust-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.trust-executive-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.trust-executive-header .trust-title-wrap .trust-eyebrow {
    color: #cd4646;
    font-weight: bold;
    letter-spacing: 3px;
    font-size: 0.86rem;
    text-transform: uppercase;

    position: relative;
    top: -12px;   /* jitna upar chahiye utna minus karo */
}

.trust-title-wrap {
    padding-top: 0;
}


.tagline {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: #888;
}

.trust-text-accent {
  color: var(--primary-red, #e31e24);
}

.trust-lead-text {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 15px;
}

/* ===== GRID SYSTEM ===== */
.trust-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 28px;
  margin-bottom: 64px;
}

/* ===== CARD STYLING ===== */
.trust-premium-card {
  background: #fff;
  padding: 40px;
  border-radius: 28px;
  border: 1px solid #eee;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
  box-sizing: border-box; /* Ensures padding stays inside card width */
}

.trust-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px -18px rgba(0,0,0,.12);
}

.trust-card-head {
  margin-bottom: 24px;
}

.trust-card-head .material-symbols-rounded {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #f5f5f7;
  border-radius: 16px;
  font-size: 28px;
  transition: .3s ease;
}

.trust-premium-card:hover .material-symbols-rounded {
  background: #1a1a1a;
  color: #fff;
}

.trust-premium-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.trust-premium-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== GLASSMORPHIC CTA ===== */
.trust-executive-cta {
  background: rgba(255, 255, 255, 0.4); 
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 
              inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-sizing: border-box; /* CRITICAL: Prevents width overflow */
}

.trust-executive-cta:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.trust-executive-cta p {
  color: #1d1d1f; 
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
}

.trust-nav-btns {
  display: flex;
  gap: 30px;
  align-items: center;
}

.trust-phone-link {
  color: #555;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.trust-phone-link:hover {
  color: #e31e24;
}

.trust-btn-enquire {
  background: #1d1d1f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.trust-btn-enquire:hover {
  background: #e31e24;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

/* ===== NEW FIXES FOR OVERFLOW ===== */

@media (max-width: 1200px) {
  .trust-executive-cta {
    border-radius: 50px; /* Reduces extreme curve on smaller screens */
    margin: 0 10px;
  }
}

@media (max-width: 992px) {
  .trust-premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .trust-executive-cta {
    flex-direction: column;
    padding: 32px 24px;
    border-radius: 32px;
    text-align: center;
  }
  
  .trust-nav-btns {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  
  .trust-btn-enquire {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .trust-premium-grid {
    grid-template-columns: 1fr; /* Single column to prevent horizontal squeeze */
  }
  
  .trust-executive-header h1 {
    font-size: 1.8rem;
  }
}






/* --- Logo Slider Section --- */
/* ================================
   LOGO SLIDER SECTION (Premium)
================================ */

.logo-slider-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

/* ---------- Header ---------- */

.slider-header {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 20px;
}

.slider-tag {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #e31e24;
    letter-spacing: 3px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.slider-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
}

.slider-title span {
    font-weight: 400;
    color: #777;
}

/* ---------- Slider Container ---------- */

.logo-track-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    
    /* Premium soft edge fade */
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

/* ---------- Track ---------- */

.logo-track {
    display: flex;
    align-items: center;
    gap: 100px;
    width: max-content;
    animation: smooth-scroll 35s linear infinite;
}

/* Duplicate content required in HTML for seamless loop */

.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Logo Styling ---------- */

.logo-item img {
    height: 80px;              /* Increased size */
    max-width: 220px;
    width: auto;
    object-fit: contain;

    transition: 
        transform 0.4s ease,
        filter 0.4s ease,
        opacity 0.4s ease;

    filter: grayscale(0%) opacity(0.7);
}

/* Hover Effect */

.logo-item:hover img {
    transform: scale(1.15);
    filter: grayscale(0%) opacity(1);
}

/* Pause on Hover */

.logo-track-container:hover .logo-track {
    animation-play-state: paused;
}

/* ---------- Keyframes ---------- */

@keyframes smooth-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ================================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {

    .logo-slider-section {
        padding: 60px 0;
    }

    .logo-track {
        gap: 60px;
        animation: smooth-scroll 25s linear infinite;
    }

    .logo-item img {
        height: 55px;
        max-width: 150px;
    }

    .slider-header {
        margin-bottom: 40px;
    }
}





/* --- Review Section Styles --- */
.reviews-section {
    padding: 80px 0;
    /* background: #f0f2f5; */
    position: relative;
    background: rgba(255, 255, 255, 0.75);
}

.reviews-grid {
    display: grid;
    /* PC: 4 per line */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

/* --- The Glass Review Card --- */
.review-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.quote-icon {
    font-size: 50px;
    color: var(--primary-red);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.reviewer-info span {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.star-rating {
    font-size: 12px;
}

/* --- Interaction Magic --- */
.review-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.review-card:hover .quote-icon {
    opacity: 0.5;
    transform: rotate(-10deg);
}

/* --- Responsive Layout --- */

/* Tablet View */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smartphone View: 2x2 Grid */
@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr); /* Force 2x2 */
        gap: 12px;
    }
    .review-card {
        padding: 20px;
        border-radius: 16px;
    }
    .review-text {
        font-size: 12px;
        margin-bottom: 15px;
    }
    .reviewer-info img {
        width: 35px;
        height: 35px;
    }
    .reviewer-info h4 {
        font-size: 12px;
    }
}


/* --- Consultation Section --- */

/* Modern Reset & Base */
.consult-section {
    padding: 60px 20px;
    background-color: #f4f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
}

/* Parallel Wrapper - The Core Layout */
.parallel-wrapper {
    display: flex;
    flex-wrap: wrap; /* Allows stacking on mobile */
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Image Side */
.image-box {
    flex: 1 1 500px; /* Grows to 1 part, shrinks to 500px before wrapping */
    position: relative;
    min-height: 450px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Enhanced Glassmorphism Overlay */
.image-overlay-glass {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.overlay-tag {
    display: inline-block;
    background: #3b82f6;
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* Form Side */
.form-box-glass {
    flex: 1 1 450px;
    padding: 60px;
    background: #ffffff;
}

.form-header {
    margin-bottom: 35px;
}

.form-title {
    font-size: clamp(24px, 4vw, 32px); /* Fluid typography */
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #64748b;
    font-size: 16px;
}

/* Form Styling */
#consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: flex;
    gap: 15px;
}

input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    background: #f8fafc;
    transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background: #fff;
}

/* Premium Button */
.btn-consultation {
    background: #1e293b;
    color: #ffffff;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-consultation:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

/* Responsiveness (Mobile Fixes) */
@media (max-width: 768px) {
    .consult-section {
        padding: 20px 10px;
    }

    .form-box-glass {
        padding: 40px 25px;
    }

    .input-row {
        flex-direction: column;
    }

    .image-box {
        min-height: 300px;
    }

    .image-overlay-glass {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 20px;
    }
}


.dots-loader { display: flex; gap: 4px; justify-content: center; }
.dots-loader div {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: dots 0.6s infinite alternate;
}





/* --- FAQ Section Theme --- */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-container {
    max-width: 1100px;
    margin: 40px 0;
}

.bold-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.accent-bar-left {
    width: 50px;
    height: 4px;
    background: var(--primary-red);
    margin-top: 15px;
}

/* Accordion Item */
.faq-item {
    border-bottom: 1px solid #eeeeee;
    transition: all 0.3s ease;
}

.faq-toggle {
    width: 100%;
    padding: 35px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    text-align: left;
}

.q-text {
    font-size: 18px;
    font-weight: 530;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.plus-icon {
    font-size: 30px;
    font-weight: 300;
    color: #1a1a1a;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Content Area */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-content p {
    padding-bottom: 35px;
    color: #666;
    font-size: 17px;
    line-height: 1.7;
    max-width: 800px;
}

/* Active Logic Styles */
.faq-item.active .faq-content {
    max-height: 1000px; /* High value to allow content flow */
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .plus-icon {
    transform: rotate(45deg);
    color: var(--primary-red);
}

.faq-item.active .q-text {
    color: var(--primary-red);
}

/* Bottom Link */
.learn-more-box {
    margin-top: 30px;
}

.learn-more-btn {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

.learn-more-btn span {
    margin-left: 5px;
    transition: margin 0.3s;
}

.learn-more-btn:hover span {
    margin-left: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .bold-title { font-size: 30px; }
    .q-text { font-size: 18px; }
    .faq-toggle { padding: 20px 0; }
}









/* --- Modern Bento Footer --- */

/* --- Variables used from your Header --- */


:root {
    --primary-red: #d12c2c;
    --logo-black: #1a1a1a;
    --logo-grey: #71717a;
    --text-main: #3f3f46;
    --text-muted: #71717a;
    --border-color: rgba(0, 0, 0, 0.06);
}

.modern-footer {
    padding: 60px 0 40px;
    background: #f6f6f6;
    border-top: 1px solid var(--border-color);
}

/* --- 1. Top Location Strip --- */
.locations-strip {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.strip-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-red);
    margin-bottom: 25px;
    font-weight: 700;
}

.location-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-pills a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.location-pills span {
    display: inline-block;
    padding: 8px 20px;
    background: #f4f4f5;
    color: #222;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-pills a:hover span {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}


/* --- 2. Main Content Layout --- */
.footer-main-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* --- 3. Logo (Black & Grey) --- */
.logo.big-logo {
    font-size: 28px !important;
    font-weight: 900;
    color: var(--logo-black);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo.big-logo span {
    color: var(--logo-grey);
    font-weight: 400;
}

.brand-tagline {
    margin: 20px 0 30px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 340px;
}

/* --- 4. Social Icons (Improved Design & Animation) --- */
.social-pills { display: flex; gap: 14px; }

.pill-link {
    width: 44px; height: 44px;
    background: #fff;
    border: 1.5px solid #e4e4e7;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--logo-black);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pill-link:hover {
    color: #fff;
    background: var(--logo-black);
    border-color: var(--logo-black);
    transform: translateY(-8px) rotate(8deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* --- 5. Improved Get in Touch --- */
.aesthetic-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: 0.3s;
    padding: 10px;
    border-radius: 12px;
}

.contact-item:hover {
    background: #f8fafc;
}

.c-icon {
    width: 40px; height: 40px;
    background: #f4f4f5;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-red);
    transition: 0.3s;
}

.contact-item:hover .c-icon {
    background: var(--primary-red);
    color: #fff;
    transform: scale(1.1);
}

.c-text span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--logo-grey);
    letter-spacing: 1px;
}

.c-text p {
    font-size: 14px;
    font-weight: 600;
    color: var(--logo-black);
}

/* --- Typography & Nav --- */
.column-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--logo-black);
    margin-bottom: 30px;
}

.link-grid { display: flex; gap: 100px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--logo-black);
    padding-left: 6px;
}

/* --- Bottom Bar --- */
.modern-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
}

.legal-wrap a {
    text-decoration: none;
    color: var(--text-muted);
    margin-left: 20px;
    font-weight: 600;
}

.legal-wrap a:hover { color: var(--logo-black); }

/* --- Responsive --- */
@media (max-width: 968px) {
    .footer-main-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 650px) {
    .footer-main-content { grid-template-columns: 1fr; }
    .modern-bottom { flex-direction: column; gap: 20px; text-align: center; }
}






/* --- WhatsApp Floating Button --- */

.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Positioned on the left as requested */
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-sticky svg {
    width: 32px;
    height: 32px;
}

/* Tooltip "Chat with us" */
.whatsapp-sticky .tooltip {
    position: absolute;
    left: 75px; /* Appears to the right of the icon */
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.whatsapp-sticky:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128c7e;
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.4);
}

.whatsapp-sticky:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Attention-grabbing pulse animation */
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-sticky {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-sticky svg {
        width: 25px;
        height: 25px;
    }
    .tooltip { display: none; } /* Hide tooltip on small screens */
}















