/* =================== BASE STYLES =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: rgb(253, 252, 253);
    overflow-x: hidden;
}

/* =================== NAVIGATION =================== */
.mainlist {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 15px 30px;
}
/* 
.mainlist {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 15px 30px;
    flex-wrap: wrap;
} */

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logoimg {
    width: 220px;
}

.navs {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navs a {
    text-decoration: none;
    color: #fdb515;
    font-weight: 700;
}

.consultancy {
    background-color: black;
    padding: 10px 20px;
    color: #fdb515;
    font-weight: 700;
    border-radius: 20px;
    cursor: pointer;
}

.hamburger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #fdb515;
}

/* =================== HERO SECTION =================== */
.page-hero {
    /* background: linear-gradient(135deg, #fdb515, #eccf2c); */
    background-color: transparent;
    padding: 100px 20px;
    text-align: center;
    color: #000;
}

.page-hero h1 {
    font-size: 3rem;
}

.page-hero p {
    font-size: 1.2rem;
    margin-top: 15px;
}

.section-intro {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.1rem;
    color: #444;
    text-align: center;
    line-height: 1.6;
}


.exchange-rate-note {
    max-width: 900px;
    margin: 15px auto;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    line-height: 1.5;
}
.exchange-rate-note strong {
    color: #333;
}

.headd1{
    text-align: center;

    margin-top: 80px;
    margin-bottom: 30px;
}

/* =================== PRICING GRID =================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-card h3, .pricing-card h4 {
    color: #fdb515;
    margin-bottom: 10px;
}

.price {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.description {
    font-size: 1rem;
    margin-bottom: 20px;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    padding: 12px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
}

.btn-primary {
    background: black;
    color: #fdb515;
    border: none;
}

.btn-secondary {
    background: #fdb515;
    color: black;
    border: none;
}

/* =================== PAYMENT BOX =================== */
.payment-details-flex {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.payment-method-box {
    flex: 1;
    min-width: 280px;
    background: #f8f8f8;
    border-radius: 15px;
    padding: 20px;
}

.payment-method-box h3 {
    color: #000;
    margin-bottom: 10px;
}

.payment-method-box p, .important-note {
    font-size: 1rem;
    color: #555;
}

.payment-instructions p{
    text-align: center;
    margin-top: 30px;
}
.important-note{
    /* margin-top: 50px; */
    text-align: center;
    color: rgb(137, 37, 37);
    margin: 50px 60px 50px 60px;
}
/* =================== FOOTER =================== */
.light-site-footer {
    background: #f8f8f8;
    padding: 40px 20px;
    text-align: center;
}

.light-footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.light-footer-social a {
    color: #8a2be2;
    font-size: 1.8rem;
}

.light-footer-bottom-text {
    font-size: 0.9rem;
    color: #777;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
    

   .mainlist {
        padding: 15px 20px;
    }

    .navs {
        flex-direction: column;
        width: 100%;
        background: #fff;
        padding: 15px 20px;
        display: none;
    }

    .navs.active {
        display: flex;
    }

    .hamburger-menu {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: #fdb515;
    }

    .logoimg {
        width: 180px;
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
    .page-hero p {
        font-size: 1rem;
    }
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .payment-details-flex {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .mainlist {
        padding: 15px 20px;
    }

    .navs {
        flex-direction: column;
        width: 100%;
        background: #fff;
        padding: 15px 20px;
        display: none;
    }

    .navs.active {
        display: flex;
    }

    .hamburger-menu {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: #fdb515;
    }

    .logoimg {
        width: 180px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    .page-hero p {
        font-size: 0.9rem;
    }
    .btn {
        font-size: 0.9rem;
    }
}
