/*START VIDEO SLIDER*/
 .swiper-container {
        width: 100%;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        /* background: #000; */
        overflow: hidden;
    }

    .swiper-slide video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-container {
        width: 100%;
        max-width: 640px;
        aspect-ratio: 640 / 480;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
    }

    .video-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: pointer;
    }

    .video-container video {
        width: 100%;
        height: 100%;
        display: none;
    }

    @media (max-width: 768px) {
        .video-container {
            aspect-ratio: 4 / 3;
        }
    }

    @media (max-width: 480px) {
        .video-container {
            aspect-ratio: 16 / 9;
        }
    }
/*END VIDEO SLIDER*/

/*START LOGO*/
/* Container */
/* .db-logo-container {
    padding: 15px 0;
} */

/* Wrapper */
.db-logo-wrapper {
    text-align: center;
    overflow: hidden;
}

/* Logo Image */
.db-logo-img {
    margin: 15px;
    max-width: 100%;
    height: auto;

    /* Responsive size control */
    width: auto;
    max-height: 135px;

    /* Animation */
    opacity: 0;
    transform: translateY(-40px);
    animation: dbLogoFadeDown 1s ease forwards;

    /* Smooth hover */
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover animation */
.db-logo-img:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* Entry Animation */
@keyframes dbLogoFadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .db-logo-img {
        max-height: 70px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .db-logo-img {
        max-height: 60px;
        width: 80%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .db-logo-img {
        max-height: 50px;
        width: 75%;
    }
}
/*END LOGO*/


/*START ABOUT US*/
/* Section */
.db-about {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8fbff, #ffffff);
    overflow: hidden;
}

/* Row alignment */
.db-about-row {
    align-items: center;
}

/* Content */
.db-about-content {
    padding-right: 30px;
    animation: dbFadeUp 1s ease;
}

/* Title */
.db-about-title {
    font-size: 22px;
    font-weight: 700;
    color: #0d2f57;
    margin-bottom: 15px;
    position: relative;
    text-align: left;
}

/* Title underline */
.db-about-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #007bff;
    display: block;
    margin-top: 10px;
    border-radius: 5px;
}

/* Subtitle */
.db-about-subtitle {
    background: -webkit-linear-gradient(136deg, #2b1d44, #b82f56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 33px;
    /* color: #2b1d44; */
    margin-bottom: 15px;
    font-weight: 700;
    text-align: left;
}

/* Text */
.db-about-text {
    text-align: justify;
    font-size: 18px;
    color: #444;
    line-height: 1.8;
}

/* Image wrapper */
.db-about-image-wrapper {
    position: relative;
    text-align: center;
    animation: dbFadeLeft 1s ease;
}

/* Background Shape */
.db-about-bg-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #007bff, #00c6ff); */
    background: linear-gradient(135deg, #2b1d44, #722548);
    top: 20px;
    left: 20px;
    border-radius: 20px;
    z-index: 0;
}

/* Image */
.db-about-image {
    position: relative;
    max-width: 100%;
    border-radius: 20px;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.4s;
}

/* Hover animation */
.db-about-image:hover {
    transform: scale(1.05);
}

/* Button */
.db-about-readmore-btn {
    margin-top: 15px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #2b1d44, #b82f56);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover */
.db-about-readmore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}



/* Animation */
@keyframes dbFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dbFadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Tablet */
@media (max-width: 992px) {
    .db-about {
        padding: 60px 0;
    }

    .db-about-title {
        font-size: 28px;
    }
}


/* Mobile */
@media (max-width: 768px) {
    .db-about-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .db-about-bg-shape {
        top: 15px;
        left: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .db-about-title {
        font-size: 24px;
    }

    .db-about-subtitle {
        font-size: 18px;
    }
}
/*END ABOUT US*/


/*START WHY CHOOSE US*/

/* Section */
.db-choose-us {
    padding: 80px 0;
    background:
    linear-gradient(rgba(248,251,255,0.95), rgba(248,251,255,0.95)),
    url('assets/images/school-pattern.png');
    background-size: cover;
    background-position: center;
}

/* Heading */
.db-choose-us-heading {
    text-align: center;
    margin-bottom: 50px;
}

.db-choose-us-title {
    font-size: 36px;
    font-weight: 700;
    /* color: #0d2f57; */
    background: -webkit-linear-gradient(136deg, #2b1d44, #b82f56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.db-choose-us-subtitle {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

/* Row flex equal height */
.db-choose-us-row {
    display: flex;
    flex-wrap: wrap;
}

/* Column spacing */
.db-choose-us-col {
    margin-bottom: 30px;
    display: flex;
}

/* Card */
.db-choose-us-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Hover animation */
.db-choose-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Image */
.db-choose-us-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: 0.4s;
}

/* Zoom image hover */
.db-choose-us-card:hover .db-choose-us-img {
    transform: scale(1.05);
}

/* Content */
.db-choose-us-content {
    padding: 25px;
    flex-grow: 1;
}

/* Title */
.db-choose-us-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.db-choose-us-card-title a {
    color: #0d2f57;
    text-decoration: none;
}

.db-choose-us-card-title a:hover {
    color: #007bff;
}

/* Text */
.db-choose-us-card-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Tablet */
@media (max-width: 992px) {
    .db-choose-us-title {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .db-choose-us {
        padding: 60px 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .db-choose-us-img {
        height: 200px;
    }
}
/*END WHY CHOOSE US*/