body {
    font-family: 'MyCustomFont', sans-serif;
}

.hero-section-about {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay-about {
    background-color: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay-about {
    text-align: center;
    color: #fff;
}

.hero-title-about {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'MyCustomFont', sans-serif;
}

.hero-breadcrumb-about {
    font-size: 1rem;
    color: #f0f0f0;
    font-family: 'MyCustomFont', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-about {
        font-size: 2rem;
    }

    .hero-breadcrumb-about {
        font-size: 0.9rem;
    }

    .hero-section-about {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title-about {
        font-size: 1.5rem;
    }

    .hero-breadcrumb-about {
        font-size: 0.8rem;
    }

    .hero-section-about {
        height: 250px;
    }
}

.company-overviews-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 10%;
}

.company-overviews-about h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #222;
}

.company-overview-about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.overview-text-about {
    flex: 1;
    min-width: 300px;
}

.overview-text-about p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #444;
}

.overview-section-about {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.overview-section-about img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .company-overview-about {
        flex-direction: column;
        text-align: center;
    }

    .company-overviews-about h1 {
        font-size: 28px;
        text-align: center;
    }
}


.vm-container {
    background: #ade7f55b;
    padding: 10px;
    border-radius: 5px;
}

.vision-mission {
    margin-top: 40px;
}

.vm-block {
    flex: 1 1 350px;
    border-radius: 10px;
    padding: 30px 25px;
    display: flex;
    justify-content: space-between;
    gap: 15%;
    text-align: left;
}

.vm-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.vm-icon img {
    width: 100px;
    height: 100px;
}

.vm-title {
    font-size: 20px;
    font-weight: bold;
    color: #003088;
    margin-bottom: 15px;
}

.vm-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

@media (max-width: 768px) {
    .vision-mission {
        flex-direction: column;
        gap: 30px;
    }

    .vm-block {
        flex-direction: column;
    }

    .vm-text {
        text-align: justify;
    }

    .vm-icon img {
        margin-top: 2%;
    }
}

.section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.card {
    flex: 1 1 48%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    min-height: 280px;
    color: #fff;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.card .content {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.card p {
    font-size: 15px;
    line-height: 1.6;
    color: #ddd;
}

.mission {
    background-image: url('https://source.unsplash.com/600x400/?technology,innovation');
}

.vision {
    background-image: url('https://source.unsplash.com/600x400/?leadership,success');
}

@media (max-width: 768px) {
    .card {
        flex: 1 1 100%;
    }

    .section h2 {
        text-align: center;
    }
}

