.gt-brand-img {
    position: relative;
    overflow: hidden;
}
.header-text{
    color: #4349C6;
}
.gt-brand-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gt-brand-slide-element:hover .gt-brand-img img {
    transform: scale(1.05);
    /* Slight zoom effect on hover */
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    /* Semi-transparent black background */
    color: white;
    padding: 15px;
    text-align: center;
}

.slide-caption h3 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.slide-caption p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.mission-vision-section {
    position: relative;
    overflow: hidden;
}

.mission-vision-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.mission-vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    text-align: center;
}

.section-title h6 {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-top: 10px;
}
@media screen and (max-width:320px) {
    .section-title h2 {
        font-size: 2rem;
    }
    .section-title h6 {
        font-size: 1rem;
    }
    
}
.mission-vision-wrapper {
    position: relative;
    z-index: 2;
}

.mission-vision-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    /* Slight transparency */
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(5px);
    /* Glass effect */
    transition: transform 0.3s ease;
}

.mission-vision-box:hover {
    transform: translateY(-5px);
}

.content-box {
    flex: 1;
    padding-right: 20px;
}

.content-box h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-box p {
    font-size: 1rem;
    line-height: 1.6;
}

.image-box {
    flex: 0 0 150px;
    /* Fixed width for images */
}

.image-box img {
    width: 100%;
    height: 100px;
    /* Fixed height */
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .mission-vision-box {
        flex-direction: column;
        text-align: center;
    }

    .content-box {
        padding-right: 0;
        margin-bottom: 15px;
    }

    .image-box {
        flex: 0 0 auto;
        width: 100%;
        max-width: 200px;
    }
}