/* Modern Premium CSS for Arackal SCB Bank */
:root {
    --primary: #4f91c9;
    --primary-dark: #3474a8;
    --primary-light: #7eb5e0;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    background-color: var(--gray-50);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(79, 145, 201, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 145, 201, 0.5);
}

/* Header */
.main-header {
    position: fixed;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border: none;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.header-hidden {
    opacity: 0;
    transform: translateY(-150%) !important;
    pointer-events: none;
}

.header-container {
    pointer-events: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.logo {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 6px; */
    color: var(--gray-900);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.bank-title {
    font-size: 24px;
    color: var(--gray-900);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.5px;
}

.bank-subtitle {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-bar-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 30px 12px 50px;
    border-radius: 0 50px 50px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    margin-left: -35px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-left: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    margin-left: 10px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--gray-800);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-btn {
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(79, 145, 201, 0.3);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: var(--transition);
}

.admin-btn:hover {
    box-shadow: 0 6px 20px rgba(79, 145, 201, 0.4);
    transform: translateY(-2px);
}

.admin-btn i {
    color: white;
    font-size: 20px;
}

.admin-text {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.mobile-only-nav-item {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-900);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: #bae6fd;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 80px - 300px);
}

/* Hero Section */
.hero {
    background-color: var(--primary-dark);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('../images/bank_vscob.webp');
    background-size: cover;
    background-position: center 20%;
    padding: 20rem 0 10rem;
    text-align: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 80% 20%, rgba(79, 145, 201, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-200);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Page Headers */
.page-header {
    /* background-color: var(--primary-dark); */
    background-color: #f9fafb;
    padding: 15rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.card .card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--gray-100);
}

.card .card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.horizontal-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.horizontal-card .card-image {
    width: 50%;
    height: auto;
    min-height: 300px;
    border-bottom: none;
    border-right: 1px solid var(--gray-100);
}

.horizontal-card .card-content {
    width: 50%;
    justify-content: center;
}

.horizontal-card.reverse {
    flex-direction: row-reverse;
}

.horizontal-card.reverse .card-image {
    border-right: none;
    border-left: 1px solid var(--gray-100);
}

@media (max-width: 768px) {
    .horizontal-card {
        flex-direction: column !important;
    }

    .horizontal-card .card-image {
        width: 100%;
        height: 250px;
        min-height: auto;
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid var(--gray-100);
    }

    .horizontal-card .card-content {
        width: 100%;
    }
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 1rem;
}

/* Branches */
.branch-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.branch-card h3 {
    color: var(--primary-dark);
    border-bottom: 2px solid var(--gray-100);
    padding-bottom: 0.5rem;
}

.branch-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-800);
}

.branch-detail i {
    color: var(--primary);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 4rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--gray-200);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Footer */
.main-footer {
    background-color: var(--white);
    color: var(--gray-900);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--gray-200);
}

