*{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* nav1 */
.header {
    background: #f8f8f8;
}
.top-bar {
    display: flex;
    justify-content: space-between;
    background: #222;
    color: white;
    font-size: 16px;
    height: 2.5em;
    align-items: center;
    padding-top: 20px;
    padding-left: 25px;
    padding-right: 25px;
}
.bi{
    display: flex;
    gap: 10px;
    padding-top: 5px;
}
.Visit-icons{
    display: flex;
    gap: 10px;
}
.telephone{
    display: flex;
    gap: 10px;
}

/* nav2 */
.logo{
   height: 2em;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4em;
    padding: 0 20px 0px 20px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}
.nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}
.nav-links a:hover{
    color: rgb(255, 106, 0);
    border-bottom: #ff8c00 1.5px solid;
    /* box-shadow: 0px 3px 5px black; */
    border-radius: 0 0 5px 5px;
    font-size: 20px;
    transition: 0.6s;
    box-shadow: #f9a602;
}

/* Section-2 */
.hero {
    background-image: url(images/hero_image.jpg);
    background-size: cover;
    background-position: center;
    height: 120vh;
    width: auto;
    display: flex;
    justify-content: space-between;

    opacity: 0;
    transform: translateY(100px);
    animation: slideUp 1s ease-out forwards;
}

.hero-content {
    max-width: 60%;
    padding: 8% 0 0 7%;
    opacity: 0;
    transform: translateY(100px);
    animation: slideUp 1s ease-out forwards;
} 
.hero h1 {
    font-size: 55px;
    font-weight: 900;
}
.hero ul {
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;
    color: rgb(253, 115, 2);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.grade{
    font-size: 20px;
    margin-top: 2em;
}
.CBSE{
    font-size: 20px;
    margin-top: 1em;
}

.bi-calendar{
    font-size: 20px;
    padding-top: 14px;
    color: white;
}
.cta-button{
    font-size: 18px;
    font-weight: 600;
    color: white;
    padding-top: 14px;
    margin-left: 8px;
}
.button1{
    display: flex;
    border: 1px solid;
    border-radius: 20px;
    background-color: #0f2239;
    justify-content: center;
    width: 20em;
    height: 3em;
    margin-top: 3.5em;
    cursor: pointer;
}
.button1:hover{
    background-color: #f9d003;
    border: #f9d003;
}

/* Features */
.features {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    position: relative;
    bottom: 48px;
    margin: 0 100px;
    justify-content: center;
}

#feature{
    height: 12em;
    width: 25em;
}
.feature1 {
    text-align: center;
    border: #ff7f46 1px solid;
    padding: 20px 50px;
    border-radius: 0 25px;
    background-color: white;
    height: 10em;
    align-content: center;
}
.feature1:hover{
    background-color: #0f2239;
    border: #0f2239;
    color: white;
    transition: 0.5s;
}
.feature1>.fa-book{
    font-size: 3.5em;
    color: #ff7f46;

}

.feature2 {
    text-align: center;
    border: #8e56ff 1px solid;
    padding: 20px 50px;
    border-radius: 0 25px;
    background-color: white;
    align-content: center;
}
.feature2:hover{
    background-color: #0f2239;
    border: #0f2239;
    color: white;
    transition: 0.5s;
}
.feature2>.fa-chalkboard-teacher{
    font-size: 3.5em;
    color: #8e56ff;
}
.feature3 {
    text-align: center;
    border: #1ab69d 1px solid;
    padding: 20px 50px;
    border-radius: 0 25px;
    background-color: white;
    align-content: center;
}
.feature3:hover{
    background-color: #0f2239;
    border: #0f2239;
    color: white;
    transition: 0.5s;
}
.feature3>.fa-graduation-cap{
    font-size: 3.5em;
    color: #1ab69d;
}


/* About section */
.about {
    display: flex;
    flex-direction: row;
    margin-top: 9em;
    padding: 0 50px ;
}

.about_img1{
    border-radius: 50%;
    padding-left: 2em;
}
.about_img2{
    border-radius: 50%;
    border: #f8f8f8 0.5em solid;
    position: relative;
    top: -35em;
    left: 2em;
}
.Exp{
    display: flex;
    position: relative;
    top: -16em;
    left: 8.5em;
    border: aqua 1px solid;
    background-color: aqua;
    border-radius: 40px;
    height: 5.2em;
    width: 27em;
    color: white;
}
.Exp>h2{
    font-size: 2.3em;
    margin-top: 0.6em;
    margin-left:0.8em;
}
.Exp>h3{
    text-align: center;
    font-size: 1.5em;
    margin-top: 0.5em;
    margin-left: 1.2em;
}

