/* index */
:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --orange: #ff6600;
    --light-bg: #f8f9fa;
    --dark-bg: #0f172a
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden
}

a {
    text-decoration: none;
}

.topbar {
    background-color: var(--dark-bg);
    color: #f60;
    padding: 8px 0;
    font-size: 16px
}

.top-right {
    display: flex;
    align-items: center;
    gap: 35px
}

.social-links {
    display: flex;
    align-items: center;
    gap: 14px
}

.topbar .social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px
}

.topbar .social-links a:hover {
    color: #ff6600
}

.lang-switch {
    display: flex;
    gap: 1px
}

.pill-lang {
    display: flex;
    background: rgb(255 255 255 / .15);
    border-radius: 30px;
    padding: 3px;
    border: 1px solid rgb(255 102 0 / .45)
}

.pill-lang .lang-btn {
    flex: 1;
    text-align: center;
    padding: 6px 14px;
    background: #fff0;
    border: none;
    color: #f60;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease
}

.pill-lang .lang-btn.active {
    background: #f60;
    color: #fff !important;
    box-shadow: 0 4px 12px rgb(255 102 0 / .35)
}

@media (hover:hover) {
    .pill-lang .lang-btn:hover {
        background: rgb(255 102 0 / .15)
    }
}

@media (max-width:575px) {
    .pill-lang {
        padding: 2px
    }

    .pill-lang .lang-btn {
        padding: 5px 10px;
        font-size: 12px
    }
}

@media (max-width:575px) {
    .social-links {
        display: none !important
    }

    .top-right {
        gap: 10px
    }
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgb(0 0 0 / .1);
    padding: 10px 0
}

.navbar-brand img {
    height: 68px
}

.navbar-nav {
    align-items: center
}

.navbar-nav .nav-link {
    color: #FFF;
    font-weight: 500;
    padding: 8px 12px;
    margin: 0 12px;
    font-size: 18px;
    white-space: nowrap
}

.navbar-nav .nav-link:hover {
    color: var(--orange)
}



.navbar-nav .dropdown-menu {
    font-size: 14px;
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgb(0 0 0 / .15);
    padding: 15px 0;
    margin-top: 10px;
    transform-origin: top;
    animation: dropdownSlide 0.4s ease;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgb(255 255 255 / .95), rgb(255 255 255 / .98))
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(.95)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.navbar-nav .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgb(0 0 0 / .05)
}

.navbar-nav .dropdown-item {
    padding: 10px 25px;
    color: var(--dark-bg);
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 3px 10px;
    position: relative;
    overflow: hidden
}

.navbar-nav .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--orange);
    transform: scaleY(0);
    transition: transform 0.3s ease
}

.navbar-nav .dropdown-item:hover {
    background: linear-gradient(90deg, rgb(255 102 0 / .1), transparent);
    color: var(--orange);
    transform: translateX(5px);
    padding-left: 30px
}

.navbar-nav .dropdown-item:hover::before {
    transform: scaleY(1)
}

.navbar-nav .dropdown-item:active {
    background: rgb(255 102 0 / .15)
}

@media (min-width:992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block
    }

    .navbar-nav .dropdown-menu {
        display: none
    }
}

.navbar-nav .dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    transform-origin: top;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    visibility: hidden;
    z-index: 1055
}

.navbar-nav .dropdown.show>.dropdown-menu,
.navbar-nav .dropdown:hover>.dropdown-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible
}

.navbar-nav .dropdown-menu::before {
    top: -6px;
    left: 20px
}

.navbar-nav .dropdown {
    --dropdown-hide-delay: 150ms
}

@media (min-width:992px) {
    .navbar-nav .dropdown-menu {
        display: block !important
    }
}

.dropdown-wrapper {
    position: relative;
    display: inline-block
}

.dropdown-wrapper .custom-menu {
    display: block;
    position: absolute;
    top: calc(100% + 2px);
    left: 70%;
    transform-origin: top center;
    transform: translateX(-50%) translateY(-8px) scale(.98);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease;
    min-width: 220px;
    z-index: 1100
}

.dropdown-wrapper .custom-menu::before {
    left: calc(50% - 6px);
    top: -6px
}

.dropdown-wrapper:hover>.custom-menu,
.dropdown-wrapper.show>.custom-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1)
}

.dropdown-wrapper.match-button .custom-menu {
    min-width: 0;
    width: max-content
}

.dropdown-wrapper.align-right .custom-menu {
    left: auto;
    right: 0;
    transform-origin: top right
}

.dropdown-wrapper.align-right .custom-menu::before {
    left: auto;
    right: 20px
}

.dropdown-wrapper .dropdown-item {
    padding: 10px 25px;
    color: var(--dark-bg);
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 3px 10px;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    background: #fff0
}

.dropdown-wrapper .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--orange);
    transform: scaleY(0);
    transition: transform 0.3s ease
}

.dropdown-wrapper .dropdown-item:hover {
    background: linear-gradient(90deg, rgb(255 102 0 / .1), transparent);
    color: var(--orange);
    transform: translateX(5px);
    padding-left: 30px
}

.dropdown-wrapper .dropdown-item:hover::before {
    transform: scaleY(1)
}

@media (max-width:991px) {
    .navbar-nav .dropdown-menu {
        border-radius: 8px;
        margin: 10px 0;
        box-shadow: inset 0 2px 10px rgb(0 0 0 / .05);
        background: rgb(248 249 250 / .95)
    }

    .navbar-nav .dropdown-menu::before {
        display: none
    }

    .navbar-nav .dropdown-item {
        margin: 2px 5px
    }
}

.btn-apply {
    /* background-color: #052c65; */
    background-color: #05439d;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    margin-left: 8px;
    font-size: 15px;
    white-space: nowrap
}

.btn-register {
    background-color: #f60;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    margin-left: 8px;
    font-size: 15px;
    white-space: nowrap
}

.btn-apply:hover {
    background-color: #1d3a99;
    color: #fff
}

.btn-register:hover {
    background-color: #e78009;
    color: #fff
}

.navbar-actions {
    display: flex;
    align-items: center;
    flex-wrap: nowrap
}

.navbar-leader-img {
    width: 50px;
    height: auto;
    object-fit: contain;
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0 6px
}

@media (max-width:767px) {
    .navbar-leader-img {
        width: 36px;
        margin: 0 4px
    }
}

@media (max-width:1400px) {
    .navbar-nav .nav-link {
        padding: 8px 10px;
        margin: 0 10px;
        font-size: 21px
    }

    .btn-apply,
    .btn-register {
        padding: 7px 14px;
        font-size: 12px
    }

    .navbar-brand img {
        height: 40px
    }
}

@media (max-width:1200px) {
    .navbar-nav .nav-link {
        padding: 8px 8px;
        font-size: 13px
    }

    .btn-apply,
    .btn-register {
        padding: 6px 12px;
        font-size: 12px;
        margin-left: 5px
    }

    .user-icons {
        gap: 5px;
        margin-left: 10px !important
    }

    .user-icon {
        width: 30px;
        height: 30px
    }

    .user-icon i {
        font-size: 14px
    }
}

@media (max-width:991px) {
    .navbar {
        padding: 10px 0
    }

    .navbar-collapse {
        margin-top: 15px;
        max-height: 70vh;
        overflow-y: auto
    }

    .navbar-nav {
        align-items: flex-start
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
        margin: 2px 0;
        font-size: 14px;
        width: 100%
    }

    .navbar-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 15px;
        gap: 10px
    }

    .btn-apply,
    .btn-register {
        width: 100%;
        margin-left: 0;
        padding: 10px 20px;
        font-size: 14px
    }

    .user-icons {
        margin-left: 0 !important;
        gap: 10px
    }

    .user-icon {
        width: 35px;
        height: 35px
    }

    .user-icon i {
        font-size: 16px
    }
}

@media (max-width:576px) {
    .navbar-brand img {
        height: 35px
    }

    .navbar-toggler {
        padding: 5px 10px;
        font-size: 1.1rem
    }
}

@media (max-width:991px) {
    .navbar-collapse {
        position: fixed;
        inset: 72px 0 0 0;
        background: #fff;
        z-index: 1300;
        padding: 18px 16px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 12px 40px rgb(10 10 10 / .12);
        transition: transform .25s ease, opacity .25s ease
    }

    .navbar-collapse:not(.mobile-open) {
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        height: 0
    }

    .navbar-collapse.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: calc(100vh - 72px)
    }

    .navbar-nav {
        width: 100%;
        display: block
    }

    .navbar-nav .nav-item {
        width: 100%
    }

    .navbar-nav .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 10px;
        width: 100%
    }

    .navbar-nav .dropdown .dropdown-menu {
        position: static !important;
        display: block !important;
        box-shadow: none;
        background: #fff0;
        padding: 6px 0 12px 0;
        margin: 0;
        visibility: visible;
        opacity: 1;
        transform: none;
        pointer-events: auto
    }

    .navbar-nav .dropdown-item {
        padding: 12px 18px;
        margin: 6px 0;
        border-radius: 8px;
        background: rgb(248 249 250 / .95)
    }

    .navbar-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 12px
    }

    .navbar-actions .btn-apply,
    .navbar-actions .btn-register {
        width: 100%;
        margin-left: 0
    }

    .dropdown-wrapper .custom-menu {
        position: static !important;
        display: block !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        visibility: visible !important;
        margin: 8px 0 0 0 !important;
        padding: 0 !important;
        min-width: 0 !important;
        box-shadow: none !important;
        background: transparent !important
    }

    .dropdown-wrapper .dropdown-item {
        margin: 6px 0;
        padding: 10px 16px
    }

    .hero-slide,
    .row.align-items-center {
        min-height: 320px !important
    }

    .hero-content h1 {
        font-size: 1.6rem !important;
        line-height: 1.2
    }

    .hero-content p {
        font-size: 0.95rem !important
    }

    .navbar-nav .dropdown-menu::before,
    .dropdown-wrapper .custom-menu::before {
        display: none
    }

    .container,
    .navbar,
    .topbar {
        z-index: 1400
    }

    .navbar-nav .nav-item+.nav-item {
        border-top: 1px solid rgb(15 23 42 / .04)
    }

    .navbar-toggler {
        z-index: 1500
    }

    body.mobile-nav-open {
        overflow: hidden
    }
}

@media (max-width:991px) {
    .navbar-nav .dropdown .dropdown-menu {
        position: static !important;
        display: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 6px 0 12px 0 !important;
        margin: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important
    }

    .navbar-nav .dropdown.show>.dropdown-menu {
        display: block !important
    }

    .dropdown-wrapper .custom-menu {
        position: static !important;
        display: none !important;
        margin: 8px 0 0 0 !important;
        padding: 0 !important;
        min-width: 0 !important;
        box-shadow: none !important;
        background: transparent !important
    }

    .dropdown-wrapper.show>.custom-menu {
        display: block !important
    }

    .navbar-nav .nav-link {
        cursor: pointer
    }

    .navbar-collapse.mobile-open {
        height: calc(100vh - 72px);
        overflow-y: auto
    }
}
.navbar {
    background-color: #0f172a !important;
}

@media (max-width: 991px) {
    /* Use Bootstrap's .show instead of custom .mobile-open */
    .navbar-collapse {
        position: fixed;
        inset: 72px 0 0 0;
        background: #fff;
        z-index: 1300;
        padding: 18px 16px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 12px 40px rgb(10 10 10 / .12);
        transition: transform .25s ease, opacity .25s ease;
    }

    .navbar-collapse:not(.show) {
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        height: 0;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: calc(100vh - 72px);
    }

    /* Make text visible on white background */
    .navbar-nav .nav-link {
        color: #0f172a;      /* dark text on white */
    }

    .navbar-nav .nav-link:hover {
        color: var(--orange);
    }

    .navbar-nav .dropdown-item {
        color: #0f172a;
    }
}

