.content-right {
    flex: 1;
}

.aboutCarosal {
    position: relative;
    width: 75%;
    border-radius: 15px;
    overflow: hidden;
}

.aboutCarosalTrack {
    display: flex;
    transition: transform 0.5s ease;
}

.aboutCarosalSlide {
    flex: 0 0 100%;
    height: 500px;
}

.aboutCarosalImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width:700px) {
    .aboutCarosalSlide {
        height: 300px;
    }
}



.aboutCarosalNav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    /* width: 45px;
    height: 45px; */
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.aboutCarosalPrev {
    left: 15px;
}

.aboutCarosalNext {
    right: 15px;
}

.aboutCarosalNav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.aboutCarosalDots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.aboutCarosalDot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.aboutCarosalDot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.aboutCarosalDot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 968px) {


    .aboutCarosal {
        height: 300px;
    }
}

@media (max-width: 768px) {


    .aboutCarosal {
        height: 250px;
    }

    .aboutCarosalNav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Aout us  */
.about-section {
    padding: 50px 0;
    position: relative;
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    /* min-height: 70vh; */
}

.content-left {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media(max-width:763px) {
    .main-title {
        font-size: 1.7rem !important;
        text-align: left;
    }

    .subtitle {
        font-size: 1rem !important;
        text-align: left;
    }

    .about-content p {
        text-align: left;
        font-size: 0.9rem;
    }
}

.main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #7bafd4, #f9a11b);
    border-radius: 2px;
    animation: expandLine 1s ease-out 1.5s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}

.subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 30px;
    font-weight: 600;
}

.description {
    font-size: 1.15rem;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 40px;
}

.highlight-text {
    color: #7bafd4;
    font-weight: 600;
}



.stat-label {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

.image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-image {
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
}

.main-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.image-decoration {
    position: absolute;
    width: 90%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 20px;
    background: linear-gradient(135deg, #f9a11b, #7bafd4);
    background-clip: padding-box;
    top: 20px;
    left: 20px;
    z-index: 1;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.image-container:hover .image-decoration {
    top: 25px;
    left: 25px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .stats-container {
        justify-content: center;
        gap: 30px;
    }

    .content-left,
    .content-right {
        transform: translateY(50px);
        animation: fadeInUp 1s ease-out forwards;
    }

    .content-left {
        animation-delay: 0.3s;
    }

    .content-right {
        animation-delay: 0.6s;
    }
}