 @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:wght@300;400;600;700&display=swap');

 html, body {
   width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* This kills the horizontal scroll */
    position: relative; /* Helps with absolute positioned items */
    box-sizing: border-box;
}    
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif; /* Global font */
    box-sizing: border-box; /* Ensures padding doesn't add to the width */
}

/* Apply border-box to everything to prevent padding-based overflow */
*, *:before, *:after {
    box-sizing: inherit;
}

:root {
  --primary-blue: #1d3557;
  --accent-blue: #2563eb;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
}

@media (max-width: 768px) {
    .navbar-container, 
    .hero, 
    .features-container, 
    .benefits-container {
        width: 100%;
        max-width: 100vw;
        padding-left: 0 !important;   /* Change from 15px to 0 */
        padding-right: 0 !important;  /* Change from 15px to 0 */
        /* CHANGE THIS FROM hidden TO visible */
        overflow: visible !important;
    }

    /* Ensure images don't break the layout */
    img {
        max-width: 100%;
        height: auto;
    }
}



/* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #ffffff;
            /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
            z-index: 50;
        }

        .navbar-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 5.5rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.125rem;
            color: #1e3a8a;
        }

        .logo-circle {
            width: 2rem;
            height: 2rem;
            background-color: #1e3a8a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: 700;
            font-size: 0.875rem;
        }

.mobile-only-item {
    display: none !important;
}

        .nav-menu {
            display: flex;
            gap: 3rem;
            align-items: center;
            list-style: none;
        }

        .nav-menu a {
            text-decoration: none;
            color: #4b5563;
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: #1e3a8a;
        }

        .search-icon {
            width: 1.25rem;
            height: 1.25rem;
            cursor: pointer;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        /* Mobile Menu Styles */
