@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
    background-color: #f8fafc;
    
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Modern Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ffcc00 0%, #ffaa00 100%);
    color: #111;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

/* Colors & Backgrounds */
.bg-blue { 
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%); 
    color: #fff; 
}
.bg-yellow { 
    background: linear-gradient(135deg, #ffcc00 0%, #ffdd44 100%); 
    color: #000; 
}
.bg-light { background-color: #ffffff; }
.text-blue { color: #1d4ed8; }
.text-yellow { color: #ffcc00; }

/* Modern Header / Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
    transition: all 0.3s ease;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar .logo img {
    height: 50px;
    border-radius: 8px;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
    transition: transform 0.3s ease;
}
.navbar .logo img:hover {
    transform: scale(1.05);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
}
.nav-links li a {
    color: #333;
    padding: 10px 15px;
    display: block;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.nav-links li a:hover {
    background-color: rgba(0, 86, 179, 0.1);
    color: #004494;
}
.nav-actions {
    display: flex;
    align-items: center;
}
.btn-sm {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    z-index: 0;
}
.hero .container {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}
.hero h1 span {
    background: #ffcc00;
    color: #004494;
    padding: 5px 15px;
    border-radius: 8px;
    display: inline-block;
    transform: rotate(-2deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero img {
    max-width: 100%;
    height: auto;
    margin-top: 50px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}
.hero img:hover {
    transform: translateY(-10px);
}

/* Two Column Layout */
.two-column {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}
.two-column.reverse {
    flex-direction: row-reverse;
}
.two-column .col {
    flex: 1;
}
.two-column img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.two-column img:hover {
    transform: scale(1.02);
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: #004494;
    line-height: 1.3;
}
.section-title span {
    color: #ffcc00;
    position: relative;
}
.section-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ffcc00;
    border-radius: 2px;
}

/* Form Section Modernization */
.form-section {
    padding: 80px 0;
}
.form-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    max-width: 850px;
    margin: 0 auto;
}
.form-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}
.apply-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.apply-form .form-group {
    display: flex;
    flex-direction: column;
}
.apply-form .form-group.full-width {
    grid-column: span 2;
}
.apply-form label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
    font-size: 0.95rem;
}
.apply-form input, .apply-form textarea,select {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    width:100%;
}
.apply-form input:focus, .apply-form textarea:focus {
    outline: none;
    border-color: #0056b3;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}
.error-msg {
    color: #dc2626;
    background: #fee2e2;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    border: 1px solid #f87171;
}

/* Revenue Section */
.revenue-section {
    padding: 80px 0;
    position: relative;
}
.revenue-section .section-title {
    text-align: center;
    color: #fff;
}
.revenue-section .section-title span::after {
    display: none;
}
.revenue-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    gap: 40px;
}
.revenue-features {
    flex: 1;
}
.revenue-features.right {
    text-align: right;
}
.feature-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}
.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.15);
}
.revenue-features.right .feature-item:hover {
    transform: translateX(-10px);
}
.feature-item h4 {
    color: #ffcc00;
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.feature-item p {
    color: #e2e8f0;
    font-size: 0.95rem;
}
.revenue-img {
    flex: 1;
    text-align: center;
}
.revenue-img img {
    max-width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
}

/* Stats Section */
.stats {
    padding: 60px 0;
}
.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}
.stat-item {
    text-align: center;
    background: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-5px);
}
.stat-item h3 {
    font-size: 3rem;
    color: #004494;
    font-weight: 700;
    margin-bottom: 10px;
}
.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}
.process-section .section-title {
    text-align: center;
}
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
}
.step {
    flex: 1;
    text-align: center;
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.step img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 5px solid #f8fafc;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.step h4 {
    color: #004494;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.step p {
    color: #666;
    font-size: 0.95rem;
}

/* Table Section */
.table-section {
    padding: 80px 0;
}
.table-section .section-title {
    text-align: center;
}
.table-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
table th, table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
table th {
    background-color: #f8fafc;
    color: #004494;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}
table th:first-child { border-top-left-radius: 10px; }
table th:last-child { border-top-right-radius: 10px; }
table tr:last-child td { border-bottom: none; }
table tbody tr { transition: background-color 0.2s ease; }
table tbody tr:hover { background-color: #f8fafc; }

/* Lists Modernization */
ul.modern-list {
    margin-top: 30px;
    padding: 0;
    list-style: none;
}
ul.modern-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #e2e8f0;
}
.bg-yellow ul.modern-list li {
    color: #333;
}
ul.modern-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: #ffcc00;
    font-weight: bold;
    font-size: 1.2rem;
}
.bg-yellow ul.modern-list li::before {
    color: #004494;
}

/* Footer */
footer {
    background: linear-gradient(to right, #003366, #004494);
    color: #fff;
    padding: 70px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}
.footer-col h4 {
    color: #ffcc00;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
}
.footer-col p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: #cbd5e1;
}
.footer-col ul li a:hover {
    color: #ffcc00;
    padding-left: 5px;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Modern Utilities */
.section-padding {
    padding: 80px 20px;
}
.modern-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.modern-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.2);
}
.eligibility-container, .land-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .two-column, .two-column.reverse { flex-direction: column; text-align: center; }
    ul.modern-list li { text-align: left; }
    .revenue-grid { flex-direction: column; }
    .revenue-features.right, .revenue-features { text-align: center; }
    .feature-item:hover, .revenue-features.right .feature-item:hover { transform: translateY(-5px); }
    .process-steps { flex-wrap: wrap; }
    .step { min-width: 40%; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-actions .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    .navbar .logo img {
        height: 40px;
    }
    .apply-form { grid-template-columns: 1fr; }
    .apply-form .form-group.full-width { grid-column: span 1; }
    .step { min-width: 100%; }
    .form-wrapper { padding: 30px 20px; }
    .hero { padding: 40px 0; }
    .hero h1 { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .eligibility-container, .land-container { flex-direction: column; text-align: center; gap: 30px; }
    ul.modern-list li { text-align: left; }
    .section-padding { padding: 50px 0; }
    .two-column { padding: 50px 0; }
}
