/* Basic Settings */
html {
    scroll-behavior: smooth; /* 🌟 Naya Premium Smooth Scrolling Feature 🌟 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f7f6;
}

/* Navbar Design */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #001f3f; /* Navy Blue */
    color: white;
}

.logo h2 {
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: #ffd700; /* Gold */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

.btn-login {
    background-color: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-login:hover {
    background-color: #ffd700;
    color: #001f3f;
}

/* Hero Section (Naya 2-Column Design) */
.hero {
    min-height: 90vh; /* Screen ko thoda aur lamba kiya */
    background: linear-gradient(135deg, #001f3f 0%, #000000 100%);
    color: white;
    display: flex;
    justify-content: space-between; /* Text aur Image ko alag-alag side karega */
    align-items: center;
    padding: 0 6%; /* Side se barabar jagah chodi */
}

.hero-content {
    max-width: 50%; /* Text aadhi jagah lega */
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #ffd700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #d1d1d1;
    line-height: 1.6;
}

/* Right side ki nayi Image ka Design */
.hero-graphics {
    max-width: 45%; /* Image baaki ki aadhi jagah legi */
}

.hero-graphics img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2); /* Image ke piche Gold chamak */
    animation: floatImage 4s ease-in-out infinite; /* Hawa me teirne wala effect */
}

/* Float Animation ka Jadoo */
@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-25px); } /* Image thoda upar jayegi */
    100% { transform: translateY(0px); } /* Wapas niche aayegi */
}

/* Buttons */
.btn-primary {
    background-color: #ffd700;
    color: #001f3f;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    margin-right: 15px;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    display: inline-block;
    transition: 0.3s;
}

.btn-secondary:hover {
    background-color: white;
    color: #001f3f;
}

/* Mission & Vision Section */
.about-section {
    padding: 60px 50px;
    text-align: center;
    background-color: white;
}

.section-title {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 40px;
}

.section-title span {
    color: #ffd700;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 45%;
    border-top: 4px solid #ffd700;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    color: #001f3f;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card p {
    color: #555;
    line-height: 1.6;
}

/* Packages Section */
.packages-section {
    padding: 60px 50px;
    text-align: center;
    background-color: #f4f7f6; /* Halka background taaki cards highlight hon */
}

.packages-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.pkg-card {
    background-color: #001f3f; /* Navy Blue */
    color: white;
    padding: 40px 20px;
    border-radius: 10px;
    width: 22%;
    border-bottom: 5px solid #ffd700; /* Niche Gold ki patti */
    transition: transform 0.3s, box-shadow 0.3s;
}

.pkg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.pkg-card h3 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pkg-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pkg-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #d1d1d1;
}

.pkg-card p span {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-pkg {
    background-color: #ffd700;
    color: #001f3f;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    display: inline-block;
    transition: 0.3s;
}

.btn-pkg:hover {
    background-color: white;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 50px;
    text-align: center;
    background-color: white;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    width: 30%;
    border-left: 5px solid #001f3f; 
    transition: 0.3s;
    text-align: left;
}

/* Mouse le jane par animation */
.feature-box:hover {
    border-left: 5px solid #ffd700; 
    transform: translateX(10px); 
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.feature-box h3 {
    color: #001f3f;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-box p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

/* Types of Income Section */
.income-section {
    padding: 60px 50px;
    text-align: center;
    background-color: #001f3f; /* Navy Blue background */
    color: white;
}

.income-section .section-title {
    color: white; /* Title ka color white */
}

.income-section .section-title span {
    color: #ffd700; /* Gold color */
}

.income-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.income-card {
    background: rgba(255, 255, 255, 0.05); /* Halka transparent design */
    padding: 40px 20px;
    border-radius: 10px;
    width: 30%;
    border: 1px solid #ffd700; /* Gold border */
    transition: 0.4s ease-in-out;
    cursor: pointer;
}

/* Mouse le jane par jadoo (Hover Effect) */
.income-card:hover {
    background: #ffd700; /* Pura box Gold ho jayega */
    color: #001f3f; /* Text Navy Blue ho jayega */
    transform: scale(1.05); /* Thoda bada ho jayega */
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.income-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.income-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffd700;
    transition: 0.4s;
}

.income-card:hover h3 {
    color: #001f3f; /* Hover par heading dark ho jayegi */
}

.income-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d1d1d1;
    transition: 0.4s;
}

.income-card:hover p {
    color: #001f3f; /* Hover par text dark ho jayega */
}

/* Footer Section */
.footer {
    background-color: #000000; /* Pure Black background premium look ke liye */
    color: #d1d1d1;
    padding: 60px 50px 20px 50px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: white;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.footer-logo span {
    color: #ffd700; /* Gold */
}

.footer-logo p {
    margin-top: 10px;
    font-size: 1rem;
    color: #ffd700;
}

.footer-links h3, .footer-contact h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #d1d1d1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ffd700; /* Mouse le jane par text gold hoga */
    padding-left: 5px; /* Thoda aage khiskega */
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* --- Login Page Design --- */
.login-body {
    background: linear-gradient(135deg, #001f3f 0%, #000000 100%); /* Navy Blue Background */
    display: flex;
    justify-content: center;
    align-items: center;
   min-height: 100vh;
}

.login-container {
    background-color: white;
    padding: 50px 0;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 400px; /* Box ki chaudai */
    border-top: 5px solid #ffd700; /* Upar Gold line */
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: #001f3f;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.login-header span {
    color: #ffd700;
}

.login-header p {
    color: #555;
    font-size: 0.9rem;
    margin-top: 5px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #001f3f;
    font-weight: 600;
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #ffd700; /* Click karne par border Gold hoga */
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.forgot-pass {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-pass a {
    color: #001f3f;
    text-decoration: none;
    font-size: 0.85rem;
}

.forgot-pass a:hover {
    color: #ffd700;
}

.btn-login-submit {
    width: 100%;
    background-color: #ffd700;
    color: #001f3f;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-login-submit:hover {
    background-color: #001f3f;
    color: #ffd700;
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 0.9rem;
}

.login-footer a {
    color: #001f3f;
    font-weight: 600;
    text-decoration: none;
}

.login-footer a:hover {
    color: #ffd700;
}

.back-home {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #888 !important;
}

/* Terms & Conditions Section */
.tc-section {
    padding: 60px 50px;
    background-color: white;
    text-align: center;
}

.tc-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background-color: #f4f7f6;
    padding: 30px 40px;
    border-radius: 10px;
    border-left: 5px solid #001f3f; /* Navy Blue Line */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tc-container ul {
    list-style-type: none;
}

.tc-container ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #444;
    padding-left: 25px;
    position: relative;
}

/* Bullet points ki jagah Gold Checkmark */
.tc-container ul li::before {
    content: '✔';
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* --- Mobile aur Tablet ke liye Special Settings --- */
@media (max-width: 768px) {
    
    /* 1. Navbar ko mobile ke liye set karna */
    .navbar {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    .nav-links {
        gap: 10px;
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* 2. Hero Section: Text upar aur Image niche ho jayegi */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px 20px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem; /* Mobile par heading thodi chhoti */
    }

    .hero-graphics {
        max-width: 100%;
    }

    /* 3. Mission/Vision aur Features: Sab ek ke niche ek aayenge */
    .cards-container, .features-container, .packages-container, .income-container {
        flex-direction: column;
        align-items: center;
    }

    .card, .feature-box, .pkg-card, .income-card {
        width: 100%; /* Mobile par poori chaudai lenge */
        max-width: 350px;
        margin-bottom: 20px;
    }

    /* 4. Footer ko set karna */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}