.why-choose-about-us {
    background: linear-gradient(120deg, #2996f0b2, transparent);
    padding: 5%;
    padding-left: 10%;
}

.why-choose-about-us h1 {
    text-align: center;
}

.why-choose-us-about-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-choose-us-about-card {
    background: white;
    box-shadow: 2px 2px 2px #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

.why-choose-us-about-card i {
    font-size: 20px;
    color: rgb(0, 153, 255);
}

.why-choose-us-about-card p {
    font-size: 14px
}

@media(max-width: 959px) {
    .why-choose-us-about-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 571px) {
    .why-choose-us-about-cards {
        grid-template-columns: repeat(1, 1fr);
    }
}

.core-value h3 {
    text-align: center;
}

.core-value {
    padding-left: 10%;
    padding-right: 10%;
    padding: 2%;
    background: #f1f0f0;
}

.core-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-left: 10%;
    padding-right: 10%;
}

.core-card {
    background: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

.core-card:hover {
    transform: rotateY(10deg) scale(1.03);
}

.core-card img {
    width: 80px;
    height: 80px;
}

.core-card p {
    color: #5a5757;
    font-size: 15px;
}

@media (max-width: 997px) {
    .core-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 683px) {
    .core-cards {
        grid-template-columns: repeat(1, 1fr);
    }
}

.our_legacy {
    padding-left: 10%;
    padding-right: 10%;
    padding: 2%;
    background: linear-gradient(120deg, #5ca9e7b2, transparent);
}

.our_legacy h3 {
    text-align: center;
}

.legacy_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-left: 10%;
    padding-right: 10%;
}

.legacy_card {
    background: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 15px;
}

.legacy_card i {
    font-size: 30px;
    color: rgba(0, 81, 255, 0.616);
}

.legacy_card p {
    font-size: 15px;
    font-weight: bold;
}

.legacy_card p span {
    font-size: 25px;
    font-weight: 600;
    color: rgba(0, 81, 255, 0.616);
}

@media (max-width: 997px) {
    .legacy_cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 683px) {
    .legacy_cards {
        grid-template-columns: repeat(1, 1fr);
    }
}

.about-header {
    font-size: 30px;
}

.client-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    text-align: center;
    background: #fff;
}

.client-slider-container h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.client-slider {
    display: flex;
    gap: 50px;
    animation: slideLeft 30s linear infinite;
    padding: 10px 0;
}

.slide {
    flex: 0 0 auto;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    max-width: 100%;
    transition: filter 0.3s ease;
}

.slide img:hover {
    filter: grayscale(0);
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .client-slider {
        gap: 30px;
    }

    .slide {
        width: 120px;
    }

    .slide img {
        height: 40px;
    }
}

.clientele-section {
    padding: 40px 20px;
    text-align: center;
}

.clientele-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.client-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.client-logos img {
    height: 40px;
    object-fit: contain;
    max-width: 120px;
}

.cta-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.cta-buttons button {
    padding: 10px 30px;
    border-radius: 30px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-buttons button.active,
.cta-buttons button:hover {
    background: linear-gradient(173deg, #56d6dd, transparent);
    color: #fff;
    border-color: #0cd7e1;
}

.info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
    padding: 20px;
}

.info-content .text {
    flex: 1 1 50%;
}

.info-content .text h3 {
    margin-bottom: 10px;
}

.info-content .text ul {
    padding-left: 20px;
    list-style-type: none;
}

.info-content .text ul li {
    margin: 10px 0;
}

.info-content .image {
    flex: 1 1 40%;
    text-align: center;
}

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

@media (max-width: 768px) {
    .info-content {
        flex-direction: column;
        text-align: center;
    }

    .info-content .text,
    .info-content .image {
        flex: 1 1 100%;
    }
}

@media (max-width: 500px) {
    .cta-buttons button {
        padding: 10px 17px;
    }
}

.info-content .text ul li i {
    font-size: 16px;
    color: #005d88;
}

.hero-section-about-student-testimonials {
    background-image: url('{{ publicPath() }}newAssets/testimonial.jpg');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay-about-student-testimonials {
    background-color: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay-about-student-testimonials {
    text-align: center;
    color: #fff;
}

.hero-title-about-student-testimonials {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'MyCustomFont', sans-serif;
}

.hero-breadcrumb-about-student-testimonials {
    font-size: 1rem;
    color: #f0f0f0;
    font-family: 'MyCustomFont', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-about-student-testimonials {
        font-size: 2rem;
    }

    .hero-breadcrumb-about-student-testimonials {
        font-size: 0.9rem;
    }

    .hero-section-about-student-testimonials {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title-about-student-testimonials {
        font-size: 1.5rem;
    }

    .hero-breadcrumb-about-student-testimonials {
        font-size: 0.8rem;
    }

    .hero-section-about-student-testimonials {
        height: 250px;
    }
}

.about-testimonial-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    background: linear-gradient(180deg, #eceff1, #f4f7fb);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-testimonial-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.about-testimonial-header p {
    font-size: 24px;
    color: #34495e;
    margin-top: 10px;
}

.about-testimonial-header span {
    font-size: 16px;
    color: #7f8c8d;
    display: block;
    margin-top: 10px;
    margin-bottom: 40px;
    font-style: italic;
    line-height: 1.6;
}

.about-testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-top: 30px;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    justify-content: center;
    scrollbar-width: thin;
    scrollbar-color: #2980b9 transparent;
}

.about-testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.about-testimonial-slider::-webkit-scrollbar-thumb {
    background-color: #2980b9;
    border-radius: 4px;
}

.about-testimonial-card {
    min-width: 320px;
    max-width: 380px;
    flex: 0 0 auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.about-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.about-testimonial-card p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.6;
}

.about-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-top: auto;
}

.about-quote-icon {
    font-size: 40px;
    color: #2980b9;
}

.about-author h4 {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-top: 0;
    font-style: normal;
}

.about-testimonial-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 5px;
    background: #2980b9;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .about-testimonial-header h2 {
        font-size: 28px;
    }

    .about-testimonial-header p {
        font-size: 22px;
    }

    .about-testimonial-header span {
        font-size: 16px;
    }

    .about-testimonial-card {
        min-width: 280px;
    }
}

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

    .about-testimonial-slider {
        gap: 15px;
    }

    .about-testimonial-card {
        min-width: 250px;
    }
}

.hero-section-about-success-story {
    background-image: url('{{ publicPath() }}newAssets/instructors_2022.jpg');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay-about-success-story {
    background-color: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay-about-success-story {
    text-align: center;
    color: #fff;
}

.hero-title-about-success-story {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'MyCustomFont', sans-serif;
}

.hero-breadcrumb-about-success-story {
    font-size: 1rem;
    color: #f0f0f0;
    font-family: 'MyCustomFont', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-about-success-story {
        font-size: 2rem;
    }

    .hero-breadcrumb-about-success-story {
        font-size: 0.9rem;
    }

    .hero-section-about-success-story {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title-about-success-story {
        font-size: 1.5rem;
    }

    .hero-breadcrumb-about-success-story {
        font-size: 0.8rem;
    }

    .hero-section-about-success-story {
        height: 250px;
    }
}

.stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 3% 10%;
}

.story iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story iframe:hover {
    transform: scale(1.02);
}


.awards-section {
    padding: 40px 10%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.award-card {
    display: flex;
    flex-direction: row;
    background-color: #e6f7ff;
    border: 2px solid #b3e0ff;
    border-radius: 15px;
    padding: 20px;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.award-img img {
    width: 150px;
    height: auto;
    border-radius: 10px;
}

.award-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.award-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .award-card {
        flex-direction: column;
        text-align: center;
    }

    .award-img img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}
