body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    padding-top: 70px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    color: #006400;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000; /* Ensure the header stays on top of other elements */
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px; /* Adjust this value to match your desired header height */
}

.logo img {
    height: 50px; /* Adjust as needed */
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
position: relative;
    color: #006400;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #006400, #00a86b);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav ul li a:hover {
    color: #00a86b;
}

nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown-content a {
    color: #006400;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Green gradient stripe under header */
header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #006400, #00a86b);
}

main {
    padding: 20px;
    margin-left: 25px;
}

h1 {
    color: #006400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding-top: 0;
    margin-top: 20px;
}

.content-wrapper {
    display: flex;
    padding: 20px;
}

.search-section {
    flex: 0 0 300px; /* Adjust width as needed */
    margin-right: 20px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.search-section h2 {
    color: #006400;
    margin-bottom: 20px;
    font-size: 20px;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.search-input, .search-select {
    width: 80%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.search-button {
    padding: 10px;
    background-color: #006400;
    color: white;
    width: 90%;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #00a86b;
}

.main-content {
    flex: 1;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    main {
        padding: 20px;
        margin-left: 1px;
    }

    



    .search-section {
        flex: none;
        width: 90%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.banner {
    width: 100%;
    max-height: 400px; /* Adjust this value as needed */
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

main {
    padding: 20px;
}


/* Footer Styles */
.footer {
    background-color: #004d00; /* Dark green background */
    color: white;
    padding: 2rem 0;
    font-family: Arial, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 0 1rem;
    min-width: 250px;
}

.footer-content h2 {
    color: #8fe68f; /* Light green for headings */
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-content p, .footer-content .contact-details p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer .social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.footer .social-icons a:hover {
    color: #8fe68f; /* Light green on hover */
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .banner {
        width: 100%;
        max-height: 170px; /* Adjust this value as needed */
        overflow: hidden;
    }

    .footer-section {
        margin: 1rem 0;
    }

    .footer .social-icons {
        justify-content: center;
    }
}

.map-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
}


.university-container {
    margin: 3rem 0;
    padding: 0 1rem;
}

.section-title {
    color: #006400;

    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 85%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #006400, #00a86b);
}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    position: relative;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 100, 0, 0.9), rgba(0, 100, 0, 0));
    padding: 1.5rem;
    color: white;
    text-align: center;
}

.caption h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
}

.caption p {
    margin: 0;
    font-size: 1rem;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 100, 0, 0.8);
    text-decoration: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 168, 107, 0.8);
}

/* The dots/bullets/indicators */
.dots-container {
    text-align: center;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}


/* Animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* Responsive design */
@media (max-width: 768px) {
    .slideshow-container {
        margin: 0 -1rem;
        border-radius: 0;
    }

    .slide img {
        height: 300px;
    }

    .caption h3 {
        font-size: 1.2rem;
    }

    .caption p {
        font-size: 0.9rem;
    }

    .prev, .next {
        padding: 8px;
        font-size: 16px;
    }
}

/* Enhanced Slideshow Container */
.banner {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
    background: #000;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
    margin: auto;
}

/* Slide Styling */
.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    transition: transform 0.5s ease;
}

.slide:hover img {
    transform: scale(1.02);
}

/* Caption Styling */
.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide:hover .caption {
    opacity: 1;
}

/* Navigation Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 1rem;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    background-color: rgba(0, 100, 0, 0.6);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
}

.slideshow-container:hover .prev,
.slideshow-container:hover .next {
    opacity: 1;
}

.next {
    right: 20px;
}

.prev {
    left: 20px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 168, 107, 0.9);
    transform: translateY(-50%) scale(1.1);
}

/* Dots Navigation */
.dots-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
    background: transparent;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.active, .dot:hover {
   
    transform: scale(1.2);
}

/* Slide Animation */
.fade {
    animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
    from {
        opacity: 0.4;
        transform: scale(1.02);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: 400px;
    }

    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .caption {
        padding: 1rem;
    }

    .dot {
        height: 10px;
        width: 10px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 300px;
    }
}

.note {
    background-color: #fffffb; /* Light yellow for visibility */
    color: #333; /* Dark text for contrast */
    font-size: 0.9em; /* Slightly smaller font */
    padding: 10px; /* Add padding for spacing */
    border-left: 4px solid #77c845; /* Yellow border to mimic a sticky note */
    margin-top: 5px; /* Space above the note */
    border-radius: 3px; /* Slightly rounded corners */
    font-style: italic; /* Italicize the text */
}


