:root {
            --primary-color: #6366f1;
            --secondary-color: #8b5cf6;
            --accent-color: #f59e0b;
            --accent-pink: #ec4899;
            --accent-cyan: #06b6d4;
            --text-primary: #0f172a;
            --text-secondary: #64748b;
            --text-light: #ffffff;
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-dark: #0f172a;
            --bg-card: rgba(255, 255, 255, 0.95);
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-tertiary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-elegant: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --glass: rgba(255, 255, 255, 0.15);
            --glass-border: rgba(255, 255, 255, 0.2);
        }

        body {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            scroll-behavior: smooth;
            overflow-x: hidden;
            background: var(--bg-primary);
        }
/* Base header */
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem 0.7rem 1.0rem;
  background: #fafaff;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 900;
  box-sizing: border-box;
}

/* Logo always on the left */
.app-logo {
  width: 124px;
  height: auto;
  object-fit: contain;
  background: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  display: block;
}

.logo-link {
  display: block;
  cursor: pointer;
}
.logo-link:focus img,
.logo-link:hover img {
  opacity: 0.82;
  transition: opacity 0.18s;
}


/* Hamburger always on the right (mobile/tablet), disables on desktop */
.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  width: 56px;
  height: 56px;
  cursor: pointer;
  box-shadow: none;
}
.hamburger-icon {
  width: 32px; 
  height: 32px; 
  display: flex; 
  flex-direction: column; 
  justify-content: center;
}
.hamburger-icon span {
  width: 32px; height: 4px; border-radius: 2px;
  background: #262750;
  margin: 3.4px 0;
}

/* Hide desktop navbar by default (show on desktop via media query) */
#navbar {
  display: none;
  justify-content: space-around;
  margin-right: 50px;
}


/* Desktop nav styles */
.nav-links {
  display: flex;
  gap: 2.8vw;
  align-items: center;
  list-style: none;
  margin: 0; 
  padding: 0;
}
.nav-links a {
  color: #14163c;
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
  transition: color .15s;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0rem 0;
}
.nav-links a:hover {
  color: var(--primary-color, #6366f1);
  transform: translateY(-1px);
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--gradient-primary, #6366f1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 1px;
}
.nav-links a:hover::after { width: 100%; }

/* Mobile nav sheet (hidden by default) */
.mobile-nav-sheet {
  display: none;
  position: absolute;
  top: 74px; left: 0; width: 100vw;
  background: none;
  z-index: 1200;
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;    /* ADD THIS if missing */
  width: 100vw;
  justify-content: center;
  align-items: center;
  animation: slideDown .35s;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px);}
  to { opacity: 1; transform: translateY(0);}
}
.mobile-nav-sheet.open { display: flex; }
.nav-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #727299;
  cursor: pointer;
  position: absolute; top: 18px; right: 32px;
  right: 12px;
  z-index: 2;
}
.mobile-nav-links {
  background: rgba(255,255,255,0.94);   
  border-radius: 16px;
  padding: 28px 0 18px 0;
  margin: 22px 10px 8px auto;     
  max-width: 90vw;        
  width: 50px;   
  height:50vw;        
  min-width: 170px;
  align-items: flex-end;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08); 
  list-style: none;     
  padding-left: 0;
}

