* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}


/*Data Science Hero Img Start */
.hero-img {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url("../img/hero-img.webp") center top / cover no-repeat;
    position: relative;
}
/*Data Science Hero Img End */

/* BIM Hero Img Start */
.hero-img-bim{
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url("../img/bim/bim-certification.png") center top / cover no-repeat;
    position: relative;
}
/* BIM Hero Img End */

/* Fashio Hero Img Start */
.hero-img-fashion{
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url("../img/fashion-design/fashion-design-hero.jpg") center top / cover no-repeat;
    position: relative;
}
/* Fashion Hero Img End */

/* Interior Hero Img Start */
.hero-img-interior{
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url("../img/bim/CAD-Interior-Desing-Hero.jpg") center top / cover no-repeat;
    position: relative;
}
/* Interior Hero Img End */

.hero-img-interior::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .72);
    z-index: 1;
}


.hero-img-fashion::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .72);
    z-index: 1;
}

.hero-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

.card {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.container-fluid {
    position: relative;
    z-index: 2;
    margin-top: 30px;
}

.owl-carousel .item img {
    max-width: 120px;
    margin: auto;
}

@media (max-width: 768px) {
    .hero-img {
        padding-top: 100px;
    }

    .container-fluid {
        margin-top: 20px;
    }

    .btn-group {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .btn-group button {
        flex: 1 1 45%;
    }
}

/* .video-bg{
    background-image: url("..//img/video-bg.png");
    padding: 40px;
} */

/* Center Align Tabs for All Screens */
.nav-pills {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between tabs */
    flex-wrap: wrap; /* Ensures responsiveness */
}

/* Nav Pills Styling */
.nav-pills .nav-link {
    background: #f3f4f5;
    color: #023494;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

/* Active Tab Styling */
.nav-pills .nav-link.active {
    background: #023494;
    color: #fff;
    font-weight: bold;
}

/* Tab Content Styling */
.tab-content {
    background: #f3f4f5;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center Align Content */
}

/* Mobile Friendly Tabs */
@media (max-width: 576px) {
    .nav-pills {
        /* flex-direction: column; */
        align-items: center;
        justify-content: center;
       
    }

    .nav-pills .nav-item {
        width: 100%;
        text-align: center;
    }
}

.testimonial-section{
    background-image: url(../img/testimonial.png);
}


.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 20px;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    flex: 0 0 300px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    scroll-snap-align: start;
    

    
}

.testimonial-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.testimonial-name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.testimonial-role {
    font-size: 12px;
    background: #ff5a5f;
    color: white;
    padding: 2px 8px;
    border-radius: 5px;
}


.student-section{
    background-image: url(../img/student-bg.png);
}

.student-card {
    padding: 10px;
    max-width: 250px; /* Ensures uniform size */
    margin: auto;
}


.student-img {
    width: 80px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 10px;
}

.student-name {
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0;
}

.student-role {
    font-size: 14px;
    font-weight: bold;
}

.company-logo {
    width: 100px; 
    height: 45px; 
    object-fit: contain; 
    background-color: white; 
    padding: 5px;
    border-radius: 8px; 
  }
  

.company-text {
    font-size: 14px;
    font-weight: bold;
    color: black;
}


/* Quick Enquiry Button Styles */
.quick-enquiry .quick-btn {
    position: fixed;
    bottom: 20px;
    right: 12px;
    z-index: 1000;
}

/* Default Button */
#quickEnquiryBtn {
    background-color: rgb(0, 54, 171);
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    display: none; /* Initially hidden */
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}

/* Button Hover Effect */
#quickEnquiryBtn:hover {
    background-color: rgb(0, 40, 140);
}


/* Quick Enquiry Button Styles */
.quick-whatsapp .quick-btn {
    position: fixed;
    bottom: 60px;
    right: -10px;
    z-index: 1000;
}

/* Default Button */
#quickWhatsappBtn {
    width: 90px;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    display: none; /* Initially hidden */
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}


/* BIM */


/* Career Card Styling */
.career-card {
    background: #fff;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* Hover Effects */
.career-card:hover {
    background:#023494;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


.logo-container {
    position: absolute;
    top: -80px;
    left: 10px;
    z-index: 1000;
}

.logo {
    width: 150px; /* Adjust size as needed */
    height: auto;
}