@media (max-width: 992px) {
    /* Show the hamburger button */
    .mobile-menu-toggle {
        display: block !important;
        font-size: 2rem;
        z-index: 100;
        color: #1e3a8a;
    }

    /* Hide the default nav menu and position it for mobile */
    .nav-menu {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: 5.5rem; /* Matches navbar height */
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 2rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
    }

.mobile-only-item {
        display: block !important;
        width: 100%;
        text-align: center;
    }

    /* When the script adds 'mobile-active', show the menu */
    .nav-menu.mobile-active {
        display: flex !important;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    .navbar-container {
        /* This brings them toward the center */
        justify-content: center !important; 
        gap: 260px; /* Adjust this number to control exactly how much space is between them */
        
        /* This ensures the container itself isn't forcing them to the edges */
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: auto !important;
        margin: 0 auto !important;
    }
}

/* Hero sec */
.mobile-hero-banner {
  display: none;
}

.hero {
 position: relative;
  overflow: hidden;
  /* 2. Remove top padding to bring content to the very top */
  padding-top: 0; 
  padding-bottom: 60px; /* Keep bottom padding for balance */
  min-height: 100vh;
  display: flex;
  align-items: flex-start; /* Aligns content to the top instead of center */
  /* ADD THIS BACKGROUND LINE BELOW */
  /* background: radial-gradient(circle at 15% 90%, rgba(37, 99, 235, 0.08) 0%, transparent 60%); */
}

/* The blue curved background */
/* .hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 55%;
  height: 100%;
  background-color: var(--accent-blue);
  border-bottom-left-radius: 500px;
  z-index: -1;
} */

.container {
max-width: 100%;     /* Allow content to hit the edges */
  padding-left: 8%;    /* Keep text away from the left edge */
  padding-right: 0;    /* Remove padding so image hits the right */
  display: flex;
  align-items: center;
}

/* Left Column */
.hero-content {
 position: relative; /* This is the anchor for the swoosh */
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.bottom-swoosh {
  position: absolute;
  /* Adjust these values to match your PNG's specific shape */
  top: 75%;           /* Moves it down below the text */
  left: -25%;         /* Pushes it toward the left edge */
  width: 140%;        /* Makes it large enough to sweep across the center */
  height: auto;
  opacity: 100%;       /* Adjust transparency here */
  z-index: -1;        /* Puts it BEHIND the Apply button */
  pointer-events: none; /* Allows you to still click the button if they overlap */
}

.hero-content h1 {
  font-size: 4.56rem;
  font-weight: 750;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #d90429; /* Red color for 'Loan' */
}

.features {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.features li {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.2rem;
}

.check {
  color: #22c55e;
  border: 1px solid #22c55e;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.description {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 450px;
}

.btn-apply {
  background-color: var(--primary-blue);
  color: white;
  padding: 15px 35px;
  border-radius: 50px 50px 50px 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.2s;
}

.btn-apply:hover {
  transform: translateY(-3px);
}

/* Right Column */
.hero-image {
  flex: 1.5;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-image img {
  width: 90%;          /* Increases the actual visual size of the graphic */
  height: auto;
  object-fit: contain;
  display: block;
}

/* Responsiveness */
@media (max-width: 992px) {
.hero {
    min-height: auto; /* Allows the section height to fit the new content stack */
    margin-top: 90px;
  }

.hero-image {
    display: none !important;
  }

  /* Show the mobile banner at the very top */
  .mobile-hero-banner {
    display: block;
    width: 100%;
    height: auto;
    order: -1; /* Ensures it stays above the text */
    margin-bottom: 20px;
  }
  
  .hero::before {
    width: 100%;
    height: 40%;
    top: auto;
    bottom: 0;
    right: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 100px;
  }

  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-content {
    padding: 0 20px;
    max-width: 100% !important;
    margin-bottom: 0 !important;
    text-align: center;
  }

  .features {
    justify-content: center;
    flex-wrap: wrap;
  }

  .description {
    margin: 0 auto 30px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

/* form */
/* Container for the form to manage spacing and shadow */
.hero-form-container {
   background: #ffffff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    
    /* THE FIX: These lines center the entire container */
    display: block;       
    margin: 40px auto;    /* 'auto' on left/right pulls it to the center */
    width: 95%;           /* Responsive width */
    max-width: 1100px;    /* Limits how wide it gets on big screens */
    
    position: relative;
    z-index: 20;
    margin: -100px auto 60px auto;
}

/* Flex layout for desktop (horizontal) */
.hero-input-form {
  display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.hero-input-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.hero-input-form input:focus {
    border-color: var(--accent-blue);
}

/* Submit button styling */
.form-submit-btn {
    background-color: #3f51b5; /* Matches the blue in your image */
    color: white;
    width: 250px; /* Adjust this value as needed */
    padding: 12px 30px; /* Removing horizontal padding as width handles it */
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap; /* Keeps "Submit" on one line */
}

.form-submit-btn:hover {
    background-color: #303f9f;
}

/* MOBILE VIEW: Stack vertically */
@media (max-width: 992px) {
    .hero-form-container {
       padding: 20px 10px; /* Increased vertical padding for better look */
        width: 85% !important; 
        margin: 20px auto !important; 
        /* Reset any absolute centering to let flexbox do the work */
        display: block;
    }

    .hero-input-form {
       display: flex;
        flex-direction: column;
        align-items: center; /* Centers items horizontally on the cross-axis */
        justify-content: center;
        width: 100% !important; /* Form takes full width of container */
        margin: 0 auto; /* Centers the form block if needed */
        gap: 15px;
    }

    .hero-input-form input, 
    .form-submit-btn {
        width: 90% !important; /* Inputs take up 90% of the form width */
        max-width: 100%;       /* Ensures they don't overflow */
        box-sizing: border-box; /* Ensures padding doesn't affect width */
    }
    .form-submit-btn {
        /* Remove fixed width from desktop to allow the 90% rule to work */
        min-width: unset !important; 
    }
}
/* Feedback when clicking the button */
.form-submit-btn:active {
    transform: scale(0.98);
    background-color: #283593;
}

/* Optional: Add a subtle loading cursor */
.form-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}


/* Second Sec CSS */
/* Container styling */
.features-section {
  padding: 60px 5%;
  background-color: #fff;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

/* Grid Layout */
.features-grid {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: nowrap;
  width: 100%; /* Allows cards to wrap on smaller screens */
}

/* Individual Card Styling */
.feature-card {
  flex: 0 0 200px;
  min-width: 160px; /* Ensures cards don't get too skinny */
  background: #fff;
  padding: 25px 15px;
  border-radius: 30px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft shadow like the image */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  transition: transform 0.3s ease;
  min-height: 180px;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card p {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.4;
  color: #1a1a1a;
}

/* Icon Box Colors */
.icon-box {
  margin-bottom: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box img {
  width: 32px;            /* Increased from 24px for better visibility */
  height: auto;           /* Changing this from 24px to auto prevents squeezing */
  max-width: 80%;         /* Ensures it doesn't touch the edges of the circle */
  object-fit: contain;    /* Ensures the whole icon fits without distortion */
  filter: brightness(0) invert(1);
}



.green { background-color: #3d7a44 !important; }
.purple {
  background-color: #6c4ab6;

}
.dark-green { background-color: #1a4d2e; }
.navy { background-color: #1e2a44; }
.teal { background-color: #0d7377; }
.orange { background-color: #d67d00; }

/* Responsive adjustments */
@media (max-width: 992px) {
/* 1. Reduce bottom padding of the Features section */
  .features-section {
    padding-bottom: 20px !important;
  }

.benefits-section {
    padding-top: 40px !important;
    padding-bottom: 15px !important;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .benefits-section .benefits-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important; /* Space between card groups and image */
  }

  /* 2. Target the columns specifically */
  .benefits-section .benefits-col {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0px !important; /* This is the specific space between the 4 cards */
    height: auto !important; /* Resets any fixed height constraints */
  }

  /* 3. Add a margin fallback just in case gap is ignored */
  .benefits-section .benefit-card {
    margin-bottom: 20px; 
  }
  
  .benefits-section .benefit-card:last-child {
    margin-bottom: 0;
  }

  .benefits-center {
    order: -1; /* Keeps image at top if desired, or remove to keep in middle */
    margin-bottom: 15px;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title {
    text-align: center;
  }
  .feature-card {
    /* 1. Reduce the gap between icon and text */
    gap: 28px; 
    
    /* 2. Overwrite the desktop min-height to allow it to shrink */
    min-height: auto; 
    
    /* 3. Adjust padding for a tighter look */
    padding: 15px; 
    
    /* 4. Ensure icons/text align well when small */
    align-items: left;
    text-align: left;
  }
}

/* Third sec */
.benefits-section {
  padding: 80px 5%;
  text-align: center;
  background-color: #fff;
}

.benefits-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.benefits-header p {
  font-family: 'Poppins', sans-serif;
  color: #333;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.benefits-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefits-center {
  flex: 1.5;
  display: flex;
  justify-content: center;
}

.benefits-center img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

/* Benefit Card Styling */
.benefit-card {
  padding: 25px;
  border-radius: 20px;
  text-align: left;
  border: 1px solid transparent;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.benefit-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
}

.arrow-icon {
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Card Colors */
.gray  { background-color: #f1f3f4; border-color: #d1d5db; }
.peach { background-color: #fff0eb; border-color: #ffccbc; }
.lightgreen { background-color: #e8f5e9; border-color: #c8e6c9; }
.blue  { background-color: #e3f2fd; border-color: #bbdefb; }

/* Responsive Adjustments */
@media (max-width: 992px) {
  .benefits-container {
    flex-direction: column;
  }
  .benefits-center {
    order: -1; /* Moves image to top on mobile */
    margin-bottom: 0px;
  }
  .benefits-col {
    width: 100%;
  }
  /* 1. Reduce space between the top text and the center image */
    .benefits-header p {
        margin-bottom: 10px !important;
    }
}

/* Fourth Sec */
/* Eligibility Section Styles */
.elg-section {
  padding: 40px 5%;
  background-color: #ffffff;
}

.elg-main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.elg-content-side {
  flex: 1.2;
}

.elg-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

.elg-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.elg-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
}

.elg-check {
  width: 16px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Image Layout with Floating Element */
.elg-image-side {
  flex: 1;
  display: flex;
  justify-content: center;
}

.elg-img-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.elg-main-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 40px; /* Matching the rounded corners in the image */
  display: block;
}

.elg-floating-card {
  position: absolute;
  bottom: -0px;
  right: -0px;
  width: 190px; /* Adjust size based on your icon image */
  background: #fff;
  padding: 10px;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.elg-floating-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  /* 1. Reduce the height of the main eligibility image */
  .elg-main-img {
    height: 300px !important; /* Adjust this value to your preferred height */
    object-fit: cover;        /* Ensures the image doesn't look stretched */
    border-radius: 20px;      /* Slightly smaller radius to match the smaller height */
    width: 300px;
  }
  .elg-main-wrapper {
    flex-direction: column;
    text-align: left;
  }
  .elg-image-side {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .elg-floating-card {
    width: 140px;
    right: 0;
  }
}

/* Fifth Sec */
/* 2. The Background Banner (using bg.jpg) */
/* Main Section */
.doc-section {
    position: relative;
    padding: 80px 5%; /* Vertical padding stays, horizontal padding is ignored by the absolute bg */
    background-color: #ffffff; 
    overflow: hidden; 
}

/* Updated Full Background Banner */
.doc-section::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    /* CHANGE: Setting left to 0 ensures it covers the white space on the left */
    left: 0; 
    transform: translateY(-50%);
    
    /* HEIGHT CONTROL: Keep it at 75% or 80% to maintain that 'banner' look */
    height: 60%; 
    
    background-image: url('bg.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* REMOVE border-radius if you want it to hit both edges perfectly flat */
    /* Or keep it if you want only the left edge curved */
    border-top-left-radius: 0px; 
    border-bottom-left-radius: 0px;
    
    z-index: 0; 
}

/* Card and Content Container */
.doc-main-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Grid Layout */
.doc-grid-wrapper {
  flex: 1.5;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Card Styling */
.doc-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-bottom: 5px solid transparent; /* Bottom color bar */
}

.doc-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.doc-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.5;
}

/* Color Bars for Card Bottoms */
.border-blue { border-bottom-color: #2563eb; }
.border-green { border-bottom-color: #22c55e; }
.border-purple { border-bottom-color: #9333ea; }

/* Content Side Styling */
.doc-content-side {
  flex: 1;
  padding-left: 20px;
}

.doc-main-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #000;
}

.doc-description {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .doc-section {
    background: #ffffff; /* Remove split background on smaller screens */
  }
  .doc-main-container {
    flex-direction: column-reverse; /* Text goes top, grid goes bottom */
  }
  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .doc-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  /* ... existing doc-section mobile code ... */

  .doc-section::before {
    /* Resets the "banner" positioning used on desktop */
    top: 0 !important;
    bottom: 0 !important;
    transform: none !important;
  
    /* Forces the background to cover 100% of the expanded mobile height */
    height: 100% !important;
    width: 100% !important;
    
    /* Ensures no rounded corners on mobile if they were set on desktop */
    border-radius: 0 !important;
  }

  .doc-section {
    /* Ensures the white background doesn't hide the blue graphic */
    background-color: transparent !important;
  }
}

/* Testimonials Section */
.testimonials-section {
padding-top: 20px;   /* Reduced from 80px */
padding-bottom: 40px;
max-width: 1200px;
margin: 0 auto;
margin-top: 30px;
}

.testimonials-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Left Side Styles */
.testimonials-intro {
  flex: 1;
}

.testimonials-intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 800;
}

.testimonials-intro p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.view-more-btn {
  background: #2e3b71;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

/* Right Side Styles */
.testimonials-list {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  padding: 20px 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* The cascading effect from the image */
.shift-right {
  margin-left: 40px;
}

.user-info {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.avatar {
  width: 50px;
  height: 50px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.user-info h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
}

.quote {
  font-size: 14px;
  color: #444;
  margin: 0;
}

.quote-icon {
  font-size: 60px;
  font-family: serif;
  color: #f0f0f0;
  line-height: 1;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
/* .testimonials-section{
  margin-bottom: 20px;
} */

  .testimonials-container {
    flex-direction: column; /* Content below the image/intro */
    text-align: center;
  }

  .testimonials-intro {
    width: 100%;
  }

  .shift-right {
    margin-left: 0; /* Remove horizontal shift on small screens */
  }

  .testimonial-card {
    width: 90%;
  }
  .user-info{
    text-align: left;
  }
  .testimonials-list{
    display: flex;
    align-items: center;
  }
}

 /* FAQ Section */
       .faq-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Space between each FAQ card */
}

/* Card Style */
.faq-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* Smooth shadow */
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Onclick Header */
summary {
  padding: 24px 30px;
  list-style: none; /* Hides default triangle */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none; /* Hides default triangle for Chrome/Safari */
}

/* Icon Rotation */
.faq-item[open] .icon {
  transform: rotate(180deg);
}

.icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Answer Content */
.faq-answer {
  padding: 0 30px 24px 30px;
  color: var(--secondary-text); /* Uses your existing variable */
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
  font-size: 15px;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
.faq-section{
  margin-top: 0px;
  padding-bottom: 20px !important;
}

  .faq-item {
    border-radius: 15px; /* Slightly smaller radius for mobile */
    min-height: auto;    /* Ensures height adjusts to content */
  }

  summary {
    font-size: 16px;
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

 /* Footer */
        footer {
            background-color: #1e3a8a;
            color: #ffffff;
            padding: 4rem 1rem;
            margin-top: 50px;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h4 {
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.5rem;
        }

        .footer-column a {
            color: #dbeafe;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: #ffffff;
        }

        .footer-column p {
            color: #dbeafe;
            font-size: 0.875rem;
        }

        .footer-bottom {
            border-top: 1px solid #3730a3;
            padding-top: 2rem;
            display: flex;
            flex-direction: column;
            md-flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            color: #dbeafe;
            font-size: 0.875rem;
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
footer {
        padding-top: 1rem !important;    /* Very tight top spacing */
        padding-bottom: 20px !important; /* Very tight bottom spacing */
        margin-top: 50px !important;     /* Pulls footer closer to Partners section */
    }

.footer-grid {
        gap: 1.5rem !important;
        margin-bottom: 15px !important;
    }

    .footer-bottom {
        padding-top: 15px !important; /* Tightens space above the copyright text */
        gap: 8px !important;
    }