.mobile-nav-links a {
  color: #2e3192;                 
  background: none;               
  font-weight: 700;
  border-radius: 9px;
  display: block;
  text-align: right;
  padding: 12px 18px;
  transition: background .15s, color .15s;
  font-size: 1.1rem;    /* (Optional) Make links easier to read */
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
  background: #edefff;
  color: var(--primary-color, #6366f1);
}


@media (min-width: 800px) {
  .header-main { height: 74px; }
  .app-logo { width: 170px; }
  #navbar { display: block; }
  .hamburger-btn, .mobile-nav-sheet, .nav-close { display: none !important; }
}

        /* Hero Section */
        .hero {
            height: 115vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-elegant);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            animation: float 25s ease-in-out infinite;
            opacity: 0.7;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite alternate;
        }

        .hero-content {
            text-align: center;
            color: var(--text-light);
            z-index: 2;
            position: relative;
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-subtitle {
            font-size: 12px;
            font-weight:100;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.2s forwards;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .hero h1 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.4s forwards;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.6s forwards;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

@media (max-width: 800px) {
  .hero {
    width: 100vw; 
    min-width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
    border-radius: 0;     
    box-sizing: border-box;
  }
  .hero-content {
    max-width: 98vw;       
    padding: 0 1vw;       
    margin: 0 auto;
    box-sizing: border-box;
  }
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;    
    width: 100vw;
  }
}

.hero,
.hero-content {
  box-shadow: none;
  border-radius: 0;
}


.cta-button {
  display: block;                
  width:58vw;   
  justify-content:space-around;                
  max-width: 230px;             
  margin: 14px auto 0 auto;      
  padding: 0.72rem 0;           
  background: rgba(255, 255, 255, 0.21);
  color: var(--text-light);
  text-decoration: none;
  border-radius:25px;           
  font-weight: 600;
  font-size: 1.09rem;            
  border: 2px solid rgba(255,255,255,0.18);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 18px -7px #667eeaa6;
  letter-spacing: 0.4px;
}

/* Optional: Button hover effect */
.cta-button:hover {
  background: rgba(255,255,255,0.28);
  border-color: #9484eb88;
  transform: translateY(-2px) scale(1.032);
}

@media (max-width: 800px) {

  .cta-button {
    width:68vw;
    max-width: 280px;
    padding: 0.54rem 0;
    font-size: 0.99rem;
    border-radius: 14px;
    margin-top: 13px;
  }
}

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        section {
            padding: 8rem 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 2.5rem;
            font-weight: 600;
            background: var(--gradient-elegant);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .logo-image {
        height:15vh;
        width: 15vw;
        transition: transform 0.35s cubic-bezier(.51,1.1,.59,1.02), box-shadow 0.33s;
        cursor: pointer;
        }

        .logo-image:hover {
            transform: scale(1.14);
        }

        .hero-content{
            padding-top:20px;
            margin-top:5px;
        }

        .head{
            font-size:12px;
            font-family:"Roboto";
            text-align:center;
        }

        .subtitle{
            font-size:12px;
            font-family:sans-serif;
            text-align:center;
        }

        .supportingText{
            font-size:20px;
            font-family:"Roboto";
            text-align:center;
            color:#ffffff;
        }

        .spanText{
            font-weight:bold;
        }

        .heading{
            color:#000000;
            font-size:25px;
            text-align: center;
        }

   .buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border-radius: 30px;
  width: 100%;
  margin: 18px 0 0 0;
  margin-top: 7%;
  gap: 14px;    
}

.cta-image {
  width: 350px;      
  max-width: 90vw;
  border-radius: 30px;
  box-shadow: 0 6px 24px -8px #6366f13A, 0 2px 10px #8b5cf631;
}

@media (min-width: 700px) {
  .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 500px;       
    width: 100%;
    margin: 38px auto 0 auto; 
  }
}



.services-section {
  max-width: 950px;
  margin: 0 auto;
  padding: 2rem 1.3rem;
  background: var(--gradient-tertiary);
  border-radius: 34px;
  box-shadow: 0 8px 32px -10px #aabcf355;
}
.services-hero h2 {
  font-size: 2.7rem;
  color: #2d3992;
  text-align: center;
  margin-bottom: 0.6rem;
  font-weight: 800;
}
.services-subtitle {
  font-size: 1.15rem;
  text-align: center;
  color: #314053;
  margin-bottom: 1.5rem;
}
.services-group {
  margin-bottom: 2.5rem;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 14px #b2c1ee33;
  padding: 1.28rem 1.05rem;
}
.services-group h3 {
  font-size: 1.35rem;
  margin-bottom: .3rem;
  color: #234b95;
  font-weight: 700;
  text-align: left;
}
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-list li {
  margin-bottom: 14px;
  font-size: 1.11rem;
  color: #314053;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf2fb;
}
.services-list li:last-child {
  border-bottom: none;
}
.services-list strong {
  color: #5764f7;
  font-weight: 700;
}
.services-list span {
  display: block;
  margin-top: 3px;
  color: #3b4867;
}

.serviceHeading{
  font-size:20px;
  font-family:"Roboto";
  align-items:center;
  text-align:center;
  color:#265cc2;
}


