/*======================COMMON==================*/
.title-header,
.title-header1,
.title-header2,
.title-header3,
.title-header4 {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.title-header {
    background-color: var(--black-color);
    color: var(--white-color);
    padding : .5rem;
    border-radius:10px;
    text-align:center;
}
.title-header1 {
    background-color: #1E3A8A; /* Deep Indigo Blue */
    color: #F8FAFC; /* Light White */
    padding: 0.7rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.title-header2 {
    background-color: #2563EB; /* Vibrant Royal Blue */
    color: #F8FAFC; /* Light White */
    padding: 0.7rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.title-header3 {
    background-color: var(--white-color);
    color: var(--black-color);
    padding : .7rem;
    border-radius:10px;
    text-align:center;
}

.title-header4 {
    background-color: var(--yellow-color);
    color: var(--black-color);
    padding : .5rem;
    border-radius:10px;
    text-align:center;
}

.title-header hr,
.title-header1 hr,
.title-header2 hr,
.title-header3 hr,
.title-header4 hr {
    border: none;
    height: 2px;
    background: #3498db;
    margin-top: 4px;
    margin-bottom: 5px;
}

.container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
            text-align: center;
            padding: 20px 0;
        }
        .section {
            padding: 50px 0;
        }
        .row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .column {
            width: 48%;
            padding: 10px;
        }
        .header-title {
            font-size: 2rem;
            font-weight: bold;
            color: #2c3e50;
        }
        .text-muted {
            font-size: 1.1rem;
            color: #7f8c8d;
        }
        .service-list {
            list-style: none;
            padding: 0;
            text-align: left;
        }
        .service-list li {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #34495e;
        }
        .service-list li::before {
            content: '\2714';
            color: #007bff;
            font-weight: bold;
            margin-right: 8px;
        }
        .image-container img {
            width: 100%;
            max-width: 400px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }
        @media (max-width: 768px) {
            .row {
                flex-direction: column;
                text-align: center;
            }
            .column {
                width: 100%;
            }
            .service-list {
                text-align: center;
            }
        }
/*=================== INDEX PAGE START =========================*/
/*=================== INDEX BANNERS =========================*/
.top-section { display: flex; width: 100%; }
.carousel-container { width: 74%; height: 65vh; overflow: hidden; position: relative; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); border-radius: 10px;}
.carousel { display: flex; width: 400%; transition: transform 0.5s ease-in-out; }
.slide { width: 25%; height: 65vh; display: flex; justify-content: center; align-items: center; position: relative; }
.slide img { width: 100%; height: 100%; border-radius: 10px; object-fit: cover; }
.caption { position: absolute; bottom: 20px; left: 15px; transform: translateX(0%); background: rgba(0, 0, 0, 0.5); border-radius: 5px; text-align: center; color: white; padding: 10px; font-size: 24px; font-weight: bold; }
.caption button { background: #ff6600; color: white; border: none; border-radius: 5px; padding: 10px 20px; cursor: pointer; font-size: 18px; }
.marquee-container { width: 25%; height: 65vh; background: #f8f9fa; overflow: hidden; display: flex; margin: 10px; align-items: top; justify-content: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); border-radius:10px;}
.marquee { width: 100%; height: 63vh; position: relative; background-color: white; font-size: 18px; text-align: center; }
@keyframes scrollUp { 0% { transform: translateY(100%); } 100% { transform: translateY(-100%); } }
.counter-section { display: flex; justify-content: center; gap: 20px; padding: 40px 0; background: #eee; text-align: center; }


/*=================== INDEX SERVICE =========================*/
        .text-muted {
            font-size: 1.1rem;
            color: #7f8c8d;
        }
        .service-list {
            list-style: none;
            padding: 0;
        }
        .service-list li {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #34495e;
        }
        .service-list li::before {
            content: '\2714';
            color: #007bff;
            font-weight: bold;
            margin-right: 8px;
        }
        .content-section {
            padding: 50px 0;
        }
        .img-fluid {
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }


/*=================== INDEX PAGE END =========================*/


/*=================== CONTACT =========================*/
.contact-container {
    width: 100%;
    margin: auto;
    padding: 20px 0;
}
.contact-header {
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
    font-size: 24px;
    font-weight: bold;
}
.contact-header img {
    width: 100%;
    height: auto;
    border-radius:10px;
}
.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}
.contact-details .contact-column {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--white-color);
    justify-content: space-between;
    
}
iframe {
    width: 100%;
    height: 300px;
    border: 1px solid var(--black-color);
    border-radius:10px;
}
.info {
    font-size: 18px;
    margin-bottom: 10px;
}
.qr-code img {
    width: 150px;
    height: 150px;
    border: 1px solid var(--black-color);
}

/*====================CONTACT END ===========================*/   

/*====================ABOUT START ===========================*/
.about-container {
    width: 100%;
    margin: auto;
    padding-top:10px;
    overflow: hidden;
    display: flex;
}
.institute-section {
    width: 60%;
}
.institute-img {
    width: 100%;
    display: block;
}
.founder-principal-section {
    width: 40%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    padding: 10px;
}
.founder-principal-section img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}
.swiper-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}
.swiper-wrapper {
    display: flex;
    animation: scroll-horizontal 20s linear infinite;
}
.swiper-slide {
    min-width: 250px;
    margin-right: 10px;
}
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    width: 250px;
    background-color: #fff;
}
.card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50px;
}
.social-icons {
    margin-top: 10px;
}
.social-icons a {
    margin: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: text-decoration 0.3s ease;
}
.social-icons a:hover {
    color: blue;
    text-decoration: underline;
}
.gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}
.gallery .view-more {
    display: none;
    text-align: center;
    margin-top: 5px;
    color: blue;
    cursor: pointer;
}
.gallery:hover .view-more {
    display: block;
}
@keyframes scroll-horizontal {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.swiper-container:hover .swiper-wrapper {
    animation-play-state: paused;
} 

/*====================ABOUT END ===========================*/

/*====================FOR MOBILE SCREEN ===========================*/
@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        align-items: center;
    }
    .contact-column {
        text-align: center;
    }
    .institute-section {
    width: 100%;
    font-size: 70%;
}
.founder-principal-section {
    width: 100%;
    font-size: 70%;
}

/*==========INDEX CAURSEL=======*/
.top-section { flex-direction: column; }
.carousel-container, .marquee-container { width: 100%; height: 50vh; }
.slide { width: 100%; }
.counter-box { width: 80%; }
}

/*====================FOR MOBILE SCREEN END===========================*/