/* =========================================================
   SeaKay Infra Solutions — Component & Responsive Styles
   Breakpoints: Desktop 1200+, Laptop 992-1199, Tablet 768-991, Mobile <768
   ========================================================= */

/* ---------- CSS Variables (fallback if not defined elsewhere) ---------- */

.sk-service-card-image {
    position: relative;
    height: 400pximportant;
    overflow: hidden;
}


:root {
    --sk-primary: #0A243F;
    --sk-secondary: #1A658B;
    --sk-accent: #FAB239;
    --sk-white: #ffffff;
    --sk-light: #F4F7FA;
    --sk-gray-600: #5A6B7C;
    --sk-font-heading: 'Poppins', sans-serif;
    --sk-font-body: 'Inter', sans-serif;
    --sk-radius-sm: 8px;
    --sk-radius-md: 16px;
    --sk-radius-lg: 24px;
    --sk-radius-pill: 50px;
    --sk-shadow-sm: 0 4px 12px rgba(10, 36, 63, 0.08);
    --sk-shadow-md: 0 8px 30px rgba(10, 36, 63, 0.12);
    --sk-shadow-lg: 0 20px 50px rgba(10, 36, 63, 0.18);
    --sk-transition: all 0.3s ease;
}

/* -------------------- Buttons -------------------- */
.sk-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--sk-radius-pill);
    font-family: var(--sk-font-heading);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--sk-transition);
    text-decoration: none;
    min-height: 44px;
	
}

.sk-btn-accent {
    background: var(--sk-accent);
    color: var(--sk-primary);
	text-align:center;
}

.sk-btn-accent:hover {
    background: var(--sk-primary);
    color: var(--sk-white);
    transform: translateY(-3px);
}

.sk-btn-primary {
    background: var(--sk-primary);
    color: var(--sk-white);
}

.sk-btn-primary:hover {
    background: var(--sk-secondary);
    color: var(--sk-white);
    transform: translateY(-3px);
}

.sk-btn-outline-light {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--sk-white);
}

.sk-btn-outline-light:hover {
    background: var(--sk-white);
    color: var(--sk-primary);
}

.sk-btn-outline-primary {
    border-color: var(--sk-primary);
    color: var(--sk-primary);
}

.sk-btn-outline-primary:hover {
    background: var(--sk-primary);
    color: var(--sk-white);
}

/* -------------------- Header -------------------- */
.sk-header {
    position: fixed;
    top: 5;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 14px 0;
    /* transition: var(--sk-transition); */
}

/* Mobile */
@media (max-width: 991px) {

    .sk-header {
        top: 0;
        padding: 10px 0;
    }



}

Agar trans
/* .sk-header-solid {
    background: var(--sk-white);
    box-shadow: var(--sk-shadow-sm);
} */

.sk-header-solid .sk-logo-text,
.sk-header-solid .sk-nav .nav-link {
    color: var(--sk-primary);
}

.sk-header-solid .sk-hamburger span {
    background: var(--sk-primary);
}

/* 
.sk-header-transparent {
    background: linear-gradient(to bottom, rgba(10, 36, 63, 0.65), rgba(10, 36, 63, 0.05));
} */

.sk-header-transparent .sk-logo-text,
.sk-header-transparent .sk-nav .nav-link {
    color: var(--sk-primary);
}

.sk-header-transparent .sk-hamburger span {
    background: var(--sk-primary);
}

.sk-header-transparent.sk-scrolled {
    background: var(--sk-white);
    box-shadow: var(--sk-shadow-md);
    /* padding: 10px 0; */
}

.sk-header-transparent.sk-scrolled .sk-logo-text,
.sk-header-transparent.sk-scrolled .sk-nav .nav-link {
    color: var(--sk-primary);
}

.sk-header-transparent.sk-scrolled .sk-hamburger span {
    background: var(--sk-primary);
}

.sk-header-solid.sk-scrolled {
    box-shadow: var(--sk-shadow-md);
    /* padding: 10px 0; */
}

.sk-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sk-logo img {
    max-height: 52px;
}

.sk-logo-text {
    font-family: var(--sk-font-heading);
    font-weight: 800;
    font-size: 24px;
    transition: var(--sk-transition);
}

.sk-nav {
    list-style: none;
    gap: 34px;
    margin: 0;
    padding: 0;
}

.sk-nav .nav-link {
    font-family: var(--sk-font-heading);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: var(--sk-transition);
    text-decoration: none;
}

.sk-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--sk-accent);
    transition: var(--sk-transition);
}

.sk-nav .nav-link:hover::after,
.sk-nav .current-menu-item .nav-link::after {
    width: 100%;
}

.sk-hamburger {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1001;
    cursor: pointer;
}

.sk-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    margin: 6px 0;
    transition: var(--sk-transition);
}

.sk-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.sk-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.sk-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 
.sk-mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 36, 63, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--sk-transition);
} */

.sk-mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sk-has-dropdown {
    position: relative;
}

.sk-dropdown-caret {
    font-size: 10px;
    margin-left: 4px;
}

.sk-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    background: var(--sk-white);
    border-radius: var(--sk-radius-sm);
    box-shadow: var(--sk-shadow-md);
    min-width: 220px;
}

@media (min-width: 992px) {
    .sk-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--sk-transition);
    }

    .sk-has-dropdown:hover .sk-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .sk-dropdown-menu .nav-link {
        color: var(--sk-primary) !important;
        padding: 10px 22px !important;
    }
}

@media (max-width: 991px) {
    .sk-dropdown-menu {
        display: none;
        padding-left: 16px;
        box-shadow: none;
    }

    .sk-has-dropdown.open .sk-dropdown-menu {
        display: block;
    }
}

/* -------------------- Hero (FIXED) -------------------- */
.sk-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    padding-top: 90px;
    box-sizing: border-box;
    overflow: hidden;

}


.sk-hero-swiper {
    height: 100%;
    width: 100%;
}

/* Swiper wrapper – take full height */
.sk-hero-swiper .swiper-wrapper {
    height: 100%;
}

/* Each slide – full height, flex to center content */
.sk-hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* left-align content */
}

/* Overlay – covers the slide completely */
.sk-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 53, 63, 0.944), rgba(10, 36, 63, 0.193));
    z-index: 1;
}

/* Content – relative to overlay */
.sk-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 20px;
}

.sk-hero-content h1 {
    color: var(--sk-white);
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.sk-hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-bottom: 32px;
}

.sk-hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Scroll indicator */
.sk-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.sk-scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 auto 8px;
    animation: sk-scroll-bounce 1.8s infinite;
}

.sk-scroll-indicator p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