/* === MOBILE DROPDOWN STYLE – FULLY RESPONSIVE === */
/* === MOBILE NAV – CLEAN & RESPONSIVE === */
/* === MOBILE NAV – COMPACT VERSION === */
@media (max-width: 991px) {

    /* Dark bar */
    .navbar {
        background-color: #0f172a !important;
        padding: 6px 0;
    }

    .navbar > .container-fluid {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    /* Smaller round hamburger */
    .navbar-toggler {
        order: 1;
        margin-left: 0;
        padding: 4px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1.5px solid #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        box-shadow: none;
    }

    .navbar-toggler-icon {
        width: 18px;
        height: 18px;
        background-size: 18px 18px;
        background-repeat: no-repeat;
        background-position: center;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M5 7h20M5 15h20M5 23h20'/%3E%3C/svg%3E");
    }

    /* Dark panel */
    .navbar-collapse {
        position: absolute;
        inset: 23px 0 0 0;
        background-color: #0f172a;
        z-index: 1300;
        padding: 12px 14px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 10px 30px rgb(10 10 10 / .4);
        transition: transform .25s ease, opacity .25s ease;
    }

    .navbar-collapse:not(.show) {
        transform: translateY(-6px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        height: 0;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: calc(100vh - 60px);
    }

    /* Main menu items – smaller */
    .navbar-nav {
        width: 100%;
    }

    .navbar-nav .nav-link {
        color: #ffffff;
        display: flex;
        align-items: center;
        padding: 8px 0;
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        width: 100%;
    }

    .navbar-nav .nav-link:hover {
        color: #ffffff;
    }

    /* + / – on right */
    .navbar-nav .dropdown-toggle::after {
        content: "+";
        border: 0;
        margin-left: auto;
        font-size: 15px;
        font-weight: 600;
        line-height: 1;
    }

    .navbar-nav .dropdown.show > .nav-link.dropdown-toggle::after {
        content: "–";
    }

    /* Submenu */
    .navbar-nav .dropdown .dropdown-menu {
        position: static !important;
        display: none !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 3px 0 6px 0 !important;
        margin: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        width: 100%;
    }

    .navbar-nav .dropdown.show > .dropdown-menu {
        display: block !important;
    }

    .navbar-nav .dropdown-item {
        padding: 5px 0 5px 14px;
        margin: 1px 0;
        border-radius: 0;
        background: transparent;
        color: #ffffff;
        font-size: 12px;
    }

    /* Buttons – less tall */
    .navbar-actions {
        width: 100%;
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .navbar-actions .btn-apply,
    .navbar-actions .btn-register {
        width: 100%;
        margin-left: 0;
        padding: 8px 14px;
        font-size: 13px;
    }
}



/* Leader bar - Logo and PM/CM section */
/* ===== LEADER BAR - GIFW COMPLIANT ===== */

/* ===== TOP LEADER BAR ===== */
.leader-bar {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1400;
    padding: 0;
}

/* Main row */
.bar-row {
    display: flex;
    justify-content: space-between;
    align-items: center !important;   /* CENTER logo vertically */
    min-height: 88px;
    padding: 0 !important;          /* remove bootstrap vertical padding */
}

/* ===== LOGO AREA ===== */
.leader-brand {
    display: flex;
    align-items: center;            /* logo + text vertically centered */
    flex-shrink: 0;
}

.brand-mark {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
}

.brand-text .t1 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #003366;
    letter-spacing: 0.5px;
}

.brand-text .subtext {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 400;
}

/* ===== LEADER GROUP (PM / CM) ===== */
.leader-group {
    display: flex;
    align-items: flex-end;          /* leader blocks also bottom-aligned */
    gap: 2rem;
    flex-shrink: 0;
}

/* Individual leader block: text + photo in a row */
.leader-item {
    display: flex;
    align-items: center;            /* text vertically centered to photo */
    gap: 0.25rem;                   /* small, positive gap */
    white-space: nowrap;
}

.leader-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.leader-name {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    color: #003366;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
}

.leader-designation {
    font-size: 0.75rem;
    line-height: 1.1;
    color: #666666;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
}

/* ===== SHARED PHOTO STYLES ===== */
.leader-photo {
    width: auto;
    border-radius: 0;
    object-fit: cover;
    border: none;
    flex-shrink: 0;
    display: block;
    image-rendering: high-quality;
    -webkit-user-select: none;
    user-select: none;
    transition: opacity 0.2s ease;
    align-self: flex-end;           /* make image bottom touch navbar */
}

.leader-photo:hover {
    opacity: 0.9;
}

/* Base (desktop-ish) sizes */
.leader-photo-pm {
    height: 90px;                   /* PM bigger */
}

.leader-photo-cm {
    height: 80px;                   /* CM slightly smaller */
}

/* ===== TABLET ≥ 768px ===== */
@media (min-width: 768px) {
    .bar-row {
        min-height: 96px;
    }

    .brand-mark {
        height: 60px;
    }

    .brand-text .t1 {
        font-size: 1.6rem;
    }

    .brand-text .subtext {
        font-size: 1rem;
    }

    .leader-name {
        font-size: 1rem;
    }

    .leader-designation {
        font-size: 0.8rem;
    }

    .leader-photo-pm {
        height: 100px;
    }

    .leader-photo-cm {
        height: 88px;
    }
}

/* ===== DESKTOP ≥ 1024px ===== */
@media (min-width: 1024px) {
    .bar-row {
        min-height: 110px;
    }

    .brand-mark {
        height: 80px;
    }

    .brand-text .t1 {
        font-size: 2rem;
        padding: 4px;
    }

    .brand-text .subtext {
        font-size: 1.3rem;
        padding: 6px;
    }

    .leader-photo-pm {
        height: 113px;              /* like your screenshot */
    }

    .leader-photo-cm {
        height: 95px;              /* slightly smaller, still touching bottom */
    }

    .leader-name {
        font-size: 1.1rem;
    }

    .leader-designation {
        font-size: 0.9rem;
    }
}

/* ===== SMALL SCREENS < 768px ===== */
@media (max-width: 767.98px) {
    .leader-bar {
        padding: 0.5rem 0;
    }

    .bar-row {
        align-items: center;
        min-height: 60px;
    }

    .brand-mark {
        height: 40px;
    }

    .brand-text .t1 {
        font-size: 1.3rem;
    }

    .brand-text .subtext {
        font-size: 0.8rem;
    }

    /* Hide PM/CM on mobile */
    .leader-group {
        display: none !important;
    }
}










.main-hero-section {
    position: relative;
    color: #fff
}

.hero-slide {
    position: relative;
    width: 100%
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out
}

.carousel-fade .carousel-item.active {
    opacity: 1
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.2s backwards
}

.hero-content .mt-4 {
    animation: fadeInUp 1s ease 0.4s backwards
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--orange);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    animation: pulse 2s infinite
}

.play-button:hover {
    transform: scale(1.1);
    animation: none
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgb(255 102 0 / .7)
    }

    50% {
        box-shadow: 0 0 0 20px #fff0
    }
}

.play-button i {
    font-size: 30px;
    color: #fff;
    margin-left: 5px
}

.carousel-indicators {
    bottom: 30px
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgb(255 255 255 / .5);
    border: 2px solid #fff
}

/* .carousel-indicators button.active {
    background-color: var(--orange);
    border-color: var(--orange)
} */

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgb(255 255 255 / .2);
    border: 2px solid rgb(255 255 255 / .8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: .1;
    transition: all 0.3s
}

.carousel-control-prev {
    left: 30px
}

.carousel-control-next {
    right: 30px
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: rgb(255 255 255 / .4);
    transform: translateY(-50%) scale(1.1)
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px
}

@media (max-width:992px) {
    .hero-content h1 {
        font-size: 2.5rem
    }

    .hero-content p {
        font-size: 1rem
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px
    }

    .carousel-control-prev {
        left: 15px
    }

    .carousel-control-next {
        right: 15px
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px
    }
}

@media (max-width:768px) {
    .hero-content h1 {
        font-size: 2rem
    }

    .hero-content p {
        font-size: .95rem
    }

    .hero-slide {
        min-height: 500px !important
    }

    .row.align-items-center {
        min-height: 500px !important
    }

    .btn-lg {
        padding: 12px 25px !important;
        font-size: .95rem
    }

    .carousel-indicators {
        bottom: 15px
    }
}

@media (max-width:576px) {
    .hero-content h1 {
        font-size: 1.75rem
    }

    .hero-content p {
        font-size: .9rem;
        max-width: 100%
    }

    .hero-slide {
        min-height: 450px !important
    }

    .row.align-items-center {
        min-height: 450px !important
    }

    .btn-lg {
        padding: 10px 20px !important;
        font-size: .9rem;
        display: block;
        width: 100%;
        margin-bottom: 10px
    }

    .btn-lg.me-3 {
        margin-right: 0 !important
    }
}

/* Container */
/* base */
.info-marquee {
  width: 100%;
  background: #ff6600;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Left label area */
.marquee-header {
  background: #0f172a;
  padding: 10px 95px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  z-index: 2;
  gap: 8px;
}

/* Title shown on desktop */
.marquee-header .title {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  display: inline-block;
}

/* Bell hidden on desktop by default */
.marquee-header .bell-icon {
  display: none;
  line-height: 0;
}

/* Wrapper and marquee line */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding-left: 20px;
}

.marquee-content {
  display: inline-block;
  animation: scrollMarquee 70s linear infinite;
  animation-delay: 1s;
}

.marquee-content span {
  margin-right: 80px;
  color: #fff;
  font-size: 14px;
}

/* Pause on hover / touch */
.marquee-wrapper:hover .marquee-content,
.marquee-wrapper:focus-within .marquee-content {
  animation-play-state: paused;
}

/* keyframes */
@keyframes scrollMarquee {
  0%   { transform: translateX(0); }
  10%  { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* =================
   MOBILE: <= 576px
   ================= */
@media (max-width: 576px) {

  /* smaller header: reduce padding and remove angled clip for compactness */
  .marquee-header {
    padding: 8px 12px;
    clip-path: none;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    min-width: 54px;        /* small square-ish label */
    justify-content: center;
  }

  /* hide word "Notification" */
  .marquee-header .title {
    display: none;
  }

  /* show bell icon in small size */
  .marquee-header .bell-icon {
    display: inline-block;
  }
  .marquee-header .bell-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: #d28d0f;
  }

  /* shrink marquee text and gaps for mobile */
  .marquee-content span {
    margin-right: 30px;
    font-size: 12px;
  }

  /* reduce initial pause and speed a touch for readability on small screens */
  .marquee-content {
    animation-duration: 24s;
    animation-delay: 1s;
  }

  /* reduce left padding so text doesn't feel cut off */
  .marquee-wrapper {
    padding-left: 12px;
  }
}

/* optional: tablet tweak so header padding is moderate */
@media (min-width: 577px) and (max-width: 768px) {
  .marquee-header { padding: 9px 40px; }
  .marquee-content span { margin-right: 50px; font-size: 13px; }
}




.about-section {
    padding: 80px 0;
    background-color: #fff
}

.section-tag {
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}


.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 30px
}

.about-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgb(0 0 0 / .1)
}

.why-odisha {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: #fff;
    position: relative;
    overflow: hidden
}

.why-odisha::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(https://images.unsplash.com/photo-1518770660439-4636190af475?w=800) no-repeat center;
    background-size: cover;
    opacity: .1
}

.why-odisha-content {
    position: relative;
    z-index: 2
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px
}

.feature-box {
    background: rgb(255 255 255 / .1);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / .2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--orange);
    transform: scaleY(0);
    transition: transform 0.3s ease
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgb(255 255 255 / .15);
    box-shadow: 0 10px 30px rgb(0 0 0 / .3)
}

