* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f1f4f8;
    overflow-x: hidden;
}

/* Header & Nav */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-title img {
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #fff;
    margin-left: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Hamburger Icon */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
}

/* Responsive Nav */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        width: 100%;
        padding: 20px;
        display: none;
    }

    .nav-links.show {
        display: flex;
        background: #1d976c;
    }

    .nav-links a {
        color: #fff;
        margin: 15px 0;
        font-size: 1.1rem;
    }
}


/* Hero Section */
.hero-section {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url('/img/hero.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
    position: relative;
}

.hero-content {
    max-width: 550px;
    background-color: rgba(0, 0, 0, 0.3);
    /* optional: for better contrast */
    padding: 30px;
    border-radius: 10px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-inline: auto;
}

.hero-section .btn-main {
    background: #fff;
    color: #1d976c;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.hero-section .btn-main:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
}

/* Modal Styling */
.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
}

.form-control {
    border-radius: 10px;
}

.btn-submit {
    background-color: #1d976c;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    border: none;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #14805d;
}

/* Success Message */
.success-message {
    text-align: center;
    color: #1d976c;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: none;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
    }
}

/* why choose us section  */
/* Gradient Highlight */
.text-gradient {
    background: linear-gradient(45deg, #1d976c, #93f9b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Feature Box */
.feature-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: #f1f4f8;
}

/* Best Offers */
.best-offers-section {
    background: #fff;
}

.offer-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    padding: 25px 20px;
    text-align: center;
    transition: 0.3s ease-in-out;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.offer-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Features Section */
.features-section {
    background: #f8f9fa;
}

.feature-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-glass:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.features-section p {
    font-weight: 500;
    color: #444;
}

/* Pre-Approved Section */
.preapproved-section {
    background: #f1f4f8;
}

.form-field {
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.form-field:focus {
    border-color: #1d976c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(29, 151, 108, 0.2);
}

#pre-approved img {
    width: 60%;
}

/* Journey Section */
.journey-section {
    background-color: #fff;
}

.stat-card {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter {
    font-size: 2rem;
    font-weight: 700;
    color: #1d976c;
}

/* footer section  */
.footer-section {
    background-color: #1d976c;
    color: white;
    font-size: 15px;
}

.footer-section h5 {
    font-size: 18px;
}

.footer-link,
.footer-section a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.footer-link:hover {
    text-decoration: underline;
}

/* pnt section  */
/* PNT Section Header */
.pnt-header {
    background-color: #1d976c;
}

/* PNT Section Container */
.pnt {
    margin: 80px auto 0;
    padding: 0 20px;
    max-width: 1200px;
}

.pnt p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pnt {
        margin-top: 80px;
        padding: 0 15px;
    }

    .pnt p {
        font-size: 1rem;
    }
}

/* contact page  */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url('/img/hero.jpeg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
}

.contact-section {
    padding: 60px 20px;
}

.form-control {
    border-radius: 10px;
}

.btn-submit {
    background-color: #1d976c;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    border: none;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #14805d;
}