.footer-top-links {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--gray-800);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-meta-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-meta-links a {
    color: var(--gray-900);
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-meta-links a:hover {
    color: var(--primary);
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: var(--gray-200);
    margin-bottom: 1.5rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-copyright p {
    color: var(--gray-800);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}

.footer-copyright a {
    color: var(--primary);
    font-weight: 700;
}

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

.footer-socials a {
    color: var(--gray-900);
    font-size: 1.25rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .mobile-only-nav-item {
        display: block !important;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 20px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
        border: 1px solid rgba(79, 145, 201, 0.15);
        padding: 1.25rem;
        gap: 0.65rem;
        z-index: 1001;
        animation: mobileMenuSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .nav-links.active,
    .nav-links.mobile-open {
        display: flex !important;
    }

    @keyframes mobileMenuSlideDown {
        from {
            opacity: 0;
            transform: translateY(-12px);
        }

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

    .nav-links li {
        width: 100%;
        list-style: none;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0.85rem 1.15rem;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        color: var(--gray-800);
        background: #f8fafc;
        border: 1px solid #f1f5f9;
        transition: all 0.25s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        color: var(--primary);
        border-color: #7eb5e0;
        transform: translateX(4px);
    }

    .nav-links a::after {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .nav-bar-wrapper {
        flex-grow: 1;
        margin-left: 10px;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        padding: 0;
        justify-content: space-between;
        gap: 10px;
    }

    .header-actions {
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .logo {
        padding: 4px;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .logo img {
        height: 60px !important;
    }

    .bank-title {
        font-size: 18px;
    }

    .bank-subtitle {
        /* display: none; */
    }

    .admin-text {
        display: none;
    }

    .admin-btn {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .logo img {
        height: 50px !important;
    }

    .bank-title {
        font-size: 15px;
    }

    .footer-top-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Red & White Theme Slider */
.rw-slider-section {
    padding: 4rem 0;
    margin-top: 2rem;
}

.rw-slider-header {
    text-align: center;
    margin-bottom: 3rem;
}

.rw-slider-header h2 {
    color: var(--primary-dark);
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.rw-slider-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.rw-slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0.5rem 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--gray-200);
}

.rw-slider-container::-webkit-scrollbar {
    height: 8px;
}

.rw-slider-container::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 4px;
}

.rw-slider-container::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 4px;
}

.rw-slider-card {
    min-width: 320px;
    max-width: 320px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.rw-slider-card .card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--gray-100);
}

.rw-slider-card .card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.rw-slider-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.rw-slider-card .card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.rw-slider-card h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.25rem;
}

.rw-slider-card p {
    color: var(--gray-800);
    font-size: 0.95rem;
}

.rw-slider-card.branch-card {
    gap: 0.5rem;
}

.rw-slider-card.branch-card h3 {
    color: var(--primary-dark);
    border-bottom: 2px solid var(--gray-100);
    padding-bottom: 0.5rem;
    width: 100%;
}

.rw-slider-card.branch-card p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rw-slider-card.branch-card i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* =========================================================
   Single-Row Compact Services Image Slider (Homepage)
   ========================================================= */
.compact-services-section {
    padding: 4.5rem 0 3.5rem;
}

.compact-services-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0.5rem 0 2rem;
    margin: 1.5rem 0 1rem;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.compact-services-track {
    display: flex;
    gap: 1.75rem;
    width: max-content;
    animation: infiniteServicesScroll 75s linear infinite;
}

.compact-services-slider-wrapper:hover .compact-services-track {
    animation-play-state: paused;
}

.compact-services-track.scroll-reverse {
    animation-direction: reverse;
}

.compact-services-slide-group {
    display: flex;
    gap: 1.75rem;
    flex-shrink: 0;
}

@keyframes infiniteServicesScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(calc(-100% - 1.75rem), 0, 0);
    }
}

.compact-slider-card {
    flex: 0 0 340px;
    width: 340px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.compact-slider-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 32px -8px rgba(0, 0, 0, 0.09);
    border-color: rgba(79, 145, 201, 0.25);
}

.compact-slider-image-wrap {
    position: relative;
    width: 100%;
    height: 185px;
    overflow: hidden;
    background: #0f172a;
    flex-shrink: 0;
}

.compact-slider-image-wrap img.compact-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.compact-slider-card:hover .compact-slider-image-wrap img.compact-slider-img {
    transform: scale(1.06);
}

.compact-slider-body {
    padding: 1.6rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    background: var(--white);
}

.slider-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-900);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.slider-nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(79, 145, 201, 0.3);
}

@media (max-width: 640px) {
    .compact-slider-card {
        flex: 0 0 295px;
        width: 295px;
    }
}

.compact-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.compact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    transition: transform 0.3s ease;
}

.compact-service-card:hover .compact-card-icon {
    transform: scale(1.08) rotate(-4deg);
}

.compact-service-card.basic-card .compact-card-icon {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--primary);
    border: 1px solid #7eb5e0;
}

.compact-service-card.special-card .compact-card-icon {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #059669;
    border: 1px solid #a7f3d0;
}

.compact-card-tag {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.28rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.compact-service-card.basic-card .compact-card-tag {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.compact-service-card.special-card .compact-card-tag {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.compact-card-title {
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.65rem 0;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.compact-service-card:hover .compact-card-title {
    color: var(--primary-dark);
}

.compact-card-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.compact-card-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    transition: gap 0.3s ease;
}

.compact-service-card:hover .compact-card-link {
    gap: 0.65rem;
}

/* =========================================================
   Attractive & Simple Service Card System (Services Page)
   ========================================================= */
.service-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    position: relative;
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.08);
    border-color: rgba(79, 145, 201, 0.22);
}

.service-card-content {
    flex: 1 1 52%;
    padding: 2.75rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.service-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    width: 100%;
}

.service-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.08) rotate(-4deg);
}

