/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fc;
    color: #333;
    line-height: 1.6;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 10px 20px;
    flex-wrap: wrap;
    position: relative;
}
header .logo img {
    height: 100px;
}
header h1 {
    font-size: 22px;
    font-weight: bold;
    color: #004aad;
    text-align: center;
    flex: 1;
}
header .top-menu {
    display: flex;
    gap: 10px;
}
.top-menu a {
    padding: 5px 10px;
    background: #f5b921;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
}
.top-menu a:hover {
    background: #e0a800;
}

/* NAVBAR */
.navbar {
    background: #004aad;
    position: sticky;
    top: 0;
    z-index: 999;
}
.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.navbar ul li {
    position: relative;
}
.navbar ul li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.navbar ul li:hover {
    background: #002d80;
}
.navbar ul li ul {
    display: none;
    position: absolute;
    background: #004aad;
    top: 100%;
    min-width: 200px;
}
.navbar ul li:hover ul {
    display: block;
}
.navbar ul li ul li a {
    padding: 10px;
}

/* Mobile Navbar Toggle */
.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #004aad;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 25px;
}

/* HERO SLIDER */
.hero-carousel {
    position: relative;
    overflow: hidden;
}
.slider {
    position: relative;
}
.slides img {
    width: 100%;
    display: none;
}
.slides img.active {
    display: block;
}
.prev, .next {
    position: absolute;
    top: 50%;
    padding: 12px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 10;
}
.prev { left: 10px; }
.next { right: 10px; }
.hero-content {
    position: absolute;
    bottom: 20%;
    width: 100%;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 4px #000;
}
.hero-content h2 {
    font-size: 26px;
}
.hero-content .btn {
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
}
.hero-content .btn:hover {
    background: #128C7E;
}

/* COURSES */
.section {
    padding: 60px 20px;
}
.section h2 {
    text-align: center;
    font-size: 28px;
    color: #004aad;
    margin-bottom: 30px;
}
.course-card .image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}
.course-card .details {
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.course-card .details h3 {
    color: #f5b921;
}
.course-card .details .btn {
    background: #f5b921;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    margin-top: 10px;
}

/* ABOUT / FACULTY */
.image {
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}
.image-item .details {
    text-align: center;
    margin-top: 10px;
}
.image-item .details h3 {
    color: #004aad;
}
.image-item .details p {
    color: #777;
    font-size: 14px;
}

/* GALLERY */
.gallerySwiper .swiper-slide img {
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

/* TESTIMONIAL */
.testimonial-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.testimonial-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    border-radius: 6px;
}
.testimonial-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 10px;
}

/* CONTACT */
.contact-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.contact-info, .contact-form {
    flex: 1 1 300px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}
.contact-form button {
    background: #f5b921;
    color: #333;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

/* FOOTER */
.site-footer {
    background: #004aad;
    color: #fff;
    padding: 40px 20px;
    border-radius: 5px;
    text-decoration: none;
}
.footer-logo {
    width: 80px;
    margin-bottom: 10px;
}
.footer-about h3 {
    color: #f5b921;
}
.footer-links ul li a, .footer-social .social-icons a {
    color: #ccc;
}
.footer-bottom {
    background: #003366;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}
.footer-map iframe {
    width: 100%;
    height: 200px;
    border: 2px;
    border-radius: 5px;
}

/* FLOATING BUTTONS */
.floating-btn {
    text-decoration: none;
    position: fixed;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.call-btn {
    background: #007bff;
    bottom: 80px;
}
.whatsapp-btn {
    bottom: 140px;
}
.up-btn {
    background: #f5b921;
    color: #333;
    bottom: 200px;
}
.floating-btn:hover {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #004aad;
    }
    .navbar ul li {
        text-align: left;
    }
    .navbar ul.show {
        display: flex;
    }
    @media (max-width: 768px) {
    .navbar ul li ul {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
    }
    .navbar ul li ul li a {
        padding: 12px 20px;
        background: #003366; /* थोड़ा गहरा रंग ताकि अलग दिखे */
        border-top: 1px solid #002244;
    }
}
    
}