@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* nav bar */


html {
    scroll-behavior: smooth;
}

/* General Styles */
body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
}

/* Navbar */
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    height: 85px;
    background-color: rgba(255, 255, 255, 0.98);
    color: black;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

/* Logo */
.logo img {
    width: 160px;
    height: auto;
    display: block;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-grow: 1;
    padding: 0;
    z-index: 1200;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 5px;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.social-icons a {
    color: white;
    font-size: 1.4rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #3b82f6;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        overflow-x: hidden;
    }

    .navbar {
        padding: 0 15px;
        height: 70px;
        gap: 12px;
    }

    .logo img {
        width: 130px;
    }

    .social-icons {
        margin-left: auto;
        gap: 10px;
    }

    .call-button {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .call-button small {
        font-size: 11px;
    }

    .call-icon {
        font-size: 13px;
    }

    .nav-links {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0.3s, opacity 0.3s ease-in-out;
        flex-direction: column;
        width: 100%;
        top: 70px;
        left: 0;
        background-color: #f0f0f0;
        /* Light gray background */
        text-align: center;
        padding: 10px 0;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        transition: max-height 0.3s ease-in-out;
        z-index: 1100;
    }

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

    .hamburger {
        display: block;
    }

    /* Show menu when active */
    .nav-links.active {
        display: flex;
        visibility: visible;
        opacity: 1;
    }
}



/* call button */


.call-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.call-button:active {
    transform: translateY(0);
}

.call-button small {
    font-weight: bold;
    font-size: 13px;
    color: white !important;
}

.call-icon {
    font-size: 16px;
    animation: phoneShake 1.5s infinite;
}

@keyframes phoneShake {
    0% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

/* heading css  */

.headings {
    font-size: 2.0rem;
    font-weight: bold;
    color: black;
    text-align: center;
    position: relative;
}

.headings::after {
    content: '';
    width: 50%;
    height: 3px;
    background: black;
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
}

.headings:hover::after {
    width: 80%;
}




/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url("../imgs/hero-slider/1.jpg") no-repeat center center/cover;
    padding: 0 20px;
    margin-top: 80px;
    z-index: 900;
}

.hero-bg-img {
    display: none;
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    color: white;
}

.expert {
    font-size: 1.6rem;
}

.hero-content h1 {
    font-size: 2.3rem;
    font-weight: bold;
    line-height: 1.2;
}

.hero-content .highlight {
    /* color: #FFC107; */
    color: #FFD700;

}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
}


.hero-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enroll-btn,
.demo-btn {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.enroll-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.enroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.demo-btn {
    background: linear-gradient(135deg, #34d399, #059669);
    color: white;
}

.demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #6ee7b7, #10b981);
}

/* Responsive Design */
@media (min-width: 768px) {


    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .enroll-btn,
    .demo-btn {
        font-size: 1.1rem;
        padding: 14px 24px;
    }
}

/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
    .hero-section {
        position: relative;
        margin-top: 70px;
        height: auto;
        min-height: unset;
        background: none !important;
        padding: 10px 0px;
        display: block;
    }

    .hero-bg-img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: fill;
        z-index: 1;
    }

    .overlay {
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 10;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
        margin: 0 auto;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.1rem !important;
    }

    .hero-content span {
        font-size: 0.95rem !important;
    }

    .hero-buttons {
        flex-direction: row;
        /* Keep buttons in one row */
        flex-wrap: wrap;
        /* Allow wrapping if needed */
        justify-content: center;
        /* Center align */
        gap: 6px;
        /* Add space between buttons */
        margin-top: 10px;
    }

    .enroll-btn {
        font-size: 0.6rem;
        /* Slightly smaller font */
        padding: 4px 14px;
        /* Reduce horizontal padding */
        white-space: nowrap;
        /* Prevent text from breaking */
    }

    .demo-btn {
        font-size: 0.6rem;
        /* Slightly smaller font */
        padding: 4px 14px;
        /* Reduce horizontal padding */
        white-space: nowrap;
        /* Prevent text from breaking */
    }

    .hero-content p {
        padding-top: 5px;
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
}










/* courses and programs */
.courses-heading {
    background-color: #181b4b;
    /* Dark Blue Background */
    color: white;
    text-align: center;
    padding: 20px 20px;
    width: 100%;
    position: relative;
}

.courses-heading h2 {
    font-size: 22px;
    font-weight: bold;
}

