    body {
        background-color: #f3f3f3;
        font-family: 'Arial', sans-serif;
    }

    .form-container {
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 0 15px rgba(0, 0, 255, 0.5);
        padding: 30px;
        margin-top: 20px;
        border-top: 8px solid #ff9933; /* Saffron */
        border-bottom: 8px solid #138808; /* Green */
    }

    .form-title {
        font-size: 22px;
        font-weight: bold;
        color: #138808; /* Ashoka Chakra Blue */
        text-align: center;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 18px;
        font-weight: bold;
        color: #000080; /* Green */
        margin-top: 20px;
        margin-bottom: 10px;
        border-bottom: 2px solid #ff9933; /* Saffron */
        display: inline-block;
        padding-bottom: 5px;
    }

    .btn-submit {
        background-color: #138808; /* Green */
        color: #ffffff;
        border: none;
        padding: 12px;
        font-size: 16px;
        border-radius: 5px;
        width: 100%;
        font-weight: bold;
        text-transform: uppercase;
    }

    .btn-submit:hover {
        background-color: #0d6c05; /* Darker green for hover effect */
    }

    .input-field {
        width: 100%;
        padding: 10px;
        border: 1px solid #ced4da;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .form-check-label {
        margin-left: 8px;
        color: #000080; /* Ashoka Chakra Blue */
    }

    .checkbox-group label {
        margin-right: 20px;
        color: #000080; /* Green */
    }

    .text-center {
        color: #ff9933; /* Saffron */
        font-weight: bold;
        margin-bottom: 20px;
    }

    /* Navbar Styling */
    .navbar {
        background: linear-gradient(to right, #fff, #fff, #ff9933);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-toggler-icon {
        background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns%3D%27http://www.w3.org/2000/svg%27 viewBox%3D%270 0 30 30%27%3E%3Cpath stroke%3D%27rgba(0, 0, 0, 0.5)%27 stroke-width%3D%272%27 d%3D%27M4 7h22M4 15h22M4 23h22%27/%3E%3C/svg%3E');
    }

    .navbar-toggler-left {
        position: absolute;
        left: 0; /* Aligns the button to the left */
        margin-left: 10px; /* Adds some spacing from the edge */
        z-index: 1050; /* Ensures it stays on top */
    }

    .navbar-brand {
        font-weight: bold;
        color: transparent; /* Make text color transparent */
        margin: auto;
        background: linear-gradient(to right, #455ae9, #000080, #000080); /* Flag-like gradient */
        -webkit-background-clip: text; /* Clip the gradient to the text */
        background-clip: text;
    }
    
 

    .nav-link:hover {
        color: #000 !important;
    }


    /* Overlay styles */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
        z-index: 1049; /* Just below the sidebar */
        display: none; /* Hidden by default */
    }

    .overlay.show {
        display: block; /* Show overlay */
    }

    .carousel-inner img {
        height: auto;
        max-height: 400px;
        object-fit: cover;
        margin: auto;
    }

    .carousel-indicators li {
        background-color: #ff9933;
    }

    .carousel-indicators .active {
        background-color: #138808;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: #ffffff;
        border-radius: 50%;
        padding: 10px;
    }

    /* Adjustments for Smaller Devices */
    @media (max-width: 768px) {
        .carousel-inner img {
            height: auto;
            max-height: 220px;
            object-fit: cover;
            margin: auto;
        }

        .nav-link {
            display: none;
        }
        
        .navbar-brand {
           font-size: clamp(0.85rem, 2vw, 2.5rem); 
        }
    }

    /* Sidebar Styling */
    .sidebar {
        position: fixed;
        top: 0;
        left: -300px; /* Hidden by default */
        width: 300px;
        height: 100vh;
        background: #ffffff; /* Light background */
        color: #000; /* Dark text */
        transition: left 0.3s ease;
        z-index: 1050; /* Ensure sidebar is above other elements */
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
        padding: 20px;
        overflow-y: auto;
        border-right: 3px solid #455ae9; /* Green border for Indian flag inspiration */
    }

    .sidebar.open {
        left: 0; /* Show sidebar */
    }

    /* Sidebar Close Button */
    .sidebar .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background-color: transparent;
        border: none;
        color: #000;
        font-size: 1.5rem;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .sidebar .close-btn:hover {
        color: #ff9933; /* Saffron hover effect */
    }

    /* Sidebar Title */
    .sidebar-title {
        font-size: 24px;
        font-weight: bold;
        color: #000080; /* Green */
        margin-bottom: 20px;
        text-transform: uppercase;
        border-bottom: 2px solid #ff9933; /* Saffron */
        padding-bottom: 5px;
    }

    /* Sidebar Menu */
    .sidebar-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-menu li {
        margin: 10px 0;
        padding: 10px 10px;
        font-size: 1rem;
        background-color: rgba(0, 0, 0, 0.05); /* Subtle light gray background */
        color: #000;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: background 0.3s ease, transform 0.2s ease;
    }

    .sidebar-menu li:hover {
        background-color: #ff9933; /* Saffron hover */
        color: #fff;
        transform: translateX(10px);
    }

    .sidebar-menu li i {
        font-size: 1.2rem;
        color: #000080; /* Green */
    }

    .sidebar-menu .menu-link {
        text-decoration: none;
        color: inherit; /* Inherit color from the li element */
        display: block;
        width: 100%; /* Make the link cover the entire clickable area */
    }

    .sidebar-menu .menu-link:hover {
        text-decoration: none; /* Remove underline on hover */
    }

    /* Search Bar */
    .sidebar-search {
        position: relative;
        margin-bottom: 20px;
    }

    .sidebar-search input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        outline: none;
        font-size: 1rem;
        color: #000;
        background: #f9f9f9;
        padding-left: 40px;
    }

    .sidebar-search input::placeholder {
        color: #888;
    }

    .sidebar-search i {
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
        color: #000080; /* Green */
        font-size: 1.2rem;
    }
    
    .services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 20px;
    }

    .service-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 18px;
        font-size: 0.8rem;
        font-weight: bold;
        text-decoration: none;
        color: #ffffff;
        background: linear-gradient(135deg, #6a11cb, #2575fc);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        width: 18vw;
        justify-content: center;
        text-align: center;
    }
    
    .service-btn i {
        font-size: 1.3rem;
    }
    
    .service-btn:hover {
        background: #fff;
        transform: translateY(-3px);
        box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3);
    }
    
    .download-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 18px;
        font-size: 0.8rem;
        font-weight: bold;
        text-decoration: none;
        color: #ffffff;
        background: linear-gradient(135deg, #138800, #138808);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        width: 18vw;
        justify-content: center;
        text-align: center;
    }
    
    .download-btn i {
        font-size: 1.3rem;
    }
    
    .download-btn:hover {
        background: #fff;
        transform: translateY(-3px);
        box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3);
    }
    
    /* Adjustments for Smaller Devices */
    @media (max-width: 768px) {
        .service-btn {
           display: none;
        }
        .download-btn {
        width: 60vw;
       }
    }
    
        /* Animations */
    .animated-title {
        animation: fadeIn 2s ease-in-out;
        font-size: 1.5rem;
        color: #2c3e50;
        text-align: center;
    }

    .animated-section {
        animation: slideIn 1s ease-in-out;
    }

    .animated-button {
        animation: pulse 1s infinite;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
    }