.cta-block {
  background: #eef4fe;
  border-radius: 20px;
  padding: 1.3rem;
  text-align: center;
  margin-top: 1.5rem;
  box-shadow: 0 4px 30px -5px #6db3fa11;
}
.cta-block h4 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: #234b95;
}
.cta-block p {
  font-size: 1.12rem;
  color: #3b4867;
  margin-bottom: 0.7rem;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(92deg, #3ecfea 0%, #2457e8 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 13px 27px;
  border-radius: 99px;
  box-shadow: 0 2px 18px #3690ff33;
  transition: background .19s, box-shadow .23s, transform .14s;
}
.cta-btn:hover {
  background: linear-gradient(92deg, #2457e8 0%, #3ecfea 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 30px -6px #3bc7e699;
}

/* Mobile: stack, adjust font and padding */
@media (max-width: 800px) {
  .services-section {
    padding: 0.9rem 2vw;
    border-radius: 14px;
    box-shadow: none;
  }
  .services-hero h2 { font-size: 1.7rem; }
  .services-subtitle { font-size: 0.98rem; }
  .services-group { padding: 0.85rem 5vw; border-radius: 10px; }
  .services-group h3 { font-size: 1.01rem; }
  .services-list li { font-size: 0.99rem; padding-bottom: 7px; }
  .cta-block { border-radius: 10px; padding: 0.7rem 2vw; }
  .cta-block h4 { font-size: 1.03rem; }
  .cta-block p { font-size: .95rem; }
  .cta-btn { font-size: 0.94rem; padding: 9px 18px; }
}





#WhoWeAre {
  margin-top: 0;     
  padding-top: 0;
}

.headingWho{
    text-align:center;
    margin-top:25px;
    color:#2d3992;
}

.who-content-card {
  max-width: 1100px;
  margin: 0 auto 40px auto;   
  margin-bottom: 8px; 
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 8px 42px -10px #b7c8ec44, 0 2px 12px #3a60e988;
  padding: 46px 44px 38px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 20;
  animation: fade-in-card 0.8s cubic-bezier(.44,1.1,.65,1.00) 0.2s;
}


.who-title {
  font-size: 2rem;
  font-weight: 700;
  color: #181f3a;
  text-align: center;
  letter-spacing: .01em;
  font-family: 'Segoe UI', 'Montserrat', Arial, sans-serif;
  animation: fade-up-heading 1.1s cubic-bezier(.53,.62,.44,1.1) 0.1s;
}

.who-paragraph {
  font-size:18px;
  color: #80789e;
  line-height: 1.7;
  text-align: center;
  font-family: 'Roboto',sans-serif;
  margin: 0 0 16px 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .who-content-card {
    padding: 26px 12px 20px 12px;
    max-width: 98vw;
    border-radius: 18px;
    margin: 32px auto 22px auto;   
  }
  .who-title { font-size: 1.2rem; margin-bottom: 8px; }
  .who-paragraph { font-size: 0.97rem; margin-bottom: 0px; }
}

.what-we-do-section {
  /*max-width: 1300px;*/
  padding: 0 16px;
  margin-top: 0;        
}

.who-content-card {
  margin-bottom: 0;     
}

.what-we-do-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  color: #2d3992;
  letter-spacing: 0.01em;
  margin-bottom: 34px;
  font-family: 'Roboto';
}

.services-grid {
  display: flex;
  flex-direction: row;
  gap:70px;
  justify-content: center;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 34px -8px #4270e155, 0 1px 10px #ced6e388;
  padding: 30px 30px 30px 30px;
  flex: 1 1 300px;
  width:30vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.19s, box-shadow 0.23s;
}

.service-card h3 {
  font-size: 1.32rem;
  font-weight: 700;
  color: #3f4680;
  margin-bottom: 0px;
}

.service-card p {
  font-size: 1.01rem;
  color: #2d3b55;
  margin: 0;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 10px 44px -10px #89a1ff88, 0 4px 24px #4fd2f265;
}

/* Responsive: Stack cards on mobile */
@media (max-width: 990px) {
  .services-grid {
    flex-direction: column;
    gap: 22px;
    align-items: center;
  }
  .service-card {
    width: 100%;
    max-width: 600px;
    align-items: center;
    text-align: center;
  }
}


.focus-areas-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  margin-top: 0;              /* No gap above */
}

.focus-areas-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  color: #2d3992;
  letter-spacing: 0.01em;
  margin-bottom: 34px;
  font-family: 'Roboto';
  margin-top:25px;
}

.focus-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;       
  justify-items: center;
}

.focus-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 10px 40px -12px #3570e144, 0 2px 20px #d8eafe29;
  padding: 30px 30px 26px 30px;
  min-height: 199px;
  width: 85%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.16s, box-shadow 0.18s;
}

