:root {
    --bg-dark: #0f172a;
    --header-bg: #ffffff;
    --card-bg: #1e293b;
    --accent-primary: #38bdf8;
    --accent-glow: rgba(56, 189, 248, 0.3);
    --text-light: #ffffff;
    --text-muted: #94a3b8;
    --border-color: rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
    min-height: 100vh;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f4f6f8;
    color: var(--text-light);
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.page-shell {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 75px;
}

.brand-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    align-self: center;
    gap: 0.25rem;
    line-height: 1;
}

.navbar-logo-img {
    height: 68px;
    width: auto;
    display: block;
    object-fit: contain;

}

.logo-accent {
    /* color: #a9cde0; */
    /* background: linear-gradient(135deg, #a9cde0, #a9cde0); */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

.nav-list {
    display: flex;
    align-items: center;
    align-self: center;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-item {
    text-decoration: none;
    color: #07080a;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-link:hover {
    /* color: #0f172a; */
    /* background-color: rgba(0, 0, 0, 0.06); */
    transform: scale(1.1);
    border-bottom: 4px solid #0b57af;
    border-radius: 7px;
    padding-bottom: 5px;
}

.nav-link.active {
    color: #ffffff;
    background-color: #0b57af;
    font-weight: 900;
    border-radius: 8px;
    width: 100%;
    height: 40px;
    /* text-align: center; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.85rem;
}

/* .nav-link.nav-btn {
    background: linear-gradient(135deg, #0284c7, #4f46e5);
    color: #ffffff;
    font-weight: 600;
    margin-left: 0.5rem;
} */




.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: 0.3s;
}


.main-content {
    flex: 1 1 auto !important;
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.page-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}


@media (max-width: 1200px) {
    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border-color);
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .main-nav.show {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .nav-link.nav-btn {
        margin-left: 0;
        text-align: center;
        margin-top: 0.5rem;
    }
}


.carousel {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0;
}

.carousel-item {
    height: 450px;
}


.carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: #ffffff;
    transform: scale(1.2);
}


.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.7);
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: #ffffff;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 18px;
    height: 18px;
}


.banner-section {
    width: 100%;
    min-height: auto;
    height: auto;
    
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: visible;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Wrapper for banner content and grid */
.banner-top-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    width: 100%;
    gap: 2rem;
    padding: 1rem 2rem 5rem 2rem;
    background-color: #043873;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(184, 223, 240, 0.3); */
    z-index: 1;
    pointer-events: none;
}

#bannerImageCarousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/cloud2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    height: 100%;
}

.banner-content {
    padding: 3rem 3rem 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    position: relative;
    z-index: 2;
    min-height: 400px;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.banner-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line {
    display: block;
    font-size: 2.3rem;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 0.2rem;
}

.title-highlight {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    /* background: linear-gradient(135deg, #dbdbad, #e8e9b5fa); */
    color: #f3f3a5;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    padding-bottom: 0.1em;
    margin-top: 0.4rem;
}

.title-subtitle {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    opacity: 0.95;
}

.banner-title .logo-accent {
    color: #a9cde0;
    background: linear-gradient(135deg, #a9cde0, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.banner-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.6;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.banner-stats {
    display: flex;
    gap: 2rem;
    /* margin-bottom: rem; */
    animation: fadeInUp 1.2s ease-out 0.6s both;

}

.stat-item {
    background-color: #9c7531;
    border-radius: 10px;
    padding: 10px;
    width: 150px;
}

.stat-item .stat-icon {
    font-size: 1.6rem;
    color: #ffffff;
    display: block;
    margin-bottom: 0.3rem;
}


.banner-stats-absolute {
    position: absolute;
    bottom: -85px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0;
    background: rgba(52, 73, 94, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 600px;
    width: 90%;
}

.banner-stats-absolute .stat-item {
    flex: 1;
    text-align: center;
    color: #ffffff;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.banner-stats-absolute .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.banner-stats-absolute .stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.banner-stats-absolute .stat-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: block;
    color: #e7b050;
}

.banner-stats-absolute .stat-label {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.25rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-actions {
    animation: fadeInUp 1.4s ease-out 0.8s both;
}

.banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.banner-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    z-index: 2;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    display: block;
    transition: transform 0.5s ease-out;
}

.banner-image:hover img {
    transform: scale(1.03);
}

.btn-primary {
    background-color: #e7b050;
    color: #111111;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
}

.btn-secondary {
    background: #ffffff;
    color: #0f172a;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(15, 23, 42, 0.15);
    transition: background 0.25s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
}

/* Banner Right Grid Styles - Side by Side No Space */
/* Container */
.banner-right-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    height: 100%;
    position: relative;
    z-index: 2;
    perspective: 1200px;
    gap: 8px;
}


.banner-grid-item {
    position: relative;
    width: 160px;
    height: 360px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


.banner-grid-item:nth-child(1) {
    transform: rotateY(20deg);
    transform-origin: right center;
    z-index: 1;

    clip-path: polygon(0 18%, 100% 8%, 100% 92%, 0 82%);
}


.banner-grid-item:nth-child(2) {
    transform: rotateY(10deg);
    transform-origin: right center;
    z-index: 2;

    clip-path: polygon(0 0%, 100% 8%, 100% 92%, 0 100%);
}


.banner-grid-item:nth-child(3) {
    transform: rotateY(-10deg);
    transform-origin: left center;
    z-index: 2;

    clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0 92%);
}


.banner-grid-item:nth-child(4) {
    transform: rotateY(-20deg);
    transform-origin: left center;
    z-index: 1;

    clip-path: polygon(0 8%, 100% 18%, 100% 82%, 0 92%);
}

.banner-grid-item:hover {
    transform: rotateY(0deg) translateX(0px) scale(1.05);
    z-index: 10 !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.banner-grid-item img {
    width: 400%;
    /* Make image 4 times wider to span all 4 divs */
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

/* Position each div's portion of the continuous image */
.banner-grid-item:nth-child(1) img {
    margin-left: 0%;
    /* Show first quarter of image */
}

.banner-grid-item:nth-child(2) img {
    margin-left: -100%;
    /* Show second quarter of image */
}

.banner-grid-item:nth-child(3) img {
    margin-left: -200%;
    /* Show third quarter of image */
}

.banner-grid-item:nth-child(4) img {
    margin-left: -300%;
    /* Show fourth quarter of image */
}

.banner-grid-item:hover img {
    transform: scale(1.1);
}


.banner-grid-item.left-item {
    border-left: 3px solid rgba(169, 205, 224, 0.6);
}

.banner-grid-item.right-item {
    border-right: 3px solid rgba(1, 85, 133, 0.6);
}

.banner-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 20%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.2) 80%,
            transparent 100%);
    z-index: 2;
}

.banner-grid-item.left-item::before {
    right: 0;
}

.banner-grid-item.right-item::before {
    left: 0;
}

/* Central fold shadow */
.banner-right-grid::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 60%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.4) 20%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.4) 80%,
            transparent 100%);
    transform: translate(-50%, -50%);
    z-index: 5;
}

