 @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 */
}



/* 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 to hold the hero section */
.hero-container {
    width: 100%;
    /* Adjust height as needed: 60vh is good for desktop, 40vh for mobile */
    height: 75vh; 
    overflow: hidden;
    position: relative;
    background-color: #000; /* Fallback color */
}

/* The wrapper that handles the image scaling */
.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-image: url('applynowbanner2.jpg'); /* Replace with your actual path */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-container {
        height: 40vh; /* Shorter height on mobile to keep people visible */
    }
    
    .hero-image-wrapper {
        /* Focuses on the people rather than the window on small screens */
        background-position: 70% center; 
    }
}

@media (max-width: 480px) {
    .hero-container {
        height: 300px; /* Fixed height for very small screens */
    }
}


/* contact */
/* Container styling */
.contact-section {
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 80px;
  letter-spacing: 1px;
}

/* Grid setup for 3 columns */
.contact-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.contact-card {
  background: white;
  padding: 60px 30px 40px;
  border-radius: 20px;
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

/* Floating Icon Styling */
.icon-circle {
  width: 100px;
  height: 100px;
  background-color: #eef7ff;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  font-size: 35px;
  color: #2b44c2;
}

/* Typography */
.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000;
}

.contact-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-link {
  color: #2b44c2;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
    margin-bottom: 60px;
  }
  
  .contact-card {
    margin-top: 50px; /* Space for the floating icons on stacked layout */
  }
}

/* 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; 
    }
}