        body {
            font-family: 'Verdana', sans-serif;
            margin: 0;
            padding: 0;
            background: #f8f9fa;
            color: #333;
        }

        .header {
            background: linear-gradient(to right, #2E86C1, #1B4F72);
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 2.5em;
            font-weight: bold;
        }

           .navbar {
            display: flex;
            flex-wrap: nowrap;
            flex-direction: row;
            align-content: center;
            justify-content: center;
            align-items: center;
            gap: 3%;
            padding: 1% 0;
            background-color: #11387a;
            color: #ffffff;
            filter: drop-shadow(2px 4px 6px grey);
            font-weight: 700;
            list-style: none;
        }

        .navbar ul {
            list-style: none;
        }

        .navbar a {
            float: left;
            font-size: 16px;
            color: white;
            text-align: center;
            padding: 2px 4px;
            text-decoration: none;
        }

        .navbar a:hover,
        .dropdown a:hover {
            color: orange;
        }

        .dropdown {
            float: left;
            overflow: hidden;
            font-weight: 700;
        }

        .dropbtn {
            font-size: 16px;
            border: none;
            outline: none;
            color: white;
            background-color: inherit;
            font-family: inherit;
            margin: 0;
            font-weight: 700;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .hero {
            background: url('hero-image.jpg') no-repeat center center/cover;
            padding: 80px 20px;
            color: rgba(46, 134, 193, 0.11);
            font-size: 1.5em;
            font-weight: bold;
            border-radius: 10px;
        }

        .justify {
            text-align: justify;
        }

        .section {
            background: rgba(46, 134, 193, 0.11);
            /* Light pale yellow  old color white */
            padding: 10px;
            margin-bottom: 20px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }

        .stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        .eligibility {
            background: rgba(46, 134, 193, 0.11);
            padding: 20px;
            border-radius: 10px;
            text-align: left;
        }

        .eligibility ul {
            list-style-type: none;
            padding: 0;
        }

        .eligibility li {
            padding: 10px;
            font-size: 1.1em;
            display: flex;
            align-items: center;
        }

        .eligibility li::before {
            content: '\2714';
            color: #28A745;
            /* Green color for check marks */
            font-weight: bold;
            margin-right: 10px;
        }

        .cta-button {
            background: linear-gradient(to right, #2E86C1, #1B4F72);
            color: white;
            padding: 15px 30px;
            font-size: 1.2em;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-transform: uppercase;
            margin-top: 20px;
        }

        .footer {
            text-align: center;
            padding: 20px;
            background: linear-gradient(to right, #2E86C1, #1B4F72);
            /* Red gradient for footer */
            color: white;
            /* Ensures the text is white and readable on the red background */
            margin-top: 20px;
            /* border-radius: 10px; */
            /* Optional: Adds rounded corners to the footer */
        }

        .header {
            background: linear-gradient(to right, #2E86C1, #1B4F72);
            color: white;
            padding: 5px 40px 20px;
            text-align: center;
            font-size: 1.8em;
            font-weight: bold;
        }

        .content {
            /* max-width: 1200px; */
            margin: 0 auto;
            /* padding: 20px; */
        }

        .section {
            background: white;
            padding: 20px;
            margin: 20px 0;
            border-radius: 10px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        }

        .timeline {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 20px;
        }

        .timeline-item {
            display: flex;
            align-items: center;
            background: #1B4F72;
            color: white;
            padding: 15px;
            border-radius: 8px;
        }

        .timeline-date {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 15px;
            border-radius: 5px;
            font-weight: bold;
            margin-right: 15px;
            min-width: 250px;
            text-align: center;
        }

   #apply-now .apply-btn {
    display: inline-block; /* Keeps the button in line with other elements */
    background: #007BFF; /* Blue background */
    color: white; /* White text */
    padding: 15px 25px; /* Increased padding for a larger button */
    border-radius: 8px; /* Slightly larger rounded corners */
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px; /* Slightly bigger text */
    margin: 20px 0; /* Top and bottom margin */
    
    /* Align left (current state) */
    margin-left: 0; /* Align left */
    margin-right: auto; /* Push the button to the left */
   }


        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            text-align: center;
            margin-top: 20px;

        }

        .benefit {
            background: rgba(46, 134, 193, 0.11);
            /* Light pale yellow  old color #f8f9fa */
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }

        .benefit:hover {
            transform: translateY(-5px);
        }

        .benefit i {
            font-size: 2rem;
            color: rgba(46, 134, 193, 0.11);
            /* Light pale yellow  old color #1D3E8A */
            margin-bottom: 10px;
        }

        .benefit p {
            font-size: 1.1rem;
            font-weight: 500;
            color: #333;
        }
		.benefit ul {
    list-style: disc;
    margin-left: 20px;
    padding-left: 0;
}

.benefit li {
    display: list-item;
    margin-bottom: 10px;
    line-height: 1.5;
}

        .focus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            text-align: center;
            margin-top: 20px;
        }

        .focus-item {
            background: rgba(46, 134, 193, 0.11);
            /* Light pale yellow  old color #eef2f7 */
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }

        .focus-item:hover {
            transform: translateY(-5px);
        }

        .focus-item i {
            font-size: 2rem;
            color: #1D3E8A;
            margin-bottom: 10px;
        }

        .focus-item p {
            font-size: 1.1rem;
            font-weight: 500;
            color: #333;
        }

        .selection-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }

        .step {
            display: flex;
            align-items: center;
            background: #f9f9f9;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }

        .step:hover {
            transform: translateY(-5px);
        }

        .step i {
            font-size: 2rem;
            color: #1D3E8A;
            margin-right: 15px;
        }

        .step-content h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .step-content p {
            font-size: 1rem;
            color: #555;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .benefit {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease-in-out;
        }

        .benefit:hover {
            transform: translateY(-5px);
        }

        .benefit i {
            font-size: 2rem;
            color: #1D3E8A;
            margin-bottom: 10px;
        }

        .benefit h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .benefit p {
            font-size: 1rem;
            color: #555;
        }

        .about-program {
            background: linear-gradient(10deg, #1D3E8A, #4A90E2);
            color: rgba(46, 134, 193, 0.11);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;

        }

        .about-text {
            flex: 1;
        }

        .about-program h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            font-weight: bold;
            text-transform: uppercase;

        }

        .about-program p {
            font-size: 1.2rem;
            line-height: 1.5;
            /* max-width: 800px; */
            margin: 0 auto;

        }
        .about-program h2 {
            background: none !important;
            color: white !important;
            padding: 0 !important;
            cursor: default !important;
            text-transform: uppercase;
        }
        .section h2 {
            cursor: pointer;
            background: linear-gradient(to right, #2E86C1, #1B4F72);
            color: white;
            padding: 12px;
            border-radius: 5px;
            transition: background 0.3s ease;
            margin: 0;
            margin-bottom: 10px;
        }
        .section-content {
            display: none;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 5px;
            margin-top: 5px;
        }

        .apply-btn {
            display: inline-block;
            margin-top: 10px;
            padding: 10px 15px;
            background: #1976D2;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
        }

        .apply-btn:hover {
            /* background: #0d47a1; */
        }

        .problem-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 15px;
        }

        .problem-card {
            display: flex;
            justify-content: space-between;
            /* Ensures the content and button are spaced out */
            align-items: center;
            background: linear-gradient(to right, #2E86C1, #1B4F72);
            /* Alternative red gradient */
            color: white;
            /* Text color remains white for good contrast */
            padding: 15px;
            cursor: pointer;
            border-radius: 6px;
            transition: background 0.3s ease-in-out;
            font-size: 18px;
            width: 100%;
            /* Ensures cards take full width of the container */
        }

        .problem-card:hover {
            background: linear-gradient(to right, #2E86C1, #1B4F72);
            /* Darker gradient on hover for effect */
        }

        .problem-card i {
            font-size: 22px;
            margin-right: 10px;
        }
        .problem-card .problem-text {
            display: flex;
            flex: 1;
            /* Takes up available space */
        }

        .problem-card .problem-text h3 {
            padding-right: 20px;
        }

        .problem-card .problem-box {
            margin-left: 10px;
        }

        .problem-content {
            display: none;
            background: #FFEBEE;
            /* Light red background for content */
            padding: 15px;
            border-radius: 6px;
            margin-top: 5px;
            font-size: 16px;
            color: #D32F2F;
            /* Dark red color for text, ensuring legibility on light red background */
            transition: all 0.3s ease-in-out;
        }

        .apply-btn {
            display: inline-block;
            margin-top: 20px;
            /* Increased margin for better spacing */
            padding: 12px 24px;
            /* Increased padding for a larger button */
            /* background: linear-gradient(135deg, #ff7eb3, #ff3d7f); */
            background: white;
            /* Updated gradient direction */
            color: #1B4F72;
            text-decoration: none;
            border-radius: 30px;
            /* Rounded corners for a more modern look */
            font-size: 18px;
            /* Increased font size */
            font-weight: bold;
            letter-spacing: 1px;
            /* Slightly increased spacing between letters */
            box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
            /* Stronger shadow effect */
            transition: all 0.3s ease-in-out;
            /* Smooth transition for all properties */
            text-align: center;
        }

        .apply-btn:hover {
            transform: translateY(-5px);
            /* Elevates the button on hover */
            box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.4);
            /* Stronger shadow on hover */
            /* background: linear-gradient(to right, #2E86C1, #1B4F72); */
            /* Reverse gradient on hover */
        }

        .apply-btn:active {
            transform: translateY(2px);
            /* Slightly pushes the button down when clicked */
            box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
            /* Reduced shadow on click */
        }

        .content {
            /* max-width: 1200px; */
            margin: auto;
            /* padding: 20px; */
        }

        .about-program {
            background: linear-gradient(to right, #2E86C1, #1B4F72);
            color: #fff;
            padding: 20px;
            border-radius: 10px;
            text-align: left;
            width: 100%;
            box-sizing: border-box;
        }

        .about-program h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .about-program p {
            font-size: 1.2rem;
            line-height: 1.5;
            /* max-width: 800px; */
            margin: 0 auto;
            /* font-family: 'Verdana', sans-serif; */
        }

        .about-text p {
            max-height: 4.8em;
            /* Show 3 lines (each line ~1.5em height) */
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
            position: relative;
        }

        .about-text p.expanded {
            max-height: 1000px;
            /* Expand to full content */
        }

        .read-more {
            color: white;
            cursor: pointer;
            /* margin-top: 10px; */
            display: inline-block;
            font-size: 1.1rem;
            font-weight: bold;
            position: relative;
        }

        .read-more:hover {
            color: orange;
        }


        .header {
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            position: relative;
            background: linear-gradient(to right, #2E86C1, #1B4F72);
            color: white;
            /* padding: 40px; */
            font-size: 2.5em;
            font-weight: bold;
            text-align: center;
        }

        .logo {
            height: auto;
            width: auto;
        }

        .left-logo {
            height: 80px;
            width: auto;
            /* margin-left: 10%; */
        }

        .center-content {
            /* flex-grow: 1; */
            /* Allows content to take the remaining space */
            text-align: right;
            /* Centers the text */
            font-size: 2.5rem;
            /* Adjust font size */
            font-weight: bold;
            /* Makes it stand out */
        }

        .right-logos {
            display: flex;
            align-items: center;
            gap: 30px;
            /* Adjust space between logos */
        }

        .right-logo,
        .right-logo2 {
            height: 80px;
            /* Smaller than left logo */
            width: auto;
        }


        @media (max-width: 768px) {
            /* .container {
                padding: 0 10px;
                /* Smaller padding for mobile */
        }

        */ .benefits-grid,
        .focus-grid,
        .problem-container {
            grid-template-columns: 1fr;
            /* Stack columns for smaller screens */
        }

        .section h2 {
            font-size: 1.5rem;
            /* Reduce heading size on smaller screens */
        }

        /* About Program */


        .image-box img {
            width: 100%;
            max-width: 300px;
            border-radius: 8px;
        }

        .see-more-btn {
            display: inline-block;
            /* margin-top: 20px; */
            /* Increased margin for better spacing */
            padding: 12px 24px;
            /* Increased padding for a larger button */
            /* background: linear-gradient(135deg, #ff7eb3, #ff3d7f); */
            /* Updated gradient direction */
            /* color: white; */
            background: white;
            /* Updated gradient direction */
            color: #1B4F72;
            text-decoration: none;
            border-radius: 30px;
            /* Rounded corners for a more modern look */
            font-size: 18px;
            /* Increased font size */
            font-weight: bold;
            letter-spacing: 1px;
            /* Slightly increased spacing between letters */
            box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
            /* Stronger shadow effect */
            transition: all 0.3s ease-in-out;
            /* Smooth transition for all properties */
            text-align: center;
        }

        .see-more-btn:hover {
            transform: translateY(-5px);
            /* Elevates the button on hover */
            box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.4);
            /* Stronger shadow on hover */
            /* background: linear-gradient(135deg, #ff3d7f, #ff7eb3); */
            /* Reverse gradient on hover */
        }

        .see-more-btn:active {
            transform: translateY(2px);
            /* Slightly pushes the button down when clicked */
            box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
            /* Reduced shadow on click */
        }

        .popup {
            display: none;
            /* Hide initially */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            /* Dim background */
            justify-content: center;
            align-items: center;
            z-index: 1000;
            /* Ensure it appears above other elements */
        }

        .popup-content {
            background: white;
            padding: 20px;
            border-radius: 8px;
            /* text-align: center; */
            max-width: 1000px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            margin-top: 80px;
        }

        .close {
            position: absolute;
            right: 15px;
            top: 10px;
            cursor: pointer;
            font-size: 24px;
        }


        .modal {
            display: none;
            /* Hidden by default */
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.4);
            /* Semi-transparent background */
            padding-top: 60px;
        }

        .modal-content {
            background-color: #fff;
            margin: 5% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 600px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .close {
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            top: 10px;
            right: 25px;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        /* Style for "See Details" button */
        .see-details-btn {
            /* background-color: #D81B60; */
            background: rgba(46, 134, 193, 0.5);
            /* background: linear-gradient(to right, #2E86C1, #1B4F72); */
            /* Dark Pink */
            color: white;
            /* White text */
            border: none;
            padding: 10px 16px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
        }

        /* Hover effect */
        .see-details-btn:hover {
            /* background: linear-gradient(to right, #2E86C1, #1B4F72); */
            /* background-color: #B01550;         */
            transform: scale(1.05);
        }

        /* View Details Button - Complementary Styling */
        .view-detail-btn {
            
            background: linear-gradient(to right, #2E86C1, #1B4F72);
            /* background: #FFD700; */
            /* Gold */
            color: white;
            /* color: #2E7D32; */
            /* Dark Green Text */
            font-weight: bold;
            padding: 10px 16px;
            font-size: 16px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s ease-in-out, transform 0.2s;
        }

        .view-detail-btn:hover {
            /* background: #FFC107; */
            /* Slightly brighter gold */
            transform: scale(1.05);
        }

        .view-detail-btn:active {
            transform: scale(0.98);
        }
		.banner-img {
    width: 100%; /* Ensure the image takes the full width */
    height: auto; /* Maintain aspect ratio */
    max-height: 440px; /* Set a maximum height if needed */
    object-fit: cover; /* This ensures the image covers the area without distorting */
}
.brochure-box {
    background: white; /* Keeping the section background consistent */
    color: #1B4F72; /* Matching the text with theme */
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.download-btn {
    display: inline-block;
    background: #007BFF; /* Blue background */
    color: white; /* White text */
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: #0056b3; /* Slightly darker blue on hover */
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.blinking {
    animation: blink 1s infinite;
    font-weight: bold;
    color: red;
}