:root {
    --brand-primary: #1f4d3a;
    --brand-primary-dark: #16392b;
    --brand-secondary: #c9a227;
    --brand-light: #f7f6f1;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    --border-soft: rgba(31, 77, 58, 0.1);
    --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.08);
}

body {
    font-family: "Segoe UI", Tahoma, sans-serif;
    color: var(--text-dark);
    background: #fff;
}

/* Topbar */
.topbar {
    background: var(--brand-primary-dark);
}

.topbar-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.92rem;
    transition: 0.3s ease;
}

.topbar-links a:hover {
    color: var(--brand-secondary);
}

/* Header */
.site-header {
    z-index: 1050;
}

.main-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 12px;
}

.brand-title {
    font-size: 1.15rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--brand-primary);
}

.brand-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.65rem 0.95rem;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand-primary);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0.95rem;
    right: 0.95rem;
    bottom: 1rem;
    height: 2px;
    background: var(--brand-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.btn-brand {
    background: var(--brand-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.7rem 1rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-brand:hover {
    background: var(--brand-secondary);
    color: #111;
}

.nav-cta {
    padding: 0.8rem 1.2rem;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 18px;
    padding: 0.75rem;
    min-width: 260px;
}

.dropdown-item {
    padding: 0.7rem 0.95rem;
    border-radius: 10px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(31, 77, 58, 0.08);
    color: var(--brand-primary);
}

/* Mega menu */
.megamenu {
    width: min(1140px, 96vw);
    left: 50% !important;
    transform: translateX(-50%);
    margin-top: 0;
    border-radius: 22px;
}

.mega-title {
    color: var(--brand-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.mega-list li:not(:last-child) {
    margin-bottom: 0.5rem;
}

.mega-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: inline-block;
    transition: 0.25s ease;
}

.mega-list a:hover {
    color: var(--brand-primary);
    transform: translateX(4px);
}

.mega-highlight {
    background: linear-gradient(135deg, rgba(31, 77, 58, 0.08), rgba(201, 162, 39, 0.12));
    border: 1px solid rgba(31, 77, 58, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    height: 100%;
}

.mega-highlight h5 {
    color: var(--brand-primary);
    font-weight: 700;
}

.mega-highlight p {
    color: var(--text-muted);
}

/* Hover for desktop dropdown */
@media (min-width: 1200px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
    }
}

/* Mobile menu */
.mobile-menu {
    width: 92%;
    max-width: 420px;
}

.mobile-link {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-link:hover {
    color: var(--brand-primary);
}

.mobile-nav-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
}

.mobile-nav-accordion .accordion-button {
    padding: 1rem 0.25rem;
    font-weight: 600;
    color: var(--text-dark);
    background: #fff;
    box-shadow: none !important;
}

.mobile-nav-accordion .accordion-button:not(.collapsed) {
    color: var(--brand-primary);
    background: #fff;
}

.mobile-nav-accordion .accordion-body {
    padding: 0.25rem 0.25rem 1rem;
}

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

.mobile-submenu li {
    margin-bottom: 0.45rem;
}

.mobile-submenu a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.mobile-submenu a:hover {
    color: var(--brand-primary);
}

.mobile-section-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--brand-primary);
    font-weight: 700;
    margin: 1rem 0 0.5rem;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--brand-primary), var(--brand-primary-dark));
    color: #fff;
    margin-top: 0;
    border-top: 3px solid rgba(201, 162, 39, 0.4);
}

.footer-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 12px;
}

