  :root {
    --navy: #00007C;
    --navy-light: #2B2BD8; /* Infinutus Blue */
    --bg-white: #FFFFFF;
    --bg-blue: #F4F7FF; /* Soft premium light blue for alternating sections */
    
    /* Text Colors for Light Theme */
    --text-main: #0A0B1A; /* Very dark navy/black for high contrast */
    --text-muted: #4A4B5A; /* Slate gray for descriptions */
    
    --border-color: rgba(10, 11, 26, 0.08); /* Subtle dark border */
    
    /* Blob Colors */
    --blob-1: #A3B8FF; /* Soft Blue */
    --blob-2: #2B2BD8; /* Brand Blue */
     --blob-faded: #E0E5FF
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background-color: var(--bg-white);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
  }

   .blue-section{
    background-color: var(--navy);
  }

  .blue-section .section-eyebrow{
    color: white;
  }

  .blue-section .section-title{
    color: white;
  }

  .blue-section .section-desc{
    color: var(--bg-blue);
  }

  /* --- REUSABLE TYPOGRAPHY --- */
  .section-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy-light);
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
  }

  .section-desc {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* --- HEADER / NAVBAR --- */
  #navbar {
    position: fixed;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  @media (min-width: 769px) {
    #navbar {
      top: 3.5rem;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 18px;
      corner-shape: squircle;
      padding: 1rem 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    }

    .nav-logo{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-logo img{
    width: 25px;
  }
    
    .mobile-toggle { display: none; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-muted);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .nav-links a:hover { color: var(--navy-light); }

    .nav-links .nav-logo:hover{
      transform: rotate(180deg) scale(1.2);
    }

    .nav-cta {
      background: var(--navy-light) !important;
      color: #FFFFFF !important;
      padding: 0.6rem 1.5rem;
      border-radius: 14px; 
      corner-shape: squircle;
      font-weight: 600 !important;
      transition: transform 0.2s, box-shadow 0.2s !important;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(43, 43, 216, 0.3);
    }
  }

  @media (max-width: 768px) {
    #navbar {
      top: 0; left: 0; width: 100%;
      padding: 1.2rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-radius: 0;
      border-top: none; border-left: none; border-right: none;
    }

    .nav-logo {
      display: block;
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--text-main);
      text-decoration: none;
      letter-spacing: -0.02em;
    }

    .nav-links { display: none; }

    .mobile-toggle {
      display: flex; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer;
    }

    .mobile-toggle span {
      display: block; width: 24px; height: 2px;
      background: var(--text-main); border-radius: 2px;
    }
  }

  /* --- HERO SECTION (WHITE) --- */
  #hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--bg-white);
  }

  .hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    /* Softens the blobs so they don't overpower the text in light mode */
    opacity: 1; 
  }

  .gooey-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: url('#goo');
  }

  .blob {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
  }

  .blob-1 {
    width: clamp(140px, 15vw, 300px); height: clamp(140px, 15vw, 300px);
    background-color: var(--blob-faded); top: 20%; left: -5vw; 
  }

  .blob-2 {
    width: clamp(120px, 12vw, 250px); height: clamp(120px, 12vw, 250px);
    background-color: var(--blob-2); top: 60%; right: -5vw; 
  }

  .blob-small-1 {
    width: clamp(50px, 5vw, 90px); height: clamp(50px, 5vw, 90px);
    background-color: var(--blob-1); top: 15%; left: 40%;
  }

  .blob-small-2 {
    width: clamp(40px, 4vw, 70px); height: clamp(40px, 4vw, 70px);
    background-color: var(--blob-2); top: 75%; left: 30%;
  }

  .blob-small-3 {
    width: clamp(60px, 6vw, 100px); height: clamp(60px, 6vw, 100px);
    background-color: var(--blob-1); top: 40%; right: 25%;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px; 
    padding: 0 5%;
  }

  .hero-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy-light);
    margin-bottom: 2rem;
  }

  .hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3.5rem, 8vw, 8rem); 
    font-weight: 900; 
    line-height: 1.05;
    letter-spacing: -0.03em; 
    margin-bottom: 1.5rem;
    color: var(--text-main);
  }

  .hero-title .accent-line { color: var(--navy-light); }

  .hero-subtitle { 
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem); 
    font-weight: 400; 
    color: var(--text-muted);
    margin: 0 auto; line-height: 1.6; max-width: 900px; 
  }

  .word-wrap { display: inline-block; white-space: nowrap; }
  .char-mask { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.1em; margin-bottom: -0.1em; }
  .char-inner { display: inline-block; will-change: transform, opacity; }
  .subtitle-mask { display: block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.1em; margin-bottom: -0.1em; }
  .line-inner { display: block; will-change: transform, opacity; }
  
  @media (max-width: 768px) {
    .subtitle-mask, .line-inner { display: inline; overflow: visible; }
  }

  /* --- BRAND MARQUEE (BLUE) --- */
  #brand-ticker {
    position: relative;
    width: 100vw;
    padding: 5rem 0; 
    overflow: hidden;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ticker-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color:white;
    margin-bottom: 4rem; 
  }

  .ticker-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  }

  @media (min-width: 769px) {
    .ticker-container {
      mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
    }
  }

  .ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
  }

  .ticker-item {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700; 
    letter-spacing: -0.02em;
    color: #4444a8; /* Dark but faded */
    margin: 0 1.5vw;
    cursor: default;
    transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .ticker-item:hover { color: white; opacity: 1; transform: scale(1.08); }

  .ticker-separator {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(10, 11, 26, 0.1);
    margin: 0 1.5vw;
    user-select: none;
  }

  /* --- SERVICES SECTION (WHITE) --- */
  #services {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    padding: 120px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-white);
    z-index: 2; 
  }

  .services-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .svc-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.6s ease-in-out;
  }

  /* Keep images subtle against white bg */
  .svc-bg-img.active { opacity: 0.5; }

  .services-gradient {
    position: absolute;
    inset: 0;
    /* Blend to white */
    background: linear-gradient(to right, var(--bg-white) 0%, var(--bg-white) 45%, transparent 100%);
    z-index: 1;
  }

  .services-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px; 
    margin: 0 auto;
    padding: 0 4%; 
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; 
    gap: 5rem; 
    align-items: start;
  }

  .services-left { position: sticky; top: 20vh; }

  .services-right {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
  }

  .svc-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    cursor: pointer;
    transition: padding 0.3s ease;
  }

  .svc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .svc-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 700;
    color: rgba(10, 11, 26, 0.4); /* Faded dark text */
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
  }

  .svc-icon {
    font-size: 1.5rem;
    color: rgba(10, 11, 26, 0.2);
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .svc-body { height: 0; overflow: hidden; opacity: 0; }

  .svc-body p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding-top: 1rem;
    padding-right: 5%; 
  }

  .svc-item:hover .svc-title, .svc-item.active .svc-title { color: var(--text-main); }
  .svc-item:hover .svc-icon, .svc-item.active .svc-icon { color: var(--navy-light); transform: rotate(45deg); }

  @media (max-width: 992px) {
    #services { padding: 80px 0; }
    .services-content { grid-template-columns: 1fr; gap: 3rem; }
    .services-left { position: relative; top: 0; text-align: center; }
    .services-bg-wrapper, .services-gradient { display: none; }
    .svc-title { font-size: 1.35rem; }
    .svc-body p { padding-right: 0; font-size: 0.95rem; }
  }


  /* --- RESULTS SECTION (BLUE) --- */
  #results {
    position: relative;
    width: 100vw;
    padding: 120px 0;
    overflow: hidden;
    z-index: 5;
  }

  .results-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4%;
  }

  .results-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .results-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .result-card {
    position: relative;
    width: 100%;
    max-width: 340px; 
    flex: 1 1 300px;
    background: rgba(0, 0, 0, 0.06); /* Darker outer border for light mode */
    border-radius: 20px;
    padding: 2px; 
    overflow: hidden;
    cursor: none; 
  }

  .card-border-anim {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg, transparent 0%, transparent 60%, var(--navy-light) 100%);
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
  }

  @keyframes spinBorder {
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }

  .result-card-inner {
    position: relative;
    background: var(--bg-white); /* White card to pop off blue bg */
    border-radius: 18px;
    padding: 2.5rem 2rem;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
  }

  .rc-client {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.25rem;
  }

  .rc-industry {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
  }

  .rc-metrics {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .rc-metric-item {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
  }

  .rc-metric-item strong {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
  }

  .rc-footer-note {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--navy-light);
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
  }

  @media (min-width: 769px) {
    .result-card:hover .card-border-anim {
      opacity: 1;
      animation: spinBorder 8s linear infinite; 
    }
  }

  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: 90px;
    padding: 0 1.5rem;
    background-color: var(--navy-light);
    border-radius: 50px; 
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    z-index: 9999;
  }

  @media (max-width: 768px) {
    #results { padding: 80px 0; }
    .results-header { margin-bottom: 3rem; }
    .result-card { cursor: auto; }
    .card-border-anim { display: none !important; }
    .custom-cursor { display: none !important; }
  }


  /* --- ABOUT SECTION (WHITE) --- */
  #about {
    position: relative;
    width: 100vw;
    padding: 120px 0;
    background-color: var(--bg-white);
    overflow: hidden;
    z-index: 5;
    border-top: 1px solid var(--border-color);
  }

  .about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
    align-items: center;
  }

  .about-image-col {
    position: relative;
    width: 100%;
  }

  .about-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 6;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .shabz{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    overflow: hidden;
    border-radius: 20px;
    corner-shape: squircle;
    filter: grayscale(100) contrast(1.05);
    transition: all 0.35s;
  }

  .shabz:hover{
    filter: grayscale(0) contrast(1);
    zoom: 120%;
  }

  .shabz-text{
    color: #2B2BD8;
    font-weight: 500;
  }

  .about-text-col {
    display: flex;
    flex-direction: column;
  }

  .about-text-col p {
    margin-bottom: 1.5rem;
  }

  .about-text-col p:last-child {
    margin-bottom: 0;
  }

  @media (max-width: 992px) {
    #about { padding: 80px 0; }
    .about-container { grid-template-columns: 1fr; gap: 4rem; }
    .about-image-placeholder { aspect-ratio: 1 / 1; }
  }


  /* --- TESTIMONIALS SECTION (BLUE) --- */
  #testimonials {
    position: relative;
    width: 100vw;
    padding: 120px 0;
    overflow: hidden;
    z-index: 5;
    border-top: 1px solid var(--border-color);
  }

  .testi-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
  }

  .testi-header {
    margin-bottom: 4rem;
    text-align: center;
  }

  .testi-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px; 
    display: flex;
    align-items: center;
  }

  .testi-slide {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  .testi-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2; 
  }

  .testi-quote-side {
    position: relative;
  }

  .quote-icon {
    font-family: 'Inter', sans-serif;
    font-size: 6rem;
    color: var(--navy-light);
    opacity: 0.15;
    position: absolute;
    top: -2rem;
    left: -2rem;
    z-index: -1;
  }

  .testi-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--bg-white);
    letter-spacing: -0.02em;
  }

  .testi-author-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border-color);
    padding-left: 4rem;
  }

  .testi-name {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 0.25rem;
  }

  .testi-service {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--bg-blue);
    margin-bottom: 1.5rem;
  }

  .testi-stars {
    color: #d98943; /* Golden yellow */
    font-size: 1.25rem;
    letter-spacing: 0.2em;
  }

  .testi-nav {
    display: flex;
    gap: 1rem;
    margin-top: 4rem;
    justify-content: flex-end;
  }

  .testi-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  }

  .testi-btn:hover {
    background: var(--bg-blue);
    border-color: var(--navy-light);
    color: var(--navy);
  }

  .testi-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  @media (max-width: 992px) {
    #testimonials { padding: 80px 0; }
    .testi-slide {
      position: relative;
      top: 0;
      transform: none;
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    .testi-slider-wrapper { min-height: auto; display: block; }
    .testi-slide { display: none; } 
    .testi-slide.active { display: grid; }

    .testi-author-side {
      border-left: none;
      border-top: 1px solid var(--border-color);
      padding-left: 0;
      padding-top: 2rem;
    }
    .testi-nav { justify-content: center; }
  }

  /* --- CONTACT SECTION (WHITE) --- */
  #contact {
    position: relative;
    width: 100vw;
    padding: 120px 0;
    background-color: var(--bg-white);
    overflow: hidden;
    z-index: 5;
    border-top: 1px solid var(--border-color);
  }

  .contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
  }

  .contact-left {
    display: flex;
    flex-direction: column;
  }

  .contact-info-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .ci-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .ci-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .ci-value:hover {
    color: var(--navy-light);
  }

  .contact-right {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
  }

  .form-input {
    background: var(--bg-blue);
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    transition: border-color 0.3s ease, background 0.3s ease;
    width: 100%;
  }

  .form-input::placeholder {
    color: rgba(10, 11, 26, 0.4);
  }

  .form-input:focus {
    outline: none;
    border-color: var(--navy-light);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(43, 43, 216, 0.1);
  }

  textarea.form-input {
    resize: vertical;
    min-height: 140px;
  }

  .submit-btn {
    margin-top: 1rem;
    background: var(--navy-light);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 43, 216, 0.3);
  }

  @media (max-width: 992px) {
    #contact { padding: 80px 0; }
    .contact-container {
      grid-template-columns: 1fr;
      gap: 4rem;
    }
    .contact-right {
      padding: 2rem;
    }
  }