.basic-service-card .service-card-icon {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--primary);
    border: 1px solid #7eb5e0;
    box-shadow: 0 4px 12px rgba(79, 145, 201, 0.12);
}

.special-service-card .service-card-icon {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #059669;
    border: 1px solid #a7f3d0;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.12);
}

.service-card-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.4rem 0.95rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.basic-service-card .service-card-badge {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.special-service-card .service-card-badge {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.service-card-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.85rem 0;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-title {
    color: var(--primary-dark);
}

.service-card-description {
    font-size: 1.02rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.service-card-footer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-100);
    flex-wrap: wrap;
}

.service-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
}

.service-feature-tag i {
    color: var(--primary);
    font-size: 1.05rem;
}

.special-service-card .service-feature-tag i {
    color: #059669;
}

.service-card-media {
    flex: 0 0 48%;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
}

.service-card-media img.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-media img.service-image {
    transform: scale(1.05);
}

/* Default Animated Service Image Placeholder */
.service-animated-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-animated-placeholder.placeholder-basic {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 55%, #1f122b 100%);
}

.service-animated-placeholder.placeholder-special {
    background: linear-gradient(135deg, #064e3b 0%, #0f172a 55%, #042f2e 100%);
}

.placeholder-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
    pointer-events: none;
    opacity: 0.5;
}

.placeholder-basic .placeholder-orb.orb-1 {
    width: 220px;
    height: 220px;
    top: -40px;
    right: -40px;
    background: radial-gradient(circle, #7eb5e0 0%, transparent 70%);
    animation: floatOrb1 7s ease-in-out infinite alternate;
}

.placeholder-basic .placeholder-orb.orb-2 {
    width: 200px;
    height: 200px;
    bottom: -40px;
    left: -40px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    animation: floatOrb2 8s ease-in-out infinite alternate;
}

.placeholder-special .placeholder-orb.orb-1 {
    width: 220px;
    height: 220px;
    top: -40px;
    right: -40px;
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
    animation: floatOrb1 7s ease-in-out infinite alternate;
}

.placeholder-special .placeholder-orb.orb-2 {
    width: 200px;
    height: 200px;
    bottom: -40px;
    left: -40px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    animation: floatOrb2 8s ease-in-out infinite alternate;
}

.placeholder-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.6;
    pointer-events: none;
}

.placeholder-rings {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    animation: spinSlow 24s linear infinite;
    pointer-events: none;
}

.placeholder-rings::after {
    content: '';
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: spinReverse 16s linear infinite;
}

.placeholder-emblem {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 1.7rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    animation: floatEmblem 4.2s ease-in-out infinite;
}

.emblem-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    animation: pulseIconGlow 3s ease-in-out infinite;
}

.emblem-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.emblem-wave {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 18px;
}

.emblem-wave span {
    width: 3px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 3px;
    animation: waveBars 1.2s ease-in-out infinite alternate;
}

.emblem-wave span:nth-child(2) {
    animation-delay: 0.2s;
}

.emblem-wave span:nth-child(3) {
    animation-delay: 0.4s;
}

.emblem-wave span:nth-child(4) {
    animation-delay: 0.6s;
}

.emblem-wave span:nth-child(5) {
    animation-delay: 0.3s;
}

.placeholder-chip {
    position: absolute;
    z-index: 4;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 9999px;
    padding: 0.45rem 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.22);
    pointer-events: none;
}

.placeholder-chip.chip-top {
    top: 24px;
    right: 24px;
    animation: floatChip1 5s ease-in-out infinite;
}

.placeholder-chip.chip-bottom {
    bottom: 24px;
    left: 24px;
    animation: floatChip2 6s ease-in-out infinite;
}

.placeholder-chip i {
    font-size: 1rem;
    color: #facc15;
}

.placeholder-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
    transform: rotate(30deg);
    pointer-events: none;
    animation: shimmerSweep 7s infinite;
}

@keyframes floatEmblem {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatOrb1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-20px, 20px) scale(1.15);
    }
}

@keyframes floatOrb2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, -20px) scale(1.15);
    }
}

@keyframes spinSlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes pulseIconGlow {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 18px rgba(255, 255, 255, 0.28);
    }
}