.feature-box:hover::before {
    transform: scaleY(1)
}

.feature-box i {
    font-size: 24px;
    color: var(--orange);
    margin-bottom: 12px;
    display: block
}

.feature-box h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff
}

.feature-box p {
    font-size: 14px;
    margin: 0;
    color: rgb(255 255 255 / .8)
}






.blog-section {
    padding: 80px 0;
    background-color: #f5f5f5
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgb(0 0 0 / .08);
    transition: all 0.3s ease;
    /* height: 100% */
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgb(0 0 0 / .15)
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease
}

.blog-card:hover .blog-image img {
    transform: scale(1.1)
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #28a745;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px
}

.blog-logo {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center
}

.blog-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.blog-content {
    padding: 25px
}

.blog-date {
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-bg);
    line-height: 1.4;
    margin: 0
}

.blog-card-horizontal {
    display: flex;
    flex-direction: row;
    height: auto
}

.blog-card-horizontal .blog-image {
    width: 45%;
    height: auto;
    min-height: 350px
}

.blog-card-horizontal .blog-content {
    width: 55%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.blog-badge-inline {
    background-color: var(--secondary-blue);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-block;
    margin-bottom: 15px
}

.vlsi-trends {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0
}

.vlsi-trends li {
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px
}

.vlsi-trends li i {
    color: #28a745;
    font-size: 16px
}

@media (max-width:768px) {
    .blog-card-horizontal {
        flex-direction: column
    }

    .blog-card-horizontal .blog-image {
        width: 100%;
        height: 250px;
        min-height: auto
    }

    .blog-card-horizontal .blog-content {
        width: 100%;
        padding: 20px
    }

    .blog-image {
        height: 220px
    }

    .blog-title {
        font-size: 16px
    }
}

/* 70% / 30% layout tweaks */
.blog-section .row.g-4.align-items-stretch > [class*="col-lg-"] {
    display: flex;
}

.blog-section .col-lg-8 > .row {
    width: 100%;
}

/* Media Link card */
.media-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.media-card-header {
    padding: 20px 25px 10px;
    border-bottom: 1px solid #eee;
}

.media-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-bg);
    margin: 8px 0 0;
}

.media-card-body {
    padding: 15px 25px 25px;
    overflow: hidden;
    position: relative;
    height: 100%;
    max-height: 320px; /* adjust as you like */
}

/* Auto-scrolling list */
.media-scroller {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: mediaScroll 18s linear infinite;
}

.media-scroller li {
    font-size: 14px;
    line-height: 1.5;
}

.media-scroller li a {
    text-decoration: none;
    color: #333;
}

.media-scroller li a:hover {
    text-decoration: underline;
}

/* Pause on hover */
.media-card-body:hover .media-scroller {
    animation-play-state: paused;
}

/* Keyframes for vertical auto scroll */
@keyframes mediaScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Responsive behaviour */
@media (max-width: 991.98px) {
    /* Stack: first blogs full width, then media full width */
    .blog-section .row.g-4.align-items-stretch > [class*="col-lg-"] {
        display: block;
    }

    .media-card-body {
        max-height: 260px;
    }
}

/* You can keep your existing blog-section, blog-card, blog-image, etc. CSS as-is */

/* Make outer row true one-line layout on desktop */
.blogs-wrapper {
    /* uses Bootstrap cols, just ensures same height */
}

.blogs-wrapper > [class*="col-lg-"] {
    display: flex;
}

.blogs-wrapper > [class*="col-lg-"] > * {
    width: 100%;
}

/* Three cards in one row & compact size */
.blog-cards-row .compact-card {
    height: 100%;
}

.blog-section .blog-image {
    height: 180px; /* compressed height */
}

@media (max-width: 767.98px) {
    .blog-section .blog-image {
        height: 160px;
    }
}

/* ---------- Decorative Media Card ---------- */

.media-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(30, 58, 138, 0.15);
    background: radial-gradient(circle at top left, #eef2ff 0, #ffffff 45%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.media-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 55%);
    pointer-events: none;
}

.media-card-header {
    position: relative;
    z-index: 1;
    padding: 18px 22px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.media-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1d4ed8, #22c55e);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.media-icon-circle i {
    color: #fff;
    font-size: 18px;
}

.media-subtitle {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #2563eb;
}

.media-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-bg);
    margin: 4px 0 0;
}

/* Body with auto scroll */
.media-card-body {
    position: relative;
    z-index: 1;
    padding: 15px 22px 20px;
    overflow: hidden;
    max-height: 260px;
}

.media-scroller {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: mediaScroll 18s linear infinite;
}

.media-scroller li {
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    padding-left: 18px;
}

.media-scroller li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    position: absolute;
    left: 0;
    top: 7px;
}

.media-scroller li a {
    text-decoration: none;
    color: #111827;
}

.media-scroller li a:hover {
    text-decoration: underline;
}

/* Pause scroll on hover */
.media-card-body:hover .media-scroller {
    animation-play-state: paused;
}

@keyframes mediaScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* ---------- Responsive behaviour ---------- */

@media (max-width: 991.98px) {
    /* Stack: blogs first, media below */
    .blogs-wrapper > [class*="col-lg-"] {
        display: block;
        margin-bottom: 15px;
    }

    .media-card-body {
        max-height: 220px;
    }
}




@media (max-width:768px) {
    .why-odisha {
        padding: 40px 0
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .feature-box {
        padding: 16px
    }
}

@media (max-width:576px) {
    .why-odisha {
        padding: 30px 0
    }
}

.portfolio-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden
}

.portfolio-slider {
    width: 100%;
    /* overflow: hidden; */
    position: relative;
    margin: 40px 0
}

.portfolio-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: max-content
}

.portfolio-track:hover {
    animation-play-state: paused
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.portfolio-item {
    flex-shrink: 0;
    width: 250px;
    height: 140px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgb(0 0 0 / .05)
}

.portfolio-item:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgb(0 0 0 / .1)
}

.portfolio-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    color: #fff;
    transform: translateX(5px)
}

@media (max-width:768px) {
    .portfolio-section {
        padding: 60px 0
    }

    .portfolio-item {
        width: 200px;
        height: 120px
    }

    .portfolio-track {
        gap: 20px
    }
}

.projects-events {
    padding: 80px 0;
    background: linear-gradient(to bottom, #e0f2fe, #bae6fd)
}

.card-custom {
    /* background-color: var(--dark-bg); */
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(to bottom right, rgba(0, 20, 40, 0.90), rgba(0, 12, 30, 0.95)),
        url('../images/about_chip.jpg');     /* place your chip image here */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-custom2 {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    color: #fff;
    position: relative;
    overflow: hidden
}

.card-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px
}

.card-title-custom {
    font-size: 1.5rem;
    font-weight: 700
}

.view-all-icon {
    width: 40px;
    height: 40px;
    background-color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.project-item,
.event-item {
    background-color: rgb(255 255 255 / .1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center
}

.project-icon,
.event-icon {
    width: 40px;
    height: 40px;
    background-color: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0
}

.item-content h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600
}

.item-content p {
    margin: 5px 0 0 0;
    font-size: 12px;
    color: rgb(255 255 255 / .7)
}

.social-card {
    background-color: #fffffd;
    border-radius: 12px;
    border: 1px solid rgb(94 82 64 / .12);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1);
    width: 100%;
    max-width: 500px;
    max-height: 540px;
    overflow: hidden
}

.social-header {
    background: linear-gradient(135deg, #171718 0%, #161718 33%, #212529 66%, #ff6600 100%);
    padding: var(--space-16);
    display: flex;
    align-items: center;
    gap: var(--space-12)
}

.social-header h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px
}

.social-icon {
    width: 24px;
    height: 24px
}

.social-buttons {
    display: flex;
    gap: 0;
    background: #fffffd;
    border-bottom: 1px solid rgb(94 82 64 / .2)
}

.social-btn {
    flex: 1;
    padding: 16px;
    border: none;
    background: #fffffd;
    color: #13343b;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-bottom: 3px solid #fff0;
    position: relative
}

.social-btn:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgb(94 82 64 / .2)
}

.social-btn svg {
    width: 20px;
    height: 20px
}

.social-btn:hover {
    background: rgb(33 128 141 / .05)
}

.social-btn.active {
    color: #21808d;
    border-bottom-color: #21808d;
    background: rgb(33 128 141 / .08)
}

.social-btn.facebook.active {
    color: #1877F2;
    border-bottom-color: #1877F2
}

.social-btn.instagram.active {
    color: #E4405F;
    border-bottom-color: #E4405F
}

.social-btn.twitter.active {
    color: #1DA1F2;
    border-bottom-color: #1DA1F2
}

.feed-container {
    height: 430px;
    overflow-y: auto;
    padding: 16px
}

.feed-container::-webkit-scrollbar {
    width: 8px
}

.feed-container::-webkit-scrollbar-track {
    background: #fffffd
}

.feed-container::-webkit-scrollbar-thumb {
    background: rgb(94 82 64 / .2);
    border-radius: 4px
}

.feed-container::-webkit-scrollbar-thumb:hover {
    background: #626c71
}

.feed-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: none
}

.feed-iframe.active {
    display: block
}

.feed-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: #626c71
}

.feed-placeholder svg {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    opacity: .3
}

.feed-placeholder h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #13343b
}

.feed-placeholder p {
    font-size: 14px
}

@media (max-width:640px) {
    body {
        padding: 12px
    }

    .social-card {
        max-width: 100%
    }

    .social-btn {
        padding: 12px;
        font-size: 13px
    }

    .social-btn svg {
        width: 18px;
        height: 18px
    }

    .social-btn span {
        display: none
    }

    .feed-container {
        height: 400px
    }
}

@media (max-width:380px) {
    .social-header h2 {
        font-size: 16px
    }

    .feed-container {
        height: 350px
    }
}

/* Make all three cards in projects-events same height in the row */
.projects-events .row.align-items-stretch > [class*="col-"] {
    display: flex;
}

.projects-events .card-custom,
.projects-events .social-card {
    /* height: 100%; */
    display: flex;
    flex-direction: column;
}


.partners-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden
}

.partners-slider {
    width: 100%;
    /* overflow: hidden; */
    position: relative;
    margin: 40px 0
}

.partners-track {
    display: flex;
    gap: 30px;
    animation: scrollPartners 25s linear infinite;
    width: max-content
}