.about-content{
    padding-left: 30px;
    width: 50em;
}
.about-content>ul{
    color: rgb(253, 115, 2);
    font-size: 20px;
    font-weight: 700;
    padding-left: 20px;
}
.about-content>h2{
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 20px;
}
.about-content>p{
    font-size: 18px;
    margin-bottom: 30px;
}
.container-bullet ul{
    list-style: none;
}
.bullets{
    display: flex;
    column-gap: 25px;
    padding-right: 50px;
    padding-bottom: 20px;
}
.std-count{
    justify-items: center;
}
.std{
    border: #e8eeee 1px solid;
    border-radius: 50px;
    display: flex;
    height: 5em;
    width: 55em;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    background-color: #e8eeee;
    text-transform: uppercase;
}
.std>h2{
    color: rgb(253, 115, 2);
}
.btn{
    border: #0f2239 1px solid;
    border-radius: 50px;
    height: 2.5em;
    width: 10em;
    background-color: #0f2239;
    color: white;
    font-weight: 800;
    text-align:center;
    place-content: center;
    cursor: pointer;
}
.btn:hover{
    background-color: #f9d003;
    border-color: #f9d003;
}

/* study-container */
.study-container{
    height: 60vh;
    background-image: url(images/study_contact_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    bottom: 40px;
}
.study_contact_img{
    align-content: center;

}
.study_contact_img>img{
    padding-bottom: 27%;
    border-radius: 15px;
    width: 85%;
    max-width: 250px; 
    height: auto;
}
.flex-study{
    display: flex;
    flex-wrap: wrap;
    color: white;
    margin: auto 10%;
    position: relative;
    top: 47%;
    left: 9%;
    padding-right: 40px;
}
.std-content{
    flex: 1; 
    padding: 2em 4em;
}
.std-content>h2{
    padding-bottom: 5px;
}
.std-content>p{
    font-size: 16px;
}
.std-btn{ 
    font-size: 20px;
    font-weight: 600;
    align-content: center;
    padding-bottom: 8%;
}
.std-btn>a{
    padding: 15px;
    background-color: #f9d003;
    border: #f9d003 1px solid;
    border-radius: 30px;
    text-decoration: none;
    color: white;
}
.std-btn>a:hover{
    background-color: white;
    border: white;
    color: #f9d003 ;
}


/* Pricing */
.pricing-section {
    padding: 50px 20px;
    background-color: white;
}

.pricing-heading {
    color: orange;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.pricing-title {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
}


/* Cards */
.pricing-container {
    display: flex;
    justify-content: start;
    gap: 30px;
    flex-wrap: wrap;
    height: 30em;
    padding-left: 50px;
    margin-bottom: 20px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 15px black;
    padding: 60px 40px;
    text-align: center;
    width: 300px;
    position: relative;
    overflow: hidden;
    line-height: 2em;
}

.pricing-card h3 {
    font-size: 30px;
    font-weight: bolder;
    margin-bottom: 25px;
}

.pricing-card h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.pricing-card h2 span {
    font-size: 16px;
    font-weight: normal;
    color: gray;
}

.pricing-card p {
    font-size: 16px;
    margin: 5px 0;
}

.description {
    font-size: 14px;
    color: gray;
    margin-top: 10px;
}

.btn1 {
    background-color: orange;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.btn1:hover {
    background-color: #0f2239;
}

.achievements {
    background-image: url(images/counter_3_bg.jpg);
    background-size: cover;
    border-radius: 5px;
    width: 90vw;
    padding: 0 200px 0 50px; /*Top, Right, Bottom, Left */
    margin-left: 60px; 
}
.content{
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}
.content1 {
    width: 80%;
    color: white;
    align-content: center;
}
.girl img{
    width: 90%;
    height: 100%;
    position: relative;
    left: 100%;
}

h5 {
    font-size: 18px;
    text-transform: uppercase;
    padding-left: 20px;
    margin-bottom: 12px;
}

h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 60px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat {
    text-align: center;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    padding-right: 20px;
}

.stat:last-child {
    border-right: none;
}

.stat h3 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5px;
}


.clients-section {
    padding: 40px 10px;
    background: #eef2f5;
}
.subtitle {
    color: #ff8c00;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
}
.title {
    font-size: 35px;
    color: black;
    margin-bottom: 35px;
    text-align: center;
}

.clients-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.client-card {
    background: white;
    padding: 8px;
    border-radius: 20px;
    box-shadow: 0 5px 15px black;
}
.client-card img {
    width: auto;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out;
}
.client-card:hover img {
    transform: scale(1.05);
}


.why-us {
    padding: 50px 20px;
    text-align: center;
}
.section-title {
    color: #f9a825;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 14px;
}
.section-heading {
    font-size: 35px;
    font-weight: bold;
    color: black;
    margin-bottom: 35px;
}
.why-us-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.why-card {
    background-color: white;
    width: 280px;
    padding: 40px 50px 10px 40px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0px 4px 10px black;
    transition: transform 0.3s ease-in-out;
}

.why-card:hover {
    background-color: #858b8e;
    transform: translateY(-5px);
}

/* Icon */
.bi-bar-chart-fill{
    padding-bottom: 15px;
    font-size: 35px;
    color: #8e56ff;
    justify-content: center;
}
.bi-journal-bookmark-fill{
    padding-bottom: 15px;
    font-size: 35px;
    justify-content: center;
    color: rgb(251, 55, 88);
}
.bi-palette-fill{
    padding-bottom: 15px;
    font-size: 35px;
    justify-content: center;
    color: #ada729;
}

/* Text*/
.why-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    color: #555;
}

.cta-section {
    display: flex;
    justify-content: center;
    background-color: white;
    padding-left: 50px;
    padding-right: 50px;
}
.cta-container {
    position: relative;
    background:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/footer_apply_bg2.jpeg') no-repeat;
    background-size: cover;
    height: 45vh;
    width: 80%;
    max-width: 900px;
    border-radius: 30px;
    text-align: center;
    color: white;
    border: white 6px solid;
    top: 150px;
    align-content: center;
}
.bi-play-fill{
    font-size: 50px;
}
.play-button i{
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #f9d003;
    border-radius: 50%;
    border: white 5px solid;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-button img {
    width: 40px;
}

h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
}

.apply-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #f9d003;
    color: #141a1f;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.apply-btn:hover {
    background: #fff;
    color: #f9d003;
}