@keyframes waveBars {
    0% {
        height: 4px;
        opacity: 0.45;
    }

    100% {
        height: 18px;
        opacity: 1;
    }
}

@keyframes floatChip1 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes floatChip2 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(5px);
    }
}

@keyframes shimmerSweep {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

@media (max-width: 991px) {

    .service-card,
    .service-card.reverse {
        flex-direction: column !important;
    }

    .service-card-content {
        padding: 2rem 1.6rem;
    }

    .service-card-media {
        width: 100%;
        min-height: 260px;
        height: 260px;
    }

    .placeholder-chip {
        display: none;
    }
}

/* =========================================================
   Clean & Simple Services Page Layout
   ========================================================= */
.services-section-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.services-section-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    flex-shrink: 0;
}

/* Background Ambient Effects */
.services-page-container {
    position: relative;
    overflow: hidden;
    padding-top: 2.5rem;
    padding-bottom: 5rem;
    background: radial-gradient(circle at 10% 10%, rgba(79, 145, 201, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 90% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 20% 90%, rgba(16, 185, 129, 0.06) 0%, transparent 45%);
}

.services-ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    animation: floatAmbientOrb 18s ease-in-out infinite alternate;
}

@keyframes floatAmbientOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(35px, -25px) scale(1.08);
    }

    100% {
        transform: translate(-25px, 30px) scale(0.95);
    }
}

@keyframes serviceCardEntrance {
    0% {
        opacity: 0;
        transform: translateY(28px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
    gap: 2.25rem;
    margin-bottom: 4.5rem;
    position: relative;
    z-index: 1;
}

.service-card-clean {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 6px 24px -6px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    animation: serviceCardEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.service-card-clean::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 45%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    pointer-events: none;
    transition: left 0.75s ease;
    z-index: 10;
}

.service-card-clean:hover::after {
    left: 145%;
}

.service-card-clean:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 24px 45px -10px rgba(79, 145, 201, 0.15), 0 12px 20px -6px rgba(0, 0, 0, 0.05);
    border-color: rgba(79, 145, 201, 0.35);
}

.service-clean-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #0f172a;
}

.service-clean-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-clean:hover .service-clean-img-wrap img {
    transform: scale(1.07);
}

.service-clean-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    padding: 0.38rem 0.95rem;
    border-radius: 9999px;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.service-clean-body {
    padding: 1.85rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.service-clean-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1.15rem;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card-clean:hover .service-clean-icon {
    transform: scale(1.14) rotate(6deg);
}

.service-clean-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.35rem;
    padding-top: 1.1rem;
    border-top: 1px dashed var(--gray-200);
    font-size: 0.88rem;
    font-weight: 700;
}

.service-clean-footer i {
    transition: transform 0.3s ease;
}

.service-card-clean:hover .service-clean-footer i {
    transform: translateX(6px);
}

/* Header View Custom Styles */
.header-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1060;
    background: #3474a8;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.top-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-item {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.2s ease;
}

.top-bar-item:hover {
    color: #7eb5e0;
}

.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.top-bar-socials a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    transition: transform 0.2s ease, color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.top-bar-socials a:hover {
    color: #7eb5e0;
    transform: translateY(-2px);
}

.main-header {
    top: 48px !important;
}

@media (max-width: 992px) {
    .header-actions .admin-btn {
        display: none !important;
    }

    .header-top-bar {
        display: none !important;
    }

    .main-header {
        top: 10px !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1050 !important;
    }

    .header-container {
        background: #ffffff !important;
        border-radius: 30px !important;
        padding: 8px 18px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18) !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        width: calc(100% - 24px) !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .nav-bar-wrapper {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        margin-left: 12px !important;
        flex-grow: 1 !important;
    }

    .bank-title {
        color: #0f172a !important;
    }

    .bank-subtitle {
        color: #64748b !important;
    }

    .mobile-menu-toggle {
        background: #f1f5f9 !important;
        color: #0f172a !important;
        border-radius: 12px !important;
    }

    .top-bar-container {
        justify-content: center !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.45rem !important;
        text-align: center !important;
    }

    .top-bar-contact {
        gap: 1.2rem !important;
        justify-content: center !important;
        width: 100% !important;
    }
}