@keyframes sk-scroll-bounce {

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

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

/* -------------------- Section Heading -------------------- */
.sk-eyebrow {
    display: inline-block;
    color: var(--sk-secondary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 12px;
}

.sk-section-heading {
    max-width: 640px;
    margin: 0 auto 56px;
}

.sk-section-heading.text-center {
    text-align: center;
}

section {
    padding: 100px 0;
}

/* -------------------- Stats Counter Strip (standalone) -------------------- */
.sk-stats-strip {
    background: var(--sk-light);
    padding: 60px 0;
    margin-top: -100px;
    border-bottom: 1px solid rgba(37, 32, 42, 0.18);
}

.sk-stats-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.sk-stats-item {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    padding: 0 8px;
}

.sk-stats-number-wrap {
    font-family: var(--sk-font-heading);
    font-weight: 700;
    color: var(--sk-accent);
    font-size: 52px;
    line-height: 1;
    margin: 0 0 8px;
    white-space: nowrap;
}

.sk-stats-label {
    color: var(--sk-grey-600);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

.sk-stats-divider {
    width: 1px;
    height: 44px;
    background: rgba(37, 32, 42, 0.18);
    flex-shrink: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .sk-stats-number-wrap {
        font-size: 32px;
    }

    .sk-stats-label {
        font-size: 13px;
    }

    .sk-stats-divider {
        height: 36px;
    }
}

/* Mobile — stays single row, just shrinks */
@media (max-width: 767px) {
    .sk-stats-strip {
        padding: 26px 0;
    }

    .sk-stats-row {
        gap: 0;
    }

    .sk-stats-item {
        padding: 0 4px;
    }

    .sk-stats-number-wrap {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .sk-stats-label {
        font-size: 10px;
        line-height: 1.2;
    }

    .sk-stats-divider {
        height: 28px;
    }
}

/* Extra-small phones */
@media (max-width: 400px) {
    .sk-stats-number-wrap {
        font-size: 17px;
    }

    .sk-stats-label {
        font-size: 9px;
    }

    .sk-stats-divider {
        display: none;
    }
}

/* -------------------- About -------------------- */
.sk-about-image {
    position: relative;
}

.sk-about-image img {
    border-radius: var(--sk-radius-lg);
    box-shadow: var(--sk-shadow-lg);
    width: 100%;
}

.sk-about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--sk-accent);
    color: var(--sk-primary);
    border-radius: var(--sk-radius-md);
    padding: 20px 26px;
    text-align: center;
    box-shadow: var(--sk-shadow-md);
}

.sk-about-badge-number {
    display: block;
    font-family: var(--sk-font-heading);
    font-weight: 800;
    font-size: 28px;
    line-height: 1;
}

.sk-about-badge-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
    max-width: 100px;
}

.sk-about-feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.sk-about-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.sk-about-feature-list i {
    color: var(--sk-secondary);
}

.sk-counters {
    display: flex;
    gap: 40px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.sk-counter-item h3 {
    font-size: 40px;
    color: var(--sk-secondary);
    margin-bottom: 4px;
}

.sk-counter-item p {
    font-size: 14px;
    color: var(--sk-gray-600);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .sk-stats-strip {
        padding: 45px 0;
        margin-top: -70px;
    }

    .sk-stats-item {
        padding: 0 10px;
    }

    .sk-stats-number-wrap {
        font-size: 34px;
    }

    .sk-stats-label {
        font-size: 13px;
    }

    .sk-stats-divider {
        height: 36px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .sk-stats-strip {
        padding: 35px 0;
        margin-top: 0;
    }

    .sk-stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
        column-gap: 0;
    }

    .sk-stats-item {
        width: 100%;
        padding: 0 10px;
    }

    .sk-stats-number-wrap {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .sk-stats-label {
        font-size: 12px;
        line-height: 1.3;
    }

    .sk-stats-divider {
        display: none;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .sk-stats-strip {
        padding: 12px 0;
    }

    .sk-stats-row {
        row-gap: 22px;
    }

    .sk-stats-item {
        padding: 0 6px;
    }

    .sk-stats-number-wrap {
        font-size: 24px;
    }

    .sk-stats-label {
        font-size: 11px;
    }
}


/* =========================
   EXTRA SMALL PHONES
========================= */

@media (max-width: 360px) {

    .sk-stats-number-wrap {
        font-size: 21px;
    }

    .sk-stats-label {
        font-size: 10px;
    }

    .sk-stats-row {
        row-gap: 18px;
    }
}
Mobile par outpu

/* -------------------- Why Choose Us -------------------- */
.sk-feature-card {
    background: var(--sk-white);
    border-radius: var(--sk-radius-md);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--sk-shadow-sm);
    transition: var(--sk-transition);
    height: 100%;
}

.sk-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sk-shadow-md);
}

.sk-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--sk-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--sk-accent);
}

.sk-why-choose {
    background: var(--sk-light);
}


/* -------------------- Services -------------------- */
.sk-services-swiper {
    padding-bottom: 10px;
}

.sk-services-swiper .swiper-slide {
    height: auto;
}

.sk-service-card {
    background: var(--sk-white);
    border-radius: var(--sk-radius-md);
    overflow: hidden;
    box-shadow: var(--sk-shadow-sm);
    transition: var(--sk-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sk-service-card:hover {
    box-shadow: var(--sk-shadow-md);
    transform: translateY(-8px);
}

.sk-service-card-image {
    position: relative;
    overflow: hidden;
}

.sk-service-card-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sk-service-card:hover .sk-service-card-image img {
    transform: scale(1.08);
}

.sk-service-card-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sk-service-card-body p {
    flex-grow: 1;
}

.sk-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sk-secondary);
    font-weight: 600;
    margin-top: 12px;
}

.sk-services-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.sk-services-prev,
.sk-services-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--sk-primary);
    background: transparent;
    color: var(--sk-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--sk-transition);
    flex-shrink: 0;
}

.sk-services-prev:hover,
.sk-services-next:hover {
    background: var(--sk-primary);
    color: var(--sk-white);
}

.sk-services-pagination {
    display: flex;
    gap: 8px;
}

.sk-services-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #D8DEE6;
    opacity: 1;
}

.sk-services-pagination .swiper-pagination-bullet-active {
    background: var(--sk-accent);
    width: 26px;
    border-radius: 6px;
    transition: var(--sk-transition);
}

/* Mobile */
@media (max-width: 767px) {
    .sk-service-card-image {
        height: 180px;
    }

    .sk-service-card-body {
        padding: 22px 22px 26px;
    }
}

/* -------------------- Product Cards -------------------- */
/* Featured Products Section */
.sk-featured-products {
    padding: 60px 0;
}

/* Product Card */
.sk-product-card {
    display: block;
    height: 100%;
    border-radius: var(--sk-radius-md);
    overflow: hidden;
    background: var(--sk-white);
    box-shadow: var(--sk-shadow-sm);
    transition: var(--sk-transition);
    text-decoration: none;
}

.sk-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sk-shadow-lg);
}

/* Image */
.sk-product-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.sk-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.sk-product-card:hover .sk-product-card-image img {
    transform: scale(1.1);
}

/* Overlay */
.sk-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 36, 63, .92) 0%,
            rgba(10, 36, 63, .55) 45%,
            rgba(10, 36, 63, .15) 100%);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 24px;

    opacity: 0;
    transition: .4s ease;
}

.sk-product-card:hover .sk-product-overlay {
    opacity: 1;
}

/* Content */
.sk-product-overlay-content {
    width: calc(100% - 55px);
}

