* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

a {
    text-decoration: none;
}

.all-heading {
    /* color: #333333 !important; */
    font-size: 35px !important;
    font-weight: 600;
    color: #2575fc !important
    /* text-decoration: underline blue !important */
}

html,
body {
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

.container {
    overflow: hidden;
    /* Prevent children from overflowing */
}

.school-features .row {
    overflow: hidden;
    /* Prevent row from expanding */
}


/* nav */

.navbar {
    background-color: #f8f9fa;
    /* Light gray background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.navbar-brand img {
    height: 74px;
    /* Adjust image height */
    margin-left: 10px;
}

.navbar-nav .nav-link {
    color: #343a40 !important;
    /* Dark text color */
    font-weight: 500;
    padding-left: 8px;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
    /* Blue hover color */
}

.dropdown-menu {
    background-color: #ffffff;
    /* White dropdown background */
    border: 1px solid #e9ecef;
    /* Light border */
}

.dropdown-item {
    color: #343a40 !important;
    padding-left: 8px;
    /* Dark text color */
}

.dropdown-item:hover {
    background-color: #007bff;
    /* Blue hover background */
    color: #ffffff !important;
    /* White text on hover */
}

.right-image {
    height: 80px;
    margin-right: 15px;
    /* Adjust image height */
}


/* Hide right image on mobile */

@media (max-width: 767.98px) {
    .right-image {
        display: none;
    }
}

.desktop-view {
    display: block;
}

@media (max-width: 767.98px) {
    .desktop-view {
        display: none;
    }
}


/* Custom styles */


/*  */

.landing-mini {
    display: none;
}

@media (max-width: 767.98px) {
    .landing-mini {
        display: block;
    }
    .school-name {
        display: none;
    }
}

.hide {
    display: none;
}

@media (min-width: 768px) {
    .hide {
        display: block;
    }
}


/* nav end */


/* landing page */


/* on desktop  */


/* Custom Carousel Styles */


/* Carousel Section Styles */

.carousel-slide {
    height: 90vh;
}

.school {
    height: 100vh;
}


/* Fade-in and Slide-up effect */

.school-name {
    opacity: 0;
    position: absolute;
    top: 0%;
    transform: translateY(50px);
    animation: fadeInUp 1.5s ease-in-out 0.5s forwards;
}


/* Button Animation */

.tamma-btn {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 1s ease-in-out 1s forwards;
}


/* Keyframe Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* moblie view */

.school-name-mobile {
    width: 100%;
    padding: 30px;
    background-color: #e9ecef;
    color: black;
    font-weight: 600;
    height: 300px;
}

.school-name-mobile h2 {
    font-size: 30px;
    font-weight: 600;
    padding-top: 20px;
}

.school-name-mobile h3 {
    font-size: 18px;
    margin-top: 15px;
}

.school-name-mobile p {
    font-size: 14px;
    font-weight: 200;
}

.tamma-btn {
    width: 130px;
    height: 40px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    /* margin-left: 50px; */
}

.tamma-btn:hover {
    color: black;
    font-weight: 600;
}

.school-name h2 {
    font-size: 45px;
    font-weight: 600;
}

.school-name p {
    font-size: 20px;
    font-weight: 500;
}

.school-name {
    margin-bottom: 20px;
    color: white;
    position: absolute;
    top: 15%;
    left: 3.5%;
}

.carousel-control-prev-icon {
    color: none;
}


/* end */


/* Basic image height and object-fit */


/* crousel */


/* Custom styles for the carousel */

#mobileCarousel {
    max-height: 550px;
    /* Adjust the height for mobile */
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure images cover the carousel area */
}


/* Typing Animation */

.typing-animation {
    overflow: hidden;
    /* Hide overflow */
    border-right: 0.1em solid white;
    /* Cursor effect */
    white-space: nowrap;
    /* Keep text on one line */
    margin: 0;
    /* Remove default margin */
    /* letter-spacing: 0.1em; */
    /* Spacing between letters */
    animation: typing 8s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from,
    to {
        border-color: transparent;
    }
    50% {
        border-color: white;
        /* Cursor color */
    }
}


/* end */


/* Custom Styles for About Us Section */

.about-us {
    background-color: #f4f4f9;
    padding: 4rem 0;
    margin-top: -50px;
}

.about-us h2 {
    color: #2c3e50;
    font-weight: bold;
    font-size: 2.1rem;
}

.about-us p {
    line-height: 1.8;
    font-size: 1rem;
}

.about-us .btn-primary {
    background-color: #3498db;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.about-us .btn-primary:hover {
    background-color: #2980b9;
}

.about-us img {
    transition: transform 0.3s ease;
}

.about-us img:hover {
    transform: scale(1.05);
}

.about-text-heading {
    font-size: 40px;
    font-weight: 600;
    color: #3498db;
    background-color: #f4f4f9;
    padding-top: 20px;
    padding-bottom: 30px;
}


/* end */


/* mission */