.focus-card h4 {
  font-size: 1.18rem;
  color: #223661;
  margin-bottom: 13px;
  margin-top: 0;
  line-height: 1.3;
}

.focus-card p {
  font-size: 1.03rem;
  color: #314053;
  margin: 0;
  line-height: 1.48;
}

.focus-card:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 18px 30px -5px #5fa8fa31, 0 4px 24px #7ec3ee33;
}

@media (max-width: 1024px) {
  .focus-areas-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }
}

@media (max-width: 700px) {
  .focus-areas-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .focus-card {
    align-items: center;
    text-align: center;
    min-height: 0;
  }
}


.why-avani-section {
  max-width: 980px;
  margin: 56px auto 0 auto;
  padding: 0 18px;
}

.why-avani-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 12px 48px -10px #4770e133, 0 3px 14px #e1eafc55;
  padding: 48px 36px 38px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  animation: fade-in-card 0.8s cubic-bezier(.44,1.1,.65,1.00) 0.2s;
}

.why-avani-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  color: #2d3992;
  letter-spacing: 0.01em;
  margin-bottom: 34px;
  font-family: 'Roboto';
  margin-top:25px;
}

.why-avani-features {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.why-avani-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 4px solid #3180ed22;
  padding-left: 16px;
}

.feature-title {
  font-size: 1.17rem;
  font-weight: 700;
  color: #265cc2;
  margin-bottom: 6px;
}

.feature-text {
  font-size: 1.071rem;
  color: #314567;
  text-align: center;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .why-avani-card {
    padding: 25px 7px 19px 7px;
    border-radius: 18px;
  }
  .why-avani-title {
    font-size: 1.19rem;
  }
  .feature-title {
    font-size: 1.05rem;
  }
  .feature-text {
    font-size: 0.96rem;
  }
}