.sk-product-overlay-content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}

.sk-product-overlay-content p {
    color: rgba(255, 255, 255, .85);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Arrow */
.sk-product-arrow-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;

    width: 46px;
    height: 46px;
    border-radius: 50%;

    background: var(--sk-accent);
    color: #fff;

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

    transform: translateY(10px);
    opacity: 0;
    transition: .35s ease;
}

.sk-product-card:hover .sk-product-arrow-btn {
    transform: translateY(0);
    opacity: 1;
}

/* Swiper */
.sk-featured-swiper {
    overflow: hidden;
    padding: 2px;
}

.sk-featured-swiper .swiper-slide {
    height: auto;
    padding: 4px;
}

/* Navigation */
.sk-featured-nav {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-bottom: 20px;
}

.sk-featured-prev,
.sk-featured-next {
    width: 42px;
    height: 42px;
    border: 2px solid var(--sk-primary);
    border-radius: 50%;
    background: #fff;
    color: var(--sk-primary);

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

    cursor: pointer;
    transition: .3s ease;
}

.sk-featured-prev:hover,
.sk-featured-next:hover {
    background: var(--sk-accent);
    border-color: var(--sk-accent);
    color: #fff;
}

.sk-featured-prev.swiper-button-disabled,
.sk-featured-next.swiper-button-disabled {
    opacity: .4;
    cursor: default;
    pointer-events: none;
}

/* Pagination — inactive dots: light neutral, active dot: accent pill */
.sk-featured-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.sk-featured-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: #D8DEE6;
    border-radius: 20px;
    opacity: 1;
    cursor: pointer;
    transition: all .35s ease;
}

.sk-featured-pagination .swiper-pagination-bullet:hover {
    background: #B9C3CE;
}

.sk-featured-pagination .swiper-pagination-bullet-active {
    width: 32px;
    height: 10px;
    background: var(--sk-accent);
}

/* -------------------- How It Works -------------------- */
.sk-how-it-works {
    background: var(--sk-light);
}

.sk-step-card {
    position: relative;
    text-align: center;
    background: var(--sk-white);
    border-radius: var(--sk-radius-md);
    padding: 40px 24px;
    box-shadow: var(--sk-shadow-sm);
    height: 100%;
}

.sk-step-number {
    display: block;
    font-family: var(--sk-font-heading);
    font-weight: 800;
    font-size: 14px;
    color: var(--sk-accent);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.sk-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--sk-primary);
    color: var(--sk-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 18px;
}

.sk-step-card h3 {
    font-size: 17px;
    margin: 0;
}

.sk-step-connector {
    display: none;
}

@media (min-width: 992px) {
    .sk-step-connector {
        display: flex;
        position: absolute;
        top: 52px;
        right: -34px;
        z-index: 2;
        color: var(--sk-accent);
        font-size: 18px;
    }
}

/* -------------------- CTA Banner -------------------- */
.sk-cta-banner {
    background: var(--sk-primary);
    padding: 60px 0;
}

.sk-eyebrow-light {
    color: var(--sk-accent);
}

.sk-cta-banner h2 {
    color: var(--sk-white);
    margin: 0;
    font-size: 32px;
}

/* -------------------- Clients -------------------- */
.sk-client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    filter: grayscale(50%);
    opacity: 0.6;
    transition: var(--sk-transition);
}

.sk-client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.sk-client-logo img {
    max-height: 150px;
}

/* -------------------- Gallery -------------------- */
.sk-gallery-item,
.sk-gallery-grid-item a.sk-gallery-item {
    position: relative;
    border-radius: var(--sk-radius-md);
    overflow: hidden;
    display: block;
    height: 280px;
}

.sk-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sk-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 36, 63, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sk-white);
    font-size: 24px;
    opacity: 0;
    transition: var(--sk-transition);
}

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

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

.sk-gallery-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 44px;
}

.sk-filter-btn {
    padding: 10px 26px;
    border-radius: var(--sk-radius-pill);
    border: 2px solid var(--sk-primary);
    background: transparent;
    color: var(--sk-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--sk-transition);
}

.sk-filter-btn.active,
.sk-filter-btn:hover {
    background: var(--sk-primary);
    color: var(--sk-white);
}

.sk-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 36, 63, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sk-lightbox.active {
    display: flex;
}

.sk-lightbox-image {
    max-width: 85%;
    max-height: 85vh;
    border-radius: var(--sk-radius-sm);
}

.sk-lightbox-close,
.sk-lightbox-prev,
.sk-lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--sk-transition);
}

.sk-lightbox-close:hover,
.sk-lightbox-prev:hover,
.sk-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.sk-lightbox-close {
    top: 24px;
    right: 24px;
}

.sk-lightbox-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.sk-lightbox-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

/* -------------------- Testimonials -------------------- */
.sk-testimonials {
    background: var(--sk-light);
}

.sk-testimonial-card {
    background: var(--sk-white);
    border-radius: var(--sk-radius-md);
    padding: 40px;
    box-shadow: var(--sk-shadow-sm);
    margin: 10px;
}

.sk-quote-icon {
    color: var(--sk-accent);
    font-size: 28px;
    margin-bottom: 16px;
}

.sk-testimonial-author h4 {
    margin: 20px 0 2px;
    font-size: 17px;
}

.sk-testimonial-author span {
    color: var(--sk-gray-600);
    font-size: 13px;
}

/* -------------------- FAQ -------------------- */
.sk-accordion-item {
    border-bottom: 1px solid #E5E9EE;
}

.sk-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 4px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--sk-font-heading);
    font-weight: 600;
    font-size: 17px;
    color: var(--sk-primary);
    cursor: pointer;
}

.sk-accordion-header i {
    transition: var(--sk-transition);
    color: var(--sk-secondary);
}

.sk-accordion-item.active .sk-accordion-header i {
    transform: rotate(45deg);
}

.sk-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.sk-accordion-item.active .sk-accordion-body {
    max-height: 300px;
}

.sk-accordion-body p {
    padding: 0 4px 22px;
    color: var(--sk-gray-600);
}

/* -------------------- Contact -------------------- */
.sk-contact-form input,
.sk-contact-form textarea,
.sk-inquiry-form input,
.sk-inquiry-form textarea {
    width: 100%;
    padding: 15px 18px;
    border-radius: var(--sk-radius-sm);
    border: 1px solid #E0E5EB;
    font-family: var(--sk-font-body);
    box-sizing: border-box;
}

.sk-contact-detail-item {
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
}

.sk-contact-detail-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--sk-light);
    color: var(--sk-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sk-map-embed iframe {
    border-radius: var(--sk-radius-md);
    width: 100%;
}

.sk-product-inquiry-card {
    background: var(--sk-light);
    border-radius: var(--sk-radius-md);
    padding: 36px;
    position: sticky;
    top: 120px;
}

.sk-inquiry-call {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E0E5EB;
}

/* -------------------- Page Banner / Breadcrumbs -------------------- */
.sk-page-banner {
    position: relative;
    padding: 200px 0 90px;
    background: var(--sk-primary);
}

.sk-page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 36, 63, 0.9), rgba(26, 101, 139, 0.75));
}

