/* HEADER CSS ================================================================================================ */
/* body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #e9ebec, #c8e4f3, #f9e9e9);
    padding: 10px 5%;
    width: 95%;
    position: fixed;
    top: 0;
    left: 0px;
    z-index: 1000;
    height: 75px; /* Navbar ची exact height */
}

.hero-section {
    margin-top: 50px; /* Navbar height मुळे gap द्या */
    padding: 0px;
}



/* Logo Styling */
.logo img {
    height: 50px; /* Adjust height as needed */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Fix for missing logo issue */
.logo {
    margin-left: 10px;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    position: relative;
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    padding: 10px 15px;
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* Hover & Active Link Effects */
.nav-links a:hover {
    color: #007bff;
    transform: translateY(-2px);
}

.nav-links a.active {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
}


/* Dropdown Menu */
/* Ensure dropdown is scrollable */
.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(230, 230, 230, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    top: 100%;
    left: 0;
    z-index: 1000;
    border-radius: 8px;
    padding: 8px 0;
    transition: all 0.3s ease-in-out;
    max-height: 300px; /* Set max height */
    overflow-y: auto; /* Enable vertical scrolling */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Scrollbar styling (optional) */
.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

/* .dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
} */

/* .dropdown-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
} */

/* .dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #555;
} */


.dropdown-content a {
    color: #222;
    padding: 12px 18px;
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: 600px;
    font-family: 'Poppins', sans-serif;
    border-radius: 6px;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.dropdown-content a:hover {
    background: #fff9f94d;
    color: #007bff;
    transform: scale(1.05);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    padding: 15px;
    color: #000;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: rgba(230, 230, 230, 0.767);
        backdrop-filter: blur(10px);
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .dropdown-content {
        display: none;
        /* background: rgba(0, 0, 0, 0.9); */
        position: relative;
    }

    .dropdown-content.active {
        display: block;
    }

    .dropdown .dropbtn {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* HEADER CSS END ====================================================================================================== */

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* min-height: 100vh; */
    background-color: #ffffff;
    width: 100%; /* Full width */
    padding-top: 60px; /* To give space for fixed header */
    justify-items: center;
}

/* Header & Footer */
#header-placeholder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;  /* Ensure header spans the full width */
    background: #222;
    color: white;
    text-align: center;

    font-size: 1.2rem;
    z-index: 1000; /* Make sure the header stays above other content */
}
.section, .about-us {
    margin-top: 0 !important;
    padding-top: 0 !important;
}



section {
    margin: 0;
    padding: 0;
}
/* Student Corner Heading */
/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

/* Centering the Heading */
.header-container {
    width: 100%;
    text-align: center;
    padding-top: -10px; /* Adjust space from top */
    margin-bottom: 30px;
    

}

/* Student Corner Heading */
.student-corner {
    font-size: 40px;
    font-weight: 700px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #2c3e50;
    /* margin: 0 auto; */
    display: inline-block;
    position: relative;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    /* margin-left: 45px; */
}

/* Elegant Underline Effect */
.student-corner::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, #ff3300);
    margin: 5px auto 0;
    border-radius: 2px;
}

/* Header & Footer */
#header-placeholder, #footer {
    width: 100%;
    background: #222;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 1.2rem;
}

/* Testimonial Container */
.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 110px auto;
    
}

/* Testimonial Card */
.testimonial-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 20px;
    width: 320px;
    position: relative;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2.5rem;
    color: #ff6600;
    opacity: 0.5;
}

/* Profile Section */
.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.profile-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff6600;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.5);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    margin-left: 15px;
}

.profile-name {
    font-weight: bold;
    color: #333;
}

.rating {
    color: #ffcc00;
}

.testimonial-text {
    color: #555;
    font-style: normal;
    border-left: 4px solid #ff6600;
    padding-left: 10px;
    font-size: 1rem;
}
/* Testimonial Form Container */
.testimonial-form-container {
    width: 100%;
    max-width: 550px;
    margin: 40px auto;
    padding: 20px;
}

/* Form Styling */
.testimonial-form {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    border: 1px solid #ddd;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Title */
.form-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #222;
    margin-bottom: 25px;
}

/* Form Group */
.form-group {
    margin-bottom: 18px;
}

/* Labels */
.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

/* Input & Textarea */
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: #ff6600;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
    outline: none;
}

/* Upload Section */
.upload-container {
    text-align: center;
    border: 2px dashed #ff6600;
    padding: 15px;
    border-radius: 6px;
    background: #fff5e6;
    cursor: pointer;
    transition: 0.3s;
}

.upload-container:hover {
    background: #ffe0b3;
}

.upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #ff6600;
}

.upload-icon {
    font-size: 1.5rem;
}

.upload-input {
    display: none;
}

/* Rating Section */
.rating-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}


.rating-star {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
}

.rating-star:hover,
.rating-star.selected {
    color: #ffcc00;
    transform: scale(1.1);
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff6600, #e65c00);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-button:hover {
    background: linear-gradient(135deg, #e65c00, #cc5200);
    transform: scale(1.05);
}

.submit-button:active {
    transform: scale(0.95);
}



#footer {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