.footer-title {
    color: var(--brand-secondary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

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

.footer-links li:not(:last-child) {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: var(--brand-secondary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: var(--brand-secondary);
    color: #111;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .brand-title {
        font-size: 1rem;
    }

    .brand-logo {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand {
        max-width: 78%;
    }

    .brand-title {
        font-size: 0.95rem;
    }

    .brand-subtitle {
        font-size: 0.78rem;
    }

    .btn-brand {
        padding: 0.65rem 0.9rem;
    }

    .footer-brand {
        flex-direction: column;
    }
}

/* Nav Search */
.nav-search-item {
    min-width: 240px;
}

.nav-search-form,
.mobile-search-form {
    width: 100%;
}

.nav-search-input {
    border: 1px solid rgba(31, 77, 58, 0.18);
    border-right: 0;
    border-radius: 12px 0 0 12px !important;
    padding: 0.72rem 0.95rem;
    font-size: 0.94rem;
    box-shadow: none !important;
}

.nav-search-input:focus {
    border-color: var(--brand-primary);
}

.nav-search-btn {
    background: var(--brand-primary);
    color: #fff;
    border: 1px solid var(--brand-primary);
    border-radius: 0 12px 12px 0 !important;
    padding: 0 1rem;
    transition: 0.3s ease;
}

.nav-search-btn:hover {
    background: var(--brand-secondary);
    border-color: var(--brand-secondary);
    color: #111;
}

@media (max-width: 1399.98px) {
    .nav-search-item {
        min-width: 200px;
    }
}

@media (max-width: 1199.98px) {
    .nav-search-item {
        display: none;
    }
}

/* Common Section */
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-secondary);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.btn-outline-brand {
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    background: transparent;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline-brand:hover {
    background: var(--brand-primary);
    color: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 90px 0 70px;
    background:
        linear-gradient(135deg, rgba(31, 77, 58, 0.08), rgba(201, 162, 39, 0.08)),
        #f8faf8;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(31, 77, 58, 0.1);
    color: var(--brand-primary);
    padding: 0.55rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hero-image-wrap {
    position: relative;
    padding: 14px;
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 22px;
}

.hero-stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.hero-stat-card h4 {
    margin-bottom: 0.35rem;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--brand-primary);
}

.hero-stat-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Notice Board */
.notice-section {
    background: #ffffff;
}

.notice-board-card,
.notice-side-card {
    background: #fff;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(31, 77, 58, 0.08);
    height: 100%;
}

.notice-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.notice-date {
    min-width: 68px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 16px;
    text-align: center;
    padding: 0.8rem 0.5rem;
}

.notice-date span {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.notice-date small {
    display: block;
    margin-top: 0.35rem;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.notice-content h5 {
    margin-bottom: 0.45rem;
    font-size: 1.08rem;
    font-weight: 700;
}

.notice-content h5 a {
    text-decoration: none;
    color: var(--text-dark);
    transition: 0.3s ease;
}

.notice-content h5 a:hover {
    color: var(--brand-primary);
}

.notice-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

.notice-side-card h4 {
    color: var(--brand-primary);
    font-weight: 700;
}

.notice-quick-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notice-quick-links li:not(:last-child) {
    margin-bottom: 0.75rem;
}

.notice-quick-links a {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    background: rgba(31, 77, 58, 0.05);
    padding: 0.9rem 1rem;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.notice-quick-links a:hover {
    background: var(--brand-primary);
    color: #fff;
}

/* Chairman Message */
.chairman-section {
    background: linear-gradient(180deg, #f8faf8 0%, #ffffff 100%);
}

.chairman-image-wrap {
    background: #fff;
    border-radius: 28px;
    padding: 14px;
    box-shadow: var(--shadow-soft);
}

.chairman-image {
    width: 100%;
    min-height: 460px;
    object-fit: cover;
    border-radius: 22px;
}

.chairman-content {
    padding-left: 10px;
}

.chairman-content p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1rem;
}

.chairman-sign h5 {
    color: var(--brand-primary);
    font-weight: 700;
}

.chairman-sign span {
    color: var(--text-muted);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 70px 0 50px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .chairman-content {
        padding-left: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 0.98rem;
    }

    .hero-image,
    .chairman-image {
        min-height: 300px;
    }

    .notice-item {
        flex-direction: column;
    }

    .notice-date {
        min-width: 80px;
    }
}

/* ===================== PREMIUM HERO ===================== */
.premium-hero {
    position: relative;
    padding: 50px 0 70px;
    background:
        radial-gradient(circle at top right, rgba(201, 162, 39, 0.12), transparent 30%),
        linear-gradient(135deg, rgba(31, 77, 58, 0.08), rgba(201, 162, 39, 0.06)),
        #f8faf8;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(31, 77, 58, 0.1);
    color: var(--brand-primary);
    padding: 0.55rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hero-visual-wrap {
    position: relative;
}

.hero-carousel {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
    padding: 14px;
}

.hero-slide-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.hero-slide-img {
    width: 100%;
    height: 560px;
    object-fit: contain;
    border-radius: 24px;
    display: block;
}

.hero-slide-overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.58));
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 1rem 1.2rem;
    border-radius: 18px;
}

.hero-slide-overlay span {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #f5d76b;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-slide-overlay h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.hero-control {
    width: 54px;
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
    background-color: rgba(31, 77, 58, 0.88);
    border-radius: 50%;
    padding: 18px;
    background-size: 55% 55%;
}

/* Thumbnails */
.hero-thumb-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.hero-thumb {
    border: 0;
    background: transparent;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    opacity: 0.72;
    transition: 0.3s ease;
}

.hero-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: 0.3s ease;
}

.hero-thumb img {
    width: 100%;
    height: 88px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.hero-thumb.active,
.hero-thumb:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.hero-thumb.active::after,
.hero-thumb:hover::after {
    border-color: var(--brand-secondary);
}

/* Left changing card */
.hero-feature-card {
    background: #fff;
    border-left: 4px solid var(--brand-secondary);
    border-radius: 18px;
    padding: 1.25rem 1.25rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    max-width: 560px;
}

.hero-feature-label {
    display: inline-block;
    color: var(--brand-secondary);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.hero-feature-card h4 {
    color: var(--brand-primary);
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.hero-feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Stats */
.hero-stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.15rem 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.hero-stat-card h4 {
    margin-bottom: 0.35rem;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--brand-primary);
}

.hero-stat-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Buttons */
.btn-outline-brand {
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    background: transparent;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline-brand:hover {
    background: var(--brand-primary);
    color: #fff;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .hero-slide-img {
        height: 500px;
    }
}

@media (max-width: 991.98px) {
    .premium-hero {
        padding: 40px 0 50px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-slide-img {
        height: 420px;
    }

    .hero-thumb-slider {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 0.98rem;
    }

    .hero-slide-img {
        height: 280px;
    }

    .hero-slide-overlay {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 0.8rem 1rem;
    }

    .hero-slide-overlay h4 {
        font-size: 1rem;
    }

    .hero-thumb-slider {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-thumb img {
        height: 74px;
    }

    .hero-feature-card {
        padding: 1rem;
    }
}

/* ===================== PRODUCTS SECTION (UPDATED STYLE) ===================== */
.products-section {
    background: linear-gradient(135deg, #f3f7f5 0%, #e6efeb 100%);
    position: relative;
    overflow: hidden;
}

/* subtle background pattern */
.products-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(31, 77, 58, 0.08);
    filter: blur(100px);
    top: -100px;
    left: -100px;
}

.products-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(201, 162, 39, 0.15);
    filter: blur(100px);
    bottom: -100px;
    right: -100px;
}

/* Product nav buttons */
.product-nav button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--brand-primary);
    color: #fff;
    transition: 0.3s;
}

.product-nav button:hover {
    background: var(--brand-secondary);
    color: #111;
}

/* swiper fix */
.productSwiper {
    padding-bottom: 10px;
    position: relative;
    z-index: 2;
}

/* ===================== PRODUCT CARD (NEW LOOK) ===================== */
.product-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(31, 77, 58, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.35s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* image */
.product-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-card:hover .product-card-img {
    transform: scale(1.05);
}

/* body */
.product-card-body {
    padding: 1.1rem 1rem 1.2rem;
    text-align: center;
}

.product-card-title {
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 6px;
}

/* link */
.product-card-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: 0.3s;
}

.product-card:hover .product-card-link {
    color: var(--brand-secondary);
}

/* responsive */
@media (max-width: 767.98px) {
    .product-card-img {
        height: 180px;
    }
}

/* Thumbnail slider */
.hero-thumb-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-thumb-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
    padding: 4px 2px 8px;
}

.hero-thumb-slider::-webkit-scrollbar {
    display: none;
}

.hero-thumb {
    border: 0;
    background: transparent;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    opacity: 0.72;
    transition: 0.3s ease;
    flex: 0 0 auto;
    width: 110px;
}

.hero-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: 0.3s ease;
}

.hero-thumb img {
    width: 100%;
    height: 82px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.hero-thumb.active,
.hero-thumb:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.hero-thumb.active::after,
.hero-thumb:hover::after {
    border-color: var(--brand-secondary);
}

.hero-thumb-nav {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    transition: 0.3s ease;
}

.hero-thumb-nav:hover {
    background: var(--brand-secondary);
    color: #111;
}

@media (max-width: 767.98px) {
    .hero-thumb {
        width: 90px;
    }

    .hero-thumb img {
        height: 68px;
    }

    .hero-thumb-nav {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }
}

/* ===================== SERVICES SECTION ===================== */
.services-section {
    background: linear-gradient(180deg, #f8faf8 0%, #ffffff 100%);
}

.service-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 24px;
    padding: 28px 24px;
    height: 100%;
    border: 1px solid rgba(31, 77, 58, 0.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.11);
}

.service-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 77, 58, 0.08);
    color: var(--brand-primary);
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    transition: 0.35s ease;
}

.service-card:hover .service-icon {
    background: var(--brand-primary);
    color: #fff;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.service-text {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-secondary);
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.service-card:hover .service-link {
    gap: 12px;
}

@media (max-width: 767.98px) {
    .service-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 16px;
    }

    .service-title {
        font-size: 1.08rem;
    }

    .service-text {
        font-size: 0.94rem;
    }
}

/* ===================== BUSINESS ENTITIES ===================== */
.entities-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
}