.partners-track:hover {
    animation-play-state: paused
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.partner-card {
    flex-shrink: 0;
    width: 220px;
    height: 120px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgb(0 0 0 / .05)
}

.partner-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 20px rgb(0 0 0 / .1);
    transform: translateY(-5px)
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

@media (max-width:768px) {
    .partners-section {
        padding: 60px 0
    }

    .partner-card {
        width: 180px;
        height: 100px;
        padding: 20px
    }

    .partners-track {
        gap: 20px
    }
}

.footer {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 60px 0 20px
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px
}

.footer ul {
    list-style: none;
    padding: 0
}

.footer ul li {
    margin-bottom: 10px
}

.footer ul li a {
    color: rgb(255 255 255 / .7);
    text-decoration: none;
    font-size: 14px
}

.footer ul li a:hover {
    color: var(--orange)
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: rgb(255 255 255 / .1);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s
}

.social-icons a:hover {
    background-color: var(--orange)
}

.copyright {
    border-top: 1px solid rgb(255 255 255 / .1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgb(255 255 255 / .5)
}

.newsletter-form {
    display: flex;
    margin-top: 20px
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px 0 0 5px
}

.newsletter-form button {
    background-color: var(--orange);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 0 5px 5px 0;
    cursor: pointer
}

.user-icons {
    display: flex;
    align-items: center;
    gap: 10px
}

.user-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    transition: transform 0.3s ease
}

.user-icon:hover {
    transform: scale(1.1);
    border-color: var(--orange)
}

.user-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media (max-width:1200px) {
    .user-icon {
        width: 45px;
        height: 45px
    }
}

@media (max-width:991px) {
    .user-icon {
        width: 60px;
        height: 60px
    }
}

@media (max-width:576px) {
    .user-icon {
        width: 50px;
        height: 50px
    }
}




/* Back to top button - responsive & accessible */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #05439d;    /* primary / apply color */
  color: #fff;
  border: 0;
  box-shadow: 0 6px 18px rgba(3, 6, 23, 0.25);
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

/* visible state */
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* hover/focus */
.back-to-top:hover,
.back-to-top:focus {
  background-color: #063a86;
  outline: none;
  box-shadow: 0 8px 22px rgba(3, 6, 23, 0.32);
}

/* icon size */
.back-to-top i {
  font-size: 20px;
  line-height: 1;
}

/* smaller on very small screens */
@media (max-width: 480px) {
  .back-to-top {
    right: 12px;
    bottom: 16px;
    width: 36px;
    height: 36px;
  }
  .back-to-top i { font-size: 18px; }
}
/* Blog Section */
.hero-section {
    background: url(../images/wafer.jpg) center/cover no-repeat;
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(30 64 175 / .7), rgb(30 64 175 / .7)), radial-gradient(circle at 20% 50%, rgb(59 130 246 / .3), transparent 50%), radial-gradient(circle at 80% 80%, rgb(59 130 246 / .3), transparent 50%);
    opacity: .9
}

.hero-content {
    position: relative;
    z-index: 1
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block
}

.hero-underline {
    width: 100px;
    height: 4px;
    background-color: var(--orange);
    margin: 0 auto 20px
}

.notifications-section {
    padding: 60px 0;
    background-color: #fff
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-align: center
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--orange);
    margin: 0 auto 50px
}

@media (max-width:768px) {
    .why-odisha {
        padding: 40px 0
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .feature-box {
        padding: 16px
    }
}

@media (max-width:576px) {
    .why-odisha {
        padding: 30px 0
    }
}

.blog-link {
    display: block
}

.blog-link:hover .blog-card {
    transform: translateY(-6px)
}

/* ============Inner BLOG PAGE LAYOUT ============ */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px
}

header.blog-header {
    position: relative;
    margin-bottom: 24px
}

.hero-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgb(0 0 0 / .03);
    background: #f5f5f5
}

.circle-date {
    position: absolute;
    left: 50%;
    top: 280px;
    transform: translateX(-50%);
    background: #f60;
    color: #fff;
    border-radius: 100%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgb(255 102 0 / .3);
    border: 5px solid #fcfcf9;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    z-index: 3
}

.main-title {
    margin-top: 70px;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    color: #13343b;
    margin-bottom: 16px
}

.category-tags {
    text-align: center;
    font-size: 12px;
    color: #626c71;
    margin-bottom: 24px
}

.blog-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, 360px);
    gap: 24px;
    align-items: flex-start
}

.blog-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgb(0 0 0 / .03);
    padding: 24px;
    border: 1px solid #e6e6e6;
    line-height: 1.7
}

.blog-content h2 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 16px;
    color: #13343b
}

.blog-content p {
    margin-bottom: 16px;
    color: #13343b
}

.blog-link {
    color: #21808d;
    text-decoration: underline;
    word-break: break-word
}

.blog-link:hover {
    color: #29a681
}

.info-box {
    background: #f5f5f5;
    border-left: 4px solid #21808d;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #13343b
}

.info-box strong {
    display: block;
    margin-bottom: 8px
}

.nav-posts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 24px 0;
    gap: 16px
}

.nav-posts-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #21808d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s
}

.nav-posts-link:hover {
    color: #29a681
}

.nav-posts-prev {
    flex-direction: row-reverse
}

.related-posts {
    grid-column: 1 / 2;
    width: 100%
}

.related-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #13343b
}

.related-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px
}

.related-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgb(0 0 0 / .03);
    border: 1px solid #e6e6e6;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    cursor: pointer
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgb(33 128 141 / .12)
}

.related-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    background: #f5f5f5
}

.related-card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.related-card-meta {
    font-size: 11px;
    font-weight: 600;
    color: #626c71;
    text-transform: uppercase;
    letter-spacing: .5px
}

.related-card-title {
    font-size: 14px;
    font-weight: 700;
    margin-top: 8px;
    color: #13343b;
    line-height: 1.4;
    flex-grow: 1
}

.latest-posts {
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px
}

.latest-posts-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #13343b
}

.latest-posts-list {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.latest-post-item {
    display: flex;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e6e6e6;
    transition: all 0.3s;
    align-items: flex-start
}

.latest-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.latest-post-item:hover {
    transform: translateX(4px)
}

.latest-post-img-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5
}

.latest-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.latest-post-number {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 32px;
    height: 32px;
    background: #21808d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgb(0 0 0 / .2)
}

.latest-post-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.latest-post-date {
    font-size: 11px;
    font-weight: 600;
    color: #626c71;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 4px;
    order: 2
}

.latest-post-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    order: 1
}

.latest-post-title a {
    color: #21808d;
    text-decoration: none;
    transition: color 0.3s
}

.latest-post-title a:hover {
    color: #29a681;
    text-decoration: underline
}

.quick-links {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 16px rgb(0 0 0 / .03);
    border: 1px solid #e6e6e6;
    position: sticky;
    top: 100px;
    align-self: flex-start
}

.quick-links-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #13343b
}

.quick-links-list {
    list-style: none;
    padding: 0
}

.quick-links-list li {
    margin: 10px 0
}

.quick-links-list a {
    color: #21808d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: block;
    padding: 6px 0
}

.quick-links-list a:hover {
    color: #29a681;
    text-decoration: underline
}

@media (max-width:991px) {
    .blog-wrapper {
        grid-template-columns: 1fr
    }

    .quick-links {
        position: static;
        top: auto;
        margin-top: 24px;
        width: 100%
    }
}

@media (max-width:550px) {
    .blog-wrapper {
        gap: 16px
    }

    .quick-links {
        margin-top: 16px
    }
}

.reply-section {
    margin-top: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgb(0 0 0 / .03);
    border: 1px solid #e6e6e6;
    padding: 24px;
    grid-column: 1 / 2;
    width: 100%
}

.reply-section h3 {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
    color: #13343b
}

.reply-note {
    font-size: 13px;
    color: #626c71;
    margin-bottom: 16px
}

.reply-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #13343b
}

.form-input,
.form-textarea {
    width: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
    background: #fcfcf9;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #13343b
}

.form-input:focus,
.form-textarea:focus {
    border-color: #21808d;
    outline: none;
    box-shadow: 0 0 0 3px rgb(33 128 141 / .4)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 16px;
    color: #13343b
}

.form-checkbox-label input {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer
}

.post-btn {
    background: #f60;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgb(255 102 0 / .2);
    transition: all 0.3s
}

.post-btn:hover {
    background: #29a681;
    box-shadow: 0 4px 12px rgb(33 128 141 / .25)
}

.post-btn:active {
    transform: scale(.98)
}

#commentStatus {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    display: none
}

#commentStatus.show {
    display: block
}

@media (max-width:991px) {

    .related-posts,
    .reply-section {
        grid-column: 1 / -1;
        width: 100%
    }
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px
}

header.blog-header {
    position: relative;
    margin-bottom: 24px
}

.hero-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgb(0 0 0 / .03);
    background: #f5f5f5
}

.circle-date {
    position: absolute;
    left: 50%;
    top: 280px;
    transform: translateX(-50%);
    background: #f60;
    color: #fff;
    border-radius: 100%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgb(255 102 0 / .3);
    border: 5px solid #fcfcf9;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    z-index: 3
}

.main-title {
    margin-top: 70px;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    color: #13343b;
    margin-bottom: 16px
}

.category-tags {
    text-align: center;
    font-size: 12px;
    color: #626c71;
    margin-bottom: 24px
}

.blog-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, 360px);
    gap: 24px;
    align-items: flex-start
}

.blog-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgb(0 0 0 / .03);
    padding: 24px;
    border: 1px solid #e6e6e6;
    line-height: 1.7
}

.blog-content h2 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 16px;
    color: #13343b
}

.blog-content p {
    margin-bottom: 16px;
    color: #13343b
}

.blog-link {
    color: #21808d;
    text-decoration: underline;
    word-break: break-word
}

.blog-link:hover {
    color: #29a681
}

.info-box {
    background: #f5f5f5;
    border-left: 4px solid #21808d;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #13343b
}

.info-box strong {
    display: block;
    margin-bottom: 8px
}

.nav-posts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 24px 0;
    gap: 16px
}

.nav-posts-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #21808d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s
}

.nav-posts-link:hover {
    color: #29a681
}

.nav-posts-prev {
    flex-direction: row-reverse
}

.related-posts {
    grid-column: 1 / 2;
    width: 100%
}

.related-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #13343b
}

.related-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px
}

.related-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgb(0 0 0 / .03);
    border: 1px solid #e6e6e6;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    cursor: pointer
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgb(33 128 141 / .12)
}

.related-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    background: #f5f5f5
}

.related-card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.related-card-meta {
    font-size: 11px;
    font-weight: 600;
    color: #626c71;
    text-transform: uppercase;
    letter-spacing: .5px
}

.related-card-title {
    font-size: 14px;
    font-weight: 700;
    margin-top: 8px;
    color: #13343b;
    line-height: 1.4;
    flex-grow: 1
}

.latest-posts {
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px
}

.latest-posts-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #13343b
}

.latest-posts-list {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.latest-post-item {
    display: flex;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e6e6e6;
    transition: all 0.3s;
    align-items: flex-start
}

.latest-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.latest-post-item:hover {
    transform: translateX(4px)
}

.latest-post-img-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5
}

.latest-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.latest-post-number {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 32px;
    height: 32px;
    background: #21808d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgb(0 0 0 / .2)
}

.latest-post-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.latest-post-date {
    font-size: 11px;
    font-weight: 600;
    color: #626c71;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 4px;
    order: 2
}

.latest-post-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    order: 1
}

.latest-post-title a {
    color: #21808d;
    text-decoration: none;
    transition: color 0.3s
}

.latest-post-title a:hover {
    color: #29a681;
    text-decoration: underline
}

.quick-links {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 16px rgb(0 0 0 / .03);
    border: 1px solid #e6e6e6;
    position: sticky;
    top: 100px;
    align-self: flex-start
}

.quick-links-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #13343b
}

.quick-links-list {
    list-style: none;
    padding: 0
}

.quick-links-list li {
    margin: 10px 0
}

.quick-links-list a {
    color: #21808d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: block;
    padding: 6px 0
}

.quick-links-list a:hover {
    color: #29a681;
    text-decoration: underline
}

@media (max-width:991px) {
    .blog-wrapper {
        grid-template-columns: 1fr
    }

    .quick-links {
        position: static;
        top: auto;
        margin-top: 24px;
        width: 100%
    }
}

@media (max-width:550px) {
    .blog-wrapper {
        gap: 16px
    }

    .quick-links {
        margin-top: 16px
    }
}

.reply-section {
    margin-top: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgb(0 0 0 / .03);
    border: 1px solid #e6e6e6;
    padding: 24px;
    grid-column: 1 / 2;
    width: 100%
}

.reply-section h3 {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
    color: #13343b
}

.reply-note {
    font-size: 13px;
    color: #626c71;
    margin-bottom: 16px
}

.reply-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #13343b
}

.form-input,
.form-textarea {
    width: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
    background: #fcfcf9;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #13343b
}

