/*START PRELOADER*/
.db-preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.db-preloader-inner {
    text-align: center;
}

.db-preloader-img {
    width: 150px;
    max-width: 20vw;
}

/* hide animation */
.db-preloader.hide {
    opacity: 0;
    visibility: hidden;
}

/* Responsive */
@media(max-width:768px) {
    .db-preloader-img {
        width: 70px;
    }
}

@media(max-width:480px) {
    .db-preloader-img {
        width: 60px;
    }
}

/*END PRELOADER*/


/*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*/

/*FLASH NEWS START*/
.aw-flashnews {
    width: 100%;
    background: linear-gradient(90deg, #2c2454, #3b2f6b);
    padding: 0px 0;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.aw-flashnews-container {
    display: flex;
    align-items: center;
}

.aw-flashnews-label {
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    color: #000;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 0 20px 20px 0;
    margin-right: 15px;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
}

.aw-flashnews-ticker {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.aw-flashnews-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: aw-scroll 25s linear infinite;
}

.aw-flashnews-item {
    color: #fff;
    font-weight: 500;
    font-size: 17px;
    position: relative;
    cursor: pointer;
}

.aw-flashnews-item:hover {
    color: #ffcc00;
}

.aw-flashnews-badge {
    background: red;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    margin-left: 6px;
    border-radius: 4px;
    animation: aw-blink 1s infinite;
}

/* scroll animation */
@keyframes aw-scroll {
    from {
        transform: translateX(100%);
    }

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

/* blink effect */
@keyframes aw-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* pause on hover */
.aw-flashnews-ticker:hover .aw-flashnews-track {
    animation-play-state: paused;
}

/* mobile */
@media(max-width:768px) {
    .aw-flashnews-item {
        font-size: 13px;
    }
}

/*FLASH NEWS END*/

/*START MESSAGE*/

.db-team-section {
    padding: 20px 20px;
    background: #f3f3f3;
}

.db-team-container {
    max-width: 1200px;
    margin: auto;
}

.db-team-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

/* GRID */

.db-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */

.db-team-card {
    border-radius: 40px;
    overflow: hidden;
    background: #ffeae6;
    position: relative;
    cursor: pointer;
    transition: 0.4s;
}

/* IMAGE */

.db-team-img {
    position: relative;
    overflow: hidden;
}

.db-team-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* OVERLAY */

.db-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(187 40 85 / 46%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
}

/* READ MORE BUTTON */

.db-team-read {
    background: #282245;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    transform: translateY(20px);
    transition: 0.4s;
}

/* CONTENT */

.db-team-content {
    padding: 25px;
    text-align: center;
}

.db-team-content h3 {
    font-weight: 600;
    color: #282245;
    margin-bottom: 8px;
}

.db-team-content p {
    color: #333;
    font-size: 16px;
}

/* HOVER EFFECT */

.db-team-card:hover .db-team-overlay {
    opacity: 1;
}

.db-team-card:hover .db-team-read {
    transform: translateY(0);
}

.db-team-card:hover {
    transform: translateY(-10px);
}

.db-heading-wrapper {
    text-align: center;
    padding: 10px 20px 40px;
}

/* MAIN HEADING */

.db-main-heading {
    font-size: 36px;
    font-weight: 600;
    /* color: #4b3aa5; */
    position: relative;
    display: inline-block;
    line-height: 1.3;
    background: -webkit-linear-gradient(136deg, #2b1d44, #b82f56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* MAIN UNDERLINE */

.db-main-heading::after {
    content: "";
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, #4b3aa5, #7a6cf0);
    position: absolute;
    left: 15%;
    bottom: -14px;
    border-radius: 10px;
}

/* CENTER DOT */

.db-main-heading::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #4b3aa5;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #7a6cf0;
}


/* RESPONSIVE */

@media(max-width:992px) {
    .db-main-heading {
        font-size: 30px;
    }

    .db-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .db-team-grid {
        grid-template-columns: 1fr;
    }

    .db-main-heading {
        font-size: 22px;
    }
}

/*END MESSAGE*/

/*START NEWS*/
.db-scroll-section {
    padding: 40px 20px;
    background: #3c002d;
}

.db-scroll-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* BOX */

.db-scroll-box {

    background: #f3f3f3;
    border-radius: 8px;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    height: 400px;

}


/* HEADER */

.db-scroll-header {

    color: #fff;
    padding: 15px;
    font-weight: bold;
    text-align: center;
    font-size: 18px;

}

.news-header {
    background: #d33b3b;
}

.time-header {
    background: #1678a2;
}

.mag-header {
    background: #117a7a;
}


/* BODY */

.db-scroll-body {

    flex: 1;
    overflow: hidden;
    position: relative;

}


/* SCROLL AREA */

.db-scroll-content {

    position: absolute;
    width: 100%;

}


/* ITEM */

.db-scroll-item {

    width: 100%;
    padding: 12px 15px;
    border-bottom: 1px dashed #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    flex-wrap: wrap;
    font-size: 17px;

}

.db-scroll-item a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
}

.db-scroll-item a:hover {
    color: #b82f56;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
}

.db-scroll-item :hover {

    color: #b82f56;

}

/* DOT */

.db-dot {

    width: 8px;
    height: 8px;
    background: red;
    border-radius: 50%;

}


/* DATE */

.db-date {

    background: #ffc107;
    padding: 3px 6px;
    font-size: 12px;
    border-radius: 4px;

}


/* IMAGE */

.db-scroll-item img {

    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;

}


/* SEE ALL */

.db-see {

    padding: 8px;
    text-align: right;
    font-weight: bold;
    cursor: pointer;

}


/* RESPONSIVE */

@media(max-width:992px) {

    .db-scroll-container {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:600px) {

    .db-scroll-container {

        grid-template-columns: 1fr;

    }

}

















.db-scroll-section {
    padding: 50px 20px;
}

.db-scroll-container {
    max-width: 1425px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* BOX */
.db-scroll-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* HEADER */
.db-scroll-header {
    padding: 15px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.red {
    background: #d63b46;
}

.blue {
    background: #1678a5;
}

.green {
    background: #147a7e;
}

/* CONTENT */
.db-scroll-content {
    height: 300px;
    overflow: hidden;
    position: relative;
    padding: 15px;
}

.db-scroll-content ul {
    padding: 0;
    margin: 0;
}

.db-scroll-content li {
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
}

/* MAGAZINE */
.db-magazine-item {
    text-align: center;
    margin-bottom: 20px;
}

.db-magazine-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .db-scroll-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .db-scroll-container {
        grid-template-columns: 1fr;
    }
}

/*END NEWS*/

/*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;
} */

.db-about-readmore-btn {
    margin-bottom: 15px;
    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: 25px 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;
    background: -webkit-linear-gradient(136deg, #2b1d44, #b82f56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.db-choose-us-title {
    font-size: 36px;
    font-weight: 600;
    background: -webkit-linear-gradient(136deg, #2b1d44, #b82f56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

/* MAIN GRADIENT LINE */

.db-choose-us-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 210px;
    height: 2px;
    background: linear-gradient(90deg, #4b3aa5, #7a6cf0);
    border-radius: 10px;
}

/* CENTER DIAMOND */

.db-choose-us-title::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    bottom: -4px;
    width: 10px;
    height: 10px;
    background: #4b3aa5;
    box-shadow: 0 0 0 4px #fff;
}

/* OPTIONAL ANIMATION */

.db-choose-us-title:hover::after {
    width: 180px;
    transition: 0.4s;
}

.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;
    }
}

@media(max-width:600px) {

    .db-choose-us-title {
        font-size: 22px;
    }

}

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

/*END WHY CHOOSE US*/

/*START GALLERY*/
/* SECTION */
.db-gallery-wrapper {
    overflow: hidden;
    width: 100%;
}

.db-gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.db-gallery-item {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 10px;
}

.db-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

/* arrows */
.db-gallery-arrows {
    text-align: center;
    margin-top: 20px;
}

.db-gallery-arrows button {
    background: #872a50;
    color: #fff;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 18px;
}

/* popup */
.db-gallery-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
}

.db-gallery-popup img {
    max-width: 90%;
    max-height: 90%;
}

.db-gallery-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* responsive */
@media(max-width:992px) {
    .db-gallery-item {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

@media(max-width:768px) {
    .db-gallery-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media(max-width:500px) {
    .db-gallery-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/*END GALLERY*/

/*START  VIDEOS*/
/* MAIN ITEM */
.item {
    padding: 12px;
}

.item .inner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    transition: all 0.4s ease;
}


/* IMAGE */
.item .inner img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;

    transition: transform 0.6s ease;
}


/* OVERLAY */
.item .inner::after {
    /* content:"View Image"; */

    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.1));

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 600;

    opacity: 0;
    transition: 0.4s ease;
}


/* HOVER EFFECT */
.item .inner:hover img {
    transform: scale(1.12);
}

.item .inner:hover::after {
    opacity: 1;
}

.item .inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}


/* OPTIONAL BORDER ACCENT */
.item .inner::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;

    background: linear-gradient(90deg, #b63d32, #f39c12);
}


/* RESPONSIVE */

/* desktop */
@media(max-width:1200px) {

    .item .inner img {
        height: 220px;
    }

}

/* tablet */
@media(max-width:768px) {

    .item .inner img {
        height: 200px;
    }

}

/* mobile */
@media(max-width:500px) {

    .item {
        padding: 8px;
    }

    .item .inner img {
        height: 180px;
    }

    .item .inner::after {
        font-size: 16px;
    }

}

/*END VIDEOS*/

/*START COUNTER*/
/* MAIN SECTION */
.db-counter {

    position: relative;
    background-size: cover;
    background-position: center;
    padding: 20px 0;

}

/* DARK OVERLAY */
.db-counter-overlay {

    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(20, 20, 40, 0.85),
            rgba(40, 20, 80, 0.85));

}

/* CONTAINER FIX */
.db-counter .container {
    position: relative;
    z-index: 2;
}


/* COUNTER BOX */
.db-counter-box {

    text-align: center;
    padding: 30px 15px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(6px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: all 0.4s ease;

}


/* HOVER EFFECT */
.db-counter-box:hover {

    transform: translateY(-10px) scale(1.05);

    background: rgba(255, 255, 255, 0.12);

}


/* NUMBER */
.db-counter-number {

    font-size: 42px;
    font-weight: 700;

    color: #fff;

    margin-bottom: 10px;

    position: relative;

}


/* NUMBER ACCENT LINE */
.db-counter-number::after {

    content: "";

    display: block;

    width: 40px;
    height: 3px;

    background: #f39c12;

    margin: 10px auto;

    border-radius: 10px;

}


/* TITLE */
.db-counter-title {

    font-size: 18px;

    color: #ddd;

    font-weight: 500;

    letter-spacing: 0.5px;

}


/* RESPONSIVE */

/* tablet */
@media(max-width:992px) {

    .db-counter {
        padding: 60px 0;
    }

    .db-counter-number {
        font-size: 34px;
    }

    .db-counter-title {
        font-size: 16px;
    }

}


/* mobile */
@media(max-width:576px) {

    .db-counter {
        padding: 40px 0;
    }

    .db-counter-box {
        padding: 20px 10px;
        margin-bottom: 15px;
    }

    .db-counter-number {
        font-size: 28px;
    }

    .db-counter-title {
        font-size: 14px;
    }

}

/*END COUNTER*/

/*START FOOTER*/
/* MAIN FOOTER */
.db-footer {
    background-image: url("/assets/images/home/footer-bg.webp");
    padding: 70px 0 40px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Footer Column Spacing */
.footer-col {
    margin-bottom: 30px;
}

/* ===============================
   FOOTER TITLE
=================================*/
.db-footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

/* Underline effect */
.db-footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: #f39c12;
    border-radius: 5px;
}

/* ===============================
   ABOUT TEXT
=================================*/
.db-footer p {
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 15px;
    color: #ddd;
}

/* Read More Link */
.db-footer p a {
    display: inline-block;
    margin-top: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.db-footer p a:hover {
    color: #fff !important;
    letter-spacing: 1px;
}

/* ===============================
   QUICK LINKS
=================================*/
.db-footer-link {
    margin-bottom: 10px;
}

.db-footer-link a {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    display: inline-block;
}

.db-footer-link a:hover {
    color: #f39c12;
    transform: translateX(5px);
}

/* ===============================
   CONTACT SECTION
=================================*/
.db-footer-contact {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #ddd;
}

.db-footer-contact i {
    margin-right: 12px;
    font-size: 16px;
    color: #f39c12;
}

/* ===============================
   SOCIAL ICONS
=================================*/
.db-footer-social {
    margin-top: 20px;
}

.db-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 15px;
    transition: 0.3s ease-in-out;
}

.db-footer-social a:hover {
    background: #f39c12;
    transform: translateY(-4px);
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 768px) {
    .db-footer {
        padding: 50px 20px;
    }

    .db-footer-title {
        font-size: 18px;
    }

    .db-footer p,
    .db-footer-link a,
    .db-footer-contact {
        font-size: 14px;
    }
}

















/*END FOOTER*/

/* MAIN FOOTER BOTTOM START*/
.footer-bottom {
    background: rgb(40 34 69);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    color: #ffffff;
    font-size: 15px;
}


/* FLEX SPLIT */
.db-footer-bottom-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* LEFT SIDE */
.db-footer-copy {

    text-align: left;

}


/* RIGHT SIDE */
.db-footer-dev {

    text-align: right;

}


/* ARCHER WEBSOL LINK */
.db-footer-dev a {

    color: #f39c12;

    text-decoration: none;

    font-weight: 600;

    position: relative;

}


/* UNIQUE UNDERLINE EFFECT */
.db-footer-dev a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -3px;

    width: 0;

    height: 2px;

    background: #f39c12;

    transition: 0.4s;

}


.db-footer-dev a:hover::after {

    width: 100%;

}


.db-footer-dev a:hover {

    color: #fff;

}


/* RESPONSIVE */
@media(max-width:768px) {

    .db-footer-bottom-row {

        flex-direction: column;

        text-align: center;

    }

    .db-footer-copy {

        text-align: center;

        margin-bottom: 8px;

    }

    .db-footer-dev {

        text-align: center;

    }

}

/* MAIN FOOTER BOTTOM END*/


/*START ABOUT*/
.srabout {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.srabout-content {
    display: flex;
    flex-wrap: wrap;
    /* For responsiveness */
    max-width: 1400px;
    /* width: 100%; */
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    justify-content: center;
}

/* Left side image */
.srimage-container {
    /* flex: 1; */
    min-width: 260px;
    /* Ensure minimum size */
    display: flex;
    justify-content: center;
    /* align-items: center; */
    align-items: flex-start;
    padding: 20px;
}

.srimage-container img {
    width: 100%;
    /* Ensures image takes full space */
    max-width: 200px;
    /* Larger image size */
    height: auto;
    border-radius: 10px;
}

/* Right side text */
.srtext-container {
    flex: 1.5;
    min-width: 400px;
    padding: 40px;
}

.srtext-container h1 {
    font-size: 2.5rem;
    /* Larger heading */
    color: #b1aa03;
    margin-bottom: 10px;
    font-weight: bold;
}

.srtext-container h2 {
    font-weight: bold;
    font-size: 20px;
    color: #002c7d;
    margin-bottom: 20px;
    line-height: 10px;
}

.srtext-container .srhighlight {
    color: red;
    font-weight: bold;
    margin-bottom: 15px;
}

.srtext-container p {
    text-align: justify;
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
}

/* Button styles */
.srknow-more {
    background-color: #002c7d;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.srknow-more:hover {
    background-color: #d3ce2d;
}

/* Responsive styles */
@media (max-width: 768px) {
    .srabout-content {
        flex-direction: column;
        text-align: center;
    }

    .srimage-container {
        padding: 10px;
    }

    /* .srtext-container {
      padding: 20px;
  } */


    .srtext-container {
        padding: 30px;
    }

    .srtext-container h1 {
        font-size: 2rem;
    }

    .srtext-container h2 {
        font-size: 1.5rem;
    }
}

/*END ABOUT*/

/*START CONTACT*/
form {
    width: 95%;
}

.db-contact {
    padding: 60px 5%;
    background: #f7f7fb;
    font-family: 'Segoe UI', sans-serif;
}

.db-contact-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

/* LEFT FORM */
.db-contact-form {
    flex: 1;
    background: linear-gradient(135deg, #2b1d44, #b82f56);
    padding: 40px;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.db-contact-heading span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.db-contact-heading h2 {
    margin: 10px 0 30px;
    font-size: 28px;
}

.db-contact-field {
    margin-bottom: 18px;
}

.db-contact-field input,
.db-contact-field select,
.db-contact-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
}

.db-contact-field input:focus,
.db-contact-field select:focus,
.db-contact-field textarea:focus {
    box-shadow: 0 0 0 2px #fff;
}

.db-contact-btn {
    margin-top: 10px;
}

.db-contact-btn button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #2d004d;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.db-contact-btn button:hover {
    background: #000;
}

/* RIGHT SIDE INFO */
.db-contact-info {
    flex: 1;
}

.db-contact-info h2 {
    color: #4b0082;
}

.db-contact-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.db-contact-box h4 {
    margin-bottom: 8px;
    color: #b82f56;
}

.db-iframe-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.db-responsive-iframe {
    width: 100%;
    min-height: 525px;
    /* fallback height */
    border: none;
    display: block;
}


/* Responsive */
@media(max-width:992px) {
    .db-contact-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile */
@media(max-width:768px) {
    .db-responsive-iframe {
        min-height: 500px;
    }
}

@media(max-width:576px) {
    .db-contact-form {
        padding: 25px;
    }

    .db-contact-heading h2 {
        font-size: 22px;
    }
}


/*END CONTACT*/


/* container */

.ttt-wrapper {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* card */

.ttt-card {
    width: 340px;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.ttt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* image section */

.ttt-image-area {
    background: #e7ebf4;
    padding: 30px;
    display: flex;
    justify-content: center;
}

.ttt-image-frame {
    background: #ffffff;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.ttt-image-frame img {
    width: 100%;
    max-width: 240px;
    border-radius: 14px;
    display: block;
}

/* text */

.ttt-content {
    padding: 25px 25px 30px;
    text-align: center;
}

.ttt-name {
    font-size: 24px;
    font-weight: 600;
    color: #1f2a44;
    margin-bottom: 8px;
    line-height: 1.3;
}

.ttt-role {
    font-size: 18px;
    color: #6a6a6a;
}

/* responsive */

@media(max-width:768px) {

    .ttt-wrapper {
        gap: 35px;
    }

    .ttt-card {
        width: 90%;
        max-width: 360px;
    }

}

@media (max-width:1920px) and (min-width:850px) {
    .res-width {
        width: 50%;
    }
}