.sk-page-banner-content {
    position: relative;
    z-index: 2;
}

.sk-page-banner-content h1 {
    color: var(--sk-white);
    font-size: 42px;
}

.sk-page-banner-content p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.sk-breadcrumbs {
    margin-top: 16px;
    font-size: 14px;
}

.sk-breadcrumbs a,
.sk-breadcrumbs .sep {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.sk-breadcrumbs .current {
    color: var(--sk-accent);
}

/* -------------------- Product Archive / Single -------------------- */
.sk-product-sidebar {
    background: var(--sk-white);
    border-radius: var(--sk-radius-md);
    padding: 28px;
    box-shadow: var(--sk-shadow-sm);
}

.sk-category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.sk-category-list li a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--sk-primary);
    border-bottom: 1px solid #EEF1F4;
    text-decoration: none;
}

.sk-category-list li.active a,
.sk-category-list li a:hover {
    color: var(--sk-secondary);
}

.sk-sidebar-cta {
    background: var(--sk-light);
    border-radius: var(--sk-radius-sm);
    padding: 22px;
}

.sk-tabs-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border-bottom: 2px solid #EEF1F4;
    margin: 50px 0 30px;
}

.sk-tab-btn {
    background: none;
    border: none;
    padding: 12px 6px;
    font-family: var(--sk-font-heading);
    font-weight: 600;
    color: var(--sk-gray-600);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
}

.sk-tab-btn.active {
    color: var(--sk-primary);
    border-color: var(--sk-accent);
}

.sk-tab-panel {
    display: none;
}

.sk-tab-panel.active {
    display: block;
}

.sk-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.sk-spec-table th,
.sk-spec-table td {
    padding: 12px;
    border-bottom: 1px solid #EEF1F4;
    text-align: left;
}

.sk-check-list {
    list-style: none;
    padding: 0;
}

.sk-check-list li {
    padding: 8px 0;
    display: flex;
    gap: 10px;
}

.sk-check-list i {
    color: var(--sk-secondary);
    margin-top: 4px;
}

.sk-tag-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sk-tag-list li {
    background: var(--sk-light);
    padding: 8px 18px;
    border-radius: var(--sk-radius-pill);
    font-size: 14px;
}

.sk-download-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
}

.sk-download-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--sk-light);
    border-radius: var(--sk-radius-sm);
    color: var(--sk-primary);
    font-weight: 600;
    text-decoration: none;
}

.sk-related-products {
    padding-top: 100px;
}

.sk-no-results {
    text-align: center;
    padding: 60px 0;
    color: var(--sk-gray-600);
}

.sk-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.sk-pagination .page-numbers {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sk-light);
    color: var(--sk-primary);
    text-decoration: none;
}

.sk-pagination .page-numbers.current {
    background: var(--sk-primary);
    color: var(--sk-white);
}

/* -------------------- 404 -------------------- */
.sk-404 {
    padding: 160px 0;
}

.sk-404-number {
    font-size: 140px;
    color: var(--sk-secondary);
    line-height: 1;
}

.sk-404-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.sk-search-form {
    display: flex;
    max-width: 460px;
    margin: 30px auto;
}

.sk-search-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #E0E5EB;
    border-radius: var(--sk-radius-pill) 0 0 var(--sk-radius-pill);
    font-size: 16px;
}

.sk-search-submit {
    padding: 0 22px;
    background: var(--sk-primary);
    color: #fff;
    border: none;
    border-radius: 0 var(--sk-radius-pill) var(--sk-radius-pill) 0;
    cursor: pointer;
}

/* -------------------- Footer -------------------- */
.sk-footer {
    background: var(--sk-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 90px 0 0;
}

.sk-footer-title {
    color: var(--sk-white);
    margin-bottom: 24px;
}

.sk-footer-about {
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.8;
}

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

.sk-footer-links li a {
    color: rgba(255, 255, 255, 0.75);
    display: block;
    padding: 8px 0;
    text-decoration: none;
}

.sk-footer-links li a:hover {
    color: var(--sk-accent);
}

.sk-footer-contact {
    list-style: none;
    padding: 0;
}

.sk-footer-contact li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.sk-footer-contact i {
    color: var(--sk-accent);
    margin-top: 4px;
}

.sk-footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.sk-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.sk-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--sk-transition);
}

.sk-social-icons a:hover {
    background: var(--sk-accent);
    color: var(--sk-primary);
}

.sk-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 60px;
    padding: 26px 0;
    text-align: center;
    font-size: 13px;
}

.sk-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sk-accent);
    color: var(--sk-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--sk-transition);
    z-index: 500;
    text-decoration: none;
}

.sk-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   RESPONSIVE — Laptop (1200 down to 992)
   ========================================================= */
@media (max-width: 1199px) {
    .sk-hero-content h1 {
        font-size: 46px;
    }

    section {
        padding: 80px 0;
    }
}

/* =========================================================
   RESPONSIVE — Tablet (991 down to 768)
   ========================================================= */
@media (max-width: 991px) {
    .sk-nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(360px, 85vw);
        height: 100vh;
        background: var(--sk-white);
        z-index: 1000;
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        overflow-y: auto;
    }

    .sk-nav-wrapper.active {
        right: 0;
    }

    .sk-nav {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 4px;
        width: 100%;
    }

    .sk-nav .nav-link {
        color: var(--sk-primary);
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid #EEF1F4;
    }

    .sk-hamburger {
        display: block;
    }

    .sk-header-cta {
        display: none !important;
    }

    .sk-nav-cta {
        margin-top: 24px;
    }

    .sk-hero-content h1 {
        font-size: 38px;
    }

    .sk-counters {
        gap: 24px;
    }

    section {
        padding: 64px 0;
    }

    .sk-product-inquiry-card {
        position: static;
        margin-top: 40px;
    }

    .sk-page-banner {
        padding: 160px 0 70px;
    }

    .sk-hero-slide {
        justify-content: center;
        text-align: center;
    }

    .sk-hero-buttons {
        justify-content: center;
    }
}

/* =========================================================
   RESPONSIVE — Mobile (767 down)
   ========================================================= */
@media (max-width: 767px) {
    .sk-hero {
        min-height: 520px;
        padding-top: 74px;
    }

    .sk-hero-content h1 {
        font-size: 30px;
    }

    .sk-hero-content p {
        font-size: 15px;
    }

    .sk-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .sk-hero-buttons .sk-btn {
        width: 100%;
        justify-content: center;
    }

    .sk-counters {
        flex-direction: column;
        gap: 16px;
    }

    .sk-about-feature-list {
        grid-template-columns: 1fr;
    }

    .sk-about-badge {
        right: 0;
        bottom: -14px;
        padding: 14px 18px;
    }

    .sk-about-badge-number {
        font-size: 20px;
    }

    .sk-section-heading {
        margin-bottom: 36px;
    }

    section {
        padding: 50px 0;
    }

    .sk-feature-card,
    .sk-service-card {
        padding: 28px 20px;
    }

    .sk-product-card-image {
        height: 220px;
    }

    .sk-gallery-item {
        height: 220px;
    }

    .sk-tabs-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .sk-tab-btn {
        white-space: nowrap;
    }

    .sk-404-number {
        font-size: 90px;
    }

    .sk-page-banner {
        padding: 140px 0 50px;
    }

    .sk-page-banner-content h1 {
        font-size: 28px;
    }

    .sk-footer {
        padding: 60px 0 0;
    }

    .sk-back-to-top {
        bottom: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
    }

    .sk-hero-slide {
        justify-content: center;
        text-align: center;
    }
}

