 @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.3rem;
  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: -75px;
}

.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 */
.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
}

/* Layout Wrapper */
.content-wrapper {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    align-items: center;
    gap: 60px;
}

/* Image Styling */
.image-box {
    width: 100%;
    
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Cards Grid Styling */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 17px;
    width: 100%;
}

.card {
    padding: 32px;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #111827;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Card Colors */
.white {
    background-color: #ffffff;
    border: 1px solid #f3f4f6;
}

.light-blue {
    background-color: #dcf0ff; /* Light blue tint */
}

/* Responsive Breakpoints */

/* Tablet View */
@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns */
    }
}

/* Desktop View */
@media (min-width: 1024px) {
    .content-wrapper {
        flex-direction: row; /* Side-by-side on desktop */
    }
    
    .image-box, .cards-grid {
        width: 50%;
    }
}

/* third */
.benefits-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 80px 40px;
    border-radius: 500px 500px 500px 500px; /* Creates the oval/pill shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

/* Highlighted middle card style */
.benefit-card.highlight {
    background-color: #e0f2fe; /* Light blue background */
    box-shadow: none;
}

.benefit-number {
    background-color: #bee3f8; /* Softer blue for the circle */
    color: #1a202c;
    width: 40px;
    height: 60px;
    border-radius: 50px 50px 50px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 40px;
}

.benefit-card.highlight .benefit-number {
    background-color: #3182ce; /* Darker blue for middle number circle */
    color: #fff;
}

.benefit-heading {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 35px;
    color: #1a202c;
}

.benefit-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568;
    max-width: 250px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .benefit-card {
        padding: 50px 30px;
        border-radius: 100px; /* Slightly tighter oval for mobile */
    }
}

/* fourth */
.growth-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
   
}

.growth-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111;
}

.growth-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.growth-item {
    display: flex;
    align-items: center;
    position: relative;
}

/* Ring Container Logic */
.ring-container {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    z-index: 1;
    /* Add this line to move it up. Adjust the px as needed */
    margin-top: -20px;
}

.main-ring, .overlap-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 23px solid;
    background: transparent;
}

.main-ring {
    left: 0;
    /* top: 0px;
    bottom: 10px;
    z-index: -1 !important; */
}

/* The secondary white ring that creates the 'interlock' effect */
.overlap-ring {
    left: 40px;
    top: 10px;
    border-color: #fff;
    box-shadow: 5px 0 15px rgba(0,0,0,0.05);
    z-index: 1;
}

/* Content Box */
.growth-content {
    background: #fff;
    padding: 30px 40px 30px 60px;
    border-radius: 100px 100px 100px 100px;
    margin-left: -30px; /* Overlap with the rings */
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 100%;
    position: relative; /* Added to ensure z-index works */
    z-index: 2;
}

.growth-content h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
    color: #111;
}

.growth-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Ring Colors */
.gold .main-ring { border-color: #c59d3f; }
.blue .main-ring { border-color: #1e5ba3; }
.red .main-ring  { border-color: #a31e1e; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .growth-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .growth-content {
        margin-left: 0;
        margin-top: -20px;
        padding: 40px 20px 20px 20px;
        border-radius: 20px;
    }
    .ring-container {
        margin-left: 20px;
    }
}

/* fifth */
/* Fifth Section: Experts */
.experts-container {
    padding: 80px 5%;
    background-color: #ffffff;
}

.experts-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.experts-text-group {
    flex: 1;
    text-align: left;
}

.experts-main-title {
    font-size: 2.8rem;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.experts-description {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 450px;
}

.btn-apply-experts {
    display: inline-flex;
    align-items: center;
    background-color: var(--btn-bg); /* Uses existing variable from Aboutus.css */
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.experts-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.experts-image img {
    max-width: 75%;
    height: auto;
}

.experts-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.expert-card {
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}

.expert-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #000;
    font-weight: 700;
}

.expert-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4b5563;
}

/* Expert Card Specific Colors */
.expert-card.white {
    background-color: #ffffff;
    border: 1px solid #f3f4f6;
}

.expert-card.light-blue {
    background-color: #dcf0ff; /* Matches light-blue in Aboutus.css */
}



/* Responsive Design for Experts Section */
@media (max-width: 1024px) {
    .experts-content {
        flex-direction: column;
        text-align: center;
    }

    .experts-text-group {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .experts-main-title {
        font-size: 2.5rem;
    }

    .experts-cards {
        width: 100%;
    }
}

/* 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; 
    }
}