.courses-heading p {
    font-size: 14px;
    margin-top: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.courses-heading p::after {
    content: '';
    width: 60%;
    height: 2.5px;
    background: white;
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
    /* z-index: 1000; */
}

.courses-heading p:hover::after {
    width: 80%;
}


.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-size: 20px;
    color: white;
}

@media (max-width: 768px) {

    .divider {
        font-size: 8px;
    }
}


.divider i {
    font-size: 24px;
}


/* courses images */


.course-all {
    width: 100%;
    background-color: #181b4b;
    text-align: center;
}

.courses-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.course-card {
    background: #fff;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.img-course img {
    width: 100%;
    height: 100%;
}

.course-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    /* object-fit: cover; */
}

.course-image-1 {
    background-image: url('../imgs/programs/cet.jpeg');
    /* Replace with the correct image path */
}

.course-image-2 {
    background-image: url('../imgs/programs/cet.jpeg');
    /* Replace with the correct image path */
}

.course-image-3 {
    background-image: url('../imgs/programs/neet.jpeg');
    /* Replace with the correct image path */
}

.course-content {
    padding: 15px;
}

.course-content h3 {
    font-size: 18px;
    color: #333;
}

.course-content p {
    font-size: 14px;
    color: #666;
}

.course-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.view-details,
.add-to-cart {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.view-details {
    background: #f0f4ff;
    color: #333A8B;
    border: 1px solid #333A8B;
}

.view-details:hover {
    background: #333A8B;
    color: white;
    transform: translateY(-2px);
}

.add-to-cart {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
    box-shadow: 0 4px 10px rgba(245, 124, 0, 0.2);
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #FFA726, #FB8C00);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(245, 124, 0, 0.3);
}




.view-all-courses {
    width: 100%;
    max-width: 250px;
    background: linear-gradient(135deg, #333A8B, #1d2361);
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    text-align: center;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(51, 58, 139, 0.3);
}

.view-all-courses:hover {
    background: linear-gradient(135deg, #4048b1, #333A8B);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(51, 58, 139, 0.4);
}

/* 📌 Media Query for Tablets */
@media (min-width: 768px) {
    .view-all-courses {
        width: 50%;
        /* Takes half width */
    }
}

/* 📌 Media Query for Desktops */
@media (min-width: 1024px) {
    .view-all-courses {
        width: 20%;
        /* Original width */
    }

}

@media (min-width: 1300px) {
    .courses-section {
        justify-content: left;
        margin-left: 30px;
    }

}




/* rankers */

.rankers {
    width: 100%;
}

.rankers img {
    width: 100%;
}




/* stats */


.stats-section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 50px 20px;
    text-align: center;
}

.stat {
    background: linear-gradient(135deg, #6e74b0, #7f86d9);
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.stat:hover {
    transform: translateY(-5px);
}

.stats-section .counter {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.stats-section p {
    color: white;
    font-size: 1.1rem;
    margin-top: 10px;
}


/* bg */

/* .stats-section {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='0' y1='1' y2='0'%3E%3Cstop offset='0' stop-color='%230FF'/%3E%3Cstop offset='1' stop-color='%23CF6'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' x1='0' x2='0' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%23F00'/%3E%3Cstop offset='1' stop-color='%23FC0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='%23FFF' fill-opacity='0' stroke-miterlimit='10'%3E%3Cg stroke='url(%23a)' stroke-width='2'%3E%3Cpath transform='translate(0 0)' d='M1409 581 1450.35 511 1490 581z'/%3E%3Ccircle stroke-width='4' transform='rotate(0 800 450)' cx='500' cy='100' r='40'/%3E%3Cpath transform='translate(0 0)' d='M400.86 735.5h-83.73c0-23.12 18.74-41.87 41.87-41.87S400.86 712.38 400.86 735.5z'/%3E%3C/g%3E%3Cg stroke='url(%23b)' stroke-width='4'%3E%3Cpath transform='translate(0 0)' d='M149.8 345.2 118.4 389.8 149.8 434.4 181.2 389.8z'/%3E%3Crect stroke-width='8' transform='rotate(0 1089 759)' x='1039' y='709' width='100' height='100'/%3E%3Cpath transform='rotate(0 1400 132)' d='M1426.8 132.4 1405.7 168.8 1363.7 168.8 1342.7 132.4 1363.7 96 1405.7 96z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
} */


.stats-section {
    background: linear-gradient(135deg, #f8f9fa, #e3eaf6);
    padding: 40px 0;
}

.stat-card {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.stat-card:hover {
    transform: translateY(-5px);
}



/* about section */

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background: #fafafa;
    flex-wrap: wrap;
    /* Allows stacking on smaller screens */
    text-align: center;
    /* Centers content for mobile */
}

@media (max-width: 768px) {
    .about-section {
        padding: 10px;
    }

    .about-content p {
        padding: 0;
        word-spacing: normal;
        text-align: left;
    }
}

/* About Content */
.about-content {
    width: 100%;
    /* Full width on small screens */
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Heading */
.about-content h2 {
    color: #333A8B;
    font-size: 24px;
    margin-bottom: 15px;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    padding: 10px 0;
}

/* Paragraph */
.about-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
    padding: 0 10px;
    word-spacing: 0.4rem;
}

/* Read More Button */
.read-more {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: #333A8B;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(51, 58, 139, 0.2);
}

.read-more:hover {
    background: #4048b1;
    transform: translateX(5px);
    box-shadow: 0 6px 18px rgba(51, 58, 139, 0.3);
}

/* About Image */
.about-image {
    width: 100%;
    /* Full width on small screens */
    max-width: 400px;
    margin: 20px auto;
    /* Centers on mobile */
    text-align: center;
}

.about-image img {
    width: 90%;
    max-width: 400px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 1s ease-out forwards 0.5s;
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 📌 Media Query for Tablets */
@media (min-width: 768px) {
    .about-section {
        flex-direction: row;
        /* Side by side on larger screens */
        text-align: left;
    }

    .about-content {
        width: 50%;
        text-align: left;
    }

    .about-image {
        width: 40%;
        text-align: right;
    }
}

/* 📌 Media Query for Desktops */
@media (min-width: 1024px) {
    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 18px;
    }
}



/* students */

/* ribben */



.outer {
    width: 500px;
    height: 50px;
    background: #c09d22;
    text-align: center;
    margin: 42px auto;
    position: relative;
    box-sizing: border-box;
}

.outer:before {
    position: absolute;
    content: '';
    left: -25px;
    top: 25px;
    border-top: 25px solid transparent;
    border-right: 25px solid #816d26;
    border-bottom: 25px solid transparent;
    border-left: 25px solid transparent;
    z-index: -1;
}

.outer:after {
    position: absolute;
    content: '';
    right: -25px;
    top: 25px;
    border-top: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 25px solid #816d26;
    z-index: -1;
}

.left {
    position: absolute;
    border-top: 25px solid #af9227;
    border-right: 50px solid #a0831a;
    border-bottom: 25px solid #8f7519;
    border-left: 25px solid transparent;
    top: 25px;
    left: -50px;
    z-index: -2;
}

.right {
    position: absolute;
    border-top: 25px solid #af9227;
    border-right: 25px solid transparent;
    border-bottom: 25px solid #a0831a;
    border-left: 50px solid #8f7519;
    top: 25px;
    right: -50px;
    z-index: -2;
}

div span {
    display: block;
    line-height: 50px;
    height: 50px;
    font-weight: bold;
    font-size: 28px;
    color: white;
    text-transform: uppercase;
}

.img-container {
    display: none;
    width: 100%;
}

.img-container img {
    width: 100%;

}

/* 📌 Responsive Adjustments */
@media (max-width: 768px) {
    .outer {
        display: none;
    }

    .img-container {
        display: block;
    }
}


.toppers {
    width: 100%;
    background-image: url('../imgs/topper-bg.png');
    background-size: cover;
    color: white;
}


/* demo classes */

.demo-section {
    position: relative;
    width: 100%;
    background: url('../imgs/video-bg.jpg') center/cover no-repeat;
    padding: 50px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}


.demo-heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.demo-heading h2 {
    /* font-size: 3rem; */
    font-weight: bold;
    z-index: 100;
    width: 100%;
}

.demo-heading p {
    /* font-size: 1.2rem; */
    opacity: 0.9;
    color: black;
    z-index: 100;
    width: 100%;
}

.demo-heading p::after {
    content: '';
    width: 50%;
    height: 3px;
    background: black;
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
}

.demo-heading p:hover::after {
    width: 80%;
}


.videos-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    z-index: 100;
    color: white;
}

.video {
    max-width: 350px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .videos-container {
        flex-direction: column;
        align-items: center;
    }
}








/* Enquiry form */

/* Modal Styles */
.modal {
    display: none;
    /* Initially Hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    position: relative;
    padding: 20px;
    width: 350px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    color: black;
    font-weight: bold;
}

.close-btn:hover {
    color: red;
}

/* Form Container */
.form-container {
    text-align: center;
}

.form-container img {
    max-width: 180px;
    margin-bottom: 10px;
}

/* Input Fields */
.input-box {
    position: relative;
    margin: 10px 0;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 10px 15px;
    padding-left: 40px;
    /* Space for icon */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

.input-box textarea {
    resize: none;
    height: 80px;
}

/* Icons inside Input Fields */
.input-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #333A8B, #1d2361);
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(51, 58, 139, 0.2);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #4048b1, #333A8B);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(51, 58, 139, 0.3);
}





/* why choose us */

.why-choose-us {
    /* background: #FFD700;  */
    color: black;
    text-align: center;
    padding: 60px 10%;
    width: 100%;
}

.why-choose-us h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.why-choose-us h2 span {
    color: #0A74DA;
    /* Blue color for "Devekar Classes" */
}



.why-content {
    max-width: 90%;
    display: flex;
    gap: 80px;
}

.why-image {
    width: 50%;

}

.why-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.why-content ul {
    width: 50%;
    list-style: none;
    padding: 0;
}

.why-content ul li {
    display: flex;
    align-items: center;
    text-align: left;
    margin-bottom: 43px;
}

.why-content ul li i {
    font-size: 40px;
    color: #0A74DA;
    /* Blue icons */
    margin-right: 20px;
}

.why-content ul li h3 {
    font-size: 22px;
    margin: 0;
    font-weight: bold;
}

.why-content ul li p {
    margin: 5px 0 0;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .why-content ul li {
        flex-direction: column;
        text-align: center;
    }

    .why-content ul li i {
        margin-bottom: 10px;
    }
}





/* free guidance */

.career-counseling {
    text-align: center;
    padding: 30px 15px;
    background-color: #fff;
    color: black;
    width: 100%;
}

.career-counseling p {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.career-counseling p::after {
    content: '';
    width: 80%;
    height: 2px;
    background: black;
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
}

.career-counseling p:hover::after {
    width: 90%;
}


.counseling-text {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Container Layout */
.counseling-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Left Section: Image */
.counseling-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
}

@keyframes upDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.counseling-image img {
    animation: upDown 3s ease-in-out infinite;
}


/* Right Section: Form */
.counseling-form {
    width: 100%;
    max-width: 400px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.counseling-form label {
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
    color: #033366;
}

.counseling-form input,
.counseling-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.counseling-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #9ACD32;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.counseling-form button:hover {
    background-color: #7ea82e;
}

/* 📱 Responsive Layout for Tablets & Larger Screens */
@media (min-width: 768px) {
    .counseling-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        max-width: 900px;
        margin: auto;
    }

    .counseling-image,
    .counseling-form {
        width: 50%;
    }

    .counseling-image img {
        max-width: 100%;
    }
}






/* Footer */

.footer {
    background-color: #033366;
    color: white;
    padding: 20px;
    text-align: center;
    /* width: 100%; */
}

@media (min-width: 769px) {
    footer {
        width: 100%;
    }
}


.footer-logo {
    width: 280px;
    margin-bottom: 10px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}


.footer-section h4 {
    color: #48a4fa;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;

}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #329cff;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    font-size: 14px;
    text-align: center;
}

.footer .social-icons {
    margin-top: 20px;
    justify-content: center;
    gap: 30px;
}

.social-link i {
    color: white;
}

.social-icons a img {
    width: 25px;
    margin: 0 5px;
}

/* Tablet View */
@media (min-width: 600px) {
    .footer-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-section {
        width: 45%;
        text-align: left;
    }

    .contact {
        width: 100%;
    }

    .footer-bottom {
        align-items: center;
    }
}

/* Desktop View */
@media (min-width: 900px) {
    .footer-container {
        max-width: 1200px;
        margin: auto;
    }

    .footer-section {
        width: 22%;
    }

    .contact {
        width: 30%;
    }


}


.promotion-link {
    text-decoration: none;
    color: white;

}

.promotion-link:hover {
    color: #06ABE2;
}

/* WhatsApp Float Icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    font-size: 35px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #FFF;
    transform: scale(1.1);
}