 @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:wght@300;400;600;700&display=swap');

      
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif; /* Global font */
}

:root {
  --primary-blue: #2d50a1;
  --dark-text: #1e293b;
  --btn-bg: #2d3663;
  --card-blue: #1d75f2;
  --card-black: #1e2124;
}

/* 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-container {
  padding: 100px 5%;
  overflow: hidden;
  background-color: #ffffff;
}

.hero-content {
  /* Increased max-width so they can move further apart */
  max-width: 1400px; 
  margin: 0 auto;
  display: flex;
  align-items: center;
  /* Changed to space-between to push them to the corners */
  justify-content: space-between; 
  gap: 20px;
}

.text-group {
  flex: 1;
  /* Adds a bit of padding so text doesn't touch the very edge */
  padding-left: 40px;
}

.main-title {
  font-size: 5.8rem;
  color: var(--primary-blue);
  margin: 0;
  /* The gradient colors: Deep blue to a slightly lighter, vibrant blue */
  background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
  
  /* These lines make the gradient apply to the text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

  /* font-size: 64px;
  font-weight: 800; */
  line-height: 1.1;
  display: inline-block;
}

.sub-title {
  font-size: 2.8rem;
  color: var(--dark-text);
  margin-top: 5px;
}

.description {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 400px;
  margin: 20px 0 30px;
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  background-color: var(--btn-bg);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s;
}

.btn-apply:hover {
  transform: translateY(-2px);
}

.arrow {
  margin-left: 10px;
  font-size: 1.2rem;
}

/* Card Styling */
.hero-image {
 max-width: 100%;
  height: auto;
  width: 700px; 
  margin-right: -40px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  /* Adjust size if the original image is too large */
  width: 700px; 
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 992px) {
  .hero-container {
    padding: 60px 20px; /* Reduced padding for mobile */
    margin-top: 50px;
  }

  .hero-content {
    flex-direction: column; /* Stack vertically */
    text-align: center;
    gap: 40px; /* Space between text and image */
  }

  .text-group {
    padding-left: 0; /* Remove left padding on mobile */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center text elements */
  }

  .main-title {
    font-size: 3.5rem; /* Shrink title for small screens */
  }

  .sub-title {
    font-size: 2rem;
  }

  .description {
    max-width: 100%; /* Allow description to take full width */
  }

  .hero-image {
    width: 100%; /* Take full width of screen */
    margin-right: 0; /* Remove the negative margin */
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    width: 100%; /* Ensure image scales down fits screen */
    max-width: 500px; /* Prevent it from getting too huge on tablets */
    height: auto;
  }
}

/* Second sec */
.about-section {
  padding: 80px 10%;
  background-color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-title {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 40px;
  font-weight: 700;
}

.about-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image Styling */
.about-image-wrapper {
  flex: 1;
}

.about-img {
  width: 100%;
  max-width: 500px;
  border-radius: 30px; /* Large rounded corners like in the image */
  display: block;
}

/* Text Content Styling */
.about-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-lead-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
}

.about-details {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Button Styling (Unique class to avoid hero button overlap) */
.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2d3663;
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background-color: #1e2548;
}

.about-btn span {
  margin-left: 8px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-grid {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-title {
    text-align: center;
  }

  .about-text-content {
    text-align: left;
  }
  
  .about-img {
    margin: 0 auto;
  }
}

/* Third sec */
/* Third section - Types of Credit Cards */
.types-section {
  padding: 80px 5%;
  background-color: #ffffff;
}

.types-container {
  max-width: 1300px;
  margin: 0 auto;
}

.types-title {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 50px;
  font-weight: 700;
  text-align: left;
}

.types-grid {
  background-color: #2d3663; /* Deep Navy background */
  border-radius: 20px;
  padding: 80px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.types-card {
  flex: 1;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.types-icon-wrapper {
  width: 100px;
  height: 100px;
  background-color: #a5b4fc; /* Light blue/periwinkle blob */
  /* This specific border-radius creates the organic "blob" shape */
  border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.types-card:hover .types-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.types-icon-wrapper img {
  width: 45px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(20%) sepia(48%) saturate(1210%) hue-rotate(215deg) brightness(91%) contrast(92%);
}

.types-card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.types-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 210px;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .types-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
  }
  .types-card {
    flex: 0 0 30%; /* 3 items per row */
  }
}

@media (max-width: 768px) {
  .types-grid {
    padding: 50px 20px;
  }
  .types-card {
    flex: 0 0 100%; /* 1 item per row on mobile */
  }
  .types-title {
    text-align: center;
    font-size: 2rem;
  }
}

/* Fourth */
/* Fourth Section: Types of Cards */
.card-grid-section {
  padding: 80px 5%;
  background-color: #fff;
}

.card-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 24px;
    /* Add this line to create space below each card */
    margin-bottom: 30px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px; /* The first value (40px) is the vertical gap */
}

/* Update your grid container in creditcards.css */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* The first value is vertical (row) gap, the second is horizontal (column) gap */
    gap: 40px 24px; 
}