@media (max-width: 768px) {
    .banner-section {
        padding: 2rem 0;
        margin-bottom: 0;
    }

    .banner-top-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem 0 1.5rem;
    }

    .banner-content {
        padding: 0;
        text-align: center;
        min-height: auto;
    }

    .banner-actions {
        justify-content: center;
    }

    .banner-image {
        min-height: 250px;
    }

    /* HIDE BANNER GRID IMAGES ON MOBILE */
    .banner-right-grid {
        display: none !important;
    }

    .banner-grid-item {
        display: none !important;
    }

    /* Mobile Banner Responsive */
    .banner-title {
        font-size: 2.5rem;
    }

    .title-line {
        font-size: 2rem;
    }

    .title-highlight {
        font-size: 3rem;
    }

    .title-subtitle {
        font-size: 1.4rem;
    }

    .banner-stats {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Mobile responsive for absolute stats */
    .banner-stats-absolute {
        bottom: 20px;
        padding: 0;
        width: 95%;
        max-width: none;
    }

    .banner-stats-absolute .stat-item {
        padding: 1.5rem 0.8rem;
    }

    .banner-stats-absolute .stat-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .banner-stats-absolute .stat-label {
        font-size: 0.85rem;
        line-height: 1.2;
    }
}

.page-banner {
    width: 100%;
    min-height: 180px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.8)), url('../images/zobc.png');
    background-size: cover;
    background-position: center center;
    /* background-attachment: fixed; */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* padding: 1rem 1.5rem; */
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-banner .banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.page-banner-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.title-modern {
    display: block;
    font-size: 2.8rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 0.2rem;
}

.title-highlight {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #a9cde0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Projects Banner - Smaller Text */
.projects-banner .page-banner-title {
    font-size: 2rem;
}

.projects-banner .title-modern {
    font-size: 2.4rem;
}

.projects-banner .title-highlight {
    font-size: 3.4rem;
}

.research-banner .page-banner-title {
    font-size: 2rem;
}

.research-banner .title-modern {
    font-size: 2.4rem;
}

.research-banner .title-highlight {
    font-size: 3.4rem;
}

.training-banner .page-banner-title {
    font-size: 2rem;
}

.training-banner .title-modern {
    font-size: 2.4rem;
}

.training-banner .title-highlight {
    font-size: 3.4rem;
}

.mou-banner .page-banner-title {
    font-size: 2rem;
}

.mou-banner .title-modern {
    font-size: 2.4rem;
}

.mou-banner .title-highlight {
    font-size: 3.4rem;
}

.gallery-banner .page-banner-title {
    font-size: 2rem;
}

.gallery-banner .title-modern {
    font-size: 2.4rem;
}

.gallery-banner .title-highlight {
    font-size: 3.4rem;
}

.video-banner .page-banner-title {
    font-size: 2rem;
}

.videos-banner .title-modern {
    font-size: 2.4rem;
}

.videos-banner .title-highlight {
    font-size: 3.4rem;
}

.contact-banner .page-banner-title {
    font-size: 2rem;
}

.contact-banner .title-modern {
    font-size: 2.4rem;
}

.contact-banner .title-highlight {
    font-size: 3.4rem;
}

.page-banner-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    font-weight: 400;
    margin: 0 auto 2rem;
    line-height: 1.6;
    max-width: 600px;
}