/* ===================== BUSINESS ENTITIES TABBED ===================== */
.entities-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

.entity-tabs {
    gap: 12px;
}

.entity-tabs .nav-link {
    border: none;
    background: #ffffff;
    color: var(--brand-primary);
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.entity-tabs .nav-link:hover {
    background: rgba(31, 77, 58, 0.08);
    color: var(--brand-primary);
}

.entity-tabs .nav-link.active {
    background: var(--brand-primary);
    color: #fff;
}

.entity-tab-content {
    margin-top: 10px;
}

.entity-panel {
    background: #fff;
    border-radius: 28px;
    padding: 1.5rem;
    border: 1px solid rgba(31, 77, 58, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.entity-panel-info {
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 77, 58, 0.08), rgba(201, 162, 39, 0.08));
    border-radius: 24px;
    padding: 2rem 1.5rem;
}

.entity-panel-icon {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-primary);
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.entity-panel-info h3 {
    color: var(--brand-primary);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.entity-panel-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.entity-list-card {
    display: block;
    height: 100%;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(31, 77, 58, 0.08);
    border-radius: 20px;
    padding: 1.2rem 1.1rem;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.entity-list-card:hover {
    transform: translateY(-5px);
    border-color: rgba(31, 77, 58, 0.2);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.entity-list-card h5 {
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
}

.entity-list-card p {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .entity-panel-info {
        padding: 1.5rem 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .entity-tabs {
        gap: 8px;
    }

    .entity-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.92rem;
    }

    .entity-panel {
        padding: 1rem;
        border-radius: 22px;
    }

    .entity-panel-info {
        border-radius: 20px;
    }

    .entity-panel-icon {
        width: 62px;
        height: 62px;
        font-size: 1.5rem;
    }

    .entity-list-card {
        border-radius: 16px;
    }
}

/* ===================== SKS HUB SECTION ===================== */
.sks-hub-section {
    background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}

.sks-hub-shell {
    background: linear-gradient(135deg, rgba(31, 77, 58, 0.04), rgba(201, 162, 39, 0.05));
    border: 1px solid rgba(31, 77, 58, 0.08);
    border-radius: 32px;
    padding: 1.5rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
}

.sks-hub-leadership-card,
.sks-hub-notice-card {
    background: #fff;
    border-radius: 26px;
    padding: 2rem;
    border: 1px solid rgba(31, 77, 58, 0.08);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05);
}

.sks-hub-topline {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-secondary);
    margin-bottom: 0.75rem;
}

.sks-hub-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 1.25rem;
}

.sks-hub-message-wrap {
    position: relative;
    padding: 1.2rem 1.2rem 1.2rem 1.4rem;
    background: rgba(31, 77, 58, 0.04);
    border-radius: 22px;
    border-left: 4px solid var(--brand-secondary);
    margin-bottom: 1.5rem;
}

.sks-hub-quote-mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-primary);
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.sks-hub-message-text {
    font-size: 1rem;
    line-height: 1.95;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.sks-hub-readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--brand-primary);
    font-weight: 700;
    transition: 0.3s ease;
}