/* =========================================================
   Small mobile safety net — no overflow, touch-friendly targets
   ========================================================= */
@media (max-width: 400px) {
    .sk-hero-content h1 {
        font-size: 26px;
    }

    .sk-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ---------- Global Utilities ---------- */


button,
a.sk-btn {
    min-height: 44px;
}

.sk-form-response {
    margin-top: 14px;
    font-size: 14px;
}

.sk-form-response.success {
    color: #1a8a4c;
}

.sk-form-response.error {
    color: #d0433c;
}




/* ===== Product Detail Styles (sk-pd- prefix) ===== */
.sk-pd-overview {
    padding: 90px 0 40px;
}

.sk-pd-gallery {
    position: relative;
}

.sk-pd-main-image {
    border-radius: var(--sk-radius-md);
    overflow: hidden;
    background: var(--sk-light);
    margin-bottom: 16px;
}

.sk-pd-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.sk-pd-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sk-pd-thumb {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    border-radius: var(--sk-radius-sm);
    overflow: hidden;
    width: 80px;
    height: 80px;
    opacity: 0.5;
    transition: var(--sk-transition);
    border: 2px solid transparent;
}

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

.sk-pd-thumb:hover,
.sk-pd-thumb.active {
    opacity: 1;
    border-color: var(--sk-accent);
}

.sk-pd-info {
    padding: 20px 0;
}

.sk-pd-title {
    font-family: var(--sk-font-heading);
    font-size: 36px;
    color: var(--sk-primary);
    margin: 8px 0 16px;
    line-height: 1.2;
}

.sk-pd-title .highlight {
    color: var(--sk-secondary);
}

.sk-pd-description {
    color: var(--sk-gray-600);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.sk-pd-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Intro */
.sk-pd-intro {
    padding: 20px 0 40px;
}

.sk-pd-intro-text {
    color: var(--sk-gray-600);
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

/* Process */
.sk-pd-process {
    padding: 60px 0;
    background: var(--sk-light);
}

.sk-pd-process-card {
    background: var(--sk-white);
    border-radius: var(--sk-radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--sk-shadow-sm);
    transition: var(--sk-transition);
    height: 100%;
}

.sk-pd-process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sk-shadow-md);
}

.sk-pd-process-thumb {
    border-radius: var(--sk-radius-md);
    overflow: hidden;
    margin-bottom: 16px;
    height: 200px;
}

.sk-pd-process-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sk-pd-process-card h3 {
    font-family: var(--sk-font-heading);
    font-size: 18px;
    color: var(--sk-primary);
    margin-bottom: 8px;
}

.sk-pd-process-card p {
    color: var(--sk-gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Content Blocks */
.sk-pd-block {
    padding: 60px 0;
}

.sk-pd-block-alt {
    background: var(--sk-light);
}

.sk-pd-block-title {
    font-family: var(--sk-font-heading);
    font-size: 28px;
    color: var(--sk-primary);
    margin-bottom: 16px;
    text-align: center;
}

.sk-pd-block-text {
    color: var(--sk-gray-600);
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Features */
.sk-pd-features {
    padding: 30px 0;
}

.sk-pd-feature-card {
    background: var(--sk-light);
    border-radius: var(--sk-radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--sk-shadow-sm);
    transition: var(--sk-transition);
    height: 100%;
}

.sk-pd-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sk-shadow);
}

.sk-pd-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--sk-primary);
    color: var(--sk-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.sk-pd-feature-card h3 {
    font-family: var(--sk-font-heading);
    font-size: 18px;
    color: var(--sk-primary);
    margin-bottom: 8px;
}

.sk-pd-feature-card p {
    color: var(--sk-gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Inquiry */
.sk-pd-inquiry {
    padding: 60px 0;
    background: var(--sk-primary);
    color: var(--sk-white);
}

.sk-pd-inquiry-wrapper {
    padding: 0 20px;
}

.sk-pd-inquiry h2 {
    font-family: var(--sk-font-heading);
    font-size: 32px;
    margin: 8px 0 16px;
}

.sk-pd-inquiry p {
    opacity: 0.85;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.sk-pd-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sk-pd-contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    font-size: 15px;
}

.sk-pd-contact-list i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sk-accent);
    flex-shrink: 0;
}

.sk-pd-contact-list a {
    color: var(--sk-white);
    text-decoration: none;
}

.sk-pd-contact-list a:hover {
    color: var(--sk-accent);
}

.sk-pd-form {
    background: var(--sk-white);
    border-radius: var(--sk-radius-md);
    padding: 32px;
    color: var(--sk-primary);
}

/* Page Content */
.sk-page-content {
    padding: 40px 0 60px;
}

/* Responsive */
@media (max-width: 992px) {
    .sk-pd-title {
        font-size: 30px;
    }

    .sk-pd-block-title {
        font-size: 24px;
    }

    .sk-pd-inquiry h2 {
        font-size: 28px;
    }

    .sk-pd-thumb {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .sk-pd-overview {
        padding: 40px 0 20px;
    }

    .sk-pd-title {
        font-size: 26px;
    }

    .sk-pd-actions {
        flex-direction: column;
    }

    .sk-pd-actions .sk-btn {
        width: 100%;
        justify-content: center;
    }

    .sk-pd-process-thumb {
        height: 160px;
    }

    .sk-pd-block-title {
        font-size: 22px;
    }

    .sk-pd-inquiry h2 {
        font-size: 24px;
    }

    .sk-pd-form {
        padding: 24px;
    }

    .sk-pd-feature-card {
        padding: 24px 16px;
    }

    .sk-pd-thumb {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .sk-pd-title {
        font-size: 22px;
    }

    .sk-pd-block-title {
        font-size: 20px;
    }

    .sk-pd-inquiry h2 {
        font-size: 20px;
    }

    .sk-pd-process-thumb {
        height: 140px;
    }

    .sk-pd-thumb {
        width: 50px;
        height: 50px;
    }
}




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

.sk-mission-vision {
    position: relative;
    padding: 100px 0;
    background: var(--sk-light);
    overflow: hidden;
}

/* Decorative background */
.sk-mission-vision::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(26, 101, 139, 0.05);
    top: -180px;
    left: -180px;
}

.sk-mission-vision::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(250, 178, 57, 0.06);
    bottom: -180px;
    right: -120px;
}

/* Section Heading */

.sk-section-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 55px;
}

.sk-section-label {
    display: inline-block;
    margin-bottom: 12px;
    font-family: var(--sk-font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sk-secondary);
}

.sk-section-heading h2 {
    margin: 0 0 16px;
    font-family: var(--sk-font-heading);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--sk-primary);
}