.form-input:focus,
.form-textarea:focus {
    border-color: #21808d;
    outline: none;
    box-shadow: 0 0 0 3px rgb(33 128 141 / .4)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 16px;
    color: #13343b
}

.form-checkbox-label input {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer
}

.post-btn {
    background: #f60;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgb(255 102 0 / .2);
    transition: all 0.3s
}

.post-btn:hover {
    background: #29a681;
    box-shadow: 0 4px 12px rgb(33 128 141 / .25)
}

.post-btn:active {
    transform: scale(.98)
}

#commentStatus {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    display: none
}

#commentStatus.show {
    display: block
}

@media (max-width:991px) {

    .related-posts,
    .reply-section {
        grid-column: 1 / -1;
        width: 100%
    }
}

/* Section Team */
.team-section {
    padding: 60px 0;
    background-color: #fff
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-align: center
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--orange);
    margin: 0 auto 40px
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px
}

.team-member {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff0;
    transition: background 0.3s ease;
    border-radius: 8px
}

.team-member:hover {
    background: rgb(30 58 138 / .02)
}

.photo-link {
    flex-shrink: 0;
    text-decoration: none;
    position: relative;
    display: block
}

.photo-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #fff0;
    transition: background 0.3s ease
}

.photo-link:hover::after {
    background: rgb(30 58 138 / .1)
}

.team-member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #fff0
}

.photo-link:hover .team-member-photo {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgb(30 58 138 / .3);
    border-color: var(--orange)
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%
}

.team-member-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.team-member-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
    line-height: 1.3
}

.team-member-role {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
    line-height: 1.4
}

.team-member-position {
    font-size: 12px;
    color: var(--orange);
    font-weight: 600;
    margin-top: 4px
}

.hidden-member {
    display: none
}

.hidden-member.show {
    display: flex;
    animation: fadeInUp 0.4s ease forwards
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.btn-show-more {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgb(30 58 138 / .2)
}

.btn-show-more:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgb(30 58 138 / .3)
}

.btn-show-more .btn-icon {
    transition: transform 0.3s ease
}

.btn-show-more.expanded .btn-icon {
    transform: rotate(180deg)
}

.mt-5 {
    margin-top: 3rem
}

.text-center {
    text-align: center
}

@media (max-width:992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px
    }

    .section-title {
        font-size: 32px
    }

    .team-member {
        padding: 15px
    }

    .team-member-photo {
        width: 70px;
        height: 70px
    }
}

@media (max-width:768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .section-title {
        font-size: 28px
    }

    .team-member {
        padding: 15px;
        gap: 12px
    }

    .team-member-photo {
        width: 65px;
        height: 65px
    }

    .team-member-name {
        font-size: 15px
    }

    .team-member-role {
        font-size: 12px
    }

    .team-member-position {
        font-size: 11px
    }

    .btn-show-more {
        padding: 10px 24px;
        font-size: 14px
    }
}

@media (max-width:576px) {
    .team-member-photo {
        width: 60px;
        height: 60px;
        border-width: 2px
    }

    .team-member {
        padding: 12px
    }
}

/* Portfolio */
.portfolio-section {
    padding: 60px 0;
    background-color: #fff
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-align: center
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--orange);
    margin: 0 auto 50px
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px
}

.portfolio-item {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 150px
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgb(0 0 0 / .1);
    border-color: var(--orange)
}

.portfolio-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease
}

.portfolio-item:hover img {
    filter: grayscale(0%)
}

/* Partner */
.partners-section {
    background: #fff;
    padding: 60px 0 80px;
    color: var(--dark-bg)
}

.partners-block {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px 24px
}

.partners-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 14px
}

.divider {
    height: 2px;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 36px;
    background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-green) 100%);
    opacity: 1;
    border-radius: 2px
}

.partner-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 34px;
    align-items: center;
    justify-items: center;
    padding: 10px 10px 0
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    padding: 6px 12px;
    background: #fff0;
    border-radius: 8px;
    transition: transform .28s ease, filter .28s ease, box-shadow .28s ease
}

.partner-item img {
    max-width: 160px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: .95;
    transition: filter .25s ease, transform .25s ease, opacity .25s ease
}

.partner-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
    opacity: 1;
    box-shadow: 0 8px 24px rgb(14 28 37 / .06)
}

.partners-block+.partners-block {
    margin-top: 36px
}

@media (max-width:1200px) {
    .partner-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px
    }

    .partner-item img {
        max-width: 140px;
        max-height: 60px
    }
}

@media (max-width:900px) {
    .partner-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px
    }

    .divider {
        width: 95%;
        margin-bottom: 28px
    }

    .partners-title {
        font-size: 20px
    }
}

@media (max-width:576px) {
    .partner-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

    .partner-item img {
        max-width: 120px;
        max-height: 56px
    }

    .partners-section {
        padding: 36px 0 50px
    }

    .divider {
        margin-bottom: 18px
    }
}

/* Notification */
.notifications-section {
    padding: 60px 0;
    background-color: #fff
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-align: center
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--orange);
    margin: 0 auto 50px
}

.notification-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px
}

.notification-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgb(0 0 0 / .08)
}

.notification-card.hidden {
    display: none
}

.notification-card.hidden.show {
    display: flex
}

.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    grid-column: 1 / -1
}

.view-more-btn {
    background-color: var(--secondary-blue);
    color: #fff;
    padding: 12px 40px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease
}

.view-more-btn:hover {
    background-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgb(0 0 0 / .15)
}

.notification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgb(0 0 0 / .12);
    border-color: var(--orange)
}

.notification-icon {
    font-size: 48px;
    color: var(--secondary-blue);
    margin-bottom: 20px;
    transition: all 0.3s ease
}

.notification-card:hover .notification-icon {
    color: var(--orange);
    transform: scale(1.1)
}

.notification-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px
}

.notification-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px
}

.notification-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1
}

.view-btn {
    display: inline-block;
    background-color: var(--secondary-blue);
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer
}

.view-btn:hover {
    background-color: var(--orange);
    transform: translateX(4px)
}

.notification-card {
    padding: 20px !important;
    min-height: 220px !important
}

.notification-icon {
    font-size: 38px !important;
    margin-bottom: 12px !important
}

.notification-title {
    font-size: 16px !important;
    margin-bottom: 6px !important
}

.notification-date {
    margin-bottom: 10px !important
}

@media (max-width:1200px) {
    .notification-grid {
        grid-template-columns: repeat(3, 1fr) !important
    }
}

@media (max-width:992px) {
    .notification-grid {
        grid-template-columns: repeat(2, 1fr) !important
    }
}

@media (max-width:575px) {
    .notification-grid {
        grid-template-columns: 1fr !important
    }

    .notification-card {
        min-height: 200px !important;
        padding: 18px !important
    }
}

.pdf-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .7);
    animation: fadeIn 0.3s ease
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.pdf-modal.show {
    display: flex;
    align-items: center;
    justify-content: center
}

.pdf-modal-content {
    background: #fff;
    width: 90%;
    height: 90vh;
    max-width: 1000px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgb(0 0 0 / .3);
    overflow: hidden
}

.pdf-modal-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.pdf-modal-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0
}

.pdf-close-btn {
    background: rgb(255 255 255 / .2);
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease
}

.pdf-close-btn:hover {
    background: rgb(255 255 255 / .3);
    transform: rotate(90deg)
}

.pdf-viewer {
    flex: 1;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f5f5f5
}

.pdf-placeholder {
    text-align: center;
    color: #666
}

.pdf-placeholder-icon {
    font-size: 80px;
    color: var(--secondary-blue);
    margin-bottom: 20px
}

.pdf-placeholder-text {
    font-size: 16px;
    margin-bottom: 10px
}

.pdf-placeholder-file {
    font-size: 14px;
    color: #999
}

/*Gallery */
.ochip-gallery-section {
    padding: 80px 0;
    margin: 60px 0;
    overflow: hidden
}

.ochip-gallery-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgb(59 130 246 / .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.ochip-gallery-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgb(255 102 0 / .06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.container {
    position: relative;
    z-index: 1
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px
}

.gallery-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgb(30 58 138 / .1);
    letter-spacing: -.5px
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500
}

.title-underline {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), #ff8833);
    border-radius: 3px;
    margin: 0 auto
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    perspective: 1200px
}

.gallery-item {
    perspective: 1000px;
    height: 100%;
    animation: fadeInUp 0.6s ease-out forwards
}

.gallery-item.hidden-gallery {
    animation: fadeInUp 0.5s ease-out forwards
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.gallery-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgb(30 58 138 / .12), 0 0 0 1px rgb(30 58 138 / .05);
    transition: all 0.5s cubic-bezier(.34, 1.56, .64, 1);
    transform-style: preserve-3d;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer
}

.gallery-item:hover .gallery-card {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg) scale(1.02);
    box-shadow: 0 30px 60px rgb(30 58 138 / .25), 0 0 0 1px rgb(255 102 0 / .2)
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e7ff 0%, #f3f4f6 100%);
    flex-shrink: 0
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.34, 1.56, .64, 1)
}

.gallery-item:hover .gallery-image {
    transform: scale(1.12) rotate(2deg)
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #fff0 0%, rgb(30 58 138 / .3) 50%, rgb(30 58 138 / .6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px)
}

.gallery-item:hover .image-overlay {
    opacity: 1
}

.view-btn {
    background: linear-gradient(135deg, var(--orange), #ff8833);
    color: #fff;
    border: 2px solid #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgb(255 102 0 / .3);
    transform: scale(0)
}

.gallery-item:hover .view-btn {
    transform: scale(1);
    animation: buttonPulse 0.6s ease
}

.view-btn:hover {
    background: linear-gradient(135deg, #ff8833, var(--orange));
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgb(255 102 0 / .5)
}

@keyframes buttonPulse {
    0% {
        transform: scale(0)
    }

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}

.card-info {
    padding: 24px 20px;
    background: #fff;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.card-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0;
    transition: opacity 0.4s ease
}

.gallery-item:hover .card-info::before {
    opacity: 1
}

.image-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin: 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgb(30 58 138 / .08)
}

.gallery-item:hover .image-name {
    color: var(--orange);
    letter-spacing: .5px
}

.btn-know-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 6px 20px rgb(30 58 138 / .25)
}

.btn-know-more:hover {
    background: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgb(30 58 138 / .35)
}

.btn-icon {
    transition: transform 0.4s ease;
    color: #fff
}

.btn-know-more.expanded .btn-icon {
    transform: rotate(180deg)
}

.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease
}

.lightbox-modal.active {
    display: flex
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / .85);
    backdrop-filter: blur(8px);
    z-index: -1
}

.lightbox-container {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.4s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 40px 80px rgb(0 0 0 / .3)
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(.9) translateY(30px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

.lightbox-image {
    width: 100%;
    max-width: 800px;
    max-height: 600px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 0 auto 20px;
    animation: imageZoom 0.5s ease
}

@keyframes imageZoom {
    from {
        transform: scale(.95);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.lightbox-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin: 0;
    padding: 0 20px
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--orange), #ff8833);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgb(255 102 0 / .3);
    z-index: 2
}

.lightbox-close:hover {
    background: linear-gradient(135deg, #ff8833, var(--orange));
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 20px rgb(255 102 0 / .5)
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), #ff8833);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgb(255 102 0 / .3);
    z-index: 10
}

.lightbox-arrow:hover {
    background: linear-gradient(135deg, #ff8833, var(--orange));
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 20px rgb(255 102 0 / .5)
}

.lightbox-arrow:active {
    transform: translateY(-50%) scale(.95)
}

.lightbox-arrow.left {
    left: 15px
}

.lightbox-arrow.right {
    right: 15px
}

.lightbox-arrow.disabled {
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none
}

@media (min-width:1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px
    }
}

@media (max-width:1199px) {
    .gallery-title {
        font-size: 2.5rem
    }

    .gallery-subtitle {
        font-size: 1.1rem
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px
    }

    .gallery-card {
        border-radius: 14px
    }

    .view-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem
    }

    .btn-know-more {
        padding: 12px 28px;
        font-size: .95rem
    }

    .lightbox-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.3rem
    }

    .lightbox-arrow.left {
        left: 12px
    }

    .lightbox-arrow.right {
        right: 12px
    }
}

