
        :root {
            --primary-green: #2d5016;
            --light-green: #4a7c59;
            --accent-gold: #d4af37;
            --soft-cream: #f8f6f0;
            --earth-brown: #8b4513;
            --text-dark: #2c3e50;
            --gradient-primary: linear-gradient(135deg, #2d5016, #4a7c59);
            --gradient-accent: linear-gradient(135deg, #d4af37, #f4e04d);
        }

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

        body {
            font-family: "Poppins", sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Custom Navbar */
        .navbar {
            background: var(--gradient-primary);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(45, 80, 22, 0.3);
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 2px 20px rgba(45, 80, 22, 0.5);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 2rem;
            color: var(--accent-gold) !important;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 15px;
            padding: 10px 0 !important;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .navbar-nav .nav-link:hover {
            color: var(--accent-gold) !important;
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 50%;
            background: var(--gradient-accent);
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background:
                var(--gradient-primary),
                radial-gradient(circle at 20% 50%,
                    rgba(212, 175, 55, 0.3) 0%,
                    transparent 50%),
                radial-gradient(circle at 80% 20%,
                    rgba(74, 124, 89, 0.3) 0%,
                    transparent 50%),
                radial-gradient(circle at 40% 80%,
                    rgba(45, 80, 22, 0.4) 0%,
                    transparent 50%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" patternUnits="userSpaceOnUse" width="40" height="40"><circle cx="20" cy="10" r="8" fill="white" opacity="0.05"/><ellipse cx="10" cy="30" rx="6" ry="10" fill="white" opacity="0.03"/><path d="M30,25 Q35,20 40,25 Q35,30 30,25" fill="white" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(2deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .btn-hero {
            background: var(--gradient-accent);
            border: none;
            color: var(--text-dark);
            font-weight: 600;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
            color: var(--text-dark);
        }

        /* Slider Section */
        .slider-section {
            padding: 100px 0;
            background: linear-gradient(45deg,
                    var(--soft-cream) 0%,
                    white 100%);
            position: relative;
        }

        .slider-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .opportunity-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin: 20px 0;
            box-shadow: 0 15px 50px rgba(45, 80, 22, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            height: 100%;
            /* Ensure all cards are the same height */
        }

        .opportunity-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(212, 175, 55, 0.1),
                    transparent);
            transition: left 0.5s;
        }

        .opportunity-card:hover::before {
            left: 100%;
        }

        .opportunity-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(45, 80, 22, 0.2);
            border-color: var(--accent-gold);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: white;
            font-size: 2rem;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 15px;
            text-align: center;
        }

        .card-text {
            color: var(--text-dark);
            opacity: 0.8;
            text-align: center;
            line-height: 1.7;
        }

        /* Income Plans Section */
        .income-plans {
            padding: 100px 0;
            background: var(--primary-green);
            color: white;
            position: relative;
        }

        .income-plans::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="money" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="15" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="2"/><text x="25" y="30" text-anchor="middle" fill="rgba(212,175,55,0.1)" font-size="12">₹</text></pattern></defs><rect width="100" height="100" fill="url(%23money)"/></svg>');
            opacity: 0.5;
        }

        .plan-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            margin: 20px 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .plan-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .plan-percentage {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-gold);
            text-align: center;
            margin-bottom: 20px;
        }

        .plan-name {
            font-size: 1.3rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .plan-details {
            text-align: center;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background: linear-gradient(135deg,
                    var(--soft-cream) 0%,
                    white 50%,
                    var(--soft-cream) 100%);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 30px;
            font-weight: 700;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .about-features {
            list-style: none;
            padding: 0;
        }

        .about-features li {
            padding: 10px 0;
            color: var(--primary-green);
            font-weight: 500;
        }

        .about-features li::before {
            content: "✓";
            color: var(--accent-gold);
            font-weight: bold;
            margin-right: 10px;
        }

        .about-visual {
            flex: 1;
            position: relative;
        }

        .visual-card {
            background: var(--gradient-primary);
            border-radius: 20px;
            padding: 60px;
            text-align: center;
            color: white;
            box-shadow: 0 20px 60px rgba(45, 80, 22, 0.3);
        }

        .visual-card i {
            font-size: 4rem;
            color: var(--accent-gold);
            margin-bottom: 30px;
        }

        .visual-card h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: var(--gradient-primary);
            color: white;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
        }

        .contact-item {
            margin: 30px 0;
            padding: 20px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            /* Make card fill column height */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            /* Distribute content vertically */
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .contact-item i {
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 15px;
        }

        .contact-item h5 {
            margin-bottom: 10px;
            font-weight: 600;
        }

        .contact-item p {
            word-wrap: break-word;
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 60px 0 30px;
            text-align: center;
        }

        .footer-content {
            margin-bottom: 40px;
        }

        .footer-content h4 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .footer-links {
            /* display: flex; */
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 10px 20px;
            border-radius: 25px;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            background: rgba(212, 175, 55, 0.1);
        }

        .social-links {
            margin: 30px 0;
        }

        .social-links a {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: var(--gradient-accent);
            color: var(--text-dark);
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            margin: 0 10px;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            transform: translateY(-3px) scale(1.1);
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            opacity: 0.7;
        }

        /* Animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .scroll-animate.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Login Modal Styles */
        .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
        }

        .modal-header {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 30px;
        }

        .modal-title {
            font-weight: 600;
            font-size: 1.5rem;
        }

        .btn-close {
            filter: invert(1);
        }

        .modal-body {
            padding: 40px;
            background: var(--soft-cream);
        }

        .form-control {
            border-radius: 15px;
            border: 2px solid #e9ecef;
            padding: 15px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }

        .btn-login {
            background: var(--gradient-primary);
            border: none;
            border-radius: 15px;
            padding: 15px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar-brand {
                font-size: 1.5rem !important;
                /* Adjust for smaller screens */
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .about-content {
                flex-direction: column;
                gap: 40px;
            }

            .navbar-nav .nav-link {
                margin: 0 5px;
            }
            /* Add this to your CSS */
.income-plans .row > [class*="col-"] {
    flex: 0 0 20%;
    max-width: 20%;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .income-plans .row > [class*="col-"] {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 768px) {
    .income-plans .row > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .income-plans .row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}



        }
   