.sks-hub-readmore-btn:hover {
    color: var(--brand-secondary);
    gap: 12px;
}

.sks-hub-chairman-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.sks-hub-chairman-avatar {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(31, 77, 58, 0.08);
    flex: 0 0 72px;
}

.sks-hub-chairman-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sks-hub-chairman-name {
    color: var(--brand-primary);
    font-weight: 800;
    font-size: 1.08rem;
}

.sks-hub-chairman-designation {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.94rem;
}

.sks-hub-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.sks-hub-viewall-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--brand-primary);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.3s ease;
    white-space: nowrap;
}

.sks-hub-viewall-btn:hover {
    background: var(--brand-secondary);
    color: #111;
}

.sks-hub-notice-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sks-hub-notice-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    padding: 1rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(31, 77, 58, 0.08);
    transition: 0.3s ease;
}

.sks-hub-notice-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    border-color: rgba(31, 77, 58, 0.16);
}

.sks-hub-notice-date {
    min-width: 70px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 16px;
    text-align: center;
    padding: 0.8rem 0.5rem;
    flex: 0 0 70px;
}

.sks-hub-notice-date span {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
}

.sks-hub-notice-date small {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
}

.sks-hub-notice-content h5 {
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 1.02rem;
    margin-bottom: 0.35rem;
}