@media (max-width:991px) {
    .ochip-gallery-section {
        padding: 60px 0;
        margin: 40px 0
    }

    .gallery-header {
        margin-bottom: 40px
    }

    .gallery-title {
        font-size: 2.2rem;
        margin-bottom: 10px
    }

    .gallery-subtitle {
        font-size: 1rem
    }

    .title-underline {
        width: 70px;
        height: 4px
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px
    }

    .card-image-wrapper {
        padding-bottom: 75%
    }

    .card-info {
        padding: 20px 16px
    }

    .image-name {
        font-size: 1rem
    }

    .view-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem
    }

    .gallery-item:hover .gallery-card {
        transform: translateY(-10px) rotateX(3deg) rotateY(-3deg) scale(1.01)
    }

    .lightbox-container {
        padding: 25px;
        max-width: 95%;
        max-height: 85vh
    }

    .lightbox-image {
        max-width: 100%;
        max-height: 500px
    }

    .lightbox-title {
        font-size: 1.3rem
    }

    .lightbox-arrow {
        width: 42px;
        height: 42px;
        font-size: 1.2rem
    }

    .lightbox-arrow.left {
        left: 10px
    }

    .lightbox-arrow.right {
        right: 10px
    }
}

@media (max-width:767px) {
    .ochip-gallery-section {
        padding: 50px 0;
        margin: 30px 0
    }

    .gallery-header {
        margin-bottom: 35px
    }

    .gallery-title {
        font-size: 1.8rem;
        margin-bottom: 8px
    }

    .gallery-subtitle {
        font-size: .95rem
    }

    .title-underline {
        width: 60px;
        height: 3px
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px
    }

    .gallery-card {
        border-radius: 12px
    }

    .card-image-wrapper {
        padding-bottom: 75%
    }

    .card-info {
        padding: 16px 14px
    }

    .image-name {
        font-size: .95rem
    }

    .view-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem
    }

    .gallery-item:hover .gallery-card {
        transform: translateY(-8px) scale(1.01)
    }

    .gallery-item:hover .gallery-image {
        transform: scale(1.1)
    }

    .btn-know-more {
        padding: 11px 24px;
        font-size: .9rem;
        gap: 8px
    }

    .lightbox-container {
        padding: 20px;
        max-width: 95%
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        top: 15px;
        right: 15px
    }

    .lightbox-image {
        max-height: 450px
    }

    .lightbox-title {
        font-size: 1.2rem;
        padding: 0 15px
    }

    .lightbox-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.1rem
    }

    .lightbox-arrow.left {
        left: 8px
    }

    .lightbox-arrow.right {
        right: 8px
    }
}

@media (max-width:575px) {
    .ochip-gallery-section {
        padding: 40px 0;
        margin: 25px 0
    }

    .ochip-gallery-section::before,
    .ochip-gallery-section::after {
        display: none
    }

    .gallery-header {
        margin-bottom: 30px
    }

    .gallery-title {
        font-size: 1.6rem;
        margin-bottom: 8px
    }

    .gallery-subtitle {
        font-size: .9rem
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .card-image-wrapper {
        padding-bottom: 70%
    }

    .card-info {
        padding: 14px 12px
    }

    .image-name {
        font-size: .9rem;
        font-weight: 600
    }

    .view-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem
    }

    .gallery-item:hover .gallery-card {
        transform: translateY(-6px)
    }

    .btn-know-more {
        padding: 10px 20px;
        font-size: .85rem;
        width: 100%;
        justify-content: center
    }

    #galleryKnowMoreContainer {
        padding: 0 10px
    }

    .lightbox-container {
        padding: 15px;
        max-width: 98%;
        max-height: 80vh;
        border-radius: 12px
    }

    .lightbox-image {
        max-height: 400px;
        margin-bottom: 15px
    }

    .lightbox-title {
        font-size: 1.1rem;
        padding: 0 10px
    }

    .lightbox-close {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
        top: 10px;
        right: 10px
    }

    .lightbox-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem
    }

    .lightbox-arrow.left {
        left: 6px
    }

    .lightbox-arrow.right {
        right: 6px
    }
}

@media (max-width:479px) {
    .ochip-gallery-section {
        padding: 35px 0;
        margin: 20px 0
    }

    .gallery-header {
        margin-bottom: 25px
    }

    .gallery-title {
        font-size: 1.4rem;
        margin-bottom: 6px
    }

    .gallery-subtitle {
        font-size: .85rem
    }

    .gallery-grid {
        gap: 16px
    }

    .gallery-card {
        border-radius: 10px
    }

    .card-image-wrapper {
        padding-bottom: 70%
    }

    .card-info {
        padding: 12px 10px
    }

    .image-name {
        font-size: .85rem;
        font-weight: 600
    }

    .view-btn {
        width: 42px;
        height: 42px;
        font-size: .95rem;
        border-width: 1px
    }

    .btn-know-more {
        padding: 9px 18px;
        font-size: .8rem;
        width: 100%
    }

    .lightbox-container {
        padding: 12px;
        max-width: 99%;
        border-radius: 10px
    }

    .lightbox-image {
        max-height: 350px;
        margin-bottom: 12px;
        border-radius: 8px
    }

    .lightbox-title {
        font-size: 1rem;
        padding: 0 8px
    }

    .lightbox-close {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        top: 8px;
        right: 8px
    }

    .lightbox-arrow {
        width: 32px;
        height: 32px;
        font-size: .9rem
    }

    .lightbox-arrow.left {
        left: 5px
    }

    .lightbox-arrow.right {
        right: 5px
    }
}

@media (hover:none) {
    .gallery-item:active .gallery-card {
        transform: translateY(-12px) scale(1.01)
    }

    .gallery-item:active .image-overlay {
        opacity: 1
    }

    .gallery-item:active .view-btn {
        transform: scale(1)
    }
}

/*Infrastrucute */
.infrastructure-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%)
}

.infra-container {
    max-width: 1200px;
    margin: 0 auto
}

.infra-title-section {
    text-align: center;
    margin-bottom: 50px
}

.infra-title-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px
}

.infra-title-underline {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), #ff8833);
    margin: 0 auto;
    border-radius: 3px
}

.infra-intro-section {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgb(30 58 138 / .08);
    border-top: 4px solid var(--orange)
}

.infra-intro-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin: 0
}

.infra-photos-section {
    margin-bottom: 50px
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px
}

.photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgb(30 58 138 / .15);
    transition: all 0.3s ease
}

.photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgb(30 58 138 / .25)
}

.photo-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease
}

.photo-card:hover img {
    transform: scale(1.08)
}

.photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgb(0 0 0 / .8), transparent);
    color: #fff;
    padding: 25px 20px 15px;
    font-weight: 600;
    font-size: 1rem
}

.infra-bullets-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgb(30 58 138 / .08);
    margin-bottom: 50px
}

.bullets-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px
}

.bullets-title::before {
    content: '';
    width: 6px;
    height: 30px;
    background: linear-gradient(180deg, var(--orange), #ff8833);
    border-radius: 3px
}

.bullets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.bullet-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 10px;
    border: 2px solid #e8eef5;
    transition: all 0.3s ease
}

.bullet-item:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 8px 20px rgb(255 102 0 / .1)
}

.bullet-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), #ff8833);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem
}

.bullet-text {
    flex: 1
}

.bullet-text p {
    margin: 0;
    color: #555;
    font-size: .95rem;
    line-height: 1.6
}

.infra-conclusion {
    background: linear-gradient(135deg, #e8f2ff 0%, #f0f6ff 100%);
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-blue);
    text-align: center
}

.infra-conclusion p {
    color: #555;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem
}

@media (max-width:991px) {
    .infra-title-section h2 {
        font-size: 2rem
    }

    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px
    }

    .photo-card img {
        height: 250px
    }

    .bullets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    .bullet-item {
        padding: 18px
    }

    .infra-intro-section,
    .infra-bullets-section {
        padding: 30px
    }

    .infra-conclusion {
        padding: 30px
    }
}

@media (max-width:767px) {
    .infrastructure-section {
        padding: 40px 15px
    }

    .infra-title-section {
        margin-bottom: 35px
    }

    .infra-title-section h2 {
        font-size: 1.6rem;
        margin-bottom: 12px
    }

    .infra-title-underline {
        width: 60px
    }

    .infra-intro-section {
        padding: 25px;
        margin-bottom: 35px
    }

    .infra-intro-text {
        font-size: .95rem
    }

    .photos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 35px
    }

    .photo-card img {
        height: 240px
    }

    .photo-label {
        padding: 20px 15px 10px;
        font-size: .95rem
    }

    .bullets-grid {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .bullet-item {
        padding: 15px
    }

    .bullet-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem
    }

    .bullet-text p {
        font-size: .9rem
    }

    .bullets-title {
        font-size: 1.3rem;
        margin-bottom: 20px
    }

    .infra-bullets-section {
        padding: 20px;
        margin-bottom: 35px
    }

    .infra-conclusion {
        padding: 25px
    }

    .infra-conclusion p {
        font-size: .95rem
    }

    .infra-photos-section {
        margin-bottom: 35px
    }
}

@media (max-width:575px) {
    .infrastructure-section {
        padding: 30px 12px
    }

    .infra-title-section {
        margin-bottom: 30px
    }

    .infra-title-section h2 {
        font-size: 1.4rem;
        margin-bottom: 10px
    }

    .infra-title-underline {
        width: 50px
    }

    .infra-intro-section {
        padding: 20px;
        margin-bottom: 30px
    }

    .infra-intro-text {
        font-size: .9rem
    }

    .photos-grid {
        gap: 15px;
        margin-bottom: 30px
    }

    .photo-card img {
        height: 200px
    }

    .photo-label {
        padding: 15px 12px 8px;
        font-size: .9rem
    }

    .bullets-grid {
        gap: 12px
    }

    .bullet-item {
        padding: 12px;
        gap: 12px
    }

    .bullet-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem
    }

    .bullet-text p {
        font-size: .85rem
    }

    .bullets-title {
        font-size: 1.2rem;
        margin-bottom: 18px
    }

    .infra-bullets-section {
        padding: 15px;
        margin-bottom: 30px
    }

    .infra-conclusion {
        padding: 20px
    }

    .infra-conclusion p {
        font-size: .9rem
    }

    .infra-photos-section {
        margin-bottom: 30px
    }
}

/* Mrketing */
.marketing-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--light-bg) 0%, #ffffff 50%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden
}

.marketing-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgb(59 130 246 / .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.marketing-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgb(255 102 0 / .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.marketing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.marketing-title-section {
    text-align: center;
    margin-bottom: 60px
}

.marketing-title-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    margin-bottom: 15px
}

.marketing-title-underline {
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, var(--orange), #ff8833);
    margin: 0 auto;
    border-radius: 3px
}

.marketing-intro-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgb(30 64 175 / .12);
    border-top: 6px solid var(--primary-blue);
    position: relative;
    overflow: hidden
}

.marketing-intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgb(59 130 246 / .1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.marketing-intro-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    margin: 0;
    position: relative;
    z-index: 1
}

.marketing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgb(30 64 175 / .08);
    transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
    border: 2px solid #fff0;
    display: flex;
    flex-direction: column
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2
}

.feature-card:hover::before {
    transform: scaleX(1)
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 50px rgb(30 64 175 / .2)
}