/* Footer View Custom Styles */
.main-footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.90) 100%);
    color: var(--gray-900);
    padding: 4.5rem 0 2rem;
    border-top: 1px solid rgba(79, 145, 201, 0.15);
    position: relative;
}

/* Homepage (Index) Custom Styles */
.home-hero {
    position: relative;
    background: url('../images/arackal_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 13.5rem 0 5.5rem;
    height: 880px;
    color: #ffffff;
    overflow: hidden;
}

@media (max-width: 1400px) {
    .home-hero {
        height: 680px;
        padding: 11rem 0 4.5rem;
    }
}

@media (max-width: 1200px) {
    .home-hero {
        height: 560px;
        padding: 9rem 0 4rem;
    }
}

@media (max-width: 992px) {
    .home-hero {
        background: url('../images/vscob_responsieve_hero.jpeg');
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
        height: auto;
        aspect-ratio: 1015 / 1024;
        padding: 0;
        margin-top: 90px;
    }
}

.home-hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}

.relative-z {
    position: relative;
    z-index: 5;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

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

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.45rem 1.1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    margin-bottom: 1.5rem;
}

.home-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .home-hero-title {
        font-size: 2.15rem;
    }

    .home-hero {
        background: url('../images/vscob_responsieve_hero.jpeg');
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
        height: auto;
        aspect-ratio: 1015 / 1024;
        padding: 0;
        margin-top: 85px;
    }
}

@media (max-width: 576px) {
    .home-hero {
        background: url('../images/vscob_responsieve_hero.jpeg');
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
        height: auto;
        aspect-ratio: 1015 / 1024;
        padding: 0;
        margin-top: 80px;
    }
}

.home-hero-subtitle {
    font-size: 1.12rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2.25rem;
    max-width: 560px;
}

.home-hero-actions {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    margin-bottom: 2.75rem;
}

.btn-hero-primary {
    background: #ffffff;
    color: #3474a8;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    background: #f0f9ff;
    color: #4f91c9;
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.6rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.25s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-3px);
}

.home-hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 1.5rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.92);
}

.trust-item i {
    font-size: 1.25rem;
    color: #7eb5e0;
}

/* Right Widget Card */
.home-hero-widget-wrap {
    display: flex;
    justify-content: center;
}

.home-hero-widget {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
    color: #0f172a;
}

.widget-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.widget-pill {
    font-size: 0.72rem;
    font-weight: 800;
    background: #f0f9ff;
    padding: 0.28rem 0.7rem;
    border-radius: 6px;
    color: #4f91c9;
    letter-spacing: 0.06em;
    display: inline-block;
    margin-bottom: 0.35rem;
    border: 1px solid #7eb5e0;
}

.widget-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #0f172a;
}

.widget-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.widget-rates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .widget-rates-grid {
        grid-template-columns: 1fr;
    }
}

.rate-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.15rem 1rem;
    text-decoration: none;
    color: #0f172a;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    transition: all 0.25s ease;
}

.rate-card:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.rate-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f0f9ff;
    color: #4f91c9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    border: 1px solid #7eb5e0;
}

.rate-info {
    display: flex;
    flex-direction: column;
}

.rate-label {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.rate-val {
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.rate-tag {
    font-size: 0.75rem;
    color: #4f91c9;
    font-weight: 600;
}

.widget-footer {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.25rem;
    flex-wrap: wrap;
}

.widget-quick-btn {
    flex: 1;
    background: #f1f5f9;
    color: #334155;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: all 0.2s ease;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.widget-quick-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.widget-quick-btn.highlight-btn {
    background: #4f91c9;
    color: #ffffff;
    border-color: #4f91c9;
}

.widget-quick-btn.highlight-btn:hover {
    background: #3474a8;
    border-color: #3474a8;
    color: #ffffff;
}

/* News Marquee */
.news-marquee-bar {
    background: #1e293b;
    color: #ffffff;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.news-marquee-badge {
    background: var(--primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    padding: 0.85rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.2);
}

.news-marquee-track-container {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 0.65rem 0;
}

.news-marquee-track {
    display: inline-flex;
    align-items: center;
    animation: newsMarqueeScroll 35s linear infinite;
}

.news-marquee-track-container:hover .news-marquee-track {
    animation-play-state: paused;
}

@keyframes newsMarqueeScroll {
    0% {
        transform: translateX(0);
    }

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

.news-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f8fafc;
    text-decoration: none;
    padding: 0 2rem;
    font-size: 0.94rem;
    transition: color 0.2s ease;
}

.news-marquee-item:hover {
    color: #7eb5e0;
}

.news-marquee-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
}

.news-marquee-item-title {
    font-weight: 600;
}

.news-marquee-item-date {
    color: #94a3b8;
    font-size: 0.82rem;
}

.news-marquee-all-link {
    background: #0f172a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.85rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    z-index: 2;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}

.news-marquee-all-link:hover {
    background: var(--primary);
}

@media (max-width: 640px) {
    .news-marquee-badge span {
        display: none;
    }

    .news-marquee-badge {
        padding: 0.75rem 1rem;
    }

    .news-marquee-all-link {
        padding: 0.75rem 1rem;
    }
}

/* Service Category Cards */
.home-service-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .home-service-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .home-service-cat-grid {
        grid-template-columns: 1fr;
    }
}

.home-service-cat-card {
    height: 360px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    display: block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-service-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.home-service-cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-service-cat-card:hover .home-service-cat-img {
    transform: scale(1.12);
}

.home-service-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.35) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background 0.4s ease;
}