.sks-hub-notice-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.94rem;
}

.sks-hub-quicklinks-wrap {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(31, 77, 58, 0.08);
}

.sks-hub-quicklinks-title {
    color: var(--brand-primary);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.sks-hub-quicklinks-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.sks-hub-quicklink-pill {
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(31, 77, 58, 0.07);
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 0.92rem;
    transition: 0.3s ease;
}

.sks-hub-quicklink-pill:hover {
    background: var(--brand-primary);
    color: #fff;
}

@media (max-width: 991.98px) {
    .sks-hub-title {
        font-size: 1.7rem;
    }

    .sks-hub-leadership-card,
    .sks-hub-notice-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .sks-hub-shell {
        padding: 1rem;
        border-radius: 22px;
    }

    .sks-hub-leadership-card,
    .sks-hub-notice-card {
        padding: 1.2rem;
        border-radius: 20px;
    }

    .sks-hub-title {
        font-size: 1.45rem;
    }

    .sks-hub-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .sks-hub-notice-item {
        flex-direction: column;
    }

    .sks-hub-notice-date {
        min-width: 76px;
        flex: 0 0 auto;
    }

    .sks-hub-chairman-meta {
        align-items: flex-start;
    }
}

/* ===================== SKS CTA TEXT ANIMATION ===================== */
.sks-cta-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.25), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(31, 77, 58, 0.35), transparent 40%),
        #0f2a20;
}

/* glass box */
.sks-cta-box {
    position: relative;
    z-index: 2;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sks-cta-typing {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0.5px;

    /* fix overflow */
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* blinking cursor */
.sks-cursor {
    display: inline-block;
    margin-left: 4px;
    color: var(--brand-secondary);
    animation: sksBlink 1s infinite;
}

@keyframes sksBlink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

/* subtle background glow */
.sks-cta-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(201, 162, 39, 0.25);
    filter: blur(120px);
    top: -100px;
    left: -100px;
    pointer-events: none;
    z-index: 1;
}

.sks-cta-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(120px);
    bottom: -120px;
    right: -120px;
    pointer-events: none;
    z-index: 1;
}

/* buttons */
.sks-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.sks-cta-buttons .btn {
    border-radius: 12px;
    font-weight: 600;
}