.feature-content {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: .95rem;
    flex: 1
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e7ff 0%, var(--light-bg) 100%)
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease
}

.feature-card:hover .feature-image img {
    transform: scale(1.1)
}

@media (max-width:991px) {
    .marketing-section {
        padding: 60px 20px
    }

    .marketing-title-section h2 {
        font-size: 2.2rem
    }

    .marketing-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 45px
    }

    .feature-content {
        padding: 30px 25px
    }

    .feature-icon {
        font-size: 3rem;
        margin-bottom: 15px
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px
    }

    .feature-card p {
        font-size: .9rem
    }

    .feature-image {
        height: 180px
    }

    .marketing-intro-box {
        padding: 30px
    }

    .marketing-intro-text {
        font-size: 1.05rem
    }
}

@media (max-width:767px) {
    .marketing-section {
        padding: 50px 15px
    }

    .marketing-title-section {
        margin-bottom: 40px
    }

    .marketing-title-section h2 {
        font-size: 1.8rem
    }

    .marketing-title-underline {
        width: 70px
    }

    .marketing-intro-box {
        padding: 25px;
        margin-bottom: 40px
    }

    .marketing-intro-text {
        font-size: .95rem
    }

    .marketing-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px
    }

    .feature-content {
        padding: 25px 20px
    }

    .feature-icon {
        font-size: 2.8rem;
        margin-bottom: 12px
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px
    }

    .feature-card p {
        font-size: .9rem
    }

    .feature-image {
        height: 200px
    }
}

@media (max-width:575px) {
    .marketing-section {
        padding: 40px 12px
    }

    .marketing-section::before,
    .marketing-section::after {
        display: none
    }

    .marketing-title-section {
        margin-bottom: 35px
    }

    .marketing-title-section h2 {
        font-size: 1.5rem
    }

    .marketing-title-underline {
        width: 60px;
        height: 4px
    }

    .marketing-intro-box {
        padding: 20px;
        margin-bottom: 35px;
        border-radius: 12px
    }

    .marketing-intro-box::before {
        display: none
    }

    .marketing-intro-text {
        font-size: .9rem
    }

    .marketing-features-grid {
        gap: 15px;
        margin-bottom: 35px
    }

    .feature-card {
        border-radius: 12px
    }

    .feature-content {
        padding: 20px 18px
    }

    .feature-icon {
        font-size: 2.4rem;
        margin-bottom: 10px
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px
    }

    .feature-card p {
        font-size: .85rem
    }

    .feature-image {
        height: 180px
    }
}

/*Financial */
.financial-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--light-bg) 0%, #ffffff 50%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden
}

.financial-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgb(30 58 138 / .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.financial-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgb(255 102 0 / .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.financial-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.financial-title-section {
    text-align: center;
    margin-bottom: 60px
}

.financial-title-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    margin-bottom: 15px
}

.financial-title-underline {
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, var(--orange), #ff8833);
    margin: 0 auto;
    border-radius: 3px
}

.financial-intro-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgb(30 58 138 / .12);
    border-left: 6px solid var(--orange);
    position: relative;
    overflow: hidden
}

.financial-intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgb(59 130 246 / .1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.financial-intro-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    margin: 0;
    position: relative;
    z-index: 1
}

.financial-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px
}

.financial-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgb(30 58 138 / .12);
    transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff
}

.financial-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgb(30 58 138 / .25)
}

.financial-box-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e7ff 0%, var(--light-bg) 100%);
    position: relative
}

.financial-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease
}

.financial-box:hover .financial-box-image img {
    transform: scale(1.1)
}

.financial-box-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1
}

.financial-box-1 {
    border-top: 5px solid var(--primary-blue)
}

.financial-box-1 .financial-box-image {
    background: linear-gradient(135deg, rgb(30 58 138 / .1), rgb(59 130 246 / .1))
}

.financial-box-1 .financial-box-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), transparent)
}

.financial-box-1 h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px
}

.financial-box-1 .color-bar {
    width: 40px;
    height: 4px;
    background: var(--orange);
    margin-bottom: 15px;
    border-radius: 2px
}

@media (max-width:991px) {
    .financial-section {
        padding: 60px 20px
    }

    .financial-title-section h2 {
        font-size: 2.2rem
    }

    .financial-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 45px
    }

    .financial-box-content {
        padding: 25px
    }

    .financial-box h3 {
        font-size: 1.2rem
    }

    .financial-box-image {
        height: 200px
    }

    .financial-box p {
        font-size: .9rem
    }

    .financial-intro-box {
        padding: 30px
    }

    .financial-intro-text {
        font-size: 1.05rem
    }
}

@media (max-width:767px) {
    .financial-section {
        padding: 50px 15px
    }

    .financial-title-section {
        margin-bottom: 40px
    }

    .financial-title-section h2 {
        font-size: 1.8rem
    }

    .financial-title-underline {
        width: 70px
    }

    .financial-intro-box {
        padding: 25px;
        margin-bottom: 40px
    }

    .financial-intro-text {
        font-size: .95rem
    }

    .financial-boxes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px
    }

    .financial-box-image {
        height: 220px
    }

    .financial-box-content {
        padding: 25px
    }

    .financial-box h3 {
        font-size: 1.2rem
    }

    .financial-box p {
        font-size: .9rem
    }
}

@media (max-width:575px) {
    .financial-section {
        padding: 40px 12px
    }

    .financial-section::before,
    .financial-section::after {
        display: none
    }

    .financial-title-section {
        margin-bottom: 35px
    }

    .financial-title-section h2 {
        font-size: 1.5rem
    }

    .financial-title-underline {
        width: 60px;
        height: 4px
    }

    .financial-intro-box {
        padding: 20px;
        margin-bottom: 35px;
        border-radius: 12px
    }

    .financial-intro-box::before {
        display: none
    }

    .financial-intro-text {
        font-size: .9rem
    }

    .financial-boxes-grid {
        gap: 15px;
        margin-bottom: 35px
    }

    .financial-box {
        border-radius: 12px
    }

    .financial-box-image {
        height: 200px
    }

    .financial-box-content {
        padding: 20px
    }

    .financial-box h3 {
        font-size: 1.1rem;
        margin-bottom: 12px
    }

    .financial-box p {
        font-size: .85rem
    }

    .color-bar {
        width: 35px !important
    }
}

/*mentoring */
.mentoring-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--light-bg) 0%, #ffffff 50%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden
}

.mentoring-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgb(30 58 138 / .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.mentoring-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgb(255 102 0 / .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.mentoring-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.mentoring-title-section {
    text-align: center;
    margin-bottom: 60px
}

.mentoring-title-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    margin-bottom: 15px
}

.mentoring-title-underline {
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, var(--orange), #ff8833);
    margin: 0 auto;
    border-radius: 3px
}

.mentoring-intro-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgb(30 58 138 / .12);
    border-left: 6px solid var(--orange);
    position: relative;
    overflow: hidden
}

.mentoring-intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgb(59 130 246 / .1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.mentoring-intro-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    margin: 0;
    position: relative;
    z-index: 1
}

.mentoring-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px
}

.mentor-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgb(30 58 138 / .12);
    transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff
}

.mentor-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgb(30 58 138 / .25)
}

.mentor-box-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e7ff 0%, var(--light-bg) 100%);
    position: relative
}

.mentor-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease
}

.mentor-box:hover .mentor-box-image img {
    transform: scale(1.1)
}

.mentor-box-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1
}

.mentor-box-1 {
    border-top: 5px solid var(--primary-blue)
}

.mentor-box-1 .mentor-box-image {
    background: linear-gradient(135deg, rgb(30 58 138 / .1), rgb(59 130 246 / .1))
}

.mentor-box-1 .mentor-box-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), transparent)
}

.mentor-box-1 h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px
}

.mentor-box-1 .color-bar {
    width: 40px;
    height: 4px;
    background: #f60;
    margin-bottom: 15px;
    border-radius: 2px
}

.mentor-box-2 {
    border-top: 5px solid #1e3a8a
}

.mentor-box-2 .mentor-box-image {
    background: linear-gradient(135deg, rgb(255 102 0 / .1), rgb(255 136 51 / .1))
}

.mentor-box-2 .mentor-box-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), transparent)
}

.mentor-box-2 h3 {
    color: #1e3a8a;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px
}

.mentor-box-2 .color-bar {
    width: 40px;
    height: 4px;
    background: var(--orange);
    margin-bottom: 15px;
    border-radius: 2px
}

.mentor-box-3 {
    border-top: 5px solid #1e3a8a
}

.mentor-box-3 .mentor-box-image {
    background: linear-gradient(135deg, rgb(59 130 246 / .1), rgb(30 58 138 / .1))
}

.mentor-box-3 .mentor-box-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), transparent)
}

.mentor-box-3 h3 {
    color: #1e3a8a;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px
}

.mentor-box-3 .color-bar {
    width: 40px;
    height: 4px;
    background: #f60;
    margin-bottom: 15px;
    border-radius: 2px
}

.mentor-box h3 {
    padding-top: 15px
}

.mentor-box p {
    color: #666;
    font-size: .95rem;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1
}

@media (max-width:991px) {
    .mentoring-section {
        padding: 60px 20px
    }

    .mentoring-title-section h2 {
        font-size: 2.2rem
    }

    .mentoring-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 45px
    }

    .mentor-box-content {
        padding: 25px
    }

    .mentor-box h3 {
        font-size: 1.2rem
    }

    .mentor-box-image {
        height: 200px
    }

    .mentor-box p {
        font-size: .9rem
    }

    .mentoring-intro-box {
        padding: 30px
    }

    .mentoring-intro-text {
        font-size: 1.05rem
    }
}

@media (max-width:767px) {
    .mentoring-section {
        padding: 50px 15px
    }

    .mentoring-title-section {
        margin-bottom: 40px
    }

    .mentoring-title-section h2 {
        font-size: 1.8rem
    }

    .mentoring-title-underline {
        width: 70px
    }

    .mentoring-intro-box {
        padding: 25px;
        margin-bottom: 40px
    }

    .mentoring-intro-text {
        font-size: .95rem
    }

    .mentoring-boxes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px
    }

    .mentor-box-image {
        height: 220px
    }

    .mentor-box-content {
        padding: 25px
    }

    .mentor-box h3 {
        font-size: 1.2rem
    }

    .mentor-box p {
        font-size: .9rem
    }
}

@media (max-width:575px) {
    .mentoring-section {
        padding: 40px 12px
    }

    .mentoring-section::before,
    .mentoring-section::after {
        display: none
    }

    .mentoring-title-section {
        margin-bottom: 35px
    }

    .mentoring-title-section h2 {
        font-size: 1.5rem
    }

    .mentoring-title-underline {
        width: 60px;
        height: 4px
    }

    .mentoring-intro-box {
        padding: 20px;
        margin-bottom: 35px;
        border-radius: 12px
    }

    .mentoring-intro-box::before {
        display: none
    }

    .mentoring-intro-text {
        font-size: .9rem
    }

    .mentoring-boxes-grid {
        gap: 15px;
        margin-bottom: 35px
    }

    .mentor-box {
        border-radius: 12px
    }

    .mentor-box-image {
        height: 200px
    }

    .mentor-box-content {
        padding: 20px
    }

    .mentor-box h3 {
        font-size: 1.1rem;
        margin-bottom: 12px
    }

    .mentor-box p {
        font-size: .85rem
    }

    .color-bar {
        width: 35px !important
    }
}

/* Skill And R&D */
.rd-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--light-bg) 0%, #ffffff 50%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden
}