/* vision */

.text-h2-1 {
    text-align: center;
    font-size: 40px;
    color: #2575fc;
    font-weight: 600;
    padding: 20px 0;
}

.main-vision {
    background-color: #f4f4f9;
    width: 100%;
    padding-bottom: 30px;
}

.div-main-mission {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.mission-11 {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    /* background: #fff; */
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.mission-11:hover {
    transform: translateY(-5px);
}

.mission-11 img {
    width: 120px;
    padding-bottom: 20px;
}


/* Responsive Design */

@media (max-width: 768px) {
    .text-h2-1 {
        font-size: 30px;
    }
    .div-main-mission {
        flex-direction: column;
        align-items: center;
    }
    .mission-11 {
        width: 90%;
    }
}


/* mission end */


/* contact section */

.feedback-main {
    background-color: #f4f4f9;
}

.iframe {
    width: 100%;
    height: 400px;
    border: none;
}


/* feature */

.big-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.text-box {
    background-color: #f4f4f9;
    padding: 15px;
    color: black;
    border-radius: 8px;
    text-align: center;
    /* font-weight: bold; */
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.text-box:hover {
    transform: translateY(-5px);
}

.main-feature {
    background-color: #f4f4f9;
    padding: 15px;
}

.main-feature-head {
    font-size: 20px;
    color: #2575fc;
    font-weight: 600;
}


/* why choose our school END */

.why-choose-us {
    background-color: #f4f4f9;
    padding: 50px 20px;
    border-radius: 10px;
    text-align: center;
}

.why-choose-us h2 {
    color: #007bff;
    font-weight: bold;
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 48%;
    background: #ffffff;
    padding: 15px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background0.3s;
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .feature-item {
        width: 100%;
    }
}

.feature-item:hover {
    transform: scale(1.05);
    background: #d1ecf1;
}


/* why choose our school END */


/* Coaching class start */


/* Styling for the section */


/* Coaching Section */

#coaching-section {
    background-color: #f4f4f9;
    text-align: center;
}


/* Section title */

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #0056b3;
}


/* Info box styles */

.info-box {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.info-box:hover {
    transform: scale(1.05);
    background: #e3f2fd;
}


/* Highlights box */

.highlights-box {
    background: #0056b3;
    color: #ffffff;
    border-radius: 10px;
    margin-top: 20px;
}

.highlights-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.highlights-box ul li {
    font-size: 18px;
    margin: 10px 0;
}


/* Button styling */

.btn-primary {
    background: #ff6f00;
    border: none;
    padding: 12px 25px;
    font-size: 20px;
    border-radius: 50px;
    transition: transform 0.3s ease-in-out;
}

.btn-primary:hover {
    background: #d65a00;
    transform: scale(1.05);
}


/* Fade-in animation */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


/* Initial state: hidden */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


/* Visible state when scrolled into view */

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Coaching class end */


/* Some features */

.feature-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.featutr-btn {
    align-items: center;
    display: flex;
    justify-content: center;
}

.feature-card {
    position: relative;
    width: 250px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.feature-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    width: 300px;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.some-features {
    background-color: #f4f4f9;
    margin-top: -50px;
    padding-bottom: 5px;
}

@media (max-width: 1200px) {
    .feature-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .feature-card {
        width: 100%;
        height: auto;
    }
}


/* some features end */


/* event start */

.main-event-section {
    background-color: #f4f4f9;
    padding: 15px;
}

.event-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.event-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.event-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.view-more-btn {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 20px;
    transition: 0.3s;
}

.view-more-btn:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .event-box {
        height: 200px;
    }
}


/* event end */


/* bus  */

.bus-main {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 20px;
}

.bus-text {
    background-color: #f4f4f9;
    max-width: 800px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.bus {
    background-color: #f4f4f9;
}


/* bus end */


/* Footer Styling */

.footer {
    background: #1d3557;
    color: white;
}

.footer h5 {
    color: orange;
    font-size: 20px;
}

.footer .highlight {
    /* color: #fca311; */
    /* color: black; */
    font-weight: bold;
}


/* Footer Links */

.footer-link {
    color: #f8f9fa;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-link:hover {
    /* color: #fca311; */
    /* color: black; */
    transform: translateX(5px);
}


/* Social Media Icons */

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 22px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #fca311;
    transform: scale(1.2);
}


/* Footer Bottom */

.footer .small {
    font-size: 13px;
    margin-top: 20px;
}


/* Responsive */

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
}


/* Popup container */

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}


/* Popup content */

.popup {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    width: 400px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}


/* Close button */

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: red;
}


/* Popup image */

.popup-image {
    width: 100%;
    border-radius: 5px;
}


/* Show popup */

.show-popup {
    opacity: 1;
    visibility: visible;
}


/* Fade-in animation */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    /* width: 300px; */
}

h2 {
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input,
textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    margin-top: 15px;
    padding: 10px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}


/* button:hover {
    background: #0056b3;
} */