/* responsive */
@media (max-width: 991px) {
    .sks-cta-section {
        padding: 80px 0;
    }

    .sks-cta-box {
        padding: 32px 24px;
    }

    .sks-cta-typing {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .sks-cta-section {
        padding: 65px 0;
    }

    .sks-cta-box {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .sks-cta-typing {
        font-size: 1.4rem;
        line-height: 1.7;
        letter-spacing: 0;
    }
}

/* ===================== SKS YEARS BANNER ===================== */
.sks-years-banner-section {
    padding: 40px 0;
    background: transparent;
}

.sks-years-banner-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1f4d3a 0%, #2f6e53 38%, #c9a227 100%);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.sks-years-banner-box::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    filter: blur(60px);
}

.sks-years-banner-box::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(255, 215, 120, 0.22);
    filter: blur(70px);
}

.sks-years-banner-inner {
    position: relative;
    z-index: 2;
}

.sks-years-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sks-years-title {
    margin: 0 0 10px;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.sks-years-subtitle {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fdf0b8;
    letter-spacing: 0.03em;
}

/* Responsive */
@media (max-width: 991.98px) {
    .sks-years-title {
        font-size: 2rem;
    }

    .sks-years-subtitle {
        font-size: 1.05rem;
    }
}

@media (max-width: 767.98px) {
    .sks-years-banner-section {
        padding: 30px 0;
    }

    .sks-years-banner-box {
        border-radius: 20px;
        padding: 30px 16px;
    }

    .sks-years-title {
        font-size: 1.55rem;
        line-height: 1.45;
    }

    .sks-years-subtitle {
        font-size: 0.98rem;
    }

    .sks-years-badge {
        font-size: 0.75rem;
        padding: 7px 12px;
    }
}

/* ===================== SKS PAGE LOADER ===================== */
.sks-loader-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.22), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(31, 77, 58, 0.32), transparent 35%),
        linear-gradient(135deg, #14362a 0%, #1f4d3a 45%, #102a20 100%);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.sks-loader-screen.sks-loader-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sks-loader-wrap {
    position: relative;
    text-align: center;
    padding: 30px 20px;
}

.sks-loader-ring {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.12);
    border-top-color: #c9a227;
    border-right-color: #ffffff;
    animation: sksLoaderSpin 1.2s linear infinite;
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.18);
}

.sks-loader-logo {
    margin: 0;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: #ffffff;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.35),
        0 0 16px rgba(201, 162, 39, 0.28),
        0 0 28px rgba(201, 162, 39, 0.18);
    animation: sksLogoPulse 1.8s ease-in-out infinite;
}

.sks-loader-text {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.sks-loader-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.sks-loader-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c9a227;
    animation: sksDotsBounce 1.2s infinite ease-in-out;
}

.sks-loader-dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.sks-loader-dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes sksLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes sksLogoPulse {

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

    50% {
        transform: scale(1.06);
        opacity: 0.9;
    }
}

@keyframes sksDotsBounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.45;
    }

    40% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

@media (max-width: 767.98px) {
    .sks-loader-ring {
        width: 105px;
        height: 105px;
    }

    .sks-loader-logo {
        font-size: 3rem;
    }

    .sks-loader-text {
        font-size: 0.92rem;
    }
}

.sks-divider-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.sks-divider-wave svg {
  width: 100%;
  height: 50px;
  display: block;
}

.sks-divider-wave path {
  fill: #f3f7f5; /* match next section background */
}

/* ===================== SKS RESPONSIVE STICKY SOCIAL ===================== */
.sks-sticky-social {
  position: fixed;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sks-sticky-social-btn {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease;
}

.sks-sticky-social-btn i {
  font-size: 1.25rem;
}

.sks-sticky-social-btn span {
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.sks-sticky-social-btn:hover {
  transform: translateX(-4px);
}

.sks-sticky-social-btn:hover span {
  opacity: 1;
  visibility: visible;
  right: 68px;
}

/* Colors */
.sks-social-whatsapp {
  background: var(--brand-primary);
}

.sks-social-facebook {
  background: #1877f2;
}

.sks-social-youtube {
  background: #ff0000;
}

.sks-social-location {
  background: linear-gradient(135deg, #c9a227, #f5d76b);
  color: #111;
  animation: sksLocationPulse 2s infinite;
}

@keyframes sksLocationPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.65);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(201, 162, 39, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0);
  }
}