.banner-stats-mini {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-mini {
    text-align: center;
}

.stat-number-mini {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #a9cde0;
    line-height: 1;
}

.stat-label-mini {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .page-banner {
        min-height: 400px;
        padding: 3rem 1rem;
    }

    .page-banner-title {
        font-size: 2.5rem;
    }

    .title-modern {
        font-size: 2rem;
    }

    .title-highlight {
        font-size: 2.8rem;
    }

    .page-banner-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .banner-stats-mini {
        flex-direction: row;
        gap: 2rem;
    }

    .stat-number-mini {
        font-size: 1.8rem;
    }

    .stat-label-mini {
        font-size: 0.8rem;
    }
}



/* About Section Styles */
.about-section {
    margin: 0;
    width: 100%;
    background-color: #ffffff;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    /* margin-bottom: 1.5rem; */
    color: #111827;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    /* border: 3px solid; */
    /* border-image: linear-gradient(135deg, #b8dff0 0%, #7bbdd5 55%, #5aa8c8 100%) 1; */
    border-radius: 12px;
    padding: 0.5rem 0.5rem;
    /* background: linear-gradient(135deg, #b8dff0 0%, #7bbdd5 55%, #5aa8c8 100%); */
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    text-align: left;
}

.about-word {
    color: #070707;
}

.company-name {
    color: #0b57af;
}

.directors-title {
    text-align: center;
    width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 3.2rem;
    font-weight: 900;
}

.directors-title .about-word {
    color: #000000;
}

.directors-title .company-name {
    color: #043873;
}

@media (max-width: 768px) {
    .directors-title {
        font-size: 2.5rem;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 3px;
    /* background: linear-gradient(135deg, #38bdf8, #818cf8); */
    border-radius: 2px;
}

/* New 2-column about layout */
/* .about-layout {
    display: flex;
    align-items: end;
    gap: 1.5rem;
    padding: 0 5.5rem;
    width: 100%;
    max-width: none;
    
} */

.about-img {
    width: 450px;
    height: 550px;
    flex-shrink: 0;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    /* object-position: bottom; */
}

.about-img:hover {
    transform: translateY(-3px);
}

.about-all-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-all-text p {
    color: #1f2937;
    line-height: 1.8;
    text-align: justify;
    text-indent: 3em;
    margin: 0;
    /* margin-bottom: 0.6rem; */
}

.about-all-text-projects p {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
    text-indent: 3em;
    margin: 0;
}

@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
    }

    .about-image-placeholder {
        width: 100%;
        min-height: 220px;
    }

    /* HIDE ABOUT IMAGE ON MOBILE */
    .about-layout .col-md-5 {
        display: none !important;
    }

    .about-layout .col-md-7 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .about-all-text {
        text-align: center;
        padding: 0 1rem;
    }

    .about-all-text p {
        text-indent: 0;
        text-align: center;
        line-height: 1.7;
        font-size: 0.95rem;
    }
}

/* ============== VISION & MISSION SECTION ============== */

.vision-mission-section {
    padding: 5rem 0;
    position: relative;
    margin-top: 0;
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.8)), url('../images/vis.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    /* background: radial-gradient(circle, rgba(4, 56, 115, 0.06) 0%, transparent 70%); */
    border-radius: 50%;
    pointer-events: none;
}

.vision-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vision-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.vision-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.vision-image-wrapper:hover .vision-img {
    transform: scale(1.03);
}

.vision-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.vision-block,
.mission-block {
    position: relative;
    padding: 2rem 2rem 2rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #043873;
    transition: all 0.3s ease;
}

.mission-block {
    border-left-color: #9c7531;
}

.vision-block:hover,
.mission-block:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.vision-icon-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #043873, #0b57af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(4, 56, 115, 0.3);
}

.vision-icon-badge.mission-badge {
    background: linear-gradient(135deg, #9c7531, #c4963e);
    box-shadow: 0 4px 12px rgba(156, 117, 49, 0.3);
}

.vision-heading,
.mission-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: #043873;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mission-heading {
    color: #9c7531;
}

.vision-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .vision-mission-section {
        padding: 3rem 0;
    }

    /* HIDE VISION IMAGE ON MOBILE */
    .vision-image-wrapper {
        display: none !important;
    }

    .vision-content {
        display: block;
    }

    .vision-block,
    .mission-block {
        padding: 1.5rem;
        text-align: center;
    }

    .vision-heading,
    .mission-heading {
        font-size: 1.3rem;
    }

    .vision-text {
        font-size: 0.95rem;
        text-align: center;
    }
}

/* ============== DIRECTORS SECTION - SIMPLIFIED 2 COLUMN LAYOUT ============== */


.directors-section {
    padding: 30px 0;
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%); */
    background: #eff2f6;
    position: relative;
}

.directors-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.directors-header {
    text-align: center;
    margin-bottom: 4rem;
}

.directors-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.gradient-text {
    /* background: linear-gradient(135deg, #043873, #8b5cf6); */
    background: #0b57af;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.directors-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Directors Grid - Row Stacked Layout */
.directors-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.director-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(11, 87, 175, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 370px;
    overflow: hidden;
}

.director-card-1 {
    flex-direction: row;
}

.director-card-2 {
    flex-direction: row;
}

.director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(4, 56, 115, 0.25);
}

/* Director Image Column (Full White Background) */
.director-image {
    background: #ffffff;
    width: 280px;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    flex-shrink: 0;
    margin-bottom: 0;
}

.director-image img {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 5px solid #0b57af;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.director-image img:hover {
    border-color: #043873;
    transform: scale(1.05);
}

/* Director Info Column (Blue Background) */
.director-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, #0b57af 0%, #043873 100%);
    color: #ffffff;
}

