  /* <nav class="navbar"> */
    :root{
      --bg:#0a0a14;
      --primary:#6366f1;
      --secondary:#a855f7;
      --accent:#ec4899;
      --text:#e5e7eb;
    }
    *{margin:0;padding:0;box-sizing:border-box;        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
    body , body{
      background:radial-gradient(circle at top,#1a1a2e 0%,#0a0a14 50%);
       font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
      color:var(--text);
      min-height:100vh;

    }


     

    /* Only keep this functional class for the menu lock */
    body.scroll-locked {
      overflow: hidden !important;
    }

    /* NAVBAR CONTAINER */
    .nav-bar-01 {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 15px 0;
      pointer-events: none;
    }

    /* LIQUID GLASS BAR */
    .nav-glass {
      pointer-events: auto;
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 12px 24px;
      
      /* Glass Effect */
      background: rgba(20, 20, 35, 0.6);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50px;
      box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
      
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      overflow: hidden; /* Keeps animation inside the bar */
    }

    /* SHIMMER ANIMATION */
    .nav-glass::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transform: skewX(-25deg);
      animation: liquidShimmer 6s infinite;
      pointer-events: none;
    }

    @keyframes liquidShimmer {
      0% { left: -100%; }
      20% { left: 200%; }
      100% { left: 200%; }
    }

    /* LOGO */
    .logo {
      font-size: 24px;
      font-weight: 800;
      background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientShift 3s infinite;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* DESKTOP NAV */
    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .nav-link {
      color: #e2e8f0;
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      padding: 8px 16px;
      border-radius: 20px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .nav-link:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    /* COLORFUL CONTACT BUTTON */
    .btn-contact {
      background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
      background-size: 200% 200%;
      color: white !important;
      font-weight: 600;
      border: none;
      box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
      animation: gradientShift 3s infinite;
    }
    
    .btn-contact:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(168, 85, 247, 0.5);
      background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
    }

    /* MOBILE TOGGLE */
    .mobile-toggle {
      display: none;
      width: 32px;
      height: 32px;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      cursor: pointer;
      z-index: 10;
    }

    .menu-bar {
      width: 24px;
      height: 2px;
      background: #fff;
      transition: 0.3s;
    }

    .mobile-toggle.active .menu-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-toggle.active .menu-bar:nth-child(2) { opacity: 0; }
    .mobile-toggle.active .menu-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* MOBILE MENU */
    .mobile-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(10, 10, 20, 0.95);
      backdrop-filter: blur(30px);
      z-index: 900;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 25px;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s ease;
    }

    .mobile-nav.active { opacity: 1; visibility: visible; }
    .mobile-nav .nav-link { font-size: 20px; font-weight: 600; }

    /* SERVICES DROPDOWN */
    .services-dropdown {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -45%) scale(0.9);
      width: 90vw;
      max-width: 900px;
      max-height: 80vh;
      background: rgba(20, 20, 35, 0.98);
      backdrop-filter: blur(40px);
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 24px;
      opacity: 0;
      visibility: hidden;
      z-index: 2000;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
    }

    .services-dropdown.active {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, -50%) scale(1);
    }

    .dropdown-header {
      padding: 20px;
      text-align: center;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      background: linear-gradient(to bottom, rgba(99,102,241,0.1), transparent);
    }

    /* CLOSE BUTTON FOR DROPDOWN */
    .dropdown-close-btn {
      display: none; 
      margin-top: 15px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 14px;
      cursor: pointer;
      transition: 0.2s;
    }
    .dropdown-close-btn:hover { background: rgba(255, 0, 0, 0.3); }

    .dropdown-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 24px;
      overflow-y: auto;
    }

    .dropdown-category {
      background: rgba(255, 255, 255, 0.03);
      padding: 16px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .category-title { color: #fff; font-weight: 600; margin-bottom: 12px; }
    .category-link { display: block; color: #9ca3af; text-decoration: none; font-size: 14px; padding: 6px 8px; margin-bottom: 4px; border-radius: 6px; transition: 0.2s; }
    .category-link:hover { background: rgba(99, 102, 241, 0.2); color: #fff; padding-left: 12px; }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .desktop-nav { display: none; }
      .mobile-toggle { display: flex; }
      
      .nav-glass {
        padding: 12px 20px;
        width: 85%; 
      }

      /* Mobile Dropdown Position */
      .services-dropdown {
        top: 55%;
        transform: translate(-50%, -40%) scale(0.9);
        height: auto;
        max-height: 75vh;
      }
      
      .services-dropdown.active {
        transform: translate(-50%, -45%) scale(1);
      }

      .dropdown-grid { grid-template-columns: 1fr; }
      .dropdown-close-btn { display: inline-block; }
      
      .mobile-nav .btn-contact {
        width: 80%;
        text-align: center;
        padding: 12px;
      }
    }

/* end */


/* <section class="video-hero-responsive"> */

/* 1. Base Layout - Reduced Height */
.video-hero-responsive {
    position: relative;
    /* REDUCED HEIGHT: 85% of viewport instead of full 100% */
    min-height: 100vh; 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: white;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Video Positioning */
.video-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; 
    min-height: 100%;
    width: auto; 
    height: auto;
    z-index: -2;
    object-fit: cover;
}

/* Gradient Overlay */
.overlay-responsive {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
    z-index: -1;
}

.hero-content-responsive {
    z-index: 1;
    width: 90%;
    max-width: 1100px; /* Slightly tighter width for better readability */
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -20px; /* Slight visual lift */
}

/* 2. Small Heading */
.small-heading {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem); 
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #4facfe;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    font-weight: 600;
}

/* 3. Main Heading */
.main-heading {
    /* Responsive Scaling */
    font-size: clamp(1.8rem, 5vw, 4rem); 
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

/* 4. Typewriter Effect (Works on Mobile Now) */
.typewriter-wrapper {
    display: inline-block;
    background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800; /* Extra bold for impact */
}

.typewriter-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: .12em solid #4facfe; /* The flashing cursor */
    margin: 0 auto;
    letter-spacing: normal;
    max-width: 0; /* Start hidden */
    /* Universal Animation for Web & Mobile */
    animation: 
        typing 3.5s steps(30, end) 1.5s forwards,
        blink-caret .75s step-end infinite;
}

/* 5. Button Styling */
.cta-responsive {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.8s forwards; /* Shows after typing finishes */
    position: relative;
    overflow: hidden;
}

/* Button Hover */
.cta-responsive::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}
.cta-responsive:hover::before { opacity: 1; }
.cta-responsive:hover { transform: translateY(-4px); border-color: transparent; box-shadow: 0 10px 25px rgba(0,242,254,0.3); }
.cta-responsive:hover .arrow-icon { transform: translateX(5px); transition: 0.3s; }

/* 6. Mobile Specific Adjustments */
@media (max-width: 768px) {
    /* Reduce height further for mobile phones */
    .video-hero-responsive {
        min-height: 70vh; /* Compact mobile height */
    }

    .main-heading {
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    /* Ensure typewriter text doesn't overflow screen width on small phones */
    .typewriter-text {
        white-space: nowrap; /* Keep on one line for typing effect */
        font-size: clamp(1.5rem, 6vw, 2rem); /* Slightly smaller typing text on mobile */
    }

    /* Wrap the "Accelerate Innovation Through" part only if needed */
    .main-heading br {
        display: block;
    }
}

/* Very Small Screen Fix (iPhone SE etc) */
@media (max-width: 380px) {
    .video-hero-responsive { min-height: 600px; }
    .typewriter-text { font-size: 1.4rem; } /* Prevent overflow */
}

/* Keyframes */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes typing {
    from { max-width: 0 }
    to { max-width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #4facfe; }
}


/* end */


/* <section class="partner-logos-section"> */

    /* Section Layout */
    .partner-logos-section {
        background: #0a0a0a; /* Dark Background */
        padding: 40px 0;
        overflow: hidden;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }

    /* Gradient Fade Effect on Sides */
    .partner-logos-section::before,
    .partner-logos-section::after {
        content: "";
        position: absolute;
        top: 0;
        width: 150px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .partner-logos-section::before {
        left: 0;
        background: linear-gradient(to right, #0a0a0a, transparent);
    }

    .partner-logos-section::after {
        right: 0;
        background: linear-gradient(to left, #0a0a0a, transparent);
    }

    /* Logo Track Animation */
    .logos-container {
        display: flex;
        width: 100%;
        overflow: hidden;
    }

    .logo-track {
        display: flex;
        align-items: center;
        gap: 60px; /* Space between logos */
        animation: scroll 25s linear infinite;
        width: max-content;
    }

    /* Individual Logo Styles */
    .partner-logo {
        height: 40px; /* Adjust height based on your logos */
        width: auto;
        filter: grayscale(100%) opacity(0.6); /* Black & White initially */
        transition: all 0.4s ease;
        cursor: pointer;
    }

    /* Hover Effect: Color + Glow */
    .partner-logo:hover {
        filter: grayscale(0%) opacity(1); /* Full Color */
        transform: scale(1.1); /* Slight Zoom */
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    }

    /* Infinite Scroll Animation */
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); } /* Move half width since logos are duplicated */
    }

    /* Pause Animation on Hover */
    .logos-container:hover .logo-track {
        animation-play-state: paused;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .logo-track {
            gap: 40px;
            animation: scroll 15s linear infinite; /* Faster on mobile */
        }
        .partner-logo {
            height: 30px;
        }
    }

/* end */


/* <section class="stats-premium"> */

    /* 1. Section Background & Layout */
    .stats-premium {
        position: relative;
        background: #050505; /* Ultra Dark */
        padding: 100px 20px;
        font-family: 'Poppins', sans-serif;
        text-align: center;
        overflow: hidden;
    }

    .stats-container-premium {
        position: relative;
        z-index: 2;
        max-width: 1000px;
        margin: 0 auto;
    }

    /* Ambient Background Glows */
    .glow-blob {
        position: absolute;
        width: 600px; height: 600px;
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.15;
        z-index: 1;
    }
    .blob-1 { top: -20%; left: -10%; background: #7c3aed; }
    .blob-2 { bottom: -20%; right: -10%; background: #db2777; }

    /* 2. Heading with Animated Gradient */
    .stats-heading {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 700;
        color: #e5e5e5;
        margin-bottom: 70px;
        line-height: 1.3;
    }

    .gradient-title-anim {
        background: linear-gradient(90deg, #a855f7, #ec4899, #a855f7);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shineText 4s linear infinite;
    }

    @keyframes shineText { to { background-position: 200% center; } }

    /* 3. Bento Grid */
    .bento-grid-premium {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* 4. Glassmorphism Cards */
    .glass-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 60px 20px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        backdrop-filter: blur(10px);
    }

    /* Hover Effect: Lift & Glow */
    .glass-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(168, 85, 247, 0.4); /* Purple Border Glow */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .glass-card::before {
        content: '';
        position: absolute;
        top: 0; left: -100%;
        width: 100%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
        transition: 0.5s;
    }
    .glass-card:hover::before { left: 100%; }

    /* 5. Typography Styles */
    .number-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        margin-bottom: 15px;
    }

    /* Hollow Neon Text (500+, 250+) */
    .hollow-neon {
        font-size: clamp(3.5rem, 5vw, 5rem);
        font-weight: 800;
        color: transparent;
        -webkit-text-stroke: 2px rgba(168, 85, 247, 0.8); /* Neon Purple Stroke */
        position: relative;
        filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.4));
        transition: 0.3s;
    }

    .glass-card:hover .hollow-neon {
        filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.8));
        -webkit-text-stroke: 2px #d8b4fe;
    }

    /* Solid Glow Text ($50M+, 7+) */
    .solid-glow {
        font-size: clamp(3.5rem, 5vw, 5rem);
        font-weight: 800;
        color: #fff;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }

    .symbol { color: #d8b4fe; }

    /* Labels */
    .stat-label {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #a1a1aa;
        font-weight: 500;
    }

    .gradient-label {
        background: linear-gradient(90deg, #c084fc, #f472b6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .bento-grid-premium {
            grid-template-columns: 1fr;
        }
        .stats-premium {
            padding: 60px 20px;
        }
    }

/* end */



/* <section class="future-tabs"> */
  /* 1. Liquid Background & Layout */
.future-tabs {
    position: relative;
    padding: 80px 20px; /* Reduced padding for mobile */
    background: #030305;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.liquid-bg {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15), transparent 60%);
    animation: pulseGlow 10s infinite alternate;
    z-index: 0;
    pointer-events: none; /* SEO: prevents blocking clicks */
}
@keyframes pulseGlow { 0% { transform: scale(1); } 100% { transform: scale(1.2); } }

.container-future {
    position: relative; 
    z-index: 1; 
    max-width: 1100px; 
    margin: 0 auto;
}

.future-heading {
    text-align: center; 
    font-size: clamp(2rem, 5vw, 3rem); /* Responsive Font */
    color: #fff; 
    margin-bottom: 40px; 
    font-weight: 700;
    line-height: 1.2;
}
.neon-text {
    color: #fff; 
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.8), 0 0 20px rgba(167, 139, 250, 0.4);
}

/* 2. Interface Layout */
.tabs-interface {
    display: flex; 
    gap: 40px; 
    align-items: flex-start;
}

/* 3. Navigation Rail (Desktop Default) */
.nav-rail {
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    width: 300px;
    flex-shrink: 0;
}

.nav-pill {
    display: flex; 
    align-items: center; 
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    color: #aaa; 
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    outline: none; /* Remove default outline */
    user-select: none;
}

.nav-pill:focus-visible {
    border-color: #a78bfa; /* Accessibility Focus */
}

.nav-pill:hover {
    background: rgba(255, 255, 255, 0.08); 
    color: #fff; 
    transform: translateX(5px);
}

.nav-pill.active {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(139, 92, 246, 0.05));
    border-color: rgba(139, 92, 246, 0.5);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateX(10px);
}

.pill-icon { font-size: 1.5rem; flex-shrink: 0; }
.pill-text { font-weight: 600; font-size: 1.1rem; white-space: nowrap; }

/* 4. Content Stage (3D Card) */
.content-stage {
    flex: 1; 
    position: relative; 
    min-height: 400px; 
    perspective: 1000px;
    width: 100%; /* Fix for flex child width */
}

.stage-card {
    position: absolute; 
    top: 0; left: 0; width: 100%;
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0; 
    transform: rotateY(10deg) translateX(50px);
    transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    overflow: hidden;
    visibility: hidden; /* Accessibility: Hide from screen readers when inactive */
}

.stage-card.active-card {
    opacity: 1; 
    transform: rotateY(0) translateX(0);
    pointer-events: all; 
    z-index: 2;
    visibility: visible;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Card Glow Spot */
.card-glow {
    position: absolute; top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.card-badge {
    display: inline-block; padding: 6px 12px;
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa; border-radius: 20px;
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
    margin-bottom: 20px; border: 1px solid rgba(139, 92, 246, 0.3);
}

.card-title { 
    font-size: clamp(1.8rem, 4vw, 2.5rem); 
    color: #fff; margin-bottom: 15px; 
    line-height: 1.2;
}
.card-desc { font-size: 1.1rem; color: #ccc; margin-bottom: 30px; line-height: 1.6; }

.feature-tags { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.tag {
    padding: 8px 16px; background: rgba(255,255,255,0.05);
    border-radius: 8px; color: #ddd; font-size: 0.9rem;
}

/* Animated Button */
.future-btn {
    display: inline-block; padding: 16px 40px;
    background: #fff; color: #000;
    border-radius: 50px; font-weight: 700; text-decoration: none;
    position: relative; overflow: hidden;
    transition: 0.3s;
    /* Touch target fix */
    min-height: 44px; 
    min-width: 44px;
}
.btn-flare {
    position: absolute; top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}
.future-btn:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255,255,255,0.4); }
.future-btn:hover .btn-flare { left: 150%; transition: 0.7s; }

/* --- RESPONSIVE MOBILE STYLES --- */
@media (max-width: 900px) {
    .tabs-interface { 
        flex-direction: column; 
        gap: 30px;
    }
    
    /* Horizontal Scrolling Rail for Mobile */
    .nav-rail { 
        width: 100%; 
        flex-direction: row; 
        overflow-x: auto; 
        padding-bottom: 15px; 
        /* Hide scrollbar but keep functionality */
        scrollbar-width: none; 
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch; /* Momentum Scroll */
        scroll-snap-type: x mandatory;
    }
    .nav-rail::-webkit-scrollbar { display: none; }

    .nav-pill { 
        min-width: max-content; /* Auto width based on text */
        padding: 12px 20px;
        scroll-snap-align: start;
        border-radius: 50px; /* Pill shape on mobile */
    }
    
    .nav-pill:hover, .nav-pill.active {
        transform: translateY(-2px); /* Hop effect instead of slide */
    }

    .content-stage {
        min-height: auto; /* Let content dictate height */
    }
    
    .stage-card {
        position: relative; /* Stack normally on mobile to calculate height */
        display: none; /* Hide inactive ones completely to fix height */
        opacity: 0;
        transform: translateY(20px);
        padding: 30px;
    }
    
    .stage-card.active-card {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    
    .card-title { margin-top: 10px; }
}

/* end  */



/* <section class="service-grid-section"> */

    /* 1. Base Layout */
    .service-grid-section {
        background: #fff; /* White Background as per image */
        color: #333;
        padding: 80px 20px;
        font-family: 'Poppins', sans-serif;
    }

    .service-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* 2. Header Section */
    .service-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 60px;
        flex-wrap: wrap;
        gap: 30px;
    }

    .main-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #000;
        flex: 1;
        min-width: 300px;
    }

    .header-desc {
        flex: 1.5;
        font-size: 1.05rem;
        line-height: 1.6;
        color: #555;
        min-width: 300px;
    }
    
    .header-desc em {
        font-style: italic;
        color: #333;
        font-weight: 500;
    }

    /* 3. Grid Layout */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 Columns */
        column-gap: 40px;
        row-gap: 50px;
    }

    /* 4. Service Item */
    .service-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e0e0; /* Subtle separator line */
        transition: border-bottom 0.3s ease;
    }
    
    .service-item:hover {
        border-bottom: 1px solid #000; /* Darker line on hover */
    }

    /* Icon Styling */
    .icon-box {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
    }

    .svc-icon {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Content Styling */
    .service-content {
        flex: 1;
    }

    .svc-desc {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .svc-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #000;
        cursor: pointer;
        display: inline-block;
        position: relative;
    }

    /* Underline Animation Effect */
    .svc-title::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: #000;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    .service-item:hover .svc-title::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    /* Mobile Responsive */
    @media (max-width: 900px) {
        .services-grid {
            grid-template-columns: 1fr 1fr; /* 2 Columns on Tablet */
        }
        .service-header {
            flex-direction: column;
        }
    }

    @media (max-width: 600px) {
        .services-grid {
            grid-template-columns: 1fr; /* 1 Column on Mobile */
        }
    }


/* <section class="strategic-brutal-section"> */

    /* 1. Background & Layout */
    .strategic-brutal-section {
        background-color: #f3f3f3; /* Light Grey Base */
        background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
        background-size: 20px 20px; /* Dot Pattern */
        padding: 100px 20px;
        font-family: 'Space Grotesk', 'Arial', sans-serif;
        color: #000;
    }

    .brutal-container { max-width: 1200px; margin: 0 auto; }

    /* 2. Header Styles */
    .brutal-header { text-align: center; margin-bottom: 60px; }
    
    .brutal-heading {
        font-size: 3.5rem; font-weight: 900; text-transform: uppercase;
        margin-bottom: 15px; letter-spacing: -2px;
        text-shadow: 4px 4px 0px #fff; /* White outline effect */
    }

    .highlight-marker {
        background: #fbbf24; /* Marker Yellow */
        padding: 0 10px;
        border: 3px solid #000;
        box-shadow: 6px 6px 0px #000;
        display: inline-block;
        transform: rotate(-2deg);
    }

    .brutal-subtitle {
        font-size: 1.2rem; font-weight: 500; max-width: 600px; margin: 0 auto;
        background: #fff; border: 2px solid #000; padding: 10px 20px;
        box-shadow: 4px 4px 0px #000;
        display: inline-block;
    }

    /* 3. Grid Layout */
    .brutal-grid {
        display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    }

    /* 4. Brutalist Card Design */
    .brutal-card {
        background: #fff;
        border: 3px solid #000;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 8px 8px 0px #000; /* Hard Shadow */
        transition: all 0.2s ease-in-out;
        display: flex; flex-direction: column; align-items: flex-start;
        height: 100%;
    }

    /* Hover "Click" Effect */
    .brutal-card:hover {
        transform: translate(4px, 4px);
        box-shadow: 2px 2px 0px #000;
    }

    /* Card Top Colors (Accent Bar) */
    .brutal-card::before {
        content: ''; width: 100%; height: 12px;
        border-bottom: 3px solid #000;
        position: absolute; top: 0; left: 0;
        border-radius: 9px 9px 0 0;
    }
    
    .brutal-card { position: relative; overflow: hidden; padding-top: 50px; } /* Space for accent bar */

    .card-purple { background: #e9d5ff; } 
    .card-yellow { background: #fef08a; }
    .card-pink { background: #fbcfe8; }
    .card-blue { background: #bae6fd; }
    .card-green { background: #bbf7d0; }
    .card-orange { background: #fed7aa; }

    /* Icons */
    .card-icon-box {
        font-size: 2.5rem; background: #fff;
        width: 70px; height: 70px;
        display: flex; align-items: center; justify-content: center;
        border: 3px solid #000; border-radius: 50%;
        margin-bottom: 20px;
        box-shadow: 4px 4px 0px #000;
    }

    /* Typography */
    .brutal-card h3 {
        font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; text-transform: uppercase;
        border-bottom: 3px solid #000; display: inline-block;
    }

    .brutal-card p {
        font-size: 1rem; font-weight: 500; line-height: 1.5; margin-top: 10px;
    }

    /* Responsive */
    @media (max-width: 1024px) { .brutal-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { 
        .brutal-grid { grid-template-columns: 1fr; } 
        .brutal-heading { font-size: 2.2rem; }
    }


/* end */



/* <section class="testimoao-01"> */
    /* 1. Section Base */
    .testimoao-01 {
        position: relative;
        background: #0b0c10; /* Deep Dark */
        padding: 100px 0;
        font-family: 'Inter', sans-serif;
        overflow: hidden;
        color: #fff;
    }

    /* Ambient Glows */
    .testimo-bg-glow {
        position: absolute; width: 600px; height: 600px; border-radius: 50%;
        filter: blur(100px); opacity: 0.15; pointer-events: none;
    }
    .glow-left { background: #4f46e5; top: -20%; left: -10%; }
    .glow-right { background: #ec4899; bottom: -20%; right: -10%; }

    .testimoao-container { position: relative; z-index: 2; max-width: 100%; margin: 0 auto; }

    /* 2. Header */
    .testimoao-header { text-align: center; max-width: 700px; margin: 0 auto 60px; padding: 0 20px; }
    
    .testimo-badge {
        display: inline-block; padding: 5px 15px; border-radius: 20px;
        background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 0.8rem; letter-spacing: 1px; color: #a5b4fc; margin-bottom: 20px;
    }
    
    .testimo-title { font-size: 3rem; font-weight: 800; margin-bottom: 15px; }
    
    .gradient-text-t {
        background: linear-gradient(90deg, #818cf8, #c084fc);
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    
    .testimo-subtitle { color: #9ca3af; font-size: 1.1rem; line-height: 1.6; }

    /* 3. Marquee Animation */
    .marquee-wrapper-01 {
        display: flex; flex-direction: column; gap: 30px;
        position: relative;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); /* Fade edges */
    }

    .marquee-track {
        display: flex; gap: 30px; width: max-content;
    }

    /* Animation Keyframes */
    .move-left { animation: scrollLeft 40s linear infinite; }
    .move-right { animation: scrollRight 45s linear infinite; }

    /* Pause on Hover */
    .marquee-wrapper-01:hover .marquee-track { animation-play-state: paused; }

    @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    @keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

    /* 4. Card Design */
    .testimo-card-01 {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        padding: 30px;
        width: 400px; /* Fixed Width for Marquee */
        flex-shrink: 0;
        transition: 0.3s ease;
    }

    .testimo-card-01:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    /* User Profile */
    .user-profile { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
    
    .user-img {
        width: 50px; height: 50px; border-radius: 50%;
        border: 2px solid #6366f1; /* Indigo Border */
    }
    
    .user-profile h4 { font-size: 1.1rem; font-weight: 700; margin: 0; color: #fff; }
    .user-profile span { font-size: 0.85rem; color: #94a3b8; }

    .review-text {
        font-size: 1rem; color: #cbd5e1; line-height: 1.6; margin-bottom: 20px; font-style: italic;
    }

    .rating-stars { color: #fbbf24; font-size: 1.2rem; letter-spacing: 2px; }

    /* Responsive */
    @media (max-width: 768px) {
        .testimo-title { font-size: 2rem; }
        .testimo-card-01 { width: 300px; padding: 20px; }
    }
/* end */


/* <footer class="footer-01" role="contentinfo" aria-label="Site Footer"> */

    /* 1. Base Structure */
    .footer-01 {
        background: #000;
        color: #fff;
        font-family: 'Archivo', 'Helvetica Neue', sans-serif;
        display: flex; flex-direction: column;
        overflow: hidden;
        width: 100%;
    }

    /* 2. Marquee Strip */
    .marquee-strip {
        background: #ff4d00;
        color: #000;
        padding: 15px 0;
        overflow: hidden;
        white-space: nowrap;
        border-bottom: 1px solid #333;
    }
    .track {
        display: inline-block;
        animation: marquee 20s linear infinite;
        font-weight: 700; font-size: 1.1rem; letter-spacing: 1px;
    }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* 3. The Grid (5 Columns) */
    .swiss-grid {
        display: grid;
        /* Adjusted for 5 cols: CTA is larger (2fr), others equal (1fr) */
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        border-bottom: 1px solid #333;
    }

    .grid-col {
        padding: 40px 30px; /* Slightly less side padding to fit 5 cols */
        border-right: 1px solid #333;
        display: flex; flex-direction: column;
    }
    .grid-col:last-child { border-right: none; }

    .label-text {
        font-size: 0.7rem; color: #666; margin-bottom: 25px;
        letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
    }

    .group-title {
        font-size: 1rem; color: #fff; margin-bottom: 15px; font-weight: 700; display: block;
    }

    /* Column 1: Contact */
    .email-link {
        font-size: clamp(1.4rem, 2vw, 1.8rem); /* Slightly smaller to fit layout */
        font-weight: 700; color: #fff;
        text-decoration: none; line-height: 1.1; 
        word-break: break-word;
        transition: 0.3s;
        display: block;
    }
    .email-link:hover { color: #ff4d00; }
    
    .big-arrow { display: block; font-size: 2.5rem; margin-top: 10px; transition: 0.3s; }
    .email-link:hover .big-arrow { transform: translate(10px, 10px); }

    /* List Styles */
    .clean-list { list-style: none; padding: 0; margin: 0; }
    .clean-list li { margin-bottom: 10px; }
    .clean-list a {
        color: #bbb; text-decoration: none; font-size: 0.9rem;
        transition: 0.3s; display: block;
        border-bottom: 1px solid transparent; padding-bottom: 2px;
        width: fit-content;
    }
    .clean-list a:hover { color: #fff; border-bottom-color: #ff4d00; padding-left: 5px; }

    /* 4. Footer Meta Strip */
    .footer-meta-strip {
        display: flex; justify-content: space-between; padding: 40px;
        border-bottom: 1px solid #222; gap: 20px; flex-wrap: wrap;
    }
    .meta-group { flex: 1; min-width: 200px; }
    .sub-label { display: block; font-size: 0.7rem; color: #666; margin-bottom: 8px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
    .address-text, .phone-link { font-size: 1rem; line-height: 1.5; color: #fff; margin: 0; text-decoration: none; }
    .phone-link:hover { color: #ff4d00; }
    
    .social-icons { display: flex; gap: 10px; }
    .social-icons a {
        width: 40px; height: 40px; border: 1px solid #333; display: flex; align-items: center; justify-content: center;
        border-radius: 50%; transition: 0.3s; overflow: hidden;
    }
    .social-icons img { width: 20px; height: 20px; object-fit: contain; }
    .social-icons a:hover { background: #ff4d00; border-color: #ff4d00; transform: translateY(-3px); }
    .social-icons a:hover img { filter: brightness(0); }

    /* 5. Massive Brand Name */
    .big-brand-name {
        font-size: clamp(3rem, 12vw, 15rem); font-weight: 900; text-align: center; line-height: 0.8;
        letter-spacing: -0.05em; color: transparent; -webkit-text-stroke: 2px #222;
        margin-top: -10px; user-select: none; pointer-events: none; opacity: 0.5; width: 100%; padding-bottom: 20px;
    }

    /* 6. Bottom Legal */
    .bottom-legal {
        display: flex; justify-content: space-between; align-items: center; padding: 20px 40px;
        font-size: 0.8rem; color: #555; border-top: 1px solid #222; background: #000; position: relative; z-index: 2; flex-wrap: wrap;
    }
    .legal-links a { color: #555; text-decoration: none; transition: 0.3s; }
    .legal-links a:hover { color: #fff; }
    .dash { margin: 0 10px; }

    /* --- Responsive --- */

    /* Laptop View (1024px to 1366px) */
    @media (max-width: 1366px) {
        .swiss-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; }
        .grid-col { padding: 30px 20px; }
        .email-link { font-size: 1.2rem; }
    }

    /* Tablet View (1024px and below) */
    @media (max-width: 1024px) {
        .swiss-grid { grid-template-columns: 1fr 1fr 1fr; } /* 3 Columns */
        .grid-col:nth-child(3) { border-right: none; }
        .grid-col:nth-child(4), .grid-col:nth-child(5) { border-top: 1px solid #333; }
        .grid-col:nth-child(4) { border-right: 1px solid #333; }
    }

    /* Mobile View (600px and below) */
    @media (max-width: 600px) {
        .swiss-grid { grid-template-columns: 1fr; } /* Stack all */
        .grid-col { border-right: none; border-bottom: 1px solid #333; padding: 30px 20px; }
        .footer-meta-strip { flex-direction: column; gap: 30px; padding: 30px 20px; }
        .email-link { font-size: 1.8rem; }
        .big-brand-name { font-size: 16vw; margin-top: 0; padding: 20px 0; -webkit-text-stroke: 1px #333; }
        .bottom-legal { flex-direction: column; gap: 15px; text-align: center; padding: 30px 20px; }
    }

/* end */




/* <section class="about-us-01"> */
    /* 1. Section Base (Matching 'strategic-brutal-section' Theme) */
    .about-us-01 {
        position: relative;
        background-color: #f3f3f3; /* Light Grey Base */
        background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
        background-size: 20px 20px; /* Dot Pattern */
        padding: 100px 20px;
        font-family: 'Space Grotesk', 'Inter', sans-serif; /* Matches your font choice */
        color: #000;
        overflow: hidden;
    }

    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    /* 2. Left Visuals */
    .about-visual {
        position: relative;
        padding: 20px;
    }

    .main-img-wrapper {
        position: relative;
        border: 3px solid #000; /* Brutalist Border */
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 12px 12px 0px #000; /* Hard Shadow */
        z-index: 2;
        background: #fff;
    }
    
    .main-img {
        width: 100%;
        display: block;
        transition: 0.5s;
        filter: grayscale(100%); /* Optional: Adds to brutalist feel */
    }
    .main-img-wrapper:hover .main-img {
        transform: scale(1.05);
        filter: grayscale(0%); /* Color on hover */
    }

    /* Floating Badge */
    .exp-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: #fbbf24; /* Marker Yellow Accent */
        border: 3px solid #000;
        color: #000;
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 8px 8px 0px #000;
        z-index: 3;
        transform: rotate(-3deg);
    }
    .exp-num {
        font-size: 2.5rem;
        font-weight: 900;
        display: block;
        line-height: 1;
    }
    .exp-text {
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 1px;
    }

    /* Decorative Pattern behind image */
    .pattern-dots {
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100%;
        height: 100%;
        border: 2px dashed #000;
        border-radius: 12px;
        z-index: 1;
    }

    /* 3. Right Content */
    .about-content {
        padding-left: 20px;
    }

    .highlight-marker {
        background: #fbbf24; /* Marker Yellow */
        padding: 4px 12px;
        border: 2px solid #000;
        box-shadow: 4px 4px 0px #000;
        display: inline-block;
        font-weight: 700;
        font-size: 0.9rem;
        margin-bottom: 25px;
        transform: rotate(-1deg);
    }

    .about-heading {
        font-size: 3rem;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 25px;
        line-height: 1.1;
        letter-spacing: -1px;
        text-shadow: 2px 2px 0px #fff;
    }

    .about-desc {
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 1.6;
        color: #333;
        margin-bottom: 20px;
    }
    .about-desc strong {
        color: #000;
        background: #e9d5ff; /* Purple Highlight */
        padding: 0 4px;
    }

    /* Feature List */
    .feature-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin: 30px 0 40px;
    }

    .f-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 700;
        font-size: 1rem;
    }

    .check-box {
        width: 24px;
        height: 24px;
        background: #000;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        border-radius: 4px;
    }

    /* Button */
    .btn-about {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        color: #000;
        padding: 14px 32px;
        border: 3px solid #000;
        font-weight: 800;
        text-decoration: none;
        box-shadow: 6px 6px 0px #000;
        transition: 0.2s;
        text-transform: uppercase;
    }
    .btn-about:hover {
        transform: translate(2px, 2px);
        box-shadow: 2px 2px 0px #000;
        background: #fbbf24;
    }
    .arrow { font-size: 1.2rem; line-height: 1; }

    /* Responsive */
    @media (max-width: 1024px) {
        .about-container { grid-template-columns: 1fr; text-align: center; gap: 60px; }
        .about-content { padding-left: 0; }
        .about-visual { max-width: 500px; margin: 0 auto; }
        .feature-list { justify-content: center; text-align: left; max-width: 500px; margin: 30px auto; }
        .exp-badge { right: -10px; bottom: -30px; }
    }

    @media (max-width: 600px) {
        .about-heading { font-size: 2.2rem; }
        .feature-list { grid-template-columns: 1fr; }
        .exp-badge { padding: 15px; width: 140px; }
    }
/* end */



/* <section class="about-banner-section"> */

    /* 1. Section Container */
    .about-banner-section {
        position: relative;
        width: 100%;
        height: 75vh; /* Desktop Height (Matches your image aspect mostly) */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        text-align: center;
        background-color: #000; /* Fallback color */
    }

    /* 2. Background Image */
    .banner-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 75vh;
        background-size: cover; /* Ensures image covers area */
        background-position: center center; /* Centers the image */
        background-repeat: no-repeat;
        z-index: 0;
    }

    /* 3. Dark Overlay */
    .banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* 50% Black Overlay */
        z-index: 1;
    }

    /* 4. Text Content */
    .banner-content {
        position: relative;
        z-index: 2;
        color: #ffffff;
        padding: 0 20px;
        animation: fadeIn 1s ease-out;
    }

    /* Title Styling */
    .banner-title {
        font-family: 'Inter', sans-serif; /* Use your site's font */
        font-size: 4rem;
        font-weight: 800;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 1.2;
    }

    /* Underline Styling */
    .title-underline {
        width: 80px;
        height: 4px;
        background-color: #2563eb; /* Your primary blue color */
        margin: 15px auto 20px;
        border-radius: 2px;
    }

    /* Subtitle Styling */
    .banner-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: 1.2rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
    }

    /* Animation */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* --- RESPONSIVE DESIGN --- */

    /* Tablet (max-width: 1024px) */
    @media (max-width: 1024px) {
        .about-banner-section {
            height: 400px; /* Slightly shorter on tablet */
        }
        .banner-title {
            font-size: 3rem;
        }
    }

    /* Mobile (max-width: 600px) */
    @media (max-width: 600px) {
        .about-banner-section {
            height: 300px; /* Appropriate height for mobile */
        }
        .banner-title {
            font-size: 2.5rem;
        }
        .title-underline {
            width: 60px;
            height: 3px;
            margin: 10px auto 15px;
        }
        .banner-subtitle {
            font-size: 1rem;
        }
    }

/* end */



/* <section class="industries-pro-section"> */
    /* 1. Dark Theme Base */
    .industries-pro-section {
        background: #0b0b10; /* Deep Dark Background */
        padding: 100px 20px;
        text-align: center;
        overflow: hidden;
    }

    .industries-pro-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    /* 2. Header Styles */
    .industries-pro-subtitle {
        color: #8b5cf6; /* Violet */
        font-size: 0.9rem;
        letter-spacing: 3px;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .industries-pro-heading {
        color: #fff;
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 800;
        margin-bottom: 30px;
    }

    .text-gradient {
        background: linear-gradient(90deg, #8b5cf6, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .industries-pro-desc {
        color: #94a3b8;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto 80px auto;
        line-height: 1.7;
    }

    /* 3. Grid Layout */
    .industries-pro-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    /* 4. 3D Flip Card Logic */
    .flip-card {
        background-color: transparent;
        height: 250px; /* Taller */
        perspective: 1000px; /* Essential for 3D effect */
        cursor: pointer;
    }

    .flip-card-inner {
        position: relative;
        width: 100%; height: 100%;
        text-align: center;
        transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
        transform-style: preserve-3d;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }

    /* Front & Back Faces */
    .flip-card-front, .flip-card-back {
        position: absolute;
        width: 100%; height: 100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        border-radius: 20px;
        overflow: hidden;
    }

    /* Front Style */
    .flip-card-front {
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 30px;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .front-overlay {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    }

    .front-title {
        position: relative; z-index: 2;
        color: #fff; font-size: 1.5rem; font-weight: 700;
        text-shadow: 0 4px 8px rgba(0,0,0,0.5);
    }

    /* Back Style (Reveal) */
    .flip-card-back {
        background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%); /* Deep Indigo */
        color: white;
        transform: rotateY(180deg);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        border: 1px solid #6366f1; /* Border Highlight */
    }

    .back-icon { font-size: 2.5rem; margin-bottom: 10px; }
    .back-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
    .back-desc { font-size: 0.9rem; color: #c7d2fe; margin-bottom: 20px; line-height: 1.4; }

    .back-link {
        color: #fff; font-weight: 600; text-decoration: none;
        border: 1px solid #fff; padding: 8px 20px; border-radius: 20px;
        transition: 0.3s; font-size: 0.9rem;
    }
    .back-link:hover { background: #fff; color: #312e81; }

    /* 5. 'View All' Neon Card */
    .view-all-card .flip-card-inner {
        transform: none !important; /* No flip for this one */
        background: #111;
        border: 2px dashed #333;
    }

    .view-all-link {
        width: 100%; height: 100%;
        display: flex; flex-direction: column;
        align-items: center; justify-content: center;
        text-decoration: none; position: relative;
    }

    .view-all-icon { font-size: 3rem; margin-bottom: 15px; }
    
    .view-all-text {
        color: #fff; font-size: 1.4rem; font-weight: 700; line-height: 1.2;
    }

    /* Neon Pulse Effect */
    .view-all-card:hover .flip-card-inner {
        background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
        border: none;
        animation: pulseNeon 1.5s infinite;
    }

    @keyframes pulseNeon {
        0% { box-shadow: 0 0 0 0 rgba(219, 39, 119, 0.7); }
        70% { box-shadow: 0 0 0 20px rgba(219, 39, 119, 0); }
        100% { box-shadow: 0 0 0 0 rgba(219, 39, 119, 0); }
    }

    /* 6. Responsive */
    @media (max-width: 1100px) {
        .industries-pro-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 850px) {
        .industries-pro-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 550px) {
        .industries-pro-grid { grid-template-columns: 1fr; }
    }
/* end   */


/*  <section class="contact-001-section">*/

    /* 1. Section Layout */
    .contact-001-section {
        background: #0b0b0b;
        padding: 80px 20px;
        color: #fff;
        display: flex;
        justify-content: center;
        overflow-x: hidden; /* Prevents unwanted horizontal scroll */
    }

    .contact-001-container {
        display: flex;
        max-width: 1200px;
        width: 100%;
        gap: 60px;
        flex-wrap: wrap;
        align-items: flex-start; /* Aligns items to top */
    }

    /* 2. Left Side Typography */
    .contact-001-info {
        flex: 1;
        min-width: 300px;
        padding-top: 20px;
    }

    .contact-001-heading-wrapper {
        position: relative;
        margin-bottom: 60px;
        line-height: 0.8;
    }

    .contact-001-solid-text {
        font-size: 6rem;
        font-weight: 800;
        color: #fff;
        margin: 0;
        position: relative;
        z-index: 2;
    }

    .contact-001-outline-text {
        font-size: 6rem;
        font-weight: 800;
        color: transparent;
        -webkit-text-stroke: 2px #ff4d6d;
        margin: 0;
        position: relative;
        top: -20px;
        left: 20px;
        z-index: 1;
        opacity: 0.7;
    }

    /* Contact List */
    .contact-001-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-001-item {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .contact-001-icon {
        width: 50px;
        height: 50px;
        background: #1a1a1a;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        border: 1px solid #333;
        flex-shrink: 0; /* Prevents icon from squishing */
    }

    .contact-001-details {
        display: flex;
        flex-direction: column;
    }

    .contact-001-label {
        font-size: 0.8rem;
        color: #888;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 4px;
        text-transform: uppercase;
    }

    .contact-001-value {
        font-size: 1.1rem;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        word-break: break-word; /* Prevents long emails from breaking layout */
    }

    /* 3. Right Side Form */
    .contact-001-form-card {
        flex: 1.2;
        background: #111;
        padding: 40px;
        border-radius: 20px; /* Increased radius */
        border: 1px solid #222;
        min-width: 350px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }

    .contact-001-form-title {
        text-align: center;
        font-size: 1.6rem;
        margin-bottom: 30px;
        font-weight: 700;
        letter-spacing: -0.5px;
    }

    .contact-001-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-001-row {
        display: flex;
        gap: 20px;
    }

    .contact-001-group {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .full-width {
        width: 100%;
    }

    .contact-001-group label {
        font-size: 0.9rem;
        color: #aaa;
        font-weight: 500;
    }

    .contact-001-input {
        background: #1a1a1a;
        border: 1px solid #333;
        padding: 14px 15px; /* Slightly larger touch area */
        border-radius: 10px;
        color: #fff;
        font-size: 1rem;
        outline: none;
        transition: 0.3s;
        width: 100%;
    }

    .contact-001-input:focus {
        border-color: #ff4d6d;
        background: #222;
        box-shadow: 0 0 0 4px rgba(255, 77, 109, 0.1);
    }

    .contact-001-checkbox {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.9rem;
        color: #ccc;
        cursor: pointer;
    }
    
    .contact-001-checkbox input {
        width: 18px;
        height: 18px;
        accent-color: #ff4d6d;
        cursor: pointer;
    }

    .fake-captcha-box {
        background: #f9f9f9;
        color: #000;
        padding: 12px 15px;
        border-radius: 8px;
        width: fit-content;
        display: flex;
        align-items: center;
        gap: 15px;
        border: 1px solid #ccc;
        margin-bottom: 10px;
        font-size: 0.95rem;
        font-weight: 500;
    }

    .captcha-icon {
        width: 28px;
        height: 28px;
    }

    .contact-001-btn {
        width: 100%;
        padding: 16px;
        border-radius: 50px;
        border: none;
        font-size: 1.1rem;
        font-weight: 600;
        color: #fff;
        cursor: pointer;
        background: linear-gradient(90deg, #7c3aed, #ec4899);
        transition: all 0.3s ease;
        margin-top: 10px;
        letter-spacing: 0.5px;
    }

    .contact-001-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
    }

    /* --- RESPONSIVE BREAKPOINTS --- */

    /* Tablet (iPad Portrait / Landscape) */
    @media (max-width: 1024px) {
        .contact-001-container {
            gap: 40px;
            padding: 0 10px;
        }
        
        .contact-001-solid-text, 
        .contact-001-outline-text {
            font-size: 4.5rem; /* Smaller heading for tablet */
        }
        
        .contact-001-info {
            min-width: 100%; /* Full width on tablet if wrapped */
            text-align: center;
        }
        
        .contact-001-heading-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Center icons on tablet */
        .contact-001-list {
            align-items: center;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .contact-001-item {
            background: rgba(255,255,255,0.05);
            padding: 10px 20px;
            border-radius: 10px;
        }
    }

    /* Mobile (Phones) */
    @media (max-width: 768px) {
        .contact-001-section {
            padding: 50px 15px; /* Less padding on mobile */
        }

        .contact-001-container {
            flex-direction: column;
            gap: 50px;
        }

        .contact-001-form-card {
            width: 100%;
            min-width: unset; /* Remove fixed min-width */
            padding: 25px; /* Smaller card padding */
        }

        .contact-001-row {
            flex-direction: column; /* Stack inputs vertically */
            gap: 15px;
        }

        .contact-001-list {
            flex-direction: column; /* Stack list items again on small screens */
            align-items: flex-start;
        }
        
        .contact-001-item {
            width: 100%;
            background: transparent;
            padding: 0;
        }
        
        /* Adjust Heading Size */
        .contact-001-solid-text, 
        .contact-001-outline-text {
            font-size: 3.5rem;
        }
        
        .contact-001-outline-text {
            left: 5px; /* Reduce offset */
            top: -10px;
        }
    }

    /* Small Mobile (Under 480px) */
    @media (max-width: 480px) {
        .contact-001-solid-text, 
        .contact-001-outline-text {
            font-size: 2.8rem; /* Fit small screens */
        }
        
        .contact-001-heading-wrapper {
            margin-bottom: 40px;
        }
        
        .contact-001-form-title {
            font-size: 1.3rem;
        }
        
        .fake-captcha-box {
            width: 100%; /* Full width captcha on mobile */
            justify-content: center;
        }
        
        .contact-001-info {
            align-items: flex-start;
            text-align: left;
        }
        
        .contact-001-heading-wrapper {
            align-items: flex-start;
        }
    }
/* end */