.rd-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgb(30 58 138 / .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.rd-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgb(255 102 0 / .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.rd-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.rd-title-section {
    text-align: center;
    margin-bottom: 60px
}

.rd-title-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    margin-bottom: 15px
}

.rd-title-underline {
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, var(--orange), #ff8833);
    margin: 0 auto;
    border-radius: 3px
}

.rd-intro-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgb(30 58 138 / .12);
    border-left: 6px solid var(--orange);
    position: relative;
    overflow: hidden
}

.rd-intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgb(59 130 246 / .1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.rd-intro-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    margin: 0;
    position: relative;
    z-index: 1
}

.rd-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
    margin-bottom: 60px
}

.rd-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.rd-point {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgb(30 58 138 / .08);
    border-left: 5px solid var(--orange);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

.rd-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--orange))
}

.rd-point:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgb(30 58 138 / .15);
    border-left-color: var(--primary-blue)
}

.rd-point-content {
    position: relative;
    z-index: 1
}

.rd-point h4 {
    font-size: 1.15rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px
}

.rd-point h4::before {
    content: '◆';
    color: var(--orange);
    font-size: 1rem
}

.rd-point p {
    color: #666;
    font-size: .95rem;
    line-height: 1.6;
    margin: 0
}

.rd-right-column {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgb(30 58 138 / .12);
    border-top: 6px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 25px
}

.rd-right-column::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgb(59 130 246 / .08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.rd-right-column h3 {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px
}

.rd-right-column h3::before {
    content: '';
    width: 5px;
    height: 30px;
    background: linear-gradient(180deg, var(--orange), #ff8833);
    border-radius: 3px
}

.rd-access-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.rd-access-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgb(30 58 138 / .1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px
}

.rd-access-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease
}

.rd-access-item:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 20px rgb(255 102 0 / .15);
    transform: translateY(-5px)
}

.rd-access-item:hover::before {
    transform: scaleX(1)
}

.rd-access-text {
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1
}

.rd-collaboration-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    box-shadow: 0 15px 40px rgb(30 58 138 / .2);
    position: relative;
    overflow: hidden
}

.rd-collaboration-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: rgb(255 255 255 / .1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(20px)
    }
}

.rd-collaboration-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    z-index: 1
}

.rd-collaboration-box p {
    font-size: 1.05rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    opacity: .95;
    line-height: 1.8
}

@media (max-width:991px) {
    .rd-section {
        padding: 60px 20px
    }

    .rd-title-section h2 {
        font-size: 2.2rem
    }

    .rd-content-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 45px
    }

    .rd-left-column {
        gap: 18px
    }

    .rd-point {
        padding: 20px
    }

    .rd-point h4 {
        font-size: 1.1rem
    }

    .rd-right-column {
        padding: 30px
    }

    .rd-right-column h3 {
        font-size: 1.4rem;
        margin-bottom: 15px
    }

    .rd-access-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px
    }

    .rd-access-item {
        padding: 18px;
        min-height: 70px;
        font-size: .9rem
    }

    .rd-intro-box {
        padding: 30px
    }

    .rd-intro-text {
        font-size: 1.05rem
    }

    .rd-collaboration-box {
        padding: 40px 30px
    }

    .rd-collaboration-box h3 {
        font-size: 1.7rem
    }
}

@media (max-width:767px) {
    .rd-section {
        padding: 50px 15px
    }

    .rd-title-section {
        margin-bottom: 40px
    }

    .rd-title-section h2 {
        font-size: 1.8rem
    }

    .rd-title-underline {
        width: 70px
    }

    .rd-intro-box {
        padding: 25px;
        margin-bottom: 40px
    }

    .rd-intro-text {
        font-size: .95rem
    }

    .rd-content-grid {
        gap: 30px;
        margin-bottom: 40px
    }

    .rd-left-column {
        gap: 15px
    }

    .rd-point {
        padding: 20px
    }

    .rd-point h4 {
        font-size: 1rem;
        margin-bottom: 8px
    }

    .rd-point p {
        font-size: .9rem
    }

    .rd-right-column {
        padding: 25px
    }

    .rd-right-column h3 {
        font-size: 1.3rem;
        margin-bottom: 12px
    }

    .rd-access-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .rd-access-item {
        padding: 16px;
        min-height: 75px;
        font-size: .9rem
    }

    .rd-collaboration-box {
        padding: 35px 25px
    }

    .rd-collaboration-box h3 {
        font-size: 1.5rem;
        margin-bottom: 12px
    }

    .rd-collaboration-box p {
        font-size: .95rem
    }
}

@media (max-width:575px) {
    .rd-section {
        padding: 40px 12px
    }

    .rd-section::before,
    .rd-section::after {
        display: none
    }

    .rd-title-section {
        margin-bottom: 35px
    }

    .rd-title-section h2 {
        font-size: 1.5rem
    }

    .rd-title-underline {
        width: 60px;
        height: 4px
    }

    .rd-intro-box {
        padding: 20px;
        margin-bottom: 35px;
        border-radius: 12px
    }

    .rd-intro-box::before {
        display: none
    }

    .rd-intro-text {
        font-size: .9rem
    }

    .rd-point {
        padding: 18px;
        border-radius: 10px
    }

    .rd-point h4 {
        font-size: .95rem
    }

    .rd-point p {
        font-size: .85rem
    }

    .rd-right-column {
        padding: 20px;
        border-radius: 12px
    }

    .rd-right-column::before {
        display: none
    }

    .rd-right-column h3 {
        font-size: 1.2rem;
        margin-bottom: 15px
    }

    .rd-access-list {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .rd-access-item {
        padding: 14px;
        min-height: 60px;
        font-size: .85rem
    }

    .rd-collaboration-box {
        padding: 30px 20px;
        border-radius: 12px
    }

    .rd-collaboration-box h3 {
        font-size: 1.3rem;
        margin-bottom: 10px
    }

    .rd-collaboration-box p {
        font-size: .9rem
    }
}

/* About Us */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%)
}

.about-header {
    text-align: center;
    margin-bottom: 60px
}

.about-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px
}

.header-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #ff8833);
    border-radius: 2px;
    margin: 0 auto 30px
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: justify
}

.about-text p strong {
    color: var(--primary-blue);
    font-weight: 600
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgb(30 58 138 / .2);
    height: 400px
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.about-image:hover img {
    transform: scale(1.05)
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px
}

.highlight-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgb(30 58 138 / .1);
    transition: all 0.4s ease;
    border-top: 4px solid var(--orange)
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgb(30 58 138 / .2)
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), #ff8833);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: #fff
}

.highlight-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px
}

.highlight-card p {
    font-size: .95rem;
    color: #666;
    line-height: 1.6
}

.vision-mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 80px
}

.vision-box,
.mission-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgb(30 58 138 / .12);
    position: relative;
    overflow: hidden
}

.vision-box::before,
.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--orange)
}

.vision-box h3,
.mission-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px
}

/*.vision-box h3::before {*/
/*    content: '\f06e';*/
/*    font-family: 'Bootstrap Icons';*/
/*    font-size: 1.8rem;*/
/*    color: var(--orange)*/
/*}*/

/*.mission-box h3::before {*/
/*    content: '\f058';*/
/*    font-family: 'Bootstrap Icons';*/
/*    font-size: 1.8rem;*/
/*    color: var(--orange)*/
/*}*/

.vision-box p,
.mission-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: justify
}

@media (max-width:1024px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .highlight-cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .vision-mission-section {
        grid-template-columns: 1fr;
        gap: 30px
    }
}

@media (max-width:768px) {
    .about-section {
        padding: 50px 0
    }

    .about-header h2 {
        font-size: 1.8rem
    }

    .about-text p {
        font-size: .95rem
    }

    .about-image {
        height: 300px
    }

    .highlight-cards {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .vision-mission-section {
        grid-template-columns: 1fr
    }

    .vision-box,
    .mission-box {
        padding: 25px
    }
}

@media (max-width:576px) {
    .about-section {
        padding: 40px 0
    }

    .about-header h2 {
        font-size: 1.4rem
    }

    .about-text p {
        font-size: .9rem
    }

    .about-image {
        height: 250px
    }

    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 22px
    }

    .highlight-card h4 {
        font-size: 1rem
    }

    .vision-box h3,
    .mission-box h3 {
        font-size: 1.3rem
    }
}

.about-extra {
    display: none
}

.about-extra.show {
    display: block
}

.about-read-toggle {
    border: none;
    background: none;
    color: var(--orange);
    font-weight: 600;
    padding: 0;
    margin-top: 8px;
    cursor: pointer;
    font-size: .95rem
}

.about-read-toggle:hover {
    text-decoration: underline
}

.about-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px
}

.success-minimal-section {
    background: #ffffff;
    padding: 60px 0;
}

.success-minimal-section .section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.success-minimal-section .section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.success-minimal-section .section-heading .header-underline {
    margin: 10px auto 0;
}

.success-mini-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.success-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.mini-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.success-mini-card:hover .mini-img img {
    transform: scale(1.07);
}

.mini-body {
    padding: 14px 14px 16px;
}

.mini-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 6px;
}

.mini-date {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.mini-date i {
    font-size: 0.9rem;
    color: var(--orange);
}

.mini-view-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e3a8a;
    text-decoration: none;
}

.mini-view-link i {
    font-size: 1rem;
}

.mini-view-link:hover {
    color: #ff6600;
}

.header-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #ff8833);
    border-radius: 2px;
}

.btn-view-all-success {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 10px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
    transition: all 0.25s ease;
}

.btn-view-all-success:hover {
    background-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.35);
}



/* ===== CONTACT SECTION ===== */
        .contact-section {
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
            padding: 60px 0 40px;
        }

        .contact-intro {
            max-width: 760px;
            margin: 0 auto 25px;
            font-size: 0.98rem;
            color: #4b5563;
        }

        .contact-card {
            border-radius: 14px;
            border: 1px solid rgba(15,23,42,0.06);
            background: #ffffff;
            padding: 18px 20px;
            box-shadow: 0 8px 22px rgba(15,23,42,0.06);
            height: 100%;
        }

        .contact-card h6 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--dark-bg);
            margin-bottom: 8px;
        }

        .contact-card p,
        .contact-card a {
            font-size: 0.9rem;
            color: #4b5563;
            margin-bottom: 4px;
            text-decoration: none;
        }

        .contact-card a:hover {
            color: var(--orange);
        }

        .contact-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,102,0,0.08);
            color: var(--orange);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .contact-form-card {
            border-radius: 14px;
            border: 1px solid rgba(15,23,42,0.06);
            background: #ffffff;
            padding: 22px 24px;
            box-shadow: 0 10px 24px rgba(15,23,42,0.08);
        }

        .contact-form-card h5 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark-bg);
        }

        .contact-form-card p {
            font-size: 0.9rem;
            color: #6b7280;
            margin-bottom: 18px;
        }

        .form-control,
        .form-select {
            font-size: 0.9rem;
            border-radius: 8px;
            border-color: rgba(15,23,42,0.12);
        }

        .form-control:focus,
        .form-select:focus {
            box-shadow: 0 0 0 0.12rem rgba(255,102,0,0.3);
            border-color: var(--orange);
        }

        .btn-contact-submit {
            background: var(--orange);
            border-color: var(--orange);
            color: #fff;
            border-radius: 999px;
            padding: 8px 18px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .btn-contact-submit:hover {
            background: #ff8833;
            border-color: #ff8833;
        }

        /* MAP SECTION */
        .map-section {
            padding: 0 0 60px;
            background: #ffffff;
        }

        .map-wrapper {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 14px 32px rgba(15,23,42,0.18);
            border: 1px solid rgba(15,23,42,0.08);
        }

        .map-wrapper iframe {
            width: 100%;
            height: 380px;
            border: 0;
        }

        @media (max-width: 991px) {
            .hero-title {
                font-size: 32px;
            }
            .map-wrapper iframe {
                height: 300px;
            }
        }