/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    overflow-x: hidden;
}

h4 {
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}
p{
    font-size: 16px;
}

ul {
    list-style: none; 
    margin-bottom: 0 !important;
    /* padding-left: 0 !important; */
}

img {
    max-width: 100%;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: #ff9f29;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #e88e1e;
    transform: translateY(-2px);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d2c54;
}

.section-subtitle {
    color: #ff9f29;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.section-subtitle::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ff9f29;
    border-radius: 50%;
    margin-right: 8px;
}

.text-center {
    text-align: center;
}

.nav-item {
    position: relative;
}


/* Hero Section */
.index-hero {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.index-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.index-hero-content h1 {
    font-size: 35px ;
    font-weight: 800;
    color: #0d2c54;
    line-height: 1.2;
    margin-bottom: 20px;
}

.index-hero-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.index-hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.index-watch-btn {
    display: flex;
    align-items: center;
    color: #0d2c54;
    font-weight: 500;
}

.index-watch-btn i {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.index-hero-images {
    position: relative;
    height: 400px;
}

.index-hero-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.index-hero-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: contain;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.index-student-count {
    position: absolute;
    top: 80%;
    right: 60%;
    background-color: white;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.index-student-count-text {
    font-weight: 600;
    color: #0d2c54;
}

.index-student-avatars {
    display: flex;
}

.index-student-avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.index-student-avatars img:first-child {
    margin-left: 0;
}

.decoration {
    position: absolute;
    z-index: 0;
}

.decoration-1 {
    top: 0.5%;
    left: 5%;
}

.decoration-2 {
    bottom: -15.5%;
    right: 5%;
}

.decoration-3 {
    top: 40%;
    right: 10%;
}

@media (max-width: 768px) {
    .index-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .index-hero-content h1 {
        font-size: 28px;
    }

    .index-hero-content p {
        font-size: 14px;
    }

    .index-hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .index-hero-images {
        position: relative;
        height: auto;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .index-hero-img-1,
    .index-hero-img-2 {
        position: static;
        width: 200px;
        height: 200px;
    }

    .index-student-count {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }

    .decoration {
        display: none;
    }
}


/* Features Section */
.features {
    padding: 80px 0;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background-color: #00bfa6;
    transform: translateY(-10px);
}

.feature-box:hover .feature-icon,
.feature-box:hover .feature-title,
.feature-box:hover .feature-text {
    color: white;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #00bfa6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background-color: white;
    color: #00bfa6;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0d2c54;
    transition: all 0.3s ease;
}

.feature-text {
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-1 {
    width: 280px;
    height: 380px;
    border-radius: 40%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img-2 {
    position: absolute;
    bottom: 39px;
    right: 0;
    width: 250px;
    height: 300px;
    border-radius: 50%;
    object-fit: contain;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0d2c54;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: #ff9f29;
}

.about-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: #00bfa6;
    font-size: 20px;
}

.about-feature span {
    color: #0d2c54;
    font-weight: 500;
}

.index-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    color: #00bfa6;
}

.contact-item span {
    color: #0d2c54;
    font-weight: 500;
}
@media (max-width: 768px) {
    .about-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-content {
        order: 1;
    }

    .about-images {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .about-img-1,
    .about-img-2 {
        position: static;
        width: 220px;
        height: auto;
        border-radius: 30%;
        border: 6px solid white;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-features {
    grid-template-columns: 1fr;
    justify-items: center;
}


    .index-contact-info {
        justify-content: center;
    }

    .decoration {
        display: none;
    }
}



/* Vision & Mission Section */
.vision-mission {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.vision-mission-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vision-box, .mission-box {
    background-color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vision-box:hover, .mission-box:hover {
    background-color: #00bfa6;
    transform: translateY(-10px);
    color: white;
}

.vision-icon, .mission-icon {
    width: 60px;
    height: 60px;
    background-color: #00bfa6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.vision-box:hover .vision-icon, .mission-box:hover .mission-icon {
    background-color: white;
    color: #00bfa6;
}

.vision-title, .mission-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.vision-box:hover .vision-title, .mission-box:hover .mission-title {
    color: white;
}

.vision-text, .mission-text {
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.vision-box:hover .vision-text, .mission-box:hover .mission-text {
    color: white;
}


/* Stats Section */
.stats {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background-color: #fff5e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #ff9f29;
    font-size: 24px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #0d2c54;
    margin-bottom: 5px;
}

.stat-text {
    color: #666;
    font-weight: 500;
}

/* Approach Section */
.approach {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.approach-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.approach-content {
    background-color: #fff5e0;
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.approach-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0d2c54;
    line-height: 1.2;
    margin-bottom: 20px;
}

.approach-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.approach-features {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.approach-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.approach-feature i {
    color: #ff9f29;
    font-size: 18px;
}

.approach-feature span {
    color: #0d2c54;
    font-weight: 500;
}

.approach-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */

/* write a review */
.review-button-wrapper {
    margin: 20px 0;
}

.write-review-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, #4CAF50, #45A049);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.write-review-btn:hover {
    background: linear-gradient(135deg, #45A049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}


.testimonials {
    padding: 80px 0;
    background-color: white;
    text-align: center;
    position: relative;
}

.testimonials-container {
    max-width: 700px !important;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: none;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
}

.testimonial-stars {
    color: #ff9f29;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #0d2c54;
    font-weight: 600;
}

.author-info p {
    color: #666;
    font-size: 14px;
}

/* Prev & Next Buttons */
.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0d2c54;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}

.testimonial-btn:hover {
    background: #ff9f29;
}

.prev {
    left: -40px;
}

.next {
    right: -40px;
}

@media (max-width: 768px) {
    .prev {
        left: 10px;
    }
    .next {
        right: 10px;
    }
}


/* Team Section */
.team {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.team-container {
    max-width: 1000px;
    margin: 0 auto;
}

.team-wrapper {
    overflow: hidden;
    position: relative;
}

/* .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
} */
.team-grid {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
}

/* .team-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
} */

.team-card {
    background-color: #f9f9f9;
    padding: 20px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
    width: 250px;
    flex-shrink: 0;
}

.team-card:hover {
    /* background-color: #00bfa6; */
    transform: translateY(-10px);
}

.team-img-container {
    position: relative;
}

.team-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #00bfa6;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    color: #0d2c54;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-info p {
    color: #666;
    font-size: 14px;
}

.team-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.team-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d2c54;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-nav-btn:hover {
    background-color: #00bfa6;
    color: white;
}



/* Blog Section */
.blog {
    padding: 80px 0;
    background-color: white;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.blog-meta-item i {
    color: #00bfa6;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    color: #0d2c54;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-btn {
    display: inline-block;
    background-color: #e8f9f6;
    color: #00bfa6;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-btn:hover {
    background-color: #00bfa6;
    color: white;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .about-about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-about-left, .about-about-right {
        width: 100%;
    }
    
    .about-experience-badge {
        top: 10px;
        right: 10px;
        width: 100px;
        height: 100px;
    }
    
    .about-experience-badge .about-number {
        font-size: 24px;
    }
    
    .about-mission-vision {
        flex-direction: column;
        gap: 20px;
    }

    .about-stats-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .about-stat-item {
        padding: 10px 0;
    }
}

/* Tablet Screens */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 24px;
    }

    .about-about-right h2 {
        font-size: 28px;
    }

    .about-stats-container {
        padding: 20px;
    }
}

/* Mobile Screens */
@media (max-width: 576px) {
    .about-hero-section {
        padding: 50px 0;
    }

    .about-hero-content h1 {
        font-size: 22px;
    }

    .about-about-section {
        padding: 50px 0;
    }

    .about-mission, .about-vision {
        width: 100%;
    }

    .about-about-left .about-shape-1,
    .about-about-left .about-shape-2 {
        display: none; /* Hide unnecessary shapes */
    }
}

/* Vision & Mission Section Responsive */
@media (max-width: 1024px) {
    .vision-mission-container {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .vision-box, .mission-box {
        padding: 30px 20px;
    }

    .vision-title, .mission-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .vision-box, .mission-box {
        padding: 25px;
        border-radius: 15px;
    }

    .vision-title, .mission-title {
        font-size: 18px;
    }

    .vision-text, .mission-text {
        font-size: 14px;
    }

    .vision-icon, .mission-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-container,
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    

   
}

@media (max-width: 768px) {
    .hero-container,
    .about-container,
    .approach-container {
        grid-template-columns: 1fr;
    }

    .hero-images {
        order: -1;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(1, 1fr);
        /* flex-wrap: wrap; */
        justify-content: center;
    }

}

@media (max-width: 576px) {
    .features-container,
    .stats-container {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }
}