/* ===================== MOBILE BOTTOM BAR ===================== */
@media (max-width: 767.98px) {
  .sks-sticky-social {
    top: auto;
    right: 50%;
    bottom: 14px;
    transform: translateX(50%);
    flex-direction: row;
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 12px;
    border-radius: 999px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(31, 77, 58, 0.1);
  }

  .sks-sticky-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: none;
  }

  .sks-sticky-social-btn i {
    font-size: 1.1rem;
  }

  .sks-sticky-social-btn span {
    display: none;
  }

  .sks-sticky-social-btn:hover {
    transform: translateY(-3px);
  }
}

/* ===================== LOCATION BUTTON ===================== */
.sks-social-location {
  background: linear-gradient(135deg, #c9a227, #f5d76b);
  color: #111;
  position: relative;
  animation: sksPulseGlow 2s infinite;
}

/* pulse ring */
.sks-social-location::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(201, 162, 39, 0.4);
  animation: sksPulseRing 2s infinite;
  z-index: -1;
}

/* glow pulse */
@keyframes sksPulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(201,162,39,0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(201,162,39,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201,162,39,0);
  }
}

/* expanding ring */
@keyframes sksPulseRing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* hover */
.sks-social-location:hover {
  transform: translateX(-6px) scale(1.05);
  color: #000;
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 80px;
  }
}

/* ===================== BACK TO TOP ===================== */
.sks-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9997;

  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: none;

  background: var(--brand-primary);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.2rem;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.3s ease;
}

/* show button */
.sks-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* hover */
.sks-back-to-top:hover {
  background: var(--brand-secondary);
  color: #111;
  transform: translateY(-4px);
}

/* mobile */
@media (max-width: 767.98px) {
  .sks-back-to-top {
    bottom: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
  }
}

/* ===================== COMPANY PROFILE CTA ===================== */
.sks-profile-cta {
  margin-top: 20px;
}

.sks-profile-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(31, 77, 58, 0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.35s ease;
}

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

/* image */
.sks-profile-img-wrap {
  position: relative;
  overflow: hidden;
}

.sks-profile-img-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: 0.4s ease;
}

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

/* overlay */
.sks-profile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31,77,58,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0;
  transition: 0.3s;
}

.sks-profile-card:hover .sks-profile-overlay {
  opacity: 1;
}

/* content */
.sks-profile-content {
  padding: 1rem;
}

.sks-profile-content h5 {
  margin-bottom: 6px;
  color: var(--brand-primary);
  font-weight: 700;
}

.sks-profile-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ===================== GLOW EFFECT ===================== */
.sks-profile-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.sks-profile-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(201,162,39,0.6),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.sks-profile-card:hover .sks-profile-glow::before {
  opacity: 1;
}

/* pulse animation */
.sks-profile-card {
  animation: sksProfilePulse 3s infinite;
}

@keyframes sksProfilePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201,162,39,0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(201,162,39,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201,162,39,0);
  }
}

/* responsive */
@media (max-width: 767px) {
  .sks-profile-img-wrap img {
    height: 130px;
  }

  .sks-profile-content h5 {
    font-size: 1rem;
  }

  .sks-profile-content p {
    font-size: 0.85rem;
  }
}

/* ===================== NOTICE + PROFILE HUB ===================== */
.sks-notice-profile-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

.sks-notice-profile-shell {
  position: relative;
}

