/* nav bar */


html{
    scroll-behavior: smooth;
}

/* General Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fafafa;
    /* background: linear-gradient(to right, #4A90E2, #56CCF2); */
}

/* Navbar */
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    min-height: 70px;
    background-color: #fff;
    color: black;
    position: fixed;
    width: 100%;
    top: 0;
    /* left: 0; */
    z-index: 1000;
    backdrop-filter: blur(15px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo img {
    width: 141px;
    height: 60px;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-grow: 1;
    /* Centers nav links */
    padding: 0;
    z-index: 1200;
    /* position: absolute; */
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
    padding: 10px 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    background-color: #3b82f6;
    border-radius: 5px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.social-icons a {
    color: black;
    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;
    }

    .nav-links {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0.3s, opacity 0.3s ease-in-out;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        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: 6px;
    /* Reduced gap */
    background-color: orange;
    color: white;
    font-size: 5px;
    /* Reduced font size */
    /* font-weight: b;   */
    border: none;
    padding: 3px 10px;
    /* Reduced padding */
    border-radius: 40px;
    /* Keeps the pill shape */
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid black;
}


.call-button:hover {
    transform: scale(1.01);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);

}

.call-button small:hover {
    color: white;
}


.call-icon {
    font-size: 18px;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-5px);
    }
}

/* 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/banner.jpg") no-repeat center center/cover;
    padding: 0 20px;
    margin-top: 80px;
    z-index: 900;
}

/* 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 20px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.enroll-btn {
    background-color: #3b82f6;
    color: white;
}

.enroll-btn:hover {
    background-color: #2563eb;
}

.demo-btn {
    background-color: #30bf35;
    color: white;
}

.demo-btn:hover {
    background-color: #1e7e21;
}

/* 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-buttons {
        flex-direction: row;
        /* Keep buttons in one row */
        flex-wrap: wrap;
        /* Allow wrapping if needed */
        justify-content: center;
        /* Center align */
        gap: 8px;
        /* Add space between buttons */
    }

    .enroll-btn {
        font-size: 1rem;
        /* Slightly smaller font */
        padding: 10px 36px;
        /* Reduce horizontal padding */
        white-space: nowrap;
        /* Prevent text from breaking */
    }

    .demo-btn {
        font-size: 1rem;
        /* Slightly smaller font */
        padding: 10px 16px;
        /* Reduce horizontal padding */
        white-space: nowrap;
        /* Prevent text from breaking */
    }
    .hero-content p{
        padding-top: 35px;
    }
}










/* 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('./programs/cet.jpeg');
    /* Replace with the correct image path */
}

.course-image-2 {
    background-image: url('./programs/cet.jpeg');
    /* Replace with the correct image path */
}

.course-image-3 {
    background-image: url('./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 15px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
}

.view-details {
    background: #041562;
    color: white;
}

.add-to-cart {
    background: #ff6b00;
    color: white;
}

.view-details:hover {
    background: #062b87;
}

.add-to-cart:hover {
    background: #e65a00;
}




.view-all-courses {
    width: 100%;
    /* Full width on small screens */
    max-width: 250px;
    /* Limit max width */
    background: linear-gradient(90deg, #FFC107, #FF9800);
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    display: block;
    /* Ensures proper spacing */
    text-align: center;
    margin: 10px auto;
    /* Centers the button */
}

.view-all-courses:hover {
    background: linear-gradient(90deg, #FF9800, #FF5722);
    transform: scale(1.05);
    /* Slight pop effect */
}

/* 📌 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: white;
    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;
}

.stats-section p {
    color: #333;
    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 */
}

/* 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 20px;
    background: #333A8B;
    color: white;
    font-size: 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.read-more:hover {
    background: #2a349f;
}

/* 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('./topper-bg.png');
    background-size: cover;
    color: white;
}


/* demo classes */

.demo-section {
    position: relative;
    width: 100%;
    background: url('./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(to right, #56ccf2, #2f80ed);

    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(to right, #43c8f5, #2079ec);
}



/* .form-container {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
}
.form-container img {
    width: 182px;
    margin-bottom: 15px;
}
.form-container h2 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #333;
}
.input-box {
    position: relative;
    margin-bottom: 15px;
}
.input-box input, .input-box textarea {
    width: 100%;
    padding: 12px 40px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}
.input-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}
.input-box textarea {
    resize: none;
    height: 100px;
}
.submit-btn {
    background: linear-gradient(to right, #1e3c72, #4165a4);

    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}
.submit-btn:hover {
    opacity: 0.8;
} */









/* reviews */


.testimonials {
    padding: 50px;
    /* background: #ffffff; */
    background: linear-gradient(to right, #f0f8ff, #e0f7fa);
    width: 100%;

}

/* .testimonials h2 {
    font-size: 2.0rem;
    font-weight: bold;
    color: #007BFF;
    text-transform: uppercase;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    text-align: center;
} */
.testimonials h2 {
    /* font-size: 2.0rem; */
    font-weight: bold;
    color: black;
    text-align: center;
    position: relative;
    width: 100%;
  }
  
  .testimonials h2::after {
    content: '';
    width: 70%;
    height: 3px;
    background: black;
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
  }
  
  .testimonials h2:hover::after {
    width: 90%;
  }
  

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    /* max-width: 1200px; */
}

@media (min-width: 1300px) {
    .testimonial-container{
     justify-content: left;
    }
     
 }



@media (max-width: 700px) {
 
}


.testimonial-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-top: -35px;
    border: 3px solid #06ABE2;
}

.testimonials h3 {
    color: #333;
    font-size: 18px;
    margin-top: 10px;
}

.testimonials p {
    color: #555;
    font-size: 14px;
    margin: 10px 0;
}

.testimonials a {
    text-decoration: none;
    color: #06ABE2;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

.view-all-review{
    width: 100%;
    text-align: right;
}

.all-testimonials {
    display: block;
    margin-top: 20px;
    color: #06ABE2;
    font-weight: bold;
    font-size: 16px;
}


.testimonials .review-card {
    background: white;
    width: 350px;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonials .review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonials .profile-icon {
    width: 40px;
    height: 40px;
    background-color: #d9534f;
    color: white;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.testimonials .review-info {
    flex-grow: 1;
    margin-left: 10px;
}

.testimonials .reviewer-name {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.testimonials .review-count {
    font-size: 12px;
    color: gray;
    margin: 0;
}

.testimonials .menu-icon {
    font-size: 20px;
    cursor: pointer;
}

.testimonials .review-rating {
    display: flex;
    align-items: center;
    margin-top: 5px;
    font-size: 14px;
}

.testimonials .stars {
    color: gold;
    margin-right: 10px;
}

.testimonials .review-time {
    color: gray;
    font-size: 12px;
}

.testimonials .review-text {
    font-size: 14px;
    margin: 10px 0;
}

.testimonials .review-actions {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 5px;
}

.testimonials .heart {
    cursor: pointer;
    font-size: 20px;
    color: black;
}

.testimonials .emoji {
    font-size: 12px;
}



/* 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;
}

.social-icons {
    margin-top: 10px;
}

.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;
}