.home-service-cat-card:hover .home-service-cat-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.45) 65%, rgba(15, 23, 42, 0.1) 100%);
}

.home-service-cat-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(79, 145, 201, 0.4);
    transition: transform 0.3s ease, background 0.3s ease;
}

.home-service-cat-card:hover .home-service-cat-arrow {
    transform: scale(1.1) rotate(45deg);
}

/* About Page Custom Styles */
.working-report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .working-report-grid {
        grid-template-columns: 1fr;
    }
}

.wr-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.25rem 2rem 1.75rem;
    border: 1px solid var(--gray-200, #e2e8f0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.wr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border-color: rgba(79, 145, 201, 0.4);
}

.wr-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary, #4f91c9) 0%, #2563eb 100%);
}

.wr-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    min-height: 64px;
}

.wr-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(79, 145, 201, 0.1);
    color: var(--primary, #4f91c9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.wr-titles h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900, #0f172a);
    line-height: 1.3;
    margin: 0 0 0.25rem 0;
}

.wr-titles span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary, #4f91c9);
    display: block;
}

.wr-preview {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wr-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.wr-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.96rem;
    color: var(--gray-800, #1e293b);
    font-weight: 600;
}

.wr-highlights li i {
    color: #10b981;
    font-size: 1.15rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.wr-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--gray-200, #e2e8f0);
}

.wr-readmore-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    background: var(--gray-50, #f8fafc);
    color: var(--primary, #4f91c9);
    border: 1px solid var(--gray-200, #e2e8f0);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.wr-readmore-btn:hover {
    background: var(--primary, #4f91c9);
    color: #ffffff;
    border-color: var(--primary, #4f91c9);
    box-shadow: 0 4px 14px rgba(79, 145, 201, 0.28);
    transform: translateY(-2px);
}

/* Working Report Modal Styles */
.wr-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.wr-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.wr-modal-box {
    background: #ffffff;
    border-radius: 24px;
    max-width: 680px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.wr-modal-overlay.active .wr-modal-box {
    transform: scale(1) translateY(0);
}

.wr-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-100, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
    border-radius: 24px 24px 0 0;
}

.wr-modal-header-left {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.wr-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100, #f1f5f9);
    border: none;
    color: var(--gray-600, #475569);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.wr-modal-close:hover {
    background: #ef4444;
    color: #ffffff;
    transform: rotate(90deg);
}

.wr-modal-body {
    padding: 2rem;
    flex-grow: 1;
}

.wr-modal-section-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--gray-800, #1e293b);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wr-modal-section-title i {
    color: var(--primary, #4f91c9);
    font-size: 1.25rem;
}

.wr-malayalam-box-modal {
    background: var(--gray-50, #f8fafc);
    border-left: 4px solid var(--primary, #4f91c9);
    border-radius: 0 16px 16px 0;
    padding: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-800, #1e293b);
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.wr-modal-footer {
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--gray-100, #f1f5f9);
    display: flex;
    justify-content: flex-end;
    background: var(--gray-50, #f8fafc);
    border-radius: 0 0 24px 24px;
}

.wr-modal-btn-close {
    padding: 0.65rem 1.6rem;
    border-radius: 12px;
    background: var(--gray-200, #e2e8f0);
    color: var(--gray-800, #1e293b);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wr-modal-btn-close:hover {
    background: var(--gray-300, #cbd5e1);
}

.board-title-malayalam {
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.board-title-sub {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-600);
    display: block;
    margin-top: 0.25rem;
}

.board-exec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto 3.5rem;
}

@media (max-width: 768px) {
    .board-exec-grid {
        grid-template-columns: 1fr;
    }
}

.board-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--gray-200, #e2e8f0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.board-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border-color: rgba(79, 145, 201, 0.35);
}

.exec-card {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #fdfcfc 100%);
}

.president-card {
    border-top: 5px solid #4f91c9;
}

.vp-card {
    border-top: 5px solid #3474a8;
}

.exec-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(79, 145, 201, 0.1);
    color: #4f91c9;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid rgba(79, 145, 201, 0.2);
}

.badge-vp {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border-color: rgba(245, 158, 11, 0.25);
}

.board-img-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    position: relative;
    background: var(--gray-100, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.director-img-wrapper {
    width: 100px;
    height: 100px;
    margin: 1.75rem auto 1rem;
}

.board-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fallback-img {
    object-fit: contain;
    padding: 15px;
    background: #ffffff;
}

.board-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.member-role {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
}

.role-president {
    color: #4f91c9;
    background: #f0f9ff;
}

.role-vp {
    color: #b45309;
    background: #fffbeb;
}

.role-director {
    color: #3474a8;
    background: #f0f9ff;
}

.exec-card .member-name {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    line-height: 1.35;
}

.director-card .member-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.35;
    text-align: center;
    padding: 0 1rem;
}

.member-contact,
.member-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    color: var(--gray-700, #334155);
    padding: 0.6rem 1.15rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
    margin-top: 0.35rem;
}

.member-contact i,
.member-email i {
    color: #4f91c9;
    font-size: 1.15rem;
}

.member-contact:hover,
.member-email:hover {
    background: #4f91c9;
    color: #ffffff;
    border-color: #4f91c9;
}

.member-contact:hover i,
.member-email:hover i {
    color: #ffffff;
}

.director-contact {
    padding: 0.45rem 0.95rem;
    font-size: 0.86rem;
    margin-bottom: 1.5rem;
}

.directors-header-sub {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.directors-header-sub h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-800, #1e293b);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    white-space: nowrap;
}

.directors-header-sub h4 i {
    color: #3474a8;
    font-size: 1.5rem;
}

.directors-divider {
    height: 2px;
    background: linear-gradient(90deg, #e2e8f0 0%, transparent 100%);
    flex-grow: 1;
}

.board-directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.85rem;
}

.director-card {
    padding: 0;
    align-items: center;
}

/* Original About Page Styles */
.about-story-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

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

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 145, 201, 0.08);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.15rem;
    border: 1px solid rgba(79, 145, 201, 0.2);
}

.about-main-title {
    font-size: 2.15rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.about-text-body p {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-highlight-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
    position: relative;
    overflow: hidden;
}

.highlight-card-top i {
    font-size: 2.8rem;
    color: var(--primary-light, #7eb5e0);
    margin-bottom: 1rem;
    display: inline-block;
}

.highlight-card-top h4 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.65rem;
}

.highlight-card-top p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.highlight-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 1.75rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.85rem;
    font-weight: 800;
    color: #7eb5e0;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0.35rem;
    font-weight: 500;
}

/* Vision & Mission */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
}

@media (max-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

.vm-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.75rem 2.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.vm-card::top {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.vm-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(79, 145, 201, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.vm-card p {
    color: var(--gray-700);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0;
}

/* Pillars */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.about-subheading {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header-center h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header-center p {
    color: var(--gray-600);
    font-size: 1.05rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pillar-card {
    background: #ffffff;
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.09);
    border-color: rgba(79, 145, 201, 0.25);
}

.pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.35rem;
}

.pillar-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.pillar-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* Gallery & Lightbox Custom Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 1.75rem;
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: auto !important;
    background: #1e293b !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22) !important;
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #1e293b;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.08);
}

.gallery-card-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.25rem 1.1rem;
    background: linear-gradient(to top, rgba(10, 15, 30, 0.88) 0%, rgba(10, 15, 30, 0.45) 65%, transparent 100%);
    z-index: 2;
    pointer-events: none;
    transition: transform 0.35s ease;
}

.gallery-card-title-overlay span {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.35;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    display: block;
}

.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-zoom-icon {
    transform: scale(1);
}

/* Lightbox Modal CSS */
.vscob-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.vscob-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 30, 0.93);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.lightbox-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
    gap: 1rem;
}

.lightbox-topbar-left,
.lightbox-topbar-right {
    display: flex;
    align-items: center;
}

.lightbox-counter {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.14);
    padding: 0.45rem 1.15rem;
    border-radius: 9999px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.lightbox-zoom-controls {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    padding: 0.3rem 0.6rem;
    border-radius: 9999px;
}

.lightbox-ctrl-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.08);
}

.lightbox-zoom-level {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    min-width: 52px;
    text-align: center;
    user-select: none;
}

.lightbox-close-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.lightbox-close-btn:hover {
    background: rgba(239, 68, 68, 0.95);
    transform: scale(1.08);
}

.lightbox-nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background 0.25s ease, transform 0.25s ease;
}

.lightbox-nav-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
    left: 1.75rem;
}

.lightbox-next {
    right: 1.75rem;
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 0.6rem;
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
    }

    .lightbox-next {
        right: 0.6rem;
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
    }

    .lightbox-topbar {
        padding: 0.85rem 1rem;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .lightbox-zoom-controls {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* Main Content Structure */
.lightbox-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 5.5rem 1.5rem 1.5rem;
    box-sizing: border-box;
}

.lightbox-image-container {
    position: relative;
    max-width: 82vw;
    height: calc(100vh - 210px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    user-select: none;
}

.lightbox-main-img {
    max-width: 80vw;
    max-height: calc(100vh - 230px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.15s ease-out;
    cursor: grab;
}

.lightbox-main-img.zoomed {
    cursor: grab;
}

.lightbox-main-img.dragging {
    cursor: grabbing;
    transition: none;
}

.vscob-lightbox.active .lightbox-main-img.loaded {
    opacity: 1;
}

.lightbox-spinner {
    position: absolute;
    font-size: 2.5rem;
    color: #ffffff;
    animation: lightboxSpin 1s linear infinite;
    display: none;
}

.lightbox-spinner.show {
    display: block;
}

@keyframes lightboxSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.lightbox-caption-bar {
    margin: 0.4rem 0;
    text-align: center;
    max-width: 700px;
    min-height: 24px;
}

.lightbox-caption-bar p {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* Thumbnail Strip Slider Below Images */
.lightbox-thumbnails-container {
    width: 100%;
    max-width: 90vw;
    height: 76px;
    flex-shrink: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 0.35rem 0.5rem;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.lightbox-thumbnails-container::-webkit-scrollbar {
    height: 6px;
}

.lightbox-thumbnails-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 99px;
}

.lightbox-thumbnails-track {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: max-content;
    height: 100%;
}

.lightbox-thumb-slide {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.55;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
    position: relative;
    background: #1e293b;
}

.lightbox-thumb-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox-thumb-slide:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.lightbox-thumb-slide.active {
    opacity: 1;
    border-color: var(--primary, #4f91c9);
    box-shadow: 0 0 16px rgba(79, 145, 201, 0.65);
    transform: scale(1.06);
}

/* News Page Custom Styles */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.25rem;
}

.news-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.11);
}

.news-card-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--gray-100);
}

.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-card-img {
    transform: scale(1.08);
}

.news-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.news-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-card-excerpt {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-100);
    padding-top: 1.1rem;
}

.news-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.news-read-more-btn:hover {
    color: var(--primary-dark);
    gap: 0.65rem;
}

.news-date-sub {
    color: var(--gray-500);
    font-size: 0.82rem;
    font-weight: 500;
}

.news-empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px dashed var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

.news-empty-state i {
    font-size: 3.5rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.news-empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.news-empty-state p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* Contact Page Custom Styles */
.contact-section {
    padding: 4rem 0;
}

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

.contact-desc {
    margin-top: 1rem;
    color: var(--gray-800);
}

.contact-info-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.contact-form-title {
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 145, 201, 0.15);
}

.contact-submit-btn {
    margin-top: 0.5rem;
    align-self: flex-start;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-submit-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 2.5rem 2rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }
}