.sk-section-heading h2 span {
    color: var(--sk-secondary);
}

.sk-section-heading p {
    max-width: 680px;
    margin: 0 auto;
    font-family: var(--sk-font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--sk-gray-600);
}

/* Cards */

.sk-mv-grid {
    position: relative;
    z-index: 2;
}

.sk-mv-card {
    position: relative;
    height: 100%;
    padding: 42px;
    border-radius: var(--sk-radius-lg);
    background: var(--sk-white);
    box-shadow: var(--sk-shadow-md);
    overflow: hidden;
    transition: var(--sk-transition);
    border: 1px solid rgba(10, 36, 63, 0.06);
}

.sk-mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sk-shadow-lg);
}

/* Top accent line */

.sk-mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--sk-secondary);
}

.sk-vision-card::before {
    background: var(--sk-accent);
}

/* Icon */

.sk-mv-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 18px;
    background: rgba(26, 101, 139, 0.10);
    color: var(--sk-secondary);
    font-size: 27px;
    transition: var(--sk-transition);
}

.sk-vision-card .sk-mv-icon {
    background: rgba(250, 178, 57, 0.14);
    color: #D68B00;
}

.sk-mv-card:hover .sk-mv-icon {
    transform: scale(1.08) rotate(-3deg);
}

/* Label */

.sk-mv-label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--sk-font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--sk-secondary);
}

.sk-vision-card .sk-mv-label {
    color: #D68B00;
}

/* Heading */

.sk-mv-content h3 {
    margin: 0 0 18px;
    font-family: var(--sk-font-heading);
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--sk-primary);
}

/* Paragraph */

.sk-mv-content p {
    margin: 0 0 15px;
    font-family: var(--sk-font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--sk-gray-600);
}