.cta-footer-section {
  width: 100%;
  background: linear-gradient(90deg, #e0eafd 0, #f3f5ff 100%);
  padding: 52px 0 48px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-footer-card {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 38px -8px #2870fa29, 0 1px 18px #c7e6f677;
  padding: 38px 34px 32px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-footer-title {
  font-size: 2rem;
  color: #29408b;
  text-align: center;
  margin: 0;
  letter-spacing: .01em;
}

.cta-footer-desc {
  font-size: 1.20rem;
  color: #35456c;
  text-align: center;
  margin: 0;
}

.cta-footer-button {
  margin-top: 10px;
  background: linear-gradient(92deg, #3ecfea 0%, #2457e8 100%);
  color: #fff;
  font-size: 1.17rem;
  font-weight: 700;
  text-decoration: none;
  padding: 17px 42px;
  border-radius: 99px;
  box-shadow: 0 4px 32px #3690ff33;
  transition: background .19s, box-shadow .23s, transform .14s;
  display: inline-block;
  letter-spacing: .03em;
}

.cta-footer-button:hover {
  background: linear-gradient(92deg, #2457e8 0%, #3ecfea 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 40px -7px #3bc7e677;
}

@media (max-width: 600px) {
  .cta-footer-card { border-radius: 18px; padding: 20px 8px 20px 8px; }
  .cta-footer-title { font-size: 1.15rem; }
  .cta-footer-desc { font-size: .98rem; }
  .cta-footer-button { font-size: 1rem; padding: 13px 22px; }
}

/* Mobile First: styles for screens <= 800px */
@media (max-width: 800px) {
  /* Navigation: stack links vertically and hide logo if needed */
  .nav-container {
    flex-direction: column;
    align-items: center;
  }
  .logo-image {
    height: 8vh;
    width: 20vw;
  }
  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Hero Section: reduce padding, font sizes for headings and subheadings */
  .hero {
    padding: 2rem 1rem;
  }
  .head {
    font-size:12px;
  }
  .subtitle {
    font-size: 1rem;
  }
  .supportingText {
    font-size: 1.2rem;
  }

  /* Buttons: make them full width and stack vertically */
  .buttons {
    flex-direction: column;
    gap: 16px;
  }
  .cta-button {
    width: 90%;
    font-size: 1.2rem;
  }

  /* Who We Are: reduce max-width, center text */
  .who-content-card {
    padding: 20px;
    max-width: 95vw;
    border-radius: 18px;
  }
  .headingWho {
    font-size: 1.5rem;
  }
  .who-title {
    font-size: 1.2rem;
  }
  .who-paragraph {
    font-size: 0.95rem;
  }


/* Animation */
@keyframes fadeSlideIn {
  to { opacity: 1; transform: translateY(0);}
}

/* CTA Card */
.cta-card {
  background: linear-gradient(90deg,#7e80fc 15%, #c986e2 94%);
  color: #fff;
  border-radius: 18px;
  text-align: center;
  margin: 32px auto 0 auto;
  padding: 32px 16px 30px 16px;
  max-width: 480px;
}
.cta-card h3 { color: #fff; font-size: 1.2rem; }
.cta-card .cta-btn {
  background: #fff;
  color: #6c39bf;
  border: none;
  padding: 10px 34px;
  border-radius: 30px;
  font-size: 1.02rem;
  font-weight: 700;
  margin-top: 16px;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 2px 20px rgba(255,255,255,0.12);
  transition: background 0.18s, color 0.18s;
}
.cta-card .cta-btn:hover {
  background: #6c39bf;
  color: #fff;
}

  /* Focus Areas: stack grid items vertically */
  .focus-areas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .focus-card {
    width: 90%;
  }

  /* Why Choose Us: reduce padding, font sizes */
  .why-avani-card {
    padding: 20px;
  }
  .why-avani-title {
    font-size: 1.5rem;
  }
  .why-avani-feature {
    flex-direction: column;
    align-items: center;
  }
  .feature-title {
    font-size: 1rem;
  }
  .feature-text {
    font-size: 0.9rem;
  }

  /* CTA Footer: adjust padding, font size */
  .cta-footer-section {
    padding: 30px 0;
  }
  .cta-footer-title {
    font-size: 1.5rem;
  }
  .cta-footer-desc {
    font-size: 1rem;
  }
  .cta-footer-button {
    font-size: 1rem;
    padding: 12px 24px;
  }
}


/* General Container Setup */
.service-section {
  margin: 22px auto 36px auto;  
  max-width: 1200px;
  background: none;
  padding: 0 0px 0 0px;      
  text-align: center;
}


/* Section Headings - centered, bold, like your sample */
.service-section > h1,
.service-section > h2 {
  color: #353b82;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom:20px;;
  letter-spacing: 1px;
  text-align: center;
}

.heading1 {
  margin-bottom: 2px !important; 
}


.card-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin-bottom: 30px;
  flex-wrap: nowrap;   
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.card-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .card-grid-2col {
    gap: 22px;
    max-width: 100vw;
  }
}
@media (max-width: 700px) {
  .card-grid-2col {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


/* On sections with more than 3 cards (Platform & Workflow Solutions),
   you can override this by adding a modifier class, e.g. .card-grid.four-col {flex-wrap: wrap;} */

@media (max-width:1120px) {
  .card-grid {
    gap: 20px;
    max-width: 100vw;
  }
}
@media (max-width: 990px) {
  .card-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .info-card {min-width:260px; max-width: 440px; flex:1 1 290px;}
}
@media (max-width: 760px) {
  .card-grid {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}


.info-card {
  background: rgba(255,255,255, 0.93);
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(139,112,241,0.12), 0 1.5px 10px 0 rgba(122,72,216,0.07);
  padding: 32px 28px 24px 28px;
  width: 350px;       /* Consistent, fits 3 per 1200px row */
  min-width: 250px;
  max-width: 360px;
  margin: 0;
  opacity: 0;
  transform: translateY(36px);
  animation: fadeInUp 0.7s forwards;
  animation-delay: 0.11s;
  transition: box-shadow .23s, transform .19s, background .19s, border .16s;
  text-align: left;
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.info-card h3 {
  font-weight: 700;
  color: #3c289c;
  font-size: 1.18rem;
  margin-bottom: 14px;
}
.info-card p {
  color: #243058;
  font-size: 1.08rem;
  line-height: 1.55;
  letter-spacing: 0.1px;
}

/* Card Hover Effect */
.info-card:hover {
  background: linear-gradient(135deg, #e7defd 0%, #f8f2ff 95%);
  box-shadow: 0 12px 40px 0 rgba(98,54,219,0.15), 0 3px 30px rgba(109,52,216,0.12);
  border: 2px solid #895ae5;
  transform: translateY(-7px) scale(1.025);
}

/* Animate Up Entry */
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0);}
}

/* CTA card and button styles */
.cta-card {
  color: #fff;
  border-radius: 22px;
  text-align: center;
  margin: 40px auto 0 auto;
  padding: 38px 24px 32px 24px;
  max-width: 490px;
  box-shadow: 0 7px 34px rgba(92,42,206,.10);
}

.cta-card h3 { color: #fff; font-size: 1.2rem; font-weight: 600; }
.cta-card .cta-btn {
  background: #fff;
  color: #7e80fc;
  border: none;
  padding: 12px 38px;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 18px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 12px rgba(132,84,225,0.08);
  transition: background .18s, color .18s, box-shadow .16s;
}
.cta-card .cta-btn:hover {
  background: #7e80fc;
  color: #fff;
  box-shadow: 0 8px 30px rgba(132,84,225,0.18);
}


/* Hero Section */
.contact-hero {
  margin-top:20px;
  background: var(--gradient-elegant);
  padding: 1.5rem 1vw 2.5rem 2vw;
  text-align: center;
}
.contact-title {
  color: #fff;
  font-size:30px;
  font-family:sans-serif;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.contact-subtitle {
  color: #f0f3fc;
  font-size:20px;
  font-family:"roboto";
  max-width: 680px;
  margin: 0 auto 0;
}

/* Main Content Layout */
.contact-content {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1140px;
  margin: -72px auto 48px auto;
  flex-wrap: wrap;
}

/* Info Card & Image Card */
.contact-info-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-card, 0 7px 34px -8px #927dde33, 0 1.5px 12px 0 #ae9cf022);
  padding: 32px 28px;
  min-width: 265px;
  max-width: 340px;
  margin-bottom: 24px;
  flex: 1 1 270px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.contact-card-img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 8px 26px #bea0f022;
  display: block;
  object-fit: contain;
  margin: 0 auto;
  /* If image is the only child, center vertically */
  align-self: center;
  background: #f8f8ff;
}

/* Text details inside cards */
.contact-info-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 18px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 17px;
}

.contact-detail1{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 17px;
}
.contact-icon {
  font-size: 1.22rem;
  color: var(--secondary-color);
}
.contact-icon1{
  font-size: 1.22rem;
  color: var(--secondary-color);
}

.contact-info-card a {
  color: var(--secondary-color);
  text-decoration: underline;
}
.contact-info-card a:hover {
  color: var(--primary-color);
}

/* Form Card */
.contact-form {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-card, 0 7px 34px -8px #927dde33, 0 1.5px 12px 0 #ae9cf022);
  padding: 32px 28px;
  min-width: 320px;
  max-width: 530px;
  flex: 1 1 330px;
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}
.contact-form h4 {
  font-size: 1.17rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 18px;
}

/* Grouped Inputs */
.input-row {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}
.input-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 18px;
}
.input-group label {
  font-size: 1rem;
  color: #282966;
  font-weight: 600;
  margin-bottom: 6px;
}
.input-group input,
.input-group select,
.input-group textarea {
  padding: 13px 13px;
  border-radius: 9px;
  font-size: 1rem;
  border: 1.5px solid #e0e7ef;
  outline: none;
  background: #f6f8fb;
  margin-bottom: 2px;
  transition: border .14s, box-shadow .18s;
}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border: 1.8px solid var(--primary-color);
  box-shadow: 0 4px 24px -12px #667eea55;
  background: #fff;
}

.contact-btn {
  margin-top: 13px;
  padding: 15px 42px;
  font-size: 1.1rem;
  color: #fff;
  background: var(--gradient-primary);
  border: none;
  border-radius: 99px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 2px 18px #667eea22;
  transition: background .22s, transform .13s;
}
.contact-btn:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px) scale(1.03);
}

.contact-help {
  font-size: 0.97rem;
  margin-top: 9px;
  color: #686896;
  background: #f7f9fa;
  border-radius: 11px;
  padding: 10px 13px 9px 13px;
}

/* Responsive Layout */
@media (max-width: 1100px) {
  .contact-content { flex-direction: column; gap: 30px; align-items: center;}
  .contact-form, .contact-info-card { min-width: 220px; max-width: 99vw; margin-top: 0;}
  .contact-card-img { max-width: 96vw; }
}
@media (max-width: 720px) {
  .contact-hero { padding: 2.2rem 2vw 1.4rem 2vw; }
  .contact-title { font-size: 1.2rem; }
  .contact-form, .contact-info-card { padding: 17px 7px; }
  .contact-help { font-size: 0.91rem; }
  .input-row { flex-direction: column; gap: 0; }
}








        