.director-card-2 .director-info {
    background: linear-gradient(135deg, #043873 0%, #0b57af 100%);
}

.director-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.director-position {
    color: #a5f3fc;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Director Tags */
.director-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.tag {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Director Bio */
.director-bio {
    color: #f8fafc;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: justify;
    font-size: 0.98rem;
}

.director-bio b {
    color: #ffffff;
    font-weight: 900;
}

/* Director Contact */
.director-contact {
    margin-top: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .directors-section {
        padding: 60px 0;
    }

    .directors-container {
        padding: 0 1rem;
    }

    .directors-title {
        font-size: 2.5rem;
    }

    .directors-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .director-card,
    .director-card-1,
    .director-card-2 {
        flex-direction: column;
    }

    .director-image {
        width: 100%;
        min-width: 100%;
        padding: 2rem 1.5rem 1rem 1.5rem;
    }

    .director-image img {
        width: 140px;
        height: 140px;
    }

    .director-info {
        padding: 1.5rem 1.5rem 2rem 1.5rem;
        text-align: center;
    }

    .director-tags {
        justify-content: center;
        gap: 0.3rem;
    }

    .tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .director-bio {
        text-align: center;
        font-size: 0.9rem;
    }
}



/* ============== RESEARCH GUIDANCE SECTION ============== */

.research-guidance-section {
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%); */
    /* background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.8)), url('../images/zobc.png'); */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0;
}

.research-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Introduction */
.research-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.research-section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.research-intro-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Focus Areas */
.research-focus {
    margin-bottom: 5rem;
}

.focus-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2.5rem;
    text-align: center;
}

.publication-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.research-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.research-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.research-image-wrapper img,
.research-full-img {
    width: 100%;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    display: block;
    border-radius: 20px;
    flex-grow: 1;
}

.publication-card {
    background: white;
    border-radius: 16px;
    padding: 1.8rem 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.publication-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.publication-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
    display: block;
}

.publication-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.publication-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* Guidance Process */
.guidance-process {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.process-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Connection Line for steps */
.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .research-section-title {
        font-size: 2.2rem;
    }

    .focus-title,
    .process-title {
        font-size: 1.5rem;
    }

    .publication-types {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .publication-card {
        padding: 1.5rem;
    }

    .publication-icon {
        font-size: 2.5rem;
    }

    .process-steps {
        gap: 2rem;
    }

    .guidance-process {
        padding: 2rem;
    }

    .research-intro {
        margin-bottom: 3rem;
    }
}

.site-footer {
    background: #000000;
    color: #94a3b8;
    margin-top: auto !important;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.footer-top {
    padding: 4rem 2rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-accent {
    color: #a9cde0;
    background: linear-gradient(135deg, #38bdf8, #a9cde0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.social-link:hover {
    background: #015585;
    border-color: #015585;
    color: #ffffff;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: linear-gradient(135deg, #015585, #38bdf8);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #a9cde0;
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-list a:hover {
    color: #a9cde0;
}

.footer-bottom {
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-dev {
    color: #a9cde0;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }
}

/* Hexagon Gallery Layout (3 Hexagons - Percentage Based & Fully Responsive) */
.hexagon-gallery {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
}

.hex-item {
    position: absolute;
    width: 56%;
    aspect-ratio: 1 / 0.88;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease, z-index 0.4s;
}

.hex-item:hover {
    transform: scale(1.05);
    z-index: 10 !important;
}

.hex-inner {
    width: 100%;
    height: 100%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    filter: url(#round-corner-hex);
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hex-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 3 Hexagons relative positioning matching exact layout percentages */
/* Middle-Left Hexagon */
.hex-1 {
    top: 30%;
    left: 0%;
    z-index: 2;
}

/* Bottom-Right Hexagon */
.hex-2 {
    top: 49%;
    right: 2%;
    z-index: 3;
}

/* Top-Right Hexagon */
.hex-3 {
    top: 10%;
    left: 42%;
    z-index: 1;
}

/* Project Category Cards Styles (Reference Design) */
.project-cards-section {
    /* background-color: #f8fafc; */
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.8)), url('../images/zobc.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

.project-card {
    border-radius: 18px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1) !important;
}

.dark-card {
    background-color: #0b1d3a !important;
}

.card-icon-box {
    width: 48px;
    height: 48px;
    background-color: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-card .card-icon-box {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Increased Font Sizes for Our Projects Section and Cards */
.about-all-text .section-title {
    font-size: 3.2rem;
}

.about-all-text p {
    font-size: 1.05rem;
    line-height: 1.9;
}

.project-card .card-title {
    font-size: 1.65rem;
}

.project-card .card-text {
    font-size: 1.15rem;
    line-height: 1.7;
}

.project-card .badge {
    font-size: 0.95rem;
    padding: 0.55rem 1.1rem !important;
}

.project-card ul li {
    font-size: 1.1rem;
}

/* ============== HAPPENING NOW SECTION - MODERN SLIDER ============== */

.happening-now-section-modern {
    position: relative;
    padding: 0 1.5rem 4rem 1.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #eff2f6;
}

.happening-container {
    width: 100%;
    max-width: 1250px;
    margin: -90px auto 0 auto;
    position: relative;
    z-index: 10;
    padding: 3rem 2.5rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

/* Section Header */
.happening-header {
    text-align: center;
    /* margin-bottom: 4rem; */
}

.happening-label {
    display: inline-block;
    background: linear-gradient(135deg, #043873, #0b57af);
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(4, 56, 115, 0.25);
}

.happening-main-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1.2rem;
    line-height: 1;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.happening-word-1 {
    color: #1e293b;
}

.happening-word-2 {
    background: linear-gradient(135deg, #0b57af, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.happening-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Slider Container */
.happening-slider-container {
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem 0;
}

/* Slides Wrapper - Horizontal Scroll */
.happening-slides-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.happening-slide-item {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    animation: slideInFade 0.8s ease-out forwards;
}

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

/* Slide Card */
.slide-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 500px;
}

.slide-card:hover {
    box-shadow: 0 25px 60px rgba(11, 87, 175, 0.15);
    border-color: rgba(11, 87, 175, 0.3);
    transform: translateY(-5px);
}

/* Slide Image Wrapper */
.slide-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #1e293b;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.slide-card:hover .slide-image {
    transform: scale(1.08);
}

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 5;
}

.slide-card:hover .slide-overlay {
    opacity: 1;
    background: rgba(15, 23, 42, 0.6);
}

.slide-overlay i {
    color: #ffffff;
    font-size: 4rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.slide-card:hover .slide-overlay i {
    transform: scale(1);
    color: #e7b050;
}

/* Slide Content */
.slide-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  
}

.slide-label {
    display: inline-block;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #0b57af;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    width: fit-content;
    border: 1px solid #bfdbfe;
}

.slide-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.slide-description {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Navigation Buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(11, 87, 175, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0b57af;
    font-size: 1.3rem;
}

.slider-nav-btn:hover {
    background: #0b57af;
    color: #ffffff;
    border-color: #0b57af;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 12px 32px rgba(11, 87, 175, 0.35);
}

.slider-prev-btn {
    left: 10px;
}

.slider-next-btn {
    right: 10px;
}

/* Slide Indicators */
.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(11, 87, 175, 0.3);
    border: 2px solid rgba(11, 87, 175, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: block;
}

.indicator-dot:hover {
    background: rgba(11, 87, 175, 0.6);
    transform: scale(1.2);
}

.indicator-dot.active {
    background: #0b57af;
    box-shadow: 0 4px 12px rgba(11, 87, 175, 0.4);
    width: 32px;
    border-radius: 6px;
}

/* CTA Button Wrapper */
.happening-cta-wrapper {
    display: flex;
    justify-content: center;
    
}

.happening-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #0b57af, #043873);
    color: #ffffff !important;
    padding: 0.9rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(11, 87, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.happening-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.happening-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(11, 87, 175, 0.45);
}

.happening-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.happening-cta-btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.happening-cta-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slider-prev-btn {
        left: 10px;
    }

    .slider-next-btn {
        right: 10px;
    }

    .happening-slides-wrapper {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .happening-main-title {
        font-size: 2.5rem;
    }

    .slide-image-wrapper {
        height: 280px;
    }

    .slide-card {
        max-height: 450px;
    }

    .slide-content {
        padding: 2rem;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .happening-now-section-modern {
        margin-top: -40px;
        padding: 0 0.8rem;
        margin-bottom: 2.5rem;
    }

    .happening-container {
        padding: 2rem 1.25rem;
        border-radius: 20px;
    }

    .happening-label {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .happening-main-title {
        font-size: 2rem;
        gap: 0.5rem;
    }

    .happening-subtitle {
        font-size: 1rem;
    }

    .slider-prev-btn,
    .slider-next-btn {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }

    .slider-prev-btn {
        left: 5px;
    }

    .slider-next-btn {
        right: 5px;
    }

    /* HIDE SLIDE IMAGE ON MOBILE - SHOW ONLY TEXT */
    .slide-image-wrapper {
        display: none !important;
    }

    .slide-card {
        max-height: none;
        min-height: auto;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .slide-title {
        font-size: 1.3rem;
    }

    .slide-description {
        font-size: 0.9rem;
    }

    .slide-indicators {
        gap: 0.7rem;
    }

    .indicator-dot {
        width: 10px;
        height: 10px;
    }

    .indicator-dot.active {
        width: 28px;
    }

    /* SINGLE COLUMN SLIDER ON MOBILE */
    .happening-slides-wrapper {
        gap: 1rem;
    }

    .happening-slide-item {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
}



.training-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    margin-bottom: 60px;
}

.training-section .row {
    align-items: flex-start;
}

.training-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    text-indent: 3em;
}

.training-programs-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.training-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.training-card-icon {
    width: 60px;
    height: 60px;
    background: #e8f0ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.training-card-icon i {
    color: #007bff;
    font-size: 1.8rem;
}

.training-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.training-card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.workshop-section {
    /* padding: 60px 0; */
    background: #fff;
}

.workshop-container {
    background: white;
    /* padding: 40px; */
    /* border-radius: 12px; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.workshop-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    text-indent: 3em;
}

.workshop-section .row {
    min-height: 500px;
}

.workshop-section .col-lg-6:last-child {
    display: flex;
}

.workshop-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.workshop-image-container img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

@media (max-width: 992px) {
    .workshop-container {
        padding: 30px;
    }

    .training-content,
    .workshop-content {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .training-section {
        padding: 40px 0;
    }

    .workshop-section {
        padding: 40px 0;
    }

    .workshop-container {
        padding: 20px;
    }

    .training-item span {
        font-size: 1rem;
    }

    .training-item i {
        font-size: 1.3rem;
    }
}

/* =============== MoU SECTION =============== */

.mou-intro-section {
    /* padding: 10px 0; */
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%); */
    background: #ffffff
}

.mou-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 450px;
}

.mou-image-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mou-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.mou-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
    text-indent: 3em;
}

.mou-description:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .mou-title {
        font-size: 1.7rem;
    }

    .mou-description {
        font-size: 1rem;
    }

    .mou-image-container {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .mou-intro-section {
        padding: 40px 0;
    }

    .mou-image-container {
        min-height: 300px;
        margin-bottom: 30px;
    }

    .mou-title {
        font-size: 1.5rem;
    }

    .mou-description {
        font-size: 0.95rem;
    }
}


/* ============== CONTACT US SECTION ============== */

.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    padding: 0;
}

/* Branch Selector Tabs */
.contact-branch-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.branch-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 1.2rem 2.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.branch-tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #043873, #0b57af);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.branch-tab:hover {
    border-color: #93c5fd;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(4, 56, 115, 0.12);
}

.branch-tab:hover::before {
    transform: scaleX(1);
}

.branch-tab i {
    font-size: 1.5rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.branch-tab span {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 0.3px;
}

.branch-tab small {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.branch-tab.active {
    background: linear-gradient(135deg, #043873, #0b57af);
    border-color: #043873;
    box-shadow: 0 12px 30px rgba(4, 56, 115, 0.35);
    transform: translateY(-4px);
}

.branch-tab.active::before {
    transform: scaleX(1);
    background: linear-gradient(135deg, #e7b050, #f0c66e);
    height: 4px;
}

.branch-tab.active i {
    color: #e7b050;
}

.branch-tab.active span {
    color: #ffffff;
}

.branch-tab.active small {
    color: rgba(255, 255, 255, 0.75);
}

/* Branch Content Panels */
.contact-branch-content {
    position: relative;
}

.branch-panel {
    display: none;
    animation: branchFadeIn 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.branch-panel.active {
    display: block;
}

@keyframes branchFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Branch Info Card */
.branch-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.branch-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #043873, #0b57af, #e7b050);
}

.branch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #043873, #0b57af);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 1.2rem;
}

.branch-badge.tirunelveli-badge {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.branch-badge.chennai-badge {
    background: linear-gradient(135deg, #059669, #10b981);
}

.branch-badge.pudukkottai-badge {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.branch-city-name {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    line-height: 1;
}

.branch-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #043873;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.branch-detail-item:hover .detail-icon {
    background: linear-gradient(135deg, #043873, #0b57af);
    color: #ffffff;
    transform: scale(1.05);
}

.detail-text strong {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.detail-text p {
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.7;
    margin: 0;
}

.detail-text a {
    color: #0b57af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.detail-text a:hover {
    color: #043873;
    text-decoration: underline;
}

/* Branch Action Buttons */
.branch-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.branch-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.call-btn {
    background: linear-gradient(135deg, #043873, #0b57af);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(4, 56, 115, 0.3);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 56, 115, 0.4);
    color: #ffffff;
}

.direction-btn {
    background: #ffffff;
    color: #043873;
    border: 2px solid #043873;
}

.direction-btn:hover {
    background: #043873;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 56, 115, 0.25);
}

/* Map Wrapper */
.branch-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 3px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

.branch-map-wrapper:hover {
    border-color: #93c5fd;
    box-shadow: 0 15px 50px rgba(4, 56, 115, 0.15);
}

.branch-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: block;
}

/* Quick Contact Bar */
.quick-contact-bar {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.quick-contact-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #043873, #0b57af, #e7b050, #0b57af, #043873);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.quick-contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.qc-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #043873, #0b57af);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(4, 56, 115, 0.4);
}

.qc-info small {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.qc-info strong {
    display: block;
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Contact Responsive */
@media (max-width: 1200px) {
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .branch-info-card {
        padding: 2rem;
    }

    .branch-map-wrapper {
        min-height: 350px;
    }

    .branch-map-wrapper iframe {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-branch-tabs {
        gap: 0.6rem;
    }

    .branch-tab {
        padding: 0.9rem 1.2rem;
        border-radius: 12px;
        flex: 1;
        min-width: 130px;
    }

    .branch-tab i {
        font-size: 1.2rem;
    }

    .branch-tab span {
        font-size: 0.9rem;
    }

    .branch-tab small {
        font-size: 0.65rem;
    }

    .branch-city-name {
        font-size: 1.8rem;
    }

    .branch-info-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .branch-map-wrapper {
        min-height: 300px;
        border-radius: 16px;
        margin-top: 1rem;
    }

    .branch-map-wrapper iframe {
        min-height: 300px;
    }

    .branch-actions {
        flex-direction: column;
    }

    .branch-action-btn {
        justify-content: center;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quick-contact-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-branch-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .branch-tab {
        flex-direction: row;
        justify-content: flex-start;
        gap: 0.8rem;
        padding: 1rem 1.5rem;
    }

    .branch-tab small {
        margin-left: auto;
    }
}


/* ============== CAREER PAGE SECTION ============== */

.career-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
}

/* Why Join Us Card */
.why-us-card {
    display: flex;
    gap: 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    align-items: center;
}

.why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(4, 56, 115, 0.1);
}

.why-us-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e7b050;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(231, 176, 80, 0.2);
}

.why-us-text p {
    font-size: 1.15rem;
    color: #334155;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* Hiring Process Timeline */
.process-intro-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
}

.hiring-timeline-wrapper {
    position: relative;
    padding-left: 2.2rem;
    border-left: 3px dashed #cbd5e1;
    margin-left: 1rem;
}

.hiring-timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.hiring-timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #043873, #0b57af);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 10px rgba(4, 56, 115, 0.3);
    border: 3px solid #ffffff;
    transition: all 0.3s ease;
}

.hiring-timeline-item:hover .timeline-number {
    background: linear-gradient(135deg, #e7b050, #f0c66e);
    transform: scale(1.1);
}

.timeline-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.hiring-timeline-item:hover .timeline-content {
    border-color: #93c5fd;
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Submission Resume Form Card */
.submission-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.submission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #043873, #0b57af, #e7b050);
}

.card-header-modern {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header-modern i {
    font-size: 2.5rem;
    color: #043873;
    display: block;
    margin-bottom: 0.5rem;
}

.card-header-modern h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.card-header-modern p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* Input Fields Styling */
.input-group-modern {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.input-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    color: #64748b;
    font-size: 1.1rem;
}

.form-control-modern {
    flex: 1;
    border: none !important;
    background: transparent;
    padding: 0.75rem 1rem 0.75rem 0;
    font-size: 0.95rem;
    color: #1e293b;
    outline: none !important;
}

.form-control-modern::placeholder {
    color: #94a3b8;
}

.form-select-modern {
    padding-right: 2rem;
    cursor: pointer;
}

.input-group-modern:focus-within {
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
    cursor: pointer;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-design {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 1.8rem 1rem;
    text-align: center;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.file-upload-design i {
    font-size: 2rem;
    color: #0b57af;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.file-upload-design span {
    display: block;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 600;
}

.file-upload-design small {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.2rem;
}

.file-upload-wrapper:hover .file-upload-design {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.02);
}

.file-upload-design.selected {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.02);
}

.file-upload-design.selected i {
    color: #10b981;
}

/* Submit Button */
.submit-btn-modern {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, #043873, #0b57af);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(4, 56, 115, 0.3);
}

.submit-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 56, 115, 0.45);
}

/* Success Message Overlay */
.success-message-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 10;
    padding: 2rem;
}

.success-message-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-box {
    text-align: center;
    max-width: 320px;
}

.success-icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.success-box h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.success-box p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.success-box .btn-primary {
    background: linear-gradient(135deg, #043873, #0b57af) !important;
    border: none;
    box-shadow: 0 4px 12px rgba(4, 56, 115, 0.3);
    padding: 0.6rem 2rem;
    border-radius: 8px;
    font-weight: 600;
}

/* Scoped Career Banner override */
.career-banner {
    min-height: 250px;
}

.career-banner .page-banner-title {
    font-size: 3rem;
}

/* Breakpoint Fixes for Career Page */
@media (max-width: 992px) {
    .hiring-timeline-wrapper {
        margin-left: 0.5rem;
    }
}

@media (max-width: 768px) {
    .why-us-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .why-us-icon {
        margin: 0 auto;
    }

    .why-us-text p {
        text-align: center;
    }

    .submission-card {
        padding: 1.8rem;
    }
}

.career-org-chart-section {
    background-color: #fefefe;
    padding-top: 2rem;
    margin-top: 4rem;
    border-radius: 50px;
}

/* --- Videos Page Redesign Styles --- */

/* Intro Video Image Wrapper */
.video-intro-image-wrapper {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-intro-image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-intro-image-wrapper:hover img {
    transform: scale(1.04);
}

.image-overlay-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #ffffff;
    opacity: 0.85;
    pointer-events: none;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
    animation: playPulse 2s infinite;
}

@keyframes playPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.85;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
        color: #e7b050;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.85;
    }
}

.video-intro-image-wrapper:hover .image-overlay-pulse {
    opacity: 1;
    color: #e7b050;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Background Light Modern */
.bg-light-modern {
    background: #f8fafc;
}

/* Gallery Controls */
.gallery-controls-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Search Box styling */
.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 15px;
    color: #94a3b8;
    font-size: 1.1rem;
    pointer-events: none;
}

.search-input-wrapper .search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 0.95rem;
    color: #1e293b;
    outline: none;
    transition: all 0.3s ease;
}

.search-input-wrapper .search-input:focus {
    border-color: #0b57af;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(11, 87, 175, 0.1);
}

/* Dynamic Filter Pills */
.filter-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    background: #f1f5f9;
    padding: 0.4rem;
    border-radius: 12px;
}

.filter-pill {
    border: none;
    background: transparent;
    color: #64748b;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-pill:hover {
    color: #0f172a;
}

.filter-pill.active {
    background: #ffffff;
    color: #0b57af;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* View Switcher */
.view-toggle-group {
    display: flex;
    gap: 0.25rem;
    background: #f1f5f9;
    padding: 0.4rem;
    border-radius: 12px;
}

.view-toggle-btn {
    border: none;
    background: transparent;
    color: #64748b;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.view-toggle-btn:hover {
    color: #0f172a;
}

.view-toggle-btn.active {
    background: #ffffff;
    color: #0b57af;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Grid layout video card */
.video-glass-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(4, 56, 115, 0.08);
    border-color: rgba(11, 87, 175, 0.3);
}

/* Card Thumbnail Box */
.card-thumbnail-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #0f172a;
    overflow: hidden;
    cursor: pointer;
}

.thumbnail-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1e293b;
    z-index: 1;
}

.card-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-video-thumb.loading {
    opacity: 0;
}

.video-glass-card:hover .card-video-thumb {
    transform: scale(1.05);
}

/* Thumbnail Play Overlay */
.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.card-thumbnail-container:hover .thumbnail-overlay {
    opacity: 1;
    background: rgba(15, 23, 42, 0.55);
}

.play-btn-circle {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b57af;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.8);
}

.card-thumbnail-container:hover .play-btn-circle {
    transform: scale(1);
    background: #e7b050;
    color: #111;
}

.hover-play-text {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
}

.card-thumbnail-container:hover .hover-play-text {
    transform: translateY(0);
    opacity: 1;
}

/* Card Body */
.card-body-modern {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-badges-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    align-items: center;
}

.badge-code {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    font-family: inherit;
    border: 1px solid #cbd5e1;
}

.badge-type {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

/* Category Colors */
.badge-type-basics {
    background: #f0fdfa;
    color: #0f766e;
    border: 1px solid #ccfbf1;
}

.badge-type-projects {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #dbeafe;
}

.badge-type-products {
    background: #fef9c3;
    color: #a16207;
    border: 1px solid #fef08a;
}

.card-video-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.45rem;
}

.card-video-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.25s ease;
}

.card-video-title a:hover {
    color: #0b57af;
}

.card-meta-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.85rem;
    margin-top: auto;
}

/* Card Actions Footer */
.card-footer-modern {
    padding: 1.2rem 1.5rem;
    background: #f8fafc;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-watch-now {
    border: none;
    background: linear-gradient(135deg, #043873, #0b57af);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(11, 87, 175, 0.15);
    transition: all 0.3s ease;
}

.btn-watch-now:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(11, 87, 175, 0.25);
    background: linear-gradient(135deg, #0b57af, #1d4ed8);
}

.btn-youtube-link {
    color: #ef4444;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-youtube-link:hover {
    color: #dc2626;
    transform: scale(1.1);
}

/* List Table View Styles */
.list-view-table-wrapper {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.table-modern-list {
    margin: 0;
}

.table-modern-list thead {
    background: #f8fafc;
    border-bottom: 2px solid #cbd5e1;
}

.table-modern-list th {
    padding: 1.1rem 1.5rem;
    font-weight: 700;
    color: #0f172a;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.table-modern-list td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    background-color: transparent !important;
}

.video-item-list-row {
    transition: background-color 0.2s ease;
}

.video-item-list-row:hover {
    background-color: #f8fafc !important;
}

.list-title-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: color 0.25s ease;
}

.list-title-link:hover {
    color: #0b57af;
}

.list-action-btns {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    align-items: center;
}

.btn-list-play {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #eff6ff;
    color: #0b57af;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.btn-list-play:hover {
    background: #e7b050;
    color: #111;
    transform: scale(1.08);
}

.btn-list-yt {
    color: #64748b;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-list-yt:hover {
    color: #ef4444;
    transform: scale(1.15);
}

/* Empty State Styling */
.no-videos-state {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.no-videos-state i {
    font-size: 3.5rem;
    color: #cbd5e1;
}

.no-videos-state p {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
}

.d-none-grid-state {
    display: none !important;
}

/* Video Modal Styling */
.video-modal-content {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
}

.video-modal-header {
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.video-modal-title {
    font-size: 1.3rem;
}

.video-modal-ratio {
    background: #000;
}

/* Media Queries */
@media (max-width: 768px) {
    .gallery-controls-card {
        padding: 1rem;
    }

    .filter-pills {
        justify-content: center;
        width: 100%;
    }

    .filter-pill {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* ============== PRODUCTS PAGE STYLES ============== */

.products-banner {
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.85)), url('../images/bac.png');
}

.products-hero-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 3.5rem 0 2rem;
}

.product-pillar-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0b57af, #38bdf8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(11, 87, 175, 0.12);
    border-color: rgba(56, 189, 248, 0.4);
}

.product-pillar-card:hover::before {
    opacity: 1;
}

.pillar-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #0b57af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.product-pillar-card:hover .pillar-icon-box {
    background: #0b57af;
    color: #ffffff;
    transform: scale(1.05);
}

.pillar-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.pillar-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Domain Badges */
.domain-badge-pill {
    background: #f1f5f9;
    color: #334155;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

.domain-badge-pill:hover {
    background: #0b57af;
    color: #ffffff;
    border-color: #0b57af;
}

/* Stream Lab Cards */
.domain-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.domain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.domain-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.domain-avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.domain-avatar.eee {
    background: #fef3c7;
    color: #d97706;
}

.domain-avatar.ece {
    background: #e0e7ff;
    color: #4338ca;
}

.domain-avatar.cs {
    background: #dcfce7;
    color: #15803d;
}

.domain-avatar.ei {
    background: #fae8ff;
    color: #a21caf;
}

.domain-avatar.mech {
    background: #ffedd5;
    color: #c2410c;
}

.domain-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.domain-card-subtitle {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 600;
}

.equipment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-list li {
    font-size: 0.92rem;
    color: #334155;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.5;
}

.equipment-list li i {
    color: #0b57af;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* MSME Section Styling */
.msme-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.msme-card-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.msme-card-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(231, 176, 80, 0.5);
}

.msme-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e7b050, #c4963e);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 15px rgba(231, 176, 80, 0.3);
}

.msme-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.msme-box-desc {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* Solar Section Styling */
.solar-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    padding: 5rem 0;
}

.solar-product-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #dcfce7;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.06);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solar-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

.solar-badge {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.solar-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.solar-card-text {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

/* ============== REVIEWS SECTION ============== */

.reviews-section {
    padding: 5rem 0;
    background: #eff2f6;
    position: relative;
    overflow: hidden;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.reviews-title .about-word {
    color: #000000;
}

.reviews-title .gradient-text {
    color: #0b57af;
}

.reviews-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Reviews Slider */
.reviews-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-swiper {
    width: 100%;
    padding: 20px 0 40px;
}

.reviews-swiper .swiper-wrapper {
    align-items: stretch;
}

.reviews-swiper .swiper-slide {
    height: auto;
}

.reviews-slide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    align-items: stretch;
}

/* Review Card Styles */
.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0b57af, #38bdf8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(11, 87, 175, 0.12);
    border-color: rgba(11, 87, 175, 0.3);
}

.review-card:hover::before {
    transform: scaleX(1);
}

/* Star Ratings - Gold Color */
.review-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
}

.review-stars i {
    color: #e7b050;
    font-size: 1.1rem;
}

/* Review Text */
.review-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
    margin: 0 0 1.5rem 0;
}

/* Review Author Section */
.review-author {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-avatar i {
    color: #0b57af;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card:hover .author-avatar {
    border-color: #0b57af;
    transform: scale(1.05);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.2rem 0;
}

.author-institution {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Navigation Buttons */
.reviews-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1e293b;
    font-size: 1.2rem;
}

.reviews-nav-btn:hover {
    background: #0b57af;
    color: #ffffff;
    border-color: #0b57af;
    transform: translateY(-50%) scale(1.1);
}

.reviews-prev-btn {
    left: -60px;
}

.reviews-next-btn {
    right: -60px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .reviews-slide-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .reviews-prev-btn {
        left: 10px;
    }

    .reviews-next-btn {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }

    .reviews-container {
        padding: 0 1rem;
    }

    .reviews-title {
        font-size: 2.2rem;
    }

    .reviews-subtitle {
        font-size: 1rem;
    }

    .reviews-slide-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .reviews-prev-btn,
    .reviews-next-btn {
        width: 40px;
        height: 40px;
    }
}

/* Products CTA Banner */
.products-cta-card {
    background: linear-gradient(135deg, #0b57af 0%, #043873 100%);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(11, 87, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.products-cta-card::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}


/* End of Custom Styles */