.sk-mv-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .sk-mission-vision {
        padding: 80px 0;
    }

    .sk-section-heading {
        margin-bottom: 40px;
    }

    .sk-section-heading h2 {
        font-size: 36px;
    }

    .sk-mv-card {
        padding: 35px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .sk-mission-vision {
        padding: 65px 0;
    }

    .sk-section-heading {
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .sk-section-heading h2 {
        font-size: 30px;
    }

    .sk-section-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .sk-mv-card {
        padding: 28px 24px;
        border-radius: var(--sk-radius-md);
    }

    .sk-mv-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 22px;
        border-radius: 15px;
        font-size: 23px;
    }

    .sk-mv-content h3 {
        font-size: 22px;
    }

    .sk-mv-content p {
        font-size: 14px;
        line-height: 1.75;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .sk-section-heading h2 {
        font-size: 27px;
    }

    .sk-mv-card {
        padding: 25px 20px;
    }

}




```css
/* =========================================================
   CLIENTS PAGE
   ========================================================= */

.sk-clients-section {
    position: relative;
    padding: 110px 0;
    background: #f7f8fa;
    overflow: hidden;
}


/* =========================================================
   BACKGROUND SHAPES
   ========================================================= */

.sk-clients-section::before {
    content: "";
    position: absolute;

    width: 520px;
    height: 520px;

    top: -300px;
    right: -200px;

    border-radius: 50%;

    background: rgba(10, 36, 63, 0.035);

    pointer-events: none;
}

.sk-clients-section::after {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -220px;
    left: -180px;

    border-radius: 50%;

    background: rgba(245, 166, 35, 0.04);

    pointer-events: none;
}


/* =========================================================
   HEADER
   ========================================================= */

.sk-clients-header {
    position: relative;
    z-index: 2;

    max-width: 850px;

    margin: 0 auto 65px;

    text-align: center;
}


/* Label */

.sk-clients-label {
    display: inline-block;

    margin-bottom: 16px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;

    color: var(--sk-secondary, #1a658b);
}


/* Heading */

.sk-clients-title {
    margin: 0;

    font-family: var(--sk-font-heading, inherit);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.5px;

    color: var(--sk-primary, #0a243f);
}


/* Highlight */

.sk-clients-title span {
    color: var(--sk-secondary, #1a658b);
}





/* Description */

.sk-clients-description {
    max-width: 720px;

    margin: 0 auto;

    font-size: 16px;

    line-height: 1.8;

    color: #667085;
}

.sk-clients-description p {
    margin: 0 0 10px;
}

.sk-clients-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CLIENT GRID
   ========================================================= */

.sk-clients-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* =========================================================
   CLIENT CARD
   ========================================================= */

.sk-client-card {
    min-width: 0;
}


.sk-client-card-link {
    height: 100%;

    min-height: 210px;

    padding: 30px 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    text-decoration: none;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    box-shadow: 0 5px 25px rgba(10, 36, 63, 0.05);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    border-radius: 4px;
}


/* Cards without link */

.sk-client-card:not(:has(.sk-client-card-link)) {
    min-height: 210px;

    padding: 30px 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    box-shadow: 0 5px 25px rgba(10, 36, 63, 0.05);

    border-radius: 4px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* Hover */

.sk-client-card-link:hover,
.sk-client-card:not(:has(.sk-client-card-link)):hover {
    transform: translateY(-8px);

    border-color: var(--sk-secondary, #1a658b);

    box-shadow: 0 18px 40px rgba(10, 36, 63, 0.10);
}


/* =========================================================
   LOGO
   ========================================================= */

.sk-client-logo {
    width: 100%;

    height: 110px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.sk-client-logo img {
    display: block;

    max-width: 175px;

    max-height: 80px;

    width: auto;

    height: auto;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: 0.65;

    transition:
        filter 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}


/* Logo hover */

.sk-client-card:hover .sk-client-logo img {
    filter: grayscale(0%);

    opacity: 1;

    transform: scale(1.06);
}


/* =========================================================
   CLIENT NAME
   ========================================================= */

.sk-client-name {
    margin-top: 18px;

    font-family: var(--sk-font-heading, inherit);

    font-size: 14px;

    line-height: 1.4;

    font-weight: 600;

    color: var(--sk-primary, #0a243f);
}


/* =========================================================
   NO LOGO
   ========================================================= */

.sk-client-no-logo {
    font-size: 15px;

    font-weight: 600;

    color: var(--sk-primary, #0a243f);
}


/* =========================================================
   EMPTY
   ========================================================= */

.sk-clients-empty {
    position: relative;
    z-index: 2;

    padding: 50px;

    text-align: center;

    background: #ffffff;

    border: 1px dashed #d0d5dd;
}

.sk-clients-empty p {
    margin: 0;

    color: #667085;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {

    .sk-clients-section {
        padding: 90px 0;
    }

    .sk-clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 991px) {

    .sk-clients-header {
        margin-bottom: 50px;
    }

    .sk-clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 575px) {

    .sk-clients-section {
        padding: 70px 0;
    }

    .sk-clients-header {
        margin-bottom: 40px;
    }

    .sk-clients-title {
        font-size: 32px;
    }

    .sk-clients-description {
        font-size: 14px;

        line-height: 1.7;
    }

    .sk-clients-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    .sk-client-card-link,
    .sk-client-card:not(:has(.sk-client-card-link)) {
        min-height: 160px;

        padding: 18px 12px;
    }

    .sk-client-logo {
        height: 75px;
    }

    .sk-client-logo img {
        max-width: 120px;

        max-height: 55px;
    }

    .sk-client-name {
        margin-top: 10px;

        font-size: 12px;
    }

}


@media (max-width: 380px) {

    .sk-clients-grid {
        grid-template-columns: 1fr;
    }

}



/* =========================================
   PRODUCT SPECIFICATIONS TABLE
========================================= */

.sk-accordion-body .specifications-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 20px 0;
    background: #fff;
    table-layout: fixed;
}

.sk-accordion-body .specifications-table th,
.sk-accordion-body .specifications-table td {
    padding: 14px 18px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
    font-size: 15px;
}

.sk-accordion-body .specifications-table th {
    width: 38%;
    font-weight: 600;
    background: #f7f7f7;
}

.sk-accordion-body .specifications-table td {
    width: 62%;
    background: #fff;
}

/* Notes wali rows */
.sk-accordion-body .specifications-table td br {
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 767px) {

    .sk-accordion-body {
        overflow-x: auto;
    }

    .sk-accordion-body .specifications-table {
        min-width: 650px;
        table-layout: auto;
    }

    .sk-accordion-body .specifications-table th,
    .sk-accordion-body .specifications-table td {
        padding: 12px 14px;
        font-size: 14px;
    }
}


/* =========================================================
   EQUIPMENT DETAIL
   Unique CSS
   ========================================================= */


/* =========================================================
   MAIN SECTION
   ========================================================= */

.sk-equipment-detail-section {
    background: var(--sk-white);
    
}


/* =========================================================
   CONTENT AREA
   ========================================================= */

.sk-equipment-detail-content {
    padding: 20px 25px 20px 35px;
}


/* =========================================================
   TITLE
   ========================================================= */

.sk-equipment-detail-heading {
    font-family: var(--sk-font-heading);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: var(--sk-primary);

    margin: 0 0 24px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.sk-equipment-detail-description {
    margin: 0 0 28px;
}

.sk-equipment-detail-description p {
    font-family: var(--sk-font-body);
    font-size: 16px;
    line-height: 1.75;

    color: var(--sk-gray-600);

    margin: 0 0 18px;
}

.sk-equipment-detail-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   EQUIPMENT INFORMATION
   ========================================================= */

.sk-equipment-detail-meta {
    list-style: none;

    width: 100%;

    margin: 0 0 30px;
    padding: 0;

    border-top: 1px solid rgba(10, 36, 63, 0.10);
}

.sk-equipment-detail-meta-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    gap: 25px;

    padding: 15px 5px;

    border-bottom: 1px solid rgba(10, 36, 63, 0.10);

    font-family: var(--sk-font-body);
    font-size: 15px;

    transition: background-color 0.2s ease;
}

.sk-equipment-detail-meta-item:hover {
    background-color: var(--sk-light);
}

.sk-equipment-detail-meta-label {
    color: var(--sk-gray-600);
    font-weight: 500;

    flex-shrink: 0;
}

.sk-equipment-detail-meta-value {
    color: var(--sk-primary);

    font-family: var(--sk-font-heading);
    font-weight: 600;

    text-align: right;
}


/* =========================================================
   IMAGE WRAPPER
   ========================================================= */

.sk-equipment-detail-media {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: var(--sk-radius-lg);

    background: var(--sk-white);

    box-shadow: var(--sk-shadow-md);

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


/* =========================================================
   IMAGE
   IMPORTANT:
   - No fixed height
   - No object-fit cover
   - No stretching
   - No cropping
   ========================================================= */

.sk-equipment-detail-image {
    display: block;

    width: 100%;
    max-width: 100%;

    height: auto;

    object-fit: contain;

    object-position: center;

    margin: 0;
}


/* =========================================================
   CTA WRAPPER
   ========================================================= */

.sk-equipment-detail-cta {
    display: flex;
    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


/* =========================================================
   QUOTE BUTTON
   Self-contained: does not depend on .sk-btn / .sk-btn-accent
   ========================================================= */

.sk-equipment-detail-button {
    display: inline-flex;

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

    gap: 9px;

    padding: 15px 32px;

    border-radius: var(--sk-radius-pill);
    border: 2px solid transparent;

    font-family: var(--sk-font-heading);
    font-size: 15px;
    font-weight: 600;

    line-height: 1;

    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;

    background: var(--sk-accent);
    color: var(--sk-primary);

    box-shadow: var(--sk-shadow-sm);

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.sk-equipment-detail-button i {
    font-size: 14px;
}

.sk-equipment-detail-button:hover,
.sk-equipment-detail-button:focus-visible {
    background: var(--sk-primary);
    color: var(--sk-white);

    transform: translateY(-3px);
    box-shadow: var(--sk-shadow-md);
}

.sk-equipment-detail-button:active {
    transform: translateY(-1px);
    box-shadow: var(--sk-shadow-sm);
}

.sk-equipment-detail-button:focus-visible {
    outline: 2px solid var(--sk-secondary);
    outline-offset: 3px;
}

/* Secondary / outline variant, e.g. "Call Us" next to "Request A Quote" */
.sk-equipment-detail-button--outline {
    background: transparent;
    color: var(--sk-primary);
    border-color: var(--sk-primary);
    box-shadow: none;
}

.sk-equipment-detail-button--outline:hover,
.sk-equipment-detail-button--outline:focus-visible {
    background: var(--sk-primary);
    color: var(--sk-white);
    box-shadow: var(--sk-shadow-sm);
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (max-width: 1199px) {

    .sk-equipment-detail-heading {
        font-size: 36px;
    }

    .sk-equipment-detail-content {
        padding-left: 20px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .sk-equipment-detail-section {
        padding-top: 20px;
        padding-bottom: 55px;
    }

    .sk-equipment-detail-content {
        padding: 15px 5px 0;
    }

    .sk-equipment-detail-heading {
        font-size: 30px;
        line-height: 1.2;

        margin-bottom: 20px;
    }

    .sk-equipment-detail-description p {
        font-size: 15px;
        line-height: 1.7;
    }

    .sk-equipment-detail-meta-item {
        padding: 14px 4px;
    }

    .sk-equipment-detail-button {
        padding: 14px 28px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .sk-equipment-detail-section {
        margin-top: 10px;

        padding-top: 10px;
        padding-bottom: 40px;
    }

    .sk-equipment-detail-content {
        padding: 5px 0 0;
    }

    .sk-equipment-detail-heading {
        font-size: 26px;
        line-height: 1.2;

        margin-bottom: 18px;
    }

    .sk-equipment-detail-description {
        margin-bottom: 24px;
    }

    .sk-equipment-detail-description p {
        font-size: 15px;
        line-height: 1.65;

        margin-bottom: 15px;
    }

    .sk-equipment-detail-meta {
        margin-bottom: 25px;
    }

    .sk-equipment-detail-meta-item {
        font-size: 14px;

        padding: 13px 3px;

        gap: 15px;
    }

    .sk-equipment-detail-meta-label {
        flex-shrink: 0;
    }

    .sk-equipment-detail-meta-value {
        text-align: right;

        word-break: break-word;
    }

    .sk-equipment-detail-cta {
        width: 100%;
    }

    .sk-equipment-detail-button {
        width: 100%;

        justify-content: center;

        padding: 14px 20px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .sk-equipment-detail-section {
        padding-bottom: 35px;
    }

    .sk-equipment-detail-heading {
        font-size: 23px;
    }

    .sk-equipment-detail-description p {
        font-size: 14px;
        line-height: 1.65;
    }

    .sk-equipment-detail-meta-item {
        font-size: 13px;

        gap: 12px;
    }

    .sk-equipment-detail-button {
        font-size: 14px;
        padding: 13px 18px;
    }

}


/* -------------------- Card Wrapper -------------------- */
.skcf7-wrap {
    background: var(--skcf7-white);
    border-radius: var(--skcf7-radius-lg);
    box-shadow: var(--skcf7-shadow-lg);
    padding: 48px;
    max-width: 560px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    font-family: var(--skcf7-font-body);
}
 
.skcf7-wrap *,
.skcf7-wrap *::before,
.skcf7-wrap *::after {
    box-sizing: border-box;
}
 
.skcf7-wrap::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: var(--skcf7-accent);
    opacity: 0.12;
    border-radius: 50%;
    pointer-events: none;
}
 
.skcf7-eyebrow {
    display: inline-block;
    font-family: var(--skcf7-font-heading);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--skcf7-secondary);
    background: rgba(26, 101, 139, 0.08);
    padding: 6px 14px;
    border-radius: var(--skcf7-radius-pill);
    margin: 0 0 16px;
}
 
.skcf7-heading {
    font-family: var(--skcf7-font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--skcf7-primary);
    margin: 0 0 8px;
}
 
.skcf7-subheading {
    color: var(--skcf7-gray-600);
    font-size: 15px;
    margin: 0 0 32px;
    line-height: 1.5;
}
 
/* -------------------- Form Layout -------------------- */
.skcf7-form {
    display: block;
}
 
.skcf7-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
 
.skcf7-group {
    margin-bottom: 22px;
    position: relative;
}
 
.skcf7-label {
    display: block;
    font-family: var(--skcf7-font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--skcf7-primary);
    margin-bottom: 8px;
}
 
.skcf7-label-optional {
    font-family: var(--skcf7-font-body);
    font-weight: 400;
    color: var(--skcf7-gray-600);
    font-size: 12px;
}
 
/* -------------------- Inputs -------------------- */
.skcf7-input,
.skcf7-textarea {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    box-sizing: border-box !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 14px 18px !important;
    border: 2px solid var(--skcf7-border, #E4E9EF) !important;
    border-radius: 8px !important;
    background: var(--skcf7-light, #F4F7FA) !important;
    background-image: none !important;
    color: var(--skcf7-primary, #0A243F) !important;
    font-family: var(--skcf7-font-body, 'Inter', sans-serif) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    box-shadow: none !important;
    outline: none !important;
    transition: var(--skcf7-transition, all 0.25s ease) !important;
}
 
.skcf7-textarea {
    min-height: 120px !important;
    resize: vertical !important;
}
 
.skcf7-input::placeholder,
.skcf7-textarea::placeholder {
    color: #A9B4C0 !important;
    opacity: 1 !important;
}
 
.skcf7-input:focus,
.skcf7-textarea:focus {
    outline: none !important;
    border-color: #FAB239 !important;
    background: var(--skcf7-white, #ffffff) !important;
    box-shadow: 0 0 0 4px rgba(250, 178, 57, 0.18) !important;
}
 
.skcf7-input.wpcf7-not-valid,
.skcf7-textarea.wpcf7-not-valid {
    border-color: var(--skcf7-error, #D64545) !important;
}
 
.skcf7-error-tip {
    color: var(--skcf7-error) !important;
    font-size: 12px !important;
    margin-top: 6px !important;
    display: block !important;
}
 
/* -------------------- Submit Button --------------------
   Two selectors are covered on purpose:
   1) button.skcf7-submit   -> custom <button> (icon shows, use this)
   2) input.skcf7-submit    -> native CF7 [submit] shortcode fallback
      (input can't contain a child icon, so no icon here, but the
      button will still look and behave identically otherwise) */
.skcf7-submit {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 17px 32px !important;
    margin: 6px 0 0 !important;
    border: none !important;
    outline: none !important;
    border-radius: 50px !important;
    background: var(--skcf7-primary, #0A243F) !important;
    color: var(--skcf7-white, #ffffff) !important;
    font-family: var(--skcf7-font-heading, 'Poppins', sans-serif) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    letter-spacing: 0.2px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: none !important;
    vertical-align: middle !important;
    cursor: pointer !important;
    box-shadow: var(--skcf7-shadow-sm, 0 4px 12px rgba(10,36,63,0.08)) !important;
    transition: var(--skcf7-transition, all 0.25s ease) !important;
    -webkit-tap-highlight-color: transparent !important;
}
 
.skcf7-submit-text {
    display: inline !important;
    white-space: nowrap !important;
}
 
.skcf7-submit:hover,
.skcf7-submit:focus {
    background: var(--skcf7-secondary, #1A658B) !important;
    color: var(--skcf7-white, #ffffff) !important;
    transform: translateY(-3px) !important;
    box-shadow: var(--skcf7-shadow-md, 0 8px 30px rgba(10,36,63,0.12)) !important;
}
 
.skcf7-submit:active {
    transform: translateY(-1px) !important;
    box-shadow: var(--skcf7-shadow-sm, 0 4px 12px rgba(10,36,63,0.08)) !important;
}
 
.skcf7-submit:focus-visible {
    outline: 3px solid var(--skcf7-accent, #FAB239) !important;
    outline-offset: 2px !important;
}
 
.skcf7-submit:disabled,
.skcf7-submit.disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}
 
.skcf7-submit-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    font-size: 14px !important;
    line-height: 1 !important;
    color: inherit !important;
    transition: var(--skcf7-transition, all 0.25s ease) !important;
}
 
.skcf7-submit:hover .skcf7-submit-icon,
.skcf7-submit:focus .skcf7-submit-icon {
    transform: translateX(4px) !important;
}
 
/* CF7 injects a spinner <span class="wpcf7-spinner"> right after
   the submit control — keep it aligned instead of dropping to a new line */
.skcf7-form .wpcf7-spinner {
    margin: 8px auto 0;
    display: block;
}
 
.skcf7-form .wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 12px 16px !important;
    border-radius: var(--skcf7-radius-sm) !important;
    font-size: 14px !important;
}
 
/* -------------------- Responsive -------------------- */
@media (max-width: 600px) {
    .skcf7-wrap {
        padding: 32px 24px;
    }
    .skcf7-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
 