/* Enhanced User Guide Styles */
.user-guide {
    padding: 2rem;
    background-color: white;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.user-guide h2 {
    color: #006400;
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1rem;
    text-align: center;
}

.user-guide h3 {
    color: #006400;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-bottom: 2rem;
    text-align: center;
}

.user-guide h4 {
    color: #006400;
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    margin: 1.5rem 0 1rem;
    border-bottom: 2px solid #006400;
    padding-bottom: 0.5rem;
}

.guide-section {
    margin-bottom: 2rem;
}

.user-type {
    background-color: #f5f5f5;
    padding: 1rem;
    margin: 1rem 0;
    border-left: 4px solid #006400;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.user-type h5 {
    color: #006400;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 0.5rem;
}

.features ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

.features li {
    margin: 0.5rem 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.usage-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.instruction-block {
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 4px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instruction-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.instruction-block h5 {
    color: #006400;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 1rem;
}

.instruction-content {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.guide-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.best-practices, .technical-requirements {
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 4px;
    height: 100%;
}

.best-practices h4, .technical-requirements h4 {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.best-practices ul, .technical-requirements ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Enhanced Responsive adjustments */
@media (max-width: 992px) {
    .user-guide {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .user-guide {
        padding: 1rem;
    }
    
    .usage-instructions {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guide-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .user-type {
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 576px) {
    .user-guide h2 {
        margin-bottom: 0.75rem;
    }
    
    .user-guide h3 {
        margin-bottom: 1.5rem;
    }
    
    .instruction-block {
        padding: 1.25rem;
    }
    
    .features ul, .best-practices ul, .technical-requirements ul {
        margin-left: 1.25rem;
    }
    
    .user-type {
        border-left-width: 3px;
    }
}

/* AOS Animation Responsiveness */


/* Add to your index.css file */
.scroll-link {
    position: relative;
    color: #006400;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.scroll-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #006400, #00a86b);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.scroll-link:hover {
    color: #00a86b;
}

.scroll-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}




/* Burger Menu Styles */
.burger-menu {
    display: none;
    background: none;
    border: none;
    color: #006400;
    cursor: pointer;
    padding: 10px;
}

.burger-menu i {
    font-size: 24px;
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .header-content {
        padding: 10px 15px;
    }

    .burger-menu {
        display: block;
        z-index: 1001;
    }

    nav {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        margin-top: 50px;
        flex-direction: column;
        padding: 20px 0;
    }

    nav ul li {
        
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        
        padding: 15px 20px;
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Mobile Dropdown Styles */
    .dropdown-content {
        position: static;
        min-width: 100%;
        box-shadow: none;
        display: none;
        background-color: #f5f5f5;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding-left: 40px;
    }

    /* Hover Effects for Mobile */
    nav ul li a::after {
        display: none;
    }

    nav ul li a:hover {
        background-color: #f5f5f5;
    }

    .dropdown-content a:hover {
        background-color: #e0e0e0;
    }
}

/* Additional Mobile Optimization */
@media screen and (max-width: 480px) {
    .header-content {
        padding: 10px;
    }

    .logo img {
        height: 40px;
    }

    nav {
        top: 60px;
        height: calc(100vh - 60px);
    }

    nav ul li a {
        font-size: 16px;
    }
}

/* Animation for Menu Toggle */
@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 0;
    }
}

@keyframes slideOut {
    from {
        left: 0;
    }
    to {
        left: -100%;
    }
}



/* Download Section Styles */
.download-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    margin: 2rem 0;
}

.download-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.download-text {
    flex: 1;
}

.download-text h2 {
    color: #006400;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.download-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #006400, #00a86b);
}

.download-text p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    color: #444;
}

.feature-list li i {
    color: #006400;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(to right, #006400, #00a86b);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 100, 0, 0.2);
}

.download-button i {
    font-size: 1.5rem;
}

.version-text {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-left: 0.5rem;
}

.download-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

.download-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-image img {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .download-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .download-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .feature-list li {
        justify-content: center;
    }

    .download-image img {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .download-section {
        padding: 2rem 1rem;
    }

    .download-text h2 {
        font-size: 1.5rem;
    }

    .download-button {
        padding: 0.8rem 1.5rem;
    }

    .download-image img {
        max-width: 200px;
    }
}



.faculty-login {
    color: #4CAF50; /* Green color */
    text-decoration: none;
    font-weight: 500;
}

.faculty-login:hover {
    text-decoration: underline;
}



/* Hide APK download section on mobile devices */
@media screen and (max-width: 768px) {
    .download-section {
        display: none;
    }
}