.sks-notice-profile-tag {
  display: inline-block;
  color: var(--brand-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.sks-notice-profile-title {
  color: var(--brand-primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.sks-notice-profile-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.8;
}

.sks-notice-profile-panel {
  background: #ffffff;
  border-radius: 28px;
  padding: 1.5rem;
  border: 1px solid rgba(31, 77, 58, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

/* left company profile */
.sks-np-profile-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(31, 77, 58, 0.08), rgba(201, 162, 39, 0.09));
  border: 1px solid rgba(31, 77, 58, 0.08);
  transition: 0.35s ease;
  position: relative;
}

.sks-np-profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.sks-np-profile-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(201, 162, 39, 0.45), transparent);
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.sks-np-profile-card:hover::after {
  opacity: 1;
}

.sks-np-profile-img-wrap {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #eef4f1;
}

.sks-np-profile-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.sks-np-profile-card:hover .sks-np-profile-img-wrap img {
  transform: scale(1.07);
}

.sks-np-profile-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 77, 58, 0.92);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.sks-np-profile-content {
  padding: 1.5rem;
}

.sks-np-profile-content h3 {
  color: var(--brand-primary);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.sks-np-profile-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.sks-np-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-primary);
  font-weight: 800;
  transition: 0.3s ease;
}

.sks-np-profile-card:hover .sks-np-profile-btn {
  color: var(--brand-secondary);
  gap: 12px;
}

/* notice area */
.sks-np-notice-area {
  height: 100%;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(31, 77, 58, 0.08);
  padding: 1.5rem;
}

.sks-np-notice-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.sks-np-small-title {
  display: inline-block;
  color: var(--brand-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.sks-np-notice-top h3 {
  color: var(--brand-primary);
  font-weight: 800;
  margin: 0;
}

.sks-np-view-all {
  text-decoration: none;
  background: var(--brand-primary);
  color: #fff;
  padding: 0.72rem 1rem;
  border-radius: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.3s ease;
}

.sks-np-view-all:hover {
  background: var(--brand-secondary);
  color: #111;
}

.sks-np-notice-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.sks-np-notice-item {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(31, 77, 58, 0.08);
  background: #fff;
  transition: 0.3s ease;
}

.sks-np-notice-item:hover {
  transform: translateY(-4px);
  background: rgba(31, 77, 58, 0.035);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.sks-np-date {
  min-width: 68px;
  height: 68px;
  border-radius: 16px;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sks-np-date span {
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 800;
}

.sks-np-date small {
  margin-top: 0.35rem;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.sks-np-notice-text h5 {
  color: var(--brand-primary);
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.sks-np-notice-text p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
}

/* bottom quick links */
.sks-np-quicklinks {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(31, 77, 58, 0.06), rgba(201, 162, 39, 0.08));
}

.sks-np-quicklinks-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.sks-np-quicklinks-head i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--brand-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sks-np-quicklinks-head h4 {
  color: var(--brand-primary);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
}

.sks-np-quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
}

.sks-np-quicklink {
  text-decoration: none;
  color: var(--brand-primary);
  background: #fff;
  border-radius: 16px;
  padding: 0.9rem 0.8rem;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  border: 1px solid rgba(31, 77, 58, 0.08);
  transition: 0.3s ease;
}

.sks-np-quicklink:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 991.98px) {
  .sks-np-quicklinks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sks-np-profile-img-wrap,
  .sks-np-profile-img-wrap img {
    min-height: 230px;
  }
}

@media (max-width: 767.98px) {
  .sks-notice-profile-title {
    font-size: 1.55rem;
  }

  .sks-notice-profile-panel {
    padding: 1rem;
    border-radius: 22px;
  }

  .sks-np-profile-card,
  .sks-np-notice-area {
    border-radius: 20px;
  }

  .sks-np-notice-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .sks-np-notice-item {
    flex-direction: column;
  }

  .sks-np-date {
    min-width: 74px;
    width: 74px;
  }

  .sks-np-quicklinks-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== SKS MARQUEE ===================== */
.sks-marquee-section {
  background: linear-gradient(135deg, #1f4d3a, #c9a227);
  overflow: hidden;
  padding: 10px 0;
}

.sks-marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.sks-marquee-track {
  display: flex;
  width: max-content;
  animation: sksMarqueeScroll 20s linear infinite;
}

.sks-marquee-text {
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  padding-right: 80px;
  letter-spacing: 0.3px;
}

/* animation */
@keyframes sksMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* hover pause (nice UX) */
.sks-marquee-section:hover .sks-marquee-track {
  animation-play-state: paused;
}

/* mobile */
@media (max-width: 767.98px) {
  .sks-marquee-text {
    font-size: 0.9rem;
    padding-right: 50px;
  }
}