/* footer */
.footer {
    height: 90vh;
    background-color: #1c1c1c;
    padding: 220px 70px 0;
}

.container{
    max-width: 1200px;
    color: white;
    padding-top: 20px;
}
.footer-content{
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    justify-content: space-between;
}
.footer-section-about{
    display: flex;
    flex-direction: column;
}
.footer-section-about>img{
    width: 250px;
    padding-bottom: 15px;
}
.footer-section-links h3{
    font-size: 25px;
    margin-bottom: 15px;
}
.footer-section-about>p{
    font-size: 18px;
}
.social-icons{
    display: flex;
    column-gap: 10px;
    font-size: 25px;
    height: 60px;
    cursor: pointer;
}
.social-icons i{
    color: white;
    font-size: 30px;
}
.social-icons i:hover{
    color: #ff8c00
}
.footer-section-links{
    display: flex;
    flex-direction: column;
}
.footer-section-links ul li{
    list-style: none;
    line-height: 30px;
    
}
.footer-section-links a{
    text-decoration: none;
    color: white;
    font-size: 18px;
}
.footer-section-links a:hover{
    color: #ff8c00;
    transition: 0.3s;
}
.footer-section-contact{
    display: flex;
    flex-direction: column;
}
.footer-section-contact h3{
    font-size: 25px;
    margin-bottom: 40px;
}
.footer-section-contact p{
    font-size: 18px;
}
.footer-section-newsletter{
    display: flex;
    flex-direction: column;
}
.footer-section-newsletter h3{
    font-size: 25px;
    margin-bottom: 40px;
}
.footer-section-newsletter p{
    font-size: 18px;
}
.newsletter-form {
    display: flex;
    align-items: center;
    margin-top: 10px;
    background-color: white;
    padding: 10px 10px;
    border-radius: 25px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
}

.newsletter-form button {
    padding: 10px 15px;
    margin-left: 5px;
    background-color: #f9a602;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 25px;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background-color: #ffcc00;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: white 1px solid;
    text-align: center;
    margin-top: 10px;
    padding-top: 20px;
}
.footer-bottom .highlight {
    color: #f9a602;
    font-weight: bold;
}
 .footer-links a{
    color:white;
    font-size: 16px;
    text-decoration: none;
padding-right: 15px;
}

/* responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 40px;
    }
    .hero-content {
        max-width: 80%;
        padding: 10% 5%;
    }
    .features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .feature1, .feature2, .feature3 {
        width: 90%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        height: auto;
        padding: 10px;
        text-align: center;
    }
    .navbar {
        flex-direction: column;
        text-align: center;
    }
    .nav-links {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 10% 5%;
    }
    .hero h1 {
        font-size: 35px;
    }
    .button1 {
        width: 100%;
    }
    .about {
        flex-direction: column;
        align-items: center;
    }
    .about-content {
        width: 90%;
        text-align: center;
    }
    .std {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    .pricing-container {
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    .pricing-card {
        width: 90%;
    }
    .clients-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    .hero-content {
        max-width: 100%;
        padding: 15% 5%;
    }
    .about-content h2 {
        font-size: 30px;
    }
    .pricing-title {
        font-size: 28px;
    }
    .pricing-card {
        width: 100%;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-section-about img {
        width: 80%;
    }
}