.card-grid-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #000;
}

.card-grid-layout {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* The first number (80px) is the vertical gap between rows */
    /* The second number (25px) is the horizontal gap between columns */
    gap: 80px 25px;
}

.card-grid-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.typesicons{
  height: 30px;
  width: 30px;
}

/* The visible white square with shadow */
.card-grid-content {
  background: #ffffff;
  padding: 50px 20px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft shadow as per screenshot */
  width: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* The Floating Icon Circle */
.card-grid-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -40px; /* Pulls it up halfway outside the box */
  z-index: 2;
}

.card-grid-icon-circle i {
  font-size: 28px;
}

.card-grid-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.card-grid-text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
}



/* Individual Color Palettes based on Image */
.sh-bg { background-color: #fff1f0; } .sh-ic { color: #ff7875; }
.tr-bg { background-color: #e6f7ff; } .tr-ic { color: #40a9ff; }
.lf-bg { background-color: #f6ffed; } .lf-ic { color: #73d13d; }
.rw-bg { background-color: #f9f0ff; } .rw-ic { color: #9254de; }
.fl-bg { background-color: #fffbe6; } .fl-ic { color: #ffc53d; }
.bs-bg { background-color: #f0f5ff; } .bs-ic { color: #597ef7; }
.sc-bg { background-color: #e6fffb; } .sc-ic { color: #36cfc9; }
.cb-bg { background-color: #fff0f6; } .cb-ic { color: #eb2f96; }



/* Responsive adjustments */
@media (max-width: 768px) {
  .card-grid-main-title { text-align: center; }
  .card-grid-layout { grid-template-columns: 1fr; gap: 60px; }
}

/* fifth */
/* Credit Card Features Section */
.features-section {
  max-width: 1450px; /* Increased to allow more horizontal spread */
  margin: 0 auto;
padding: 60px 2%;
  background-color: #ffffff;
}

.features-container {
  max-width: 1150px;
  margin: 0 auto;
}

.features-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns layout */
  gap: 30px;
}

.feature-card {
  background: #ffffff;
  border-radius: 30px; /* High radius for pill shape */
  display: flex;
  align-items: center;
  padding: 25px 40px;
  position: relative;
  overflow: hidden; /* Clips the accent bar to the card's curve */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); /* Shadow behind the capsule */
  border: 1px solid #f2f2f2;
}

/* The dark blue accent bar that curves with the border */
.feature-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  background-color: #2d3663; /* Dark blue color from root */
}

.feature-icon {
  font-size: 38px;
  margin-right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

.ccfeatures{
height: 40px;
width: 40px;
}

/* Matching icon colors to your design image */
.icon-blue { color: #3b82f6; }
.icon-green { color: #52c41a; }
.icon-orange { color: #fa8c16; }
.icon-gold { color: #d4a017; }

.feature-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.feature-info p {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
}

/* Responsive: Stack on mobile */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 25px 35px;
    border-radius: 40px;
  }
}

/* sixth */
/* --- Features And Benefits Section --- */
.benefits-section {
  padding: 80px 5%;
  background-color: #ffffff;
}

.benefits-container {
  max-width: 1100px; /* Aligns with the compact nature of the design */
  margin: 0 auto;
}

.benefits-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
  text-align: left;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 35px; /* Spacing between each benefit row */
}

.benefit-item {
  display: flex;
  align-items: flex-start; /* Aligns icon with the top of the title */
  gap: 30px; /* Space between icon and text */
}

/* Circular Icon Box with soft shadow */
.benefit-icon-box {
  min-width: 85px;
  min-height: 85px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft shadow as per image */
  border: 1px solid #f8f9fa;
}

.ccbenefits{
  height: 28px;
  width: 36px;
}
.ccbenefitss{
  height: 30px;
  width: 30px;
}
.ccbenefitsss{
  height: 35px;
  width: 28px;
}

.benefit-icon-box i {
  font-size: 30px;
}

/* Specific colors for icons to match image */
.icon-color-1 { color: #eb4d4b; } /* Red/Orange */
.icon-color-2 { color: #20bf6b; } /* Green */
.icon-color-3 { color: #3867d6; } /* Blue */
.icon-color-4 { color: #26de81; } /* Light Green */
.icon-color-5 { color: #eb3b5a; } /* Pink/Red */

/* Text Content Styling */
.benefit-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 8px 0;
}

.benefit-content p {
  font-size: 1.05rem;
  color: #1a1a1a; /* Darker, high-contrast text */
  line-height: 1.5;
  margin: 0;
  max-width: 850px; /* Keeps text lines readable */
}

/* Responsive: Center items on mobile */
@media (max-width: 768px) {
  .benefit-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .benefit-icon-box {
    margin-bottom: 10px;
  }
}

/* seventh */
/* --- Eligibility Grid Design --- */
.eligibility-grid-section {
    position: relative;
    width: 100vw; /* Forces it to the absolute width of the browser window */
    left: 50%;
    right: 50%;
    margin-left: -50vw; /* Breaks out of any existing white space margins */
    margin-right: -50vw;
    background-color: #2d3663; /* The dark blue background color */
   padding: 30px 0; /* Vertical padding only */
    overflow: hidden;
    margin-top: 100px; /* Space above the section */
    margin-bottom: 100px; /* Space below so cards don't hit next section */
}

.eligibility-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

/* Left Dark Blue Panel */
.eligibility-grid-left {
    background-color: #2d3663; /* Your --btn-bg color */
    color: white;
    width: 100vw; /* Spans more than half the container */
    padding: 60px 80px; 
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Keeps text centered vertically */
    min-height: 0px;
    border-radius: 0 0 0 0; /* Sharp edges as per image */
    flex: 1;
}

.eligibility-grid-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.eligibility-grid-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 400px;
    line-height: 1.4;
}

/* Right Cards Layout */
.eligibility-grid-right {
  flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: absolute; /* Overlaps the blue section */
    right: 5%;
    width: 45%;
    margin-top: -20px; 
    margin-bottom: -20px;
    position: relative;
    z-index: 10;
}

.eligibility-card {
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 150px;
}

.eligibility-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.eligibility-card p {
    font-size: 1rem;
    color: #334155;
    line-height: 1.4;
}

/* Specific Card Background Colors from Design */
.card-white { background-color: #ffffff; }
.card-light-blue { background-color: #d1e9ff; } /* Light blue */
.card-sky-blue { background-color: #cce9ff; }   /* Slightly different blue */

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .eligibility-grid-container {
        flex-direction: column;
    }
    .eligibility-grid-left {
        width: 100%;
        text-align: center;
        padding: 60px 20px;
    }
    .eligibility-grid-right {
        position: relative;
        width: 90%;
        right: 0;
        margin-top: -40px; /* Overlap effect on mobile */
        grid-template-columns: 1fr;
    }
}

/* eigth */
/* --- Documents Required Section --- */
.docs-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

.docs-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Bento Grid Layout */
.docs-grid {
    flex: 1.2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.doc-item {
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f4f8;
}

/* This targets only the Identity Proof card on desktop */
@media screen and (min-width: 1025px) {
    .identity-card {
        height: 250px !important;    /* Adjust this number to make it as short as you want */
        min-height: 250px !important;
        padding: 20px !important;    /* Optional: reduce padding to fit the smaller height */
    }
}

.doc-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.doc-item p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.4;
}

/* Grid Positioning to match the design */
.doc-id {
    background-color: #f0f7ff; /* Light Blue */
    grid-row: span 2; /* Makes Identity Proof tall */
}

.doc-address {
    background-color: #f8fafc; /* Subtle Gray */
}

.doc-bank {
    background-color: #f0fdfa; /* Light Mint */
}

.doc-income {
    background-color: #f1f5f9; /* Light Slate */
}

/* Right Side Text Content */
.docs-content {
    flex: 1;
}

.docs-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 25px;
}

.docs-desc {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.6;
}

/* Responsive Fix */
@media (max-width: 992px) {
    .docs-container {
        flex-direction: column-reverse; /* Text on top for mobile */
        text-align: center;
    }
    .docs-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .doc-id {
        grid-row: auto;
    }
}

/* 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: 100%;
  }
}

        /* 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;
    }

    /* Target only the 6th item (Bank Statements) on Desktop */
@media screen and (min-width: 1025px) {
    /* We target the 6th 'card-grid-item' inside your layout */
    .card-grid-layout .card-grid-item:nth-child(6) {
        height: 450px !important; /* Change 450px to whatever height you want */
        display: flex !important;
        flex-direction: column !important;
    }

    /* This ensures the white box inside also grows to fill the space */
    .card-grid-layout .card-grid-item:nth-child(6) .card-grid-content {
        height: 100% !important;
        flex-grow: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important; 
    }
}