    :root {
        --primary-blue: #0B3C5D;
        --secondary-grey: #6B7280;
        --accent-blue: #3BAFDA;
        --ice-blue: #A6E1FA;
        --background-light: #F8FAFC;
        --secondary-grey: #6C757D;
        --white: #FFFFFF;
        --glacier-blue: #5BC0EB;
        --light-grey: #E5E7EB;
        --gold-accent: #D4AF37;
        --hover-shadow: rgba(59, 175, 218, 0.15);
        --system-blue: #E8F4FC;
        --deep-navy: #0A2A43;
        --contact-gradient: linear-gradient(135deg, #0B3C5D 0%, #0A2A43 100%);
        --form-bg: rgba(255, 255, 255, 0.95);
        --input-border: rgba(11, 60, 93, 0.15);
        --input-focus: rgba(59, 175, 218, 0.3);
        --card-shadow: 0 20px 60px rgba(11, 60, 93, 0.12);
        --icon-bg: rgba(166, 225, 250, 0.15);
        --service-gradient: linear-gradient(135deg, #0B3C5D 0%, #0A2A43 100%);
        --service-card-bg: rgba(255, 255, 255, 0.95);
        --service-icon-bg: rgba(166, 225, 250, 0.15);
        --service-border: rgba(59, 175, 218, 0.2);
        --product-border: rgba(59, 175, 218, 0.2);

    }

    body {
        font-family: 'Inter', sans-serif;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        min-height: 200vh;
        /* For scrolling demo */
        padding-top: 100px;
        /* Space for fixed navbar */
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
    }

    /* ---------- Premium Navbar Base ---------- */
    .navbar {
        background: linear-gradient(135deg, #052b42 0%, #052b42 100%);
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        box-shadow: 0 10px 40px rgba(11, 60, 93, 0.08);
        padding: 1.2rem 2.5rem;
        border-radius: 0 0 20px 20px;
        border-bottom: 3px solid var(--accent-blue);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1030;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar.scrolled {
        padding: 0.8rem 2.5rem;
        box-shadow: 0 15px 50px rgba(11, 60, 93, 0.15);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.99) 100%);
    }

    /* ---------- Premium Brand ---------- */
    .brand-logo-img {
        height: auto;
        max-height: 60px;
        width: auto;
        max-width: 100%;
        margin-right: 0.5rem;
        display: block;
    }

    @media (max-width: 768px) {
        .brand-logo-img {
            max-height: 60px;
            margin-right: 0.4rem;
        }
    }

    /* Mobile phones */
    @media (max-width: 480px) {
        .brand-logo-img {
            max-height: 45px;
            margin-right: 0.3rem;
        }
    }

    /* ---------- Premium Nav Links ---------- */
    .navbar-nav {
        gap: 1.2rem;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        color: var(--white) !important;
        padding: 0.7rem 1.2rem !important;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.85rem;
        border-radius: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #3bafda1a 0%, #0b3c5d0d 100%);
        border-radius: 8px;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        opacity: 1;
        transform: scale(1);
    }

    .nav-link:hover {
        color: var(--accent-blue) !important;
        transform: translateY(-2px);
    }

    .nav-link.active {
        color: var(--accent-blue) !important;
        font-weight: 700;
    }

    .nav-indicator {
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-blue), var(--gold-accent));
        border-radius: 2px;
        transition: width 0.3s ease, left 0.3s ease;
    }

    .nav-item:hover .nav-indicator {
        width: 60%;
    }

    /* ---------- Premium Language Switcher ---------- */
    .language-switcher {
        position: relative;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 6px;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(12px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }

    /* Buttons */
    .language-switcher .lang-btn {
        position: relative;
        z-index: 2;
        border: none;
        background: transparent;
        color: var(--white);
        font-weight: 700;
        font-size: 13px;
        padding: 10px 16px;
        border-radius: 40px;
        cursor: pointer;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .language-switcher .lang-btn i {
        font-size: 14px;
        opacity: 0.9;
    }

    /* Hover */
    .language-switcher .lang-btn:hover {
        color: var(--deep-navy);
        transform: translateY(-1px);
    }

    /* Active Button */
    .language-switcher .lang-btn.active {
        color: #0b3c5d;
    }

    /* Sliding Indicator */
    .language-switcher .lang-slider {
        position: absolute;
        top: 6px;
        left: 6px;
        width: calc(50% - 6px);
        height: calc(100% - 12px);
        background: linear-gradient(135deg, #7bc5e2, #ffffff);
        border-radius: 50px;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
        box-shadow: 0 10px 20px rgba(123, 197, 226, 0.25);
    }

    /* When Spanish active */
    .language-switcher.es-active .lang-slider {
        transform: translateX(100%);
    }

    @media (max-width: 768px) {
        .language-switcher {
            margin: 12px auto 0 auto;
            /* center */
            justify-content: center;
            width: fit-content;
        }
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes borderGlow {
        from {
            opacity: 0.5;
        }

        to {
            opacity: 1;
        }
    }

    /* ---------- Premium Toggler ---------- */
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        background: rgba(11, 60, 93, 0.05);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .navbar-toggler:hover {
        background: rgba(11, 60, 93, 0.1);
        transform: rotate(90deg);
    }

    .navbar-toggler-icon {
        width: 24px;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
        display: block;
        position: relative;
        transition: all 0.3s;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        width: 24px;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
        position: absolute;
        left: 0;
        transition: all 0.3s;
    }

    .navbar-toggler-icon::before {
        top: -8px;
    }

    .navbar-toggler-icon::after {
        top: 8px;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background: transparent;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 0;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        top: 0;
    }

    /* ---------- Call-to-Action Button ---------- */
    .nav-cta {
        margin-left: 1.5rem;
    }

    .btn-premium {
        background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
        color: white;
        border: none;
        padding: 0.8rem 1.8rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        box-shadow: 0 8px 20px rgba(59, 175, 218, 0.3);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.7s;
    }

    .btn-premium:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(59, 175, 218, 0.4);
    }

    .btn-premium:hover::before {
        left: 100%;
    }

    /* ---------- Animations ---------- */
    @keyframes subtleFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 991px) {
        .navbar {
            padding: 1rem 1.5rem;
            border-radius: 0 0 15px 15px;
        }

        .navbar.scrolled {
            padding: 0.7rem 1.5rem;
        }

        .navbar-nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1.5rem;
            margin-top: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .nav-link {
            text-align: center;
            padding: 0.8rem !important;
            color: var(--deep-navy) !important;
        }

        .nav-link:hover {
            color: var(--accent-blue) !important;
        }

        .nav-cta {
            margin: 1.5rem auto 0;
            text-align: center;
            width: 100%;
        }

        .btn-premium {
            width: 100%;
            max-width: 200px;
        }
    }

    @media (max-width: 576px) {
        .navbar-brand {
            font-size: 1.8rem;
        }

        .brand-main {
            font-size: 1.5rem;
        }

        .brand-logo {
            font-size: 2rem;
        }
    }

    /* ---------- Premium Hero Section ---------- */
    /* ================= HERO SECTION ================= */
    .hero-section {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        min-height: 90vh;
        position: relative;
    }

    /* ---------------- Left Panel ---------------- */
    .hero-left {
        flex: 0 0 45%;
        background: linear-gradient(135deg, var(--deep-navy), var(--primary-blue));
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4rem;
        position: relative;
        overflow: hidden;
        text-align: left;
    }

    .hero-left::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(59, 175, 218, 0.1));
        z-index: 1;
    }

    /* Hero Content */
    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 600px;
        color: var(--white);
        animation: slideInLeft 0.8s ease-out;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 4vw, 3.8rem);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, var(--white) 0%, var(--ice-blue) 50%, var(--white) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .hero-content p {
        font-size: clamp(1rem, 1.5vw, 1.3rem);
        line-height: 1.6;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 300;
    }

    /* Premium Button */
    .btn-premium {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        background: linear-gradient(135deg, var(--accent-blue), #2a9bc8);
        color: var(--white);
        padding: clamp(0.9rem, 2vw, 1.2rem) clamp(2rem, 4vw, 3rem);
        border-radius: 12px;
        font-weight: 700;
        font-size: clamp(0.95rem, 1.2vw, 1.1rem);
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(59, 175, 218, 0.3);
        border: none;
        cursor: pointer;
        width: fit-content;
        min-height: 56px;
        text-align: center;
    }

    .btn-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .btn-premium:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(59, 175, 218, 0.4);
    }

    .btn-premium:hover::before {
        left: 100%;
    }

    .btn-premium i {
        font-size: clamp(1rem, 1.2vw, 1.2rem);
    }

    /* ---------------- Right Panel ---------------- */
    .hero-right {
        flex: 0 0 55%;
        position: relative;
        overflow: hidden;
        width: 100%;
        min-height: 50vh;
    }

    /* Carousel */
    .carousel-container {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
    }

    .carousel-slide.active {
        opacity: 1;
        transform: translateX(0);
        z-index: 2;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .carousel-slide::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(59, 175, 218, 0.1) 0%, rgba(11, 60, 93, 0.2) 100%);
        z-index: 1;
    }

    /* ---------------- Carousel Navigation ---------------- */
    .carousel-nav {
        position: absolute;
        bottom: 2rem;
        right: 2rem;
        display: flex;
        gap: 0.75rem;
        z-index: 10;
    }

    .nav-btn {
        width: clamp(40px, 6vw, 56px);
        height: clamp(40px, 6vw, 56px);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: var(--white);
        font-size: clamp(1rem, 1.2vw, 1.2rem);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
    }

    .nav-btn:hover {
        background: var(--accent-blue);
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 10px 25px rgba(59, 175, 218, 0.4);
        border-color: var(--accent-blue);
    }

    /* Slide Indicators */
    .slide-indicators {
        position: absolute;
        bottom: 2rem;
        right: 50%;
        transform: translateX(50%);
        display: flex;
        flex-direction: row;
        gap: 1rem;
        z-index: 10;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(8px);
        padding: 0.8rem 1.2rem;
        border-radius: 40px;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .indicator {
        width: clamp(8px, 1.5vw, 12px);
        height: clamp(8px, 1.5vw, 12px);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .indicator::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: var(--accent-blue);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }

    .indicator.active::before {
        width: 100%;
        height: 100%;
    }

    .indicator:hover {
        transform: scale(1.2);
    }

    /* Slide Counter */
    .slide-counter {
        position: absolute;
        bottom: 2rem;
        left: 2rem;
        color: var(--white);
        font-size: clamp(0.8rem, 1vw, 1rem);
        font-weight: 600;
        z-index: 10;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(0.6rem, 1vw, 0.8rem) clamp(1rem, 1.5vw, 1.5rem);
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .current-slide {
        font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    }

    /* Decorative */
    .hero-decorative {
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(59, 175, 218, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
        z-index: 1;
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 992px) {
        .hero-section {
            flex-direction: column;
        }

        .hero-left,
        .hero-right {
            flex: 1 1 100%;
            min-height: auto;
            padding: 2rem 1.5rem;
            text-align: center;
        }

        .hero-content {
            max-width: 90%;
            margin: 0 auto;
        }

        .btn-premium {
            margin: 0 auto;
            width: 100%;
            max-width: 300px;
        }

        /* Hide carousel controls on mobile */
        .carousel-nav,
        .slide-indicators,
        .slide-counter {
            display: none !important;
        }

        /* Carousel images properly */
        .carousel-slide img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .hero-decorative {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: -50px;
            filter: blur(20px);
        }
    }

    @media (max-width: 576px) {

        .hero-left,
        .hero-right {
            padding: 1.5rem 1rem;
        }

        .hero-content h1 {
            font-size: 1.6rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .btn-premium {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
        }
    }

    /* Animation */
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Section Styling */
    .section-title {
        color: var(--primary-blue);
        position: relative;
        padding-bottom: 1rem;
        margin-bottom: 2.5rem;
        text-align: center;
    }

    .section-subtitle {
        color: var(--primary-blue);
        text-align: center;
        max-width: 700px;
        margin: 0 auto 3rem;
        font-size: 1.1rem;
    }

    /* Services Section */
    .service-card {
        background: var(--white);
        border-radius: 12px;
        padding: 2rem 1.5rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        border-left: 4px solid var(--accent-blue);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
        font-size: 2.2rem;
        color: var(--accent-blue);
        margin-bottom: 1rem;
    }

    .service-card h4 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.8rem;
        color: var(--primary-blue);
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--secondary-grey);
    }

    /* Optional subtle accent on hover for title */
    .service-card:hover h4 {
        color: var(--accent-blue);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .service-card {
            padding: 1.8rem 1rem;
        }

        .service-icon {
            font-size: 2rem;
            margin-bottom: 0.8rem;
        }
    }

    /*featured product section */

    /* ----------  Industries Section ---------- */
    #industries {
        padding: 6rem 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
        overflow: hidden;
    }

    /* Decorative background elements */
    #industries::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(59, 175, 218, 0.05) 0%, transparent 70%);
        z-index: 0;
    }

    #industries::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(11, 60, 93, 0.03) 0%, transparent 70%);
        z-index: 0;
    }

    /* Section Titles */
    .section-title {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--primary-blue);
        text-align: center;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: var(--secondary-grey);
        text-align: center;
        max-width: 700px;
        margin: 2rem auto 4rem;
        line-height: 1.6;
        position: relative;
        z-index: 1;
    }

    /* ---------- Full-Size Industry Cards ---------- */
    .industries-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }

    @media (max-width: 1200px) {
        .industries-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .industries-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }

    /* Industry Card */
    .industry-card-premium {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        height: 350px;
        box-shadow: 0 12px 40px rgba(11, 60, 93, 0.15);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        isolation: isolate;
    }

    .industry-card-premium:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 50px rgba(11, 60, 93, 0.25);
    }

    /* Background Image */
    .industry-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        filter: brightness(0.9);
    }

    .industry-card-premium:hover .industry-image {
        transform: scale(1.1);
        filter: brightness(0.8);
    }

    /* Gradient Overlay */
    .industry-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, transparent 0%, rgba(11, 60, 93, 0.85) 100%);
        opacity: 0.9;
        transition: opacity 0.5s ease;
        z-index: 1;
    }

    .industry-card-premium:hover .industry-overlay {
        opacity: 0.95;
    }

    /* Different color accents for each industry */
    .industry-card-premium::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-blue), var(--ice-blue));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2;
    }

    .industry-card-premium:hover::after {
        transform: scaleX(1);
    }

    /* Color variations for each industry */
    .industry-retail::after {
        background: linear-gradient(90deg, #3BAFDA, #A6E1FA);
    }

    .industry-warehouse::after {
        background: linear-gradient(90deg, #0B3C5D, #3BAFDA);
    }

    .industry-food::after {
        background: linear-gradient(90deg, #2E8B57, #3BAFDA);
    }

    .industry-pharma::after {
        background: linear-gradient(90deg, #4169E1, #A6E1FA);
    }

    /* Card Content */
    .industry-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2.5rem;
        z-index: 3;
        color: var(--white);
        transform: translateY(0);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .industry-card-premium:hover .industry-content {
        transform: translateY(-10px);
    }

    /* Industry Title */
    .industry-title {
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 0.8rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
        position: relative;
        padding-bottom: 0.8rem;
    }

    .industry-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--ice-blue);
        border-radius: 1.5px;
        transition: width 0.5s ease;
    }

    .industry-card-premium:hover .industry-title::after {
        width: 80px;
    }

    /* Industry Description */
    .industry-desc {
        font-size: 0.95rem;
        opacity: 0.9;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }

    /* View Details Button */
    .industry-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        color: var(--white);
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 0.6rem 1.2rem;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(15px);
        text-decoration: none;
    }

    .industry-card-premium:hover .industry-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .industry-btn:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateX(5px);
    }

    /* View All Industries Button */
    .view-all-industries {
        text-align: center;
        margin-top: 4rem;
        position: relative;
        z-index: 1;
    }

    .view-all-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
        color: var(--white);
        border: none;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        box-shadow: 0 10px 30px rgba(11, 60, 93, 0.3);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
    }

    .view-all-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 40px rgba(11, 60, 93, 0.4);
        color: var(--white);
    }

    /* Language content */
    .lang-content {
        display: none;
        animation: fadeIn 0.8s ease-out;
    }

    .lang-content.active {
        display: block;
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes floatIndustry {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-8px);
        }
    }

    /* Responsive */
    @media (max-width: 992px) {
        #industries {
            padding: 4rem 0;
        }

        .section-title {
            font-size: 2.2rem;
        }

        .section-subtitle {
            font-size: 1rem;
            margin-bottom: 3rem;
        }

        .industry-card-premium {
            height: 320px;
        }

        .industry-content {
            padding: 2rem;
        }

        .industry-title {
            font-size: 1.5rem;
        }

        .industry-icon-premium {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
            top: 1.5rem;
            right: 1.5rem;
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: 1.8rem;
        }

        .industry-card-premium {
            height: 280px;
        }

        .industry-content {
            padding: 1.5rem;
        }

        .industry-title {
            font-size: 1.3rem;
        }

        .industry-desc {
            font-size: 0.85rem;
        }
    }

    /* ---------- News & Updates Section ---------- */
    #news-updates {
        padding: 6rem 0;
        background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    /* Decorative frost pattern background */
    #news-updates::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
            radial-gradient(circle at 90% 10%, rgba(166, 225, 250, 0.08) 2%, transparent 2.5%),
            radial-gradient(circle at 10% 90%, rgba(166, 225, 250, 0.06) 1.5%, transparent 2%),
            radial-gradient(circle at 50% 50%, rgba(123, 197, 226, 0.05) 2%, transparent 2.5%);
        background-size: 200px 200px, 150px 150px, 180px 180px;
        z-index: 0;
    }

    /* Section Titles */
    .section-title {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--primary-blue);
        text-align: center;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: var(--secondary-grey);
        text-align: center;
        max-width: 700px;
        margin: 2rem auto 4rem;
        line-height: 1.6;
        position: relative;
        z-index: 1;
    }

    /* ---------- Unique News Cards Layout ---------- */
    .news-container {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Featured News Card - Large */
    .featured-news-card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(11, 60, 93, 0.15);
        margin-bottom: 4rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(166, 225, 250, 0.3);
    }

    @media (min-width: 992px) {
        .featured-news-card {
            flex-direction: row;
            height: 400px;
        }
    }

    .featured-news-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 80px rgba(11, 60, 93, 0.2);
    }

    .featured-image {
        flex: 1;
        min-height: 250px;
        position: relative;
        overflow: hidden;
    }

    @media (min-width: 992px) {
        .featured-image {
            flex: 1;
            min-height: auto;
        }
    }

    .featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .featured-news-card:hover .featured-image img {
        transform: scale(1.05);
    }

    .featured-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: linear-gradient(135deg, var(--accent-blue), var(--glacier-blue));
        color: var(--white);
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        box-shadow: 0 5px 15px rgba(59, 175, 218, 0.3);
        z-index: 2;
    }

    .featured-content {
        flex: 1;
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .featured-date {
        color: var(--accent-blue);
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .featured-title {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary-blue);
        margin-bottom: 1.2rem;
        line-height: 1.3;
        transition: color 0.3s ease;
    }

    .featured-news-card:hover .featured-title {
        color: var(--accent-blue);
    }

    .featured-excerpt {
        color: var(--secondary-grey);
        line-height: 1.7;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .read-more-featured {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        color: var(--primary-blue);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        background: rgba(11, 60, 93, 0.05);
        border-radius: 50px;
        transition: all 0.3s ease;
        text-decoration: none;
        width: fit-content;
    }

    .read-more-featured:hover {
        background: var(--accent-blue);
        color: var(--white);
        transform: translateX(10px);
    }

    /* Regular News Cards Grid */
    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .news-card {
        background: var(--white);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(11, 60, 93, 0.1);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(166, 225, 250, 0.2);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .news-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(11, 60, 93, 0.2);
    }

    .news-card-image {
        height: 200px;
        position: relative;
        overflow: hidden;
    }

    .news-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .news-card:hover .news-card-image img {
        transform: scale(1.1);
    }

    .news-category {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        color: var(--primary-blue);
        padding: 0.4rem 1rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .news-card-content {
        padding: 2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .news-date {
        color: var(--accent-blue);
        font-weight: 600;
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .news-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 1rem;
        line-height: 1.4;
        transition: color 0.3s ease;
    }

    .news-card:hover .news-title {
        color: var(--accent-blue);
    }

    .news-excerpt {
        color: var(--secondary-grey);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

    .read-more {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--accent-blue);
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-top: auto;
    }

    .read-more:hover {
        gap: 0.8rem;
        color: var(--primary-blue);
    }

    /* View All News Button */
    .view-all-news {
        text-align: center;
        margin-top: 4rem;
        position: relative;
        z-index: 1;
    }

    .view-all-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
        color: var(--white);
        border: none;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        box-shadow: 0 10px 30px rgba(11, 60, 93, 0.3);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
    }

    .view-all-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 40px rgba(11, 60, 93, 0.4);
        color: var(--white);
    }

    /* Newsletter Subscription */
    .newsletter-section {
        background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
        border-radius: 20px;
        padding: 3rem;
        margin-top: 5rem;
        box-shadow: 0 20px 60px rgba(11, 60, 93, 0.25);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .newsletter-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(166, 225, 250, 0.1) 0%, transparent 70%);
        z-index: 0;
    }

    .newsletter-content {
        position: relative;
        z-index: 1;
        text-align: center;
        color: var(--white);
    }

    .newsletter-title {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .newsletter-subtitle {
        font-size: 1rem;
        opacity: 0.9;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter-form {
        max-width: 500px;
        margin: 0 auto;
    }

    .form-group {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .newsletter-input {
        flex: 1;
        min-width: 250px;
        padding: 1rem 1.5rem;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.95);
        transition: all 0.3s ease;
    }

    .newsletter-input:focus {
        outline: none;
        background: var(--white);
        box-shadow: 0 0 0 3px rgba(166, 225, 250, 0.5);
    }

    .newsletter-submit {
        padding: 1rem 2rem;
        background: linear-gradient(135deg, var(--accent-blue), var(--glacier-blue));
        color: var(--white);
        border: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .newsletter-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(59, 175, 218, 0.4);
    }

    /* Language content */
    .lang-content {
        display: none;
        animation: fadeIn 0.8s ease-out;
    }

    .lang-content.active {
        display: block;
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Responsive */
    @media (max-width: 992px) {
        #news-updates {
            padding: 4rem 0;
        }

        .section-title {
            font-size: 2.2rem;
        }

        .section-subtitle {
            font-size: 1rem;
            margin-bottom: 3rem;
        }

        .featured-content {
            padding: 2rem;
        }

        .featured-title {
            font-size: 1.5rem;
        }

        .newsletter-section {
            padding: 2rem;
            margin-top: 4rem;
        }

        .newsletter-title {
            font-size: 1.6rem;
        }
    }

    @media (max-width: 768px) {
        .featured-news-card {
            margin-bottom: 3rem;
        }

        .news-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .form-group {
            flex-direction: column;
        }

        .newsletter-input,
        .newsletter-submit {
            width: 100%;
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: 1.8rem;
        }

        .featured-content {
            padding: 1.5rem;
        }

        .featured-title {
            font-size: 1.3rem;
        }

        .news-card-content {
            padding: 1.5rem;
        }

        .news-title {
            font-size: 1.1rem;
        }
    }

    /* ================================
   SIGNOCO MARQUEE (RESPONSIVE)
================================ */

    .marquee-wrapper {
        width: 100%;
        overflow: hidden;
        background: linear-gradient(135deg, #ffffff, #fcfcfc);
        padding: 18px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        position: relative;
    }

    /* Show only active language */
    .lang-content {
        display: none;
    }

    .lang-content.active {
        display: block;
    }

    /* Track (moves the items) */
    .marquee-track {
        display: flex;
        width: max-content;
        animation: signocoScroll 18s linear infinite;
        will-change: transform;
    }

    /* Items row */
    .marquee-items {
        display: flex;
        align-items: center;
        gap: 18px;
        padding-right: 18px;
        flex-shrink: 0;
    }

    /* Each service pill */
    .marquee-items span {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        white-space: nowrap;

        padding: 10px 18px;
        border-radius: 50px;

        color: var(--primary-blue);
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(0, 0, 0, 0.08);

        transition: 0.25s ease;
    }

    /* Hover */
    .marquee-items span:hover {
        background: rgba(123, 197, 226, 0.25);
        color: var(--deep-navy);
    }

    /* Animation (perfect loop because items are duplicated) */
    @keyframes signocoScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* ================================
   MOBILE RESPONSIVE
================================ */

    /* Tablets */
    @media (max-width: 768px) {
        .marquee-wrapper {
            padding: 14px 0;
        }

        .marquee-track {
            animation-duration: 14s;
        }

        .marquee-items {
            gap: 12px;
            padding-right: 12px;
        }

        .marquee-items span {
            font-size: 12px;
            padding: 8px 14px;
            letter-spacing: 0.4px;
        }
    }

    /* Small phones */
    @media (max-width: 480px) {
        .marquee-track {
            animation-duration: 12s;
        }

        .marquee-items span {
            font-size: 11px;
            padding: 7px 12px;
        }
    }

    /* Ultra small */
    @media (max-width: 360px) {
        .marquee-track {
            animation-duration: 10s;
        }

        .marquee-items span {
            font-size: 10px;
            padding: 6px 10px;
        }
    }

    /* Accessibility: reduce motion */
    @media (prefers-reduced-motion: reduce) {
        .marquee-track {
            animation: none;
        }
    }

    /* ---------- Trusted companies ---------- */
    .trusted-marquee {
        width: 100%;
        padding: 80px 0;
        background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
        overflow: hidden;
        position: relative;
    }

    /* Optional subtle gradient overlay */
    .trusted-marquee::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    }

    /* Wrapper (for fade effect) */
    .trusted-wrapper {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding: 20px 0;
    }

    /* Enhanced Fade Effects */
    .trusted-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 180px;
        height: 100%;
        z-index: 10;
        pointer-events: none;
        background: linear-gradient(90deg, #f1f5f9 0%, rgba(241, 245, 249, 0) 100%);
    }

    .trusted-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 180px;
        height: 100%;
        z-index: 10;
        pointer-events: none;
        background: linear-gradient(90deg, rgba(241, 245, 249, 0) 0%, #f1f5f9 100%);
    }

    /* Track */
    .trusted-track {
        display: flex;
        width: max-content;
        animation: trustedScroll 50s linear infinite;
    }

    /* Smooth pause on hover */
    .trusted-wrapper:hover .trusted-track {
        animation-play-state: paused;
    }

    /* Items */
    .trusted-items {
        display: flex;
        gap: 65px;
        padding-right: 65px;
        align-items: center;
    }

    /* Enhanced Logo Styling */
    .trusted-items img {
        height: 70px;
        width: auto;
        opacity: 0.6;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, opacity, filter;
    }

    .trusted-items img:hover {
        opacity: 1;
        transform: scale(1.1);
    }

    /* Subtle glow on hover */
    .trusted-items img:hover::after {
        content: '';
        position: absolute;
        inset: -5px;
        background: radial-gradient(circle, rgba(148, 163, 184, 0.1) 0%, transparent 70%);
        z-index: -1;
        border-radius: 8px;
    }

    /* Smoother Animation */
    @keyframes trustedScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Logo item wrapper for better alignment */
    .trusted-item {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: fit-content;
        padding: 15px 0;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .trusted-marquee {
            padding: 60px 0;
        }

        .trusted-items {
            gap: 50px;
            padding-right: 50px;
        }

        .trusted-items img {
            height: 45px;
        }

        .trusted-wrapper::before,
        .trusted-wrapper::after {
            width: 120px;
        }
    }

    @media (max-width: 768px) {
        .trusted-marquee {
            padding: 50px 0;
        }

        .trusted-items {
            gap: 40px;
            padding-right: 40px;
        }

        .trusted-items img {
            height: 35px;
        }

        .trusted-wrapper::before,
        .trusted-wrapper::after {
            width: 80px;
        }
    }

    @media (max-width: 480px) {
        .trusted-marquee {
            padding: 40px 0;
        }

        .trusted-items {
            gap: 30px;
            padding-right: 30px;
        }

        .trusted-items img {
            height: 30px;
        }

        .trusted-wrapper::before,
        .trusted-wrapper::after {
            width: 50px;
        }

        .trusted-track {
            animation-duration: 25s;
        }
    }

    /* Reduced motion preference */
    @media (prefers-reduced-motion: reduce) {
        .trusted-track {
            animation: none;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .trusted-track::-webkit-scrollbar {
            display: none;
        }
    }

    /* Gallery Section */
    /* ================================
   PROJECTS GALLERY SECTION
================================ */
    #projects-gallery {
        padding: 6rem 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
        overflow: hidden;
    }

    /* Decorative background blobs */
    #projects-gallery::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -120px;
        width: 420px;
        height: 420px;
        background: radial-gradient(circle, rgba(59, 175, 218, 0.06) 0%, transparent 70%);
        z-index: 0;
    }

    #projects-gallery::after {
        content: '';
        position: absolute;
        bottom: -120px;
        left: -120px;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(11, 60, 93, 0.05) 0%, transparent 70%);
        z-index: 0;
    }

    /* Section Title */
    #projects-gallery .section-title {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--primary-blue);
        text-align: center;
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
    }

    /* Subtitle */
    #projects-gallery .section-subtitle {
        max-width: 850px;
        margin: 0 auto 3.5rem;
        text-align: center;
        font-size: 1.1rem;
        color: rgba(11, 60, 93, 0.75);
        line-height: 1.8;
        position: relative;
        z-index: 2;
    }

    /* ================================
   PROJECTS CAROUSEL
================================ */
    .projects-carousel {
        position: relative;
        width: 100%;
        z-index: 2;
    }

    /* Track */
    .projects-track {
        display: flex;
        gap: 1.7rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 0.6rem 0.4rem 1.8rem;
        scrollbar-width: none;
        cursor: grab;
    }

    .projects-track::-webkit-scrollbar {
        display: none;
    }

    /* Slide Card */
    .project-slide {
        flex: 0 0 auto;
        width: 520px;
        /* wider like screenshot */
        height: 450px;
        /* slightly shorter */
        border-radius: 22px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 18px 60px rgba(11, 60, 93, 0.16);
        transition: all 0.45s ease;
        background: #000;
        isolation: isolate;
    }


    /* Slide Image */
    .project-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s ease;
        filter: brightness(0.95);
    }

    /* Content */
    .slide-content {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 2rem;
        z-index: 2;
        color: #fff;
    }

    /* Badge */
    .slide-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.92);
        color: var(--primary-blue);
        padding: 0.45rem 1rem;
        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 0.9rem;
        transition: 0.3s ease;
    }

    .project-slide:hover .slide-badge {
        background: var(--accent-blue);
        color: #fff;
    }

    /* Title */
    .slide-title {
        font-size: 1.5rem;
        font-weight: 900;
        margin-bottom: 0.6rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    /* Location */
    .slide-location {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.95rem;
        opacity: 0.9;
        margin: 0;
    }

    .slide-location i {
        color: var(--ice-blue);
    }

    /* ================================
   CAROUSEL ARROWS
================================ */
    .carousel-btn {
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        width: 54px;
        height: 54px;
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, 0.96);
        color: var(--primary-blue);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.25s ease;
        z-index: 10;
    }

    .carousel-btn:hover {
        background: var(--accent-blue);
        color: #fff;
        transform: translateY(-50%) scale(1.08);
    }

    /* Arrow Positions */
    .carousel-btn.prev {
        left: -18px;
    }

    .carousel-btn.next {
        right: -18px;
    }

    /* ================================
   LANGUAGE CONTENT
================================ */
    .lang-content {
        display: none;
        animation: fadeIn 0.8s ease-out;
    }

    .lang-content.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ================================
   RESPONSIVE
================================ */
    @media (max-width: 992px) {
        #projects-gallery {
            padding: 4rem 0;
        }

        #projects-gallery .section-title {
            font-size: 2.2rem;
        }

        #projects-gallery .section-subtitle {
            font-size: 1rem;
            margin-bottom: 3rem;
        }

        .project-slide {
            width: 340px;
            height: 280px;
        }

        .slide-content {
            padding: 1.6rem;
        }

        .slide-title {
            font-size: 1.3rem;
        }
    }

    @media (max-width: 576px) {
        .carousel-btn {
            display: none;
        }

        .project-slide {
            width: 280px;
            height: 240px;
            border-radius: 18px;
        }

        .slide-content {
            padding: 1.4rem;
        }

        .slide-title {
            font-size: 1.15rem;
        }
    }

    /* Contact Form */
    #contact {
        padding: 6rem 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
        overflow: hidden;
    }

    /* Decorative background elements */
    #contact::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(59, 175, 218, 0.05) 0%, transparent 70%);
        z-index: 0;
    }

    #contact::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(166, 225, 250, 0.03) 0%, transparent 70%);
        z-index: 0;
    }

    /* Section Titles */
    .section-title {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--primary-blue);
        text-align: center;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
    }

    /* ---------- Premium Blue Contact Form ---------- */
    .contact-form {
        background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
        padding: 3rem;
        border-radius: 20px;
        box-shadow: 0 25px 60px rgba(11, 60, 93, 0.25);
        position: relative;
        overflow: hidden;
        z-index: 1;
        color: var(--white);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .contact-form:hover {
        box-shadow: 0 35px 80px rgba(11, 60, 93, 0.35);
        transform: translateY(-5px);
    }

    /* Form decorative elements */
    .contact-form::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -30%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(166, 225, 250, 0.1) 0%, transparent 70%);
        z-index: -1;
    }

    .contact-form::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        z-index: -1;
    }

    .form-title1 {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 2rem;
        text-align: center;
        position: relative;
    }

    .form-title1::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: var(--ice-blue);
        border-radius: 1.5px;
    }

    /* Form controls */
    .form-control {
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 1rem 1.2rem;
        font-size: 1rem;
        color: var(--primary-blue);
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        background: var(--white);
        border-color: var(--ice-blue);
        box-shadow: 0 0 0 4px rgba(166, 225, 250, 0.3);
        outline: none;
    }

    .form-control::placeholder {
        color: var(--secondary-grey);
        opacity: 0.8;
    }

    select.form-control {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230B3C5D' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1.2rem center;
        background-size: 16px;
        padding-right: 3rem;
    }

    textarea.form-control {
        min-height: 140px;
        resize: vertical;
    }

    /* Submit button */
    .btn-contact-submit {
        background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue));
        color: var(--white);
        border: none;
        padding: 1rem 2.5rem;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        width: 100%;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        margin-top: 1rem;
        cursor: pointer;
    }

    .btn-contact-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(59, 175, 218, 0.4);
    }

    .btn-contact-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.7s;
    }

    .btn-contact-submit:hover::before {
        left: 100%;
    }

    /* ---------- Contact Information ---------- */
    .contact-info-container {
        height: 100%;
        padding-left: 2rem;
    }

    @media (max-width: 992px) {
        .contact-info-container {
            padding-left: 0;
            padding-top: 3rem;
        }
    }

    .contact-info-title {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary-blue);
        margin-bottom: 2rem;
        position: relative;
        padding-bottom: 1rem;
    }

    .contact-info-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-blue), var(--ice-blue));
        border-radius: 2px;
    }

    /* Contact info cards */
    .contact-info-card {
        background: var(--white);
        border-radius: 16px;
        padding: 1.8rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 10px 30px rgba(11, 60, 93, 0.1);
        border-left: 4px solid var(--accent-blue);
        transition: all 0.3s ease;
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
    }

    .contact-info-card:hover {
        transform: translateX(10px);
        box-shadow: 0 15px 40px rgba(11, 60, 93, 0.15);
        border-left-color: var(--glacier-blue);
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.5rem;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .contact-info-card:hover .contact-icon {
        transform: scale(1.1) rotate(5deg);
        background: linear-gradient(135deg, var(--accent-blue), var(--glacier-blue));
    }

    .contact-details h5 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 0.5rem;
    }

    .contact-details p {
        color: var(--secondary-grey);
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0;
    }

    /* WhatsApp button */
    .whatsapp-section {
        background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(37, 211, 102, 0.02));
        border-radius: 16px;
        padding: 2rem;
        margin-top: 2rem;
        border: 2px solid rgba(37, 211, 102, 0.1);
    }

    .whatsapp-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 1rem;
    }

    .whatsapp-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        background: linear-gradient(135deg, #25D366, #1EBE57);
        color: var(--white);
        border: none;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1rem;
        letter-spacing: 0.5px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    }

    .whatsapp-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
        color: var(--white);
    }

    /* Map section */
    .map-container {
        margin-top: 3rem;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(11, 60, 93, 0.15);
        height: 250px;
        position: relative;
    }

    .map-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--white);
        padding: 2rem;
        text-align: center;
    }

    .map-placeholder i {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: var(--ice-blue);
    }

    .map-placeholder h5 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .map-placeholder p {
        font-size: 0.9rem;
        opacity: 0.8;
    }


    /* Language content */
    .lang-content {
        display: none;
        animation: fadeIn 0.8s ease-out;
    }

    .lang-content.active {
        display: block;
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Responsive */
    @media (max-width: 992px) {
        #contact {
            padding: 4rem 0;
        }

        .section-title {
            font-size: 2.2rem;
        }

        .section-subtitle {
            font-size: 1rem;
            margin-bottom: 3rem;
        }

        .contact-form {
            padding: 2rem;
        }

        .form-title {
            font-size: 1.5rem;
        }

        .contact-info-title {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 768px) {

        .contact-form::before,
        .contact-form::after {
            display: none;
        }

        .contact-info-card {
            padding: 1.5rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: 1.8rem;
        }

        .contact-form {
            padding: 1.5rem;
        }

        .form-control {
            padding: 0.8rem 1rem;
        }

        .btn-contact-submit {
            padding: 0.9rem 2rem;
            font-size: 1rem;
        }
    }

    /* Footer */
    .footer-premium {
        background: linear-gradient(135deg, #052b42 0%, #052b42 100%);
        color: var(--white);
        padding: 5rem 0 2rem;
        margin-top: auto;
        position: relative;
        overflow: hidden;
    }

    /* Frost pattern background */
    .footer-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
            radial-gradient(circle at 10% 20%, rgba(166, 225, 250, 0.05) 2%, transparent 2.5%),
            radial-gradient(circle at 90% 80%, rgba(166, 225, 250, 0.03) 1.5%, transparent 2%),
            radial-gradient(circle at 50% 50%, rgba(123, 197, 226, 0.04) 2%, transparent 2.5%);
        background-size: 150px 150px, 120px 120px, 180px 180px;
        opacity: 0.3;
        z-index: 0;
    }

    /* Top accent border */
    .footer-premium::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-blue), var(--ice-blue), var(--glacier-blue));
        z-index: 1;
    }

    /* Footer Container */
    .footer-premium .container {
        position: relative;
        z-index: 1;
    }

    /* ---------- Footer Brand ---------- */
    .footer-brand {
        margin-bottom: 2rem;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 1.5rem;
        text-decoration: none;
    }

    .footer-logo-icon {
        font-size: 2.5rem;
        color: var(--ice-blue);
        text-shadow: 0 0 20px rgba(166, 225, 250, 0.3);
    }

    .footer-logo-text {
        display: flex;
        flex-direction: column;
        line-height: 1;
    }

    .footer-logo-main {
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 0.5px;
    }

    .footer-logo-sub {
        font-size: 0.7rem;
        letter-spacing: 3px;
        color: var(--ice-blue);
        text-transform: uppercase;
        margin-top: 3px;
        font-weight: 600;
    }

    .footer-desc {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.7;
        margin-bottom: 2rem;
        font-size: 0.95rem;
        max-width: 350px;
    }

    /* Social Links */
    .footer-social {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.2rem;
        transition: all 0.3s ease;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-link:hover {
        background: var(--accent-blue);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(59, 175, 218, 0.3);
        border-color: transparent;
    }

    /* ---------- Footer Columns ---------- */
    .footer-column {
        margin-bottom: 2.5rem;
    }

    .footer-heading {
        color: var(--white);
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1.8rem;
        position: relative;
        padding-bottom: 0.8rem;
    }

    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-blue), var(--ice-blue));
        border-radius: 1.5px;
        transition: width 0.3s ease;
    }

    .footer-column:hover .footer-heading::after {
        width: 60px;
    }

    /* Footer Links */
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 0.9rem;
    }

    .footer-link {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.3rem 0;
    }

    .footer-link i {
        font-size: 0.8rem;
        color: var(--ice-blue);
        opacity: 0;
        transform: translateX(-5px);
        transition: all 0.3s ease;
    }

    .footer-link:hover {
        color: var(--ice-blue);
        transform: translateX(5px);
    }

    .footer-link:hover i {
        opacity: 1;
        transform: translateX(0);
    }

    /* Contact Info */
    .contact-info-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        background: rgba(166, 225, 250, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ice-blue);
        font-size: 1.1rem;
        flex-shrink: 0;
        border: 1px solid rgba(166, 225, 250, 0.2);
    }

    .contact-details {
        flex: 1;
    }

    .contact-label {
        display: block;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.3rem;
    }

    .contact-value {
        color: var(--white);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* ---------- Footer Bottom ---------- */
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
        margin-top: 2rem;
    }

    .copyright {
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }

    .copyright-links {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 1rem;
        flex-wrap: wrap;
    }

    .copyright-link {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.3s ease;
    }

    .copyright-link:hover {
        color: var(--ice-blue);
    }

    .back-to-top {
        position: absolute;
        right: 0;
        bottom: 2rem;
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--accent-blue), var(--glacier-blue));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(59, 175, 218, 0.3);
    }

    .back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(59, 175, 218, 0.4);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .footer-premium {
            padding: 4rem 0 2rem;
        }

        .footer-logo-main {
            font-size: 1.8rem;
        }

        .footer-logo-icon {
            font-size: 2rem;
        }

        .back-to-top {
            position: relative;
            right: auto;
            bottom: auto;
            margin: 2rem auto 0;
            display: inline-flex;
        }
    }

    @media (max-width: 768px) {
        .footer-column {
            margin-bottom: 2rem;
        }

        .newsletter-form {
            flex-direction: column;
        }

        .newsletter-input,
        .newsletter-btn {
            width: 100%;
        }
    }

    @media (max-width: 576px) {
        .footer-premium {
            padding: 3rem 0 2rem;
        }

        .footer-logo {
            justify-content: center;
            text-align: center;
        }

        .footer-desc {
            text-align: center;
            max-width: 100%;
        }

        .footer-social {
            justify-content: center;
        }

        .footer-heading {
            text-align: center;
        }

        .footer-heading::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .copyright-links {
            flex-direction: column;
            gap: 0.5rem;
            align-items: center;
        }
    }

    /* Sticky CTA Button */
    /* Sticky CTA Container */
    .sticky-cta {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-end;
        animation: fadeInUp 0.6s ease-out;
    }

    /* Common Sticky Button Style */
    .sticky-btn {
        background: linear-gradient(135deg, #3BAFDA, #2A9BC8);
        color: white;
        border: none;
        border-radius: 50px;
        padding: 0.9rem 1.8rem;
        font-weight: 600;
        font-size: 1rem;
        box-shadow: 0 8px 20px rgba(59, 175, 218, 0.4);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.6rem;
        transition: all 0.3s ease-in-out;
        position: relative;
        overflow: hidden;
    }

    /* Hover Effect */
    .sticky-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 25px rgba(59, 175, 218, 0.5);
    }

    /* Gradient Overlay Animation */
    .sticky-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: all 0.6s ease;
    }

    .sticky-btn:hover::before {
        left: 100%;
    }

    /* WhatsApp Button Customization */
    .whatsapp-btn {
        background: linear-gradient(135deg, #25D366, #1EBE5B);
    }

    .whatsapp-btn:hover {
        background: linear-gradient(135deg, #1da851, #17a243);
    }

    /* Icon Styling (if using font-awesome or similar) */
    .sticky-btn i {
        font-size: 1.2rem;
        transition: transform 0.3s;
    }

    .sticky-btn:hover i {
        transform: rotate(-10deg) scale(1.1);
    }

    /* Mobile Adjustment */
    @media (max-width: 576px) {
        .sticky-cta {
            bottom: 1rem;
            right: 1rem;
            gap: 0.8rem;
        }

        .sticky-btn {
            padding: 0.8rem 1.4rem;
            font-size: 0.95rem;
        }
    }

    /* Fade in animation for sticky CTA */
    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Language content */
    .lang-content {
        display: none;
    }

    .lang-content.active {
        display: block;
    }

    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }


    /* ---------- ABOUT PAGE STYLING ---------- */

    /* ---------- Premium Hero Section ---------- */
    .about-hero-section {
        position: relative;
        background: linear-gradient(135deg,
                rgba(11, 60, 93, 0.92) 0%,
                rgba(10, 42, 67, 0.95) 100%),
            url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center 30%;
        background-attachment: fixed;
        color: var(--white);
        padding: 10rem 0 6rem;
        overflow: hidden;
        min-height: 70vh;
        display: flex;
        align-items: center;
    }

    .about-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg,
                rgba(59, 175, 218, 0.08) 0%,
                rgba(11, 60, 93, 0.12) 50%,
                rgba(10, 42, 67, 0.1) 100%);
        backdrop-filter: blur(2px);
        z-index: 1;
    }

    .about-hero-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
    }

    .about-hero-headline {
        font-size: 3.8rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg,
                var(--white) 0%,
                var(--ice-blue) 50%,
                var(--white) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 4px 20px rgba(59, 175, 218, 0.2);
        position: relative;
    }

    .about-hero-headline::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-blue), var(--ice-blue));
        border-radius: 2px;
    }

    .about-hero-subheading {
        font-size: 1.3rem;
        line-height: 1.6;
        max-width: 650px;
        margin-bottom: 2.5rem;
        opacity: 0.9;
        font-weight: 300;
        letter-spacing: 0.3px;
    }

    /* ---------- Our Story Section ---------- */
    .our-story-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
        position: relative;
        overflow: hidden;
    }

    .story-container {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-subtitle1 {
        font-size: 1.1rem;
        color: var(--white);
        text-align: center;
        max-width: 700px;
        margin: 0 auto 4rem;
        line-height: 1.6;
        position: relative;
    }

    .story-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        align-items: center;
    }

    @media (max-width: 992px) {
        .story-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
    }

    .story-content {
        padding-right: 2rem;
    }

    .story-title {
        font-size: 4.5rem;
        font-weight: 800;
        color: var(--gold-accent);
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 1rem;
    }

    .story-text {
        color: var(--white);
        line-height: 1.7;
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .story-title1 {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--gold-accent);
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 1rem;
    }



    .story-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(11, 60, 93, 0.15);
        height: 500px;
    }

    .story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .story-image:hover img {
        transform: scale(1.05);
    }

    /* ---------- Our Journey Section ---------- */
    .timeline-carousel-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
        overflow: hidden;
    }

    /* Frost pattern background */
    .timeline-carousel-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
            radial-gradient(circle at 10% 20%, rgba(166, 225, 250, 0.05) 2%, transparent 2.5%),
            radial-gradient(circle at 90% 80%, rgba(59, 175, 218, 0.03) 1.5%, transparent 2%);
        background-size: 150px 150px, 120px 120px;
        opacity: 0.5;
        z-index: 0;
    }

    .section-title {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--primary-blue);
        text-align: center;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: var(--secondary-grey);
        text-align: center;
        max-width: 700px;
        margin: 2rem auto 4rem;
        line-height: 1.6;
        position: relative;
        z-index: 1;
    }

    /* ---------- Creative Carousel Container ---------- */
    .sectioncarousel-title {
        font-size: 3.2rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--deep-navy), var(--accent-blue));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 1.5rem;
        letter-spacing: -0.5px;
        position: relative;
        display: inline-block;
        text-align: center;
        /* Center the text */
        width: 100%;
        /* Ensure it spans the container */
    }

    .sectioncarousel-subtitle {
        font-size: 1.2rem;
        color: var(--secondary-grey);
        max-width: 700px;
        margin: 0 auto;
        /* Center horizontally */
        line-height: 1.7;
        font-weight: 400;
        text-align: center;
        /* Center the text */
    }


    .carousel-container {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 0;
    }

    /* Decorative premium elements */
    .carousel-decorative-1 {
        position: absolute;
        top: 10%;
        left: -80px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(59, 175, 218, 0.08) 0%, transparent 70%);
        z-index: 0;
        border-radius: 50%;
        filter: blur(40px);
    }

    .carousel-decorative-2 {
        position: absolute;
        bottom: 10%;
        right: -80px;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
        z-index: 0;
        border-radius: 50%;
        filter: blur(30px);
    }

    /* Carousel Wrapper */
    .carousel-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 30px;
        padding: 30px 10px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow:
            0 25px 60px var(--premium-shadow),
            inset 0 0 0 1px rgba(255, 255, 255, 0.6);
        z-index: 1;
    }

    /* Carousel Track */
    .carousel-track {
        display: flex;
        transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 30px;
        /* spacing between cards */
        padding-left: 0;
        /* remove extra padding */
    }

    /* Timeline Card */
    .timeline-card {
        flex: 0 0 auto;
        /* let JS control exact width */
        min-width: 280px;
        /* mobile fallback */
        background: var(--white);
        border-radius: 24px;
        overflow: hidden;
        box-shadow:
            0 15px 40px rgba(11, 60, 93, 0.08),
            0 0 0 1px rgba(59, 175, 218, 0.05);
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
    }

    .timeline-card:hover {
        transform: translateY(-15px);
        box-shadow:
            0 30px 80px rgba(59, 175, 218, 0.15),
            0 0 0 1px rgba(59, 175, 218, 0.1);
    }

    /* Card Image */
    .card-image {
        position: relative;
        height: 280px;
        overflow: hidden;
    }

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .timeline-card:hover .card-image img {
        transform: scale(1.12);
    }

    /* Year Badge */
    .year-badge {
        position: absolute;
        top: 25px;
        left: 25px;
        background: linear-gradient(135deg, var(--accent-blue), var(--glacier-blue));
        color: var(--white);
        font-size: 1.6rem;
        font-weight: 800;
        padding: 0.9rem 1.8rem;
        border-radius: 50px;
        box-shadow:
            0 10px 30px rgba(59, 175, 218, 0.4),
            0 0 0 2px rgba(255, 255, 255, 0.2);
        z-index: 2;
        transition: all 0.4s ease;
        letter-spacing: -0.5px;
    }

    .timeline-card:hover .year-badge {
        transform: scale(1.08) translateY(-5px);
        box-shadow:
            0 15px 40px rgba(59, 175, 218, 0.6),
            0 0 0 2px rgba(255, 255, 255, 0.3);
    }

    /* Premium gradient overlay */
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent 0%, rgba(11, 60, 93, 0.85) 100%);
        opacity: 0.7;
        transition: opacity 0.4s ease;
    }

    .timeline-card:hover .image-overlay {
        opacity: 0.9;
    }

    /* Card Content */
    .card-content {
        padding: 2.5rem;
        position: relative;
    }

    /* Premium decorative corner */
    .card-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--accent-blue) 0%, transparent 70%);
        border-radius: 0 0 24px 0;
        z-index: 0;
    }

    .card-title {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--deep-navy);
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
        line-height: 1.3;
    }

    .card-description {
        color: var(--secondary-grey);
        line-height: 1.7;
        font-size: 1.05rem;
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
        font-weight: 400;
    }

    /* Premium Timeline Indicator */
    .timeline-indicator {
        display: flex;
        align-items: center;
        gap: 1.2rem;
        margin-top: 2.5rem;
        position: relative;
        z-index: 1;
    }

    .indicator-line {
        flex: 1;
        height: 4px;
        background: rgba(11, 60, 93, 0.08);
        border-radius: 2px;
        position: relative;
        overflow: hidden;
    }

    .indicator-fill {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, var(--accent-blue), var(--premium-gold));
        border-radius: 2px;
        transition: width 0.8s ease;
    }

    .indicator-text {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--accent-blue);
        white-space: nowrap;
    }

    /* Premium Navigation Buttons */
    .carousel-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 3.5rem;
        padding: 0 1rem;
    }

    .nav-btn {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: var(--white);
        border: none;
        color: var(--accent-blue);
        font-size: 1.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow:
            0 10px 30px rgba(59, 175, 218, 0.15),
            0 0 0 1px rgba(59, 175, 218, 0.1);
        position: relative;
        overflow: hidden;
    }

    .nav-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--accent-blue), var(--glacier-blue));
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 0;
    }

    .nav-btn i {
        position: relative;
        z-index: 1;
    }

    .nav-btn:hover {
        transform: scale(1.12);
        box-shadow:
            0 20px 50px rgba(59, 175, 218, 0.3),
            0 0 0 1px rgba(59, 175, 218, 0.2);
        color: var(--white);
    }

    .nav-btn:hover::before {
        opacity: 1;
    }

    .nav-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
        transform: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        color: var(--secondary-grey);
    }

    .nav-btn:disabled:hover::before {
        opacity: 0;
    }

    /* Premium Slide Indicator Dots */
    .slide-dots {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }

    .dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(11, 60, 93, 0.15);
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }

    .dot::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--accent-blue), var(--premium-gold));
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 50%;
    }

    .dot.active {
        transform: scale(1.4);
        box-shadow: 0 0 20px rgba(59, 175, 218, 0.5);
    }

    .dot.active::before {
        opacity: 1;
    }

    /* Mobile Progress Bar */
    .mobile-progress {
        display: none;
        width: 100%;
        height: 5px;
        background: rgba(11, 60, 93, 0.08);
        border-radius: 3px;
        margin-top: 3rem;
        position: relative;
        overflow: hidden;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .mobile-progress-fill {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background: linear-gradient(90deg, var(--accent-blue), var(--premium-gold));
        border-radius: 3px;
        transition: width 0.8s ease;
    }

    /* Premium floating effect */
    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    .timeline-card:nth-child(odd) {
        animation: float 6s ease-in-out infinite;
        animation-delay: 0s;
    }

    .timeline-card:nth-child(even) {
        animation: float 6s ease-in-out infinite;
        animation-delay: 3s;
    }

    /* ---------- Responsive Design ---------- */
    /* Large Desktop */
    @media (min-width: 1400px) {
        .carousel-container {
            max-width: 1300px;
        }

        .timeline-card {
            flex: 0 0 calc(25% - 22.5px);
        }
    }

    /* Tablet */
    @media (max-width: 1199px) {
        .timeline-card {
            flex: 0 0 calc(50% - 15px);
            min-width: 320px;
        }

        .section-title {
            font-size: 2.8rem;
        }

        .carousel-decorative-1,
        .carousel-decorative-2 {
            opacity: 0.7;
        }
    }

    /* Mobile */
    @media (max-width: 768px) {
        .timeline-carousel-section {
            padding: 3rem 0;
        }

        .container {
            padding: 0 1.5rem;
        }

        .section-title {
            font-size: 2.4rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
        }

        .timeline-card {
            flex: 0 0 100%;
            min-width: 300px;
            margin: 0 5px;
        }

        .carousel-wrapper {
            padding: 20px 5px;
            border-radius: 25px;
        }

        .carousel-track {
            gap: 25px;
            padding: 0 10px;
        }

        .card-content {
            padding: 2rem 1.8rem;
        }

        .card-image {
            height: 240px;
        }

        /* Hide decorative elements on mobile */
        .carousel-decorative-1,
        .carousel-decorative-2 {
            display: none;
        }

        /* Show mobile progress bar */
        .mobile-progress {
            display: block;
        }

        /* Hide slide dots on mobile */
        .slide-dots {
            display: none;
        }

        /* Adjust navigation buttons for mobile */
        .carousel-nav {
            justify-content: center;
            gap: 3rem;
        }

        .nav-btn {
            width: 60px;
            height: 60px;
            font-size: 1.4rem;
        }

        /* Stop floating animation on mobile */
        .timeline-card {
            animation: none;
        }

        .timeline-card:hover {
            transform: translateY(-10px);
        }
    }

    /* Small Mobile */
    @media (max-width: 576px) {
        .section-title {
            font-size: 2rem;
        }

        .year-badge {
            font-size: 1.4rem;
            padding: 0.7rem 1.5rem;
        }

        .card-content {
            padding: 1.8rem 1.5rem;
        }

        .nav-btn {
            width: 55px;
            height: 55px;
            font-size: 1.3rem;
        }

        .carousel-nav {
            gap: 2.5rem;
        }
    }

    /* Animation for card entrance */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .timeline-card {
        animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    /* Staggered animation for cards */
    .timeline-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .timeline-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .timeline-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .timeline-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .timeline-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .timeline-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    /* ---------- Our Vision Section ---------- */
    .vision-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .vision-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(166, 225, 250, 0.1) 0%, transparent 70%);
        z-index: 0;
    }

    .vision-container {
        position: relative;
        z-index: 1;
        max-width: 1000px;
        margin: 0 auto;
    }

    .vision-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 4rem;
    }

    @media (max-width: 992px) {
        .vision-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .vision-grid {
            grid-template-columns: 1fr;
        }
    }

    .vision-card {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(166, 225, 250, 0.2);
        border-radius: 16px;
        padding: 2.5rem 2rem;
        text-align: center;
        transition: all 0.3s ease;
    }

    .vision-card:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-10px);
        border-color: var(--ice-blue);
    }

    .vision-icon {
        font-size: 3rem;
        color: var(--ice-blue);
        margin-bottom: 1.5rem;
    }

    .vision-title {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--white);
    }

    .vision-text {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        font-size: 0.95rem;
    }


    /* Responsive */
    @media (max-width: 992px) {
        .about-hero-section {
            padding: 8rem 0 4rem;
        }

        .about-hero-headline {
            font-size: 2.8rem;
        }

        .about-hero-subheading {
            font-size: 1.1rem;
        }

        .story-title {
            font-size: 2rem;
        }

        .cta-title {
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {
        .about-hero-section {
            background-attachment: scroll;
            padding: 7rem 0 3rem;
        }

        .about-hero-headline {
            font-size: 2.2rem;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .btn-premium-primary,
        .btn-premium-outline {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }

    @media (max-width: 576px) {
        .about-hero-headline {
            font-size: 1.9rem;
        }

        .story-title {
            font-size: 1.8rem;
        }
    }



    /* ---------- contact page styling ---------- */

    /* ----------Hero Section ---------- */
    .contact-hero-section {
        position: relative;
        background: linear-gradient(135deg,
                rgba(11, 60, 93, 0.92) 0%,
                rgba(10, 42, 67, 0.95) 100%),
            url('https://www.colesrefrigeration.com.au/wp-content/plugins/phastpress/phast.php/c2VydmljZT1pbWFnZXMmc3J/jPWh0dHBzJTNBJTJGJTJGd3d3LmNvbGVzcmVmcmlnZXJhdGlvbi5jb20uYXUlMkZ3cC1jb250ZW50JTJGdXBsb2FkcyUyRjIwMjUlMkYwMSUyRkhvdy1Eb2VzLUNvbW1lcmNpYWwtUmVmcmlnZXJhdGlvbi1Xb3JrLTEwMjR4NTU4LmpwZyZjYWNoZU1hcmtlcj0xNzM3NDQ2MjY5LTE3MjM4MCZ0b2tlbj03OGZmMTZlZTA0ZDRmNWNh.q.jpg');
        background-size: cover;
        background-position: center 40%;
        background-attachment: fixed;
        color: var(--white);
        padding: 10rem 0 6rem;
        overflow: hidden;
        min-height: 70vh;
        display: flex;
        align-items: center;
    }

    .contact-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg,
                rgba(59, 175, 218, 0.08) 0%,
                rgba(11, 60, 93, 0.12) 50%,
                rgba(10, 42, 67, 0.1) 100%);
        backdrop-filter: blur(2px);
        z-index: 1;
    }

    .contact-hero-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .contact-hero-headline {
        font-size: 3.8rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg,
                var(--white) 0%,
                var(--ice-blue) 50%,
                var(--white) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 4px 20px rgba(59, 175, 218, 0.2);
        position: relative;
        display: inline-block;
    }

    .contact-hero-headline::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-blue), var(--ice-blue));
        border-radius: 2px;
    }

    .contact-hero-subheading {
        font-size: 1.3rem;
        line-height: 1.6;
        max-width: 650px;
        margin: 0 auto 2.5rem;
        opacity: 0.9;
        font-weight: 300;
        letter-spacing: 0.3px;
    }


    @media (max-width: 992px) {
        .contact-hero-section {
            background-attachment: scroll;
            padding: 8rem 0 5rem;
            min-height: auto;
        }
    }

    /* Tablet */
    @media (max-width: 768px) {
        .contact-hero-section {
            padding: 7rem 20px 4.5rem;
            background-position: center;
        }

        .contact-hero-container {
            padding: 0 10px;
        }

        .contact-hero-headline {
            font-size: 2.6rem;
            line-height: 1.15;
        }

        .contact-hero-headline::after {
            width: 90px;
            height: 3px;
            bottom: -12px;
        }

        .contact-hero-subheading {
            font-size: 1.05rem;
            line-height: 1.6;
            margin: 0 auto 2rem;
            max-width: 100%;
        }
    }

    /* Mobile */
    @media (max-width: 576px) {
        .contact-hero-section {
            padding: 6rem 16px 4rem;
            min-height: auto;
        }

        .contact-hero-headline {
            font-size: 2.1rem;
            line-height: 1.2;
        }

        .contact-hero-headline::after {
            width: 70px;
            height: 3px;
            bottom: -10px;
        }

        .contact-hero-subheading {
            font-size: 0.98rem;
            line-height: 1.65;
            margin-bottom: 1.8rem;
            opacity: 0.95;
        }
    }

    /* Extra small phones */
    @media (max-width: 380px) {
        .contact-hero-headline {
            font-size: 1.85rem;
        }

        .contact-hero-subheading {
            font-size: 0.92rem;
        }
    }

    /* ---------- Contact Grid Section ---------- */

    .contact-grid-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    .contact-grid-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(circle at 90% 10%, rgba(59, 175, 218, 0.05) 0%, transparent 35%),
            radial-gradient(circle at 10% 90%, rgba(166, 225, 250, 0.06) 0%, transparent 40%);
        z-index: 0;
    }

    .contact-container {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* ================================
   CONTACT DISPLAY CARDS GRID
================================ */
    .contact-display-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.2rem;
        margin-bottom: 4rem;
    }

    /* ================================
   CARD DESIGN (MORE PREMIUM)
================================ */
    .contact-display-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 26px;
        padding: 3rem 2.6rem;
        position: relative;
        overflow: hidden;

        border: 1px solid rgba(11, 60, 93, 0.08);
        box-shadow: 0 18px 55px rgba(11, 60, 93, 0.08);

        transition: all 0.35s ease;
        backdrop-filter: blur(10px);
    }

    .contact-display-card::before {
        content: "";
        position: absolute;
        top: -80px;
        left: -80px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(59, 175, 218, 0.18) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }

    .contact-display-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 28px 85px rgba(59, 175, 218, 0.18);
        border-color: rgba(59, 175, 218, 0.35);
    }

    /* ================================
   BIG ICON (TOP RIGHT)
================================ */
    .contact-card-icon {
        position: absolute;
        top: -25px;
        right: -25px;
        width: 125px;
        height: 125px;
        background: linear-gradient(135deg, rgba(59, 175, 218, 0.15), rgba(166, 225, 250, 0.18));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3.4rem;
        color: rgba(11, 60, 93, 0.35);
        transition: all 0.35s ease;
        z-index: 1;
    }

    .contact-display-card:hover .contact-card-icon {
        transform: scale(1.1) rotate(10deg);
        color: rgba(59, 175, 218, 0.55);
    }

    /* ================================
   CARD TITLE
================================ */
    .contact-card-title {
        font-size: 1.7rem;
        font-weight: 800;
        color: #0b3c5d;
        margin-bottom: 1.6rem;
        position: relative;
        padding-bottom: 0.9rem;
        z-index: 2;
        line-height: 1.3;
    }

    .contact-card-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70px;
        height: 4px;
        border-radius: 20px;
        background: linear-gradient(90deg, #3bafda, #f5c542);
    }

    /* ================================
   CONTACT ITEMS
================================ */
    .contact-card-content {
        margin-top: 2rem;
        position: relative;
        z-index: 2;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
        margin-bottom: 1.6rem;
        padding-bottom: 1.6rem;
        border-bottom: 1px solid rgba(11, 60, 93, 0.08);
    }

    .contact-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    /* Left icon */
    .contact-item-icon {
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, #3bafda, #7bd3f7);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 1.15rem;
        flex-shrink: 0;
        box-shadow: 0 10px 25px rgba(59, 175, 218, 0.25);
        transition: all 0.3s ease;
    }

    .contact-display-card:hover .contact-item-icon {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(59, 175, 218, 0.35);
    }

    /* Text */
    .contact-item-title {
        font-size: 0.92rem;
        font-weight: 700;
        color: #0b3c5d;
        margin-bottom: 0.25rem;
        text-transform: uppercase;
        letter-spacing: 0.7px;
    }

    .contact-item-value {
        font-size: 1.05rem;
        color: rgba(45, 55, 72, 0.85);
        line-height: 1.55;
        font-weight: 500;
    }

    /* Links */
    .contact-item-value a {
        color: #3bafda;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.25s ease;
    }

    .contact-item-value a:hover {
        color: #0b3c5d;
        text-decoration: underline;
    }

    /* ================================
   MAP CARD (PRO LOOK)
================================ */
    .map-card {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 26px;
        overflow: hidden;
        box-shadow: 0 18px 55px rgba(11, 60, 93, 0.08);
        border: 1px solid rgba(11, 60, 93, 0.08);
        position: relative;
    }

    .map-container {
        position: relative;
        height: 420px;
        overflow: hidden;
    }

    /* Dark overlay for premium */
    .map-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(11, 60, 93, 0.05) 0%, rgba(11, 60, 93, 0.35) 100%);
        pointer-events: none;
        z-index: 1;
    }

    /* ================================
   MAP BUTTONS (PREMIUM)
================================ */
    .map-actions {
        position: absolute;
        bottom: 1.8rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 1rem;
        z-index: 3;
        flex-wrap: wrap;
        justify-content: center;
    }

    .map-btn {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.4);
        padding: 0.85rem 1.6rem;
        border-radius: 60px;
        font-weight: 800;
        font-size: 1rem;
        color: #0b3c5d;
        display: flex;
        align-items: center;
        gap: 0.7rem;
        cursor: pointer;
        transition: all 0.28s ease;
        box-shadow: 0 12px 35px rgba(11, 60, 93, 0.18);
    }

    .map-btn:hover {
        background: #3bafda;
        border-color: #3bafda;
        color: #ffffff;
        transform: translateY(-4px);
        box-shadow: 0 18px 45px rgba(59, 175, 218, 0.35);
    }

    /* ================================
   RESPONSIVE FIXES
================================ */
    @media (max-width: 768px) {
        .contact-grid-section {
            padding: 4rem 0;
        }

        .contact-display-card {
            padding: 2.4rem 2rem;
        }

        .contact-card-title {
            font-size: 1.45rem;
        }

        .map-container {
            height: 360px;
        }

        .map-actions {
            bottom: 1.2rem;
            gap: 0.8rem;
        }

        .map-btn {
            width: 100%;
            justify-content: center;
            padding: 0.85rem 1.2rem;
        }
    }

    /* ---------- Contact Form Section ---------- */
    /* ================================
   CONTACT FORM SECTION (UPDATED)
================================ */
    .contact-form-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    .contact-form-section::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 420px;
        height: 420px;
        background: radial-gradient(circle, rgba(59, 175, 218, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(45px);
        z-index: 0;
    }

    .contact-form-section::after {
        content: "";
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(166, 225, 250, 0.05) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
        z-index: 0;
    }

    .form-container {
        position: relative;
        z-index: 1;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header */
    .form-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .form-title {
        font-size: 2.8rem;
        font-weight: 900;
        margin-bottom: 1.2rem;
        color: #0b3c5d;
        background: linear-gradient(135deg, #0b3c5d 0%, #3bafda 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        line-height: 1.2;
    }

    .form-subtitle {
        font-size: 1.15rem;
        color: rgba(11, 60, 93, 0.8);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.7;
    }

    /* ================================
   CONTACT FORM GRID STRUCTURE
================================ */
    .contact-form-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* ================================
   FORM CARD (FULL WIDTH)
================================ */
    .form-card {
        width: 100%;
        background: #ffffff;
        border-radius: 28px;
        padding: 3.5rem;
        box-shadow: 0 20px 60px rgba(11, 60, 93, 0.08), 0 0 0 1px rgba(166, 225, 250, 0.1);
        border: 1px solid rgba(166, 225, 250, 0.3);
        position: relative;
        overflow: hidden;
    }

    .form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3bafda, #a6e1fa);
        z-index: 1;
    }

    /* Form Layout */
    .form-row {
        display: grid;
        gap: 1.5rem;
        margin-bottom: 1.8rem;
    }

    .form-row.columns-2 {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    @media (max-width: 768px) {
        .form-row.columns-2 {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }

    /* Form Elements */
    .form-group {
        width: 100%;
    }

    .form-label {
        display: block;
        margin-bottom: 0.7rem;
        font-weight: 700;
        color: var(--light-grey);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .form-label.required::after {
        content: '*';
        color: #e74c3c;
        margin-left: 4px;
    }

    .form-control {
        width: 100%;
        padding: 1rem 1.4rem;
        border: 2px solid rgba(11, 60, 93, 0.12);
        border-radius: 12px;
        font-size: 1rem;
        color: var(--deep-navy);
        background: #ffffff;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-family: 'Inter', sans-serif;
    }

    .form-control:focus {
        outline: none;
        border-color: #3bafda;
        box-shadow: 0 0 0 4px rgba(59, 175, 218, 0.15), 0 4px 12px rgba(59, 175, 218, 0.1);
    }

    .form-control::placeholder {
        color: rgba(11, 60, 93, 0.4);
    }

    .form-select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230B3C5D' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 1.2rem center;
        background-size: 16px 12px;
        padding-right: 3rem;
        cursor: pointer;
    }

    textarea.form-control {
        min-height: 140px;
        resize: vertical;
        line-height: 1.6;
    }

    /* Checkbox */
    .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1rem;
        background: rgba(59, 175, 218, 0.05);
        border-radius: 10px;
        margin-top: 1rem;
    }

    .checkbox-group input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 3px;
        accent-color: var(--accent-blue);
        cursor: pointer;
    }

    .checkbox-label {
        font-size: 0.92rem;
        color: var(--light-grey);
        line-height: 1.6;
        cursor: pointer;
        user-select: none;
    }

    .checkbox-label a {
        color: var(--accent-blue);
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .checkbox-label a:hover {
        text-decoration: underline;
    }

    /* Submit Button */
    .form-submit-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        background: linear-gradient(135deg, #3bafda, #a6e1fa);
        color: white;
        border: none;
        padding: 1.2rem 2rem;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 1.5rem;
        box-shadow: 0 10px 30px rgba(59, 175, 218, 0.25), 0 0 0 1px rgba(59, 175, 218, 0.1);
    }

    .form-submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(59, 175, 218, 0.35), 0 0 0 1px rgba(59, 175, 218, 0.2);
    }

    .form-submit-btn:active {
        transform: translateY(-1px);
    }

    .form-submit-btn i {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .form-submit-btn:hover i {
        transform: translateX(4px);
    }

    /* ================================
   SIDEBAR BELOW FORM (2 COLUMNS)
================================ */
    /* ================================
   FORM SIDEBAR (2 COLUMNS)
================================ */
    .form-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

    @media (max-width: 992px) {
        .form-sidebar {
            grid-template-columns: 1fr;
        }
    }

    .sidebar-card {
        background: #ffffff;
        border: 1px solid rgba(166, 225, 250, 0.3);
        border-radius: 24px;
        padding: 2.5rem;
        position: relative;
        overflow: hidden;
        box-shadow: 0 15px 45px rgba(11, 60, 93, 0.08), 0 0 0 1px rgba(166, 225, 250, 0.1);
        transition: all 0.3s ease;
    }

    .sidebar-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 55px rgba(59, 175, 218, 0.12), 0 0 0 1px rgba(59, 175, 218, 0.15);
    }

    .sidebar-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #3bafda, #f5c542);
    }

    .sidebar-title {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .sidebar-title i {
        color: var(--accent-blue);
    }

    .sidebar-text {
        color: rgba(11, 60, 93, 0.75);
        line-height: 1.7;
        margin-bottom: 1.8rem;
        font-size: 0.95rem;
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.9rem;
        margin-bottom: 0.9rem;
        color: rgba(11, 60, 93, 0.85);
        font-weight: 500;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .feature-list li i {
        color: #3bafda;
        font-size: 0.9rem;
        margin-top: 3px;
    }

    /* ================================
   SIDEBAR ICON (Premium Style)
================================ */
    .sidebar-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(59, 175, 218, 0.12), rgba(166, 225, 250, 0.25));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #3bafda;
        font-size: 1.35rem;
        box-shadow: 0 10px 25px rgba(11, 60, 93, 0.08), inset 0 0 0 1px rgba(59, 175, 218, 0.12);
    }

    /* Icon Hover Effect */
    .sidebar-card:hover .sidebar-icon {
        transform: scale(1.08) rotate(4deg);
        background: linear-gradient(135deg, var(--accent-blue), var(--glacier-blue));
        color: var(--deep-navy);
        box-shadow: 0 15px 35px rgba(59, 175, 218, 0.22);
    }



    /* ================================
   RESPONSIVE DESIGN
================================ */
    @media (max-width: 992px) {
        .contact-form-section {
            padding: 4rem 0;
        }

        .form-title {
            font-size: 2.3rem;
        }

        .form-subtitle {
            font-size: 1.05rem;
        }

        .form-card {
            padding: 2rem;
            border-radius: 20px;
        }

        .form-sidebar {
            grid-template-columns: 1fr;
        }

        .sidebar-card {
            padding: 2rem;
        }

        .contact-channels {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .channel-card {
            padding: 2rem;
        }
    }

    @media (max-width: 768px) {
        .form-container {
            padding: 0 15px;
        }

        .form-header {
            margin-bottom: 3rem;
        }

        .form-title {
            font-size: 2rem;
        }

        .form-card {
            padding: 2rem;
            border-radius: 20px;
        }

        .form-row.columns-2 {
            grid-template-columns: 1fr;
        }

        .sidebar-header {
            flex-direction: column;
            text-align: center;
            gap: 0.8rem;
        }

        .sidebar-icon {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }

        .sidebar-title {
            font-size: 1.2rem;
        }
    }

    @media (max-width: 576px) {
        .contact-form-section {
            padding: 3rem 0;
        }

        .form-title {
            font-size: 1.8rem;
        }

        .form-card {
            padding: 1.8rem;
        }

        .form-control {
            padding: 0.9rem 1.2rem;
        }

        .form-submit-btn {
            padding: 1rem 1.5rem;
            font-size: 1rem;
        }

        .sidebar-card {
            padding: 1.8rem;
        }

        .channel-card {
            padding: 1.8rem;
        }
    }

    /* ================================
   ANIMATIONS
================================ */
    .fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .delay-1 {
        animation-delay: 0.1s;
    }

    .delay-2 {
        animation-delay: 0.2s;
    }

    .delay-3 {
        animation-delay: 0.3s;
    }

    .delay-4 {
        animation-delay: 0.4s;
    }

    /* Smooth transition for form elements */
    .form-control,
    .form-select,
    .form-submit-btn {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Focus states for accessibility */
    .form-control:focus,
    .form-select:focus {
        outline: 2px solid var(--accent-blue);
        outline-offset: 2px;
    }

    /* Hover effects */
    .form-control:hover:not(:focus),
    .form-select:hover:not(:focus) {
        border-color: rgba(59, 175, 218, 0.4);
    }

    /* Custom scrollbar for textareas */
    textarea.form-control::-webkit-scrollbar {
        width: 8px;
    }

    textarea.form-control::-webkit-scrollbar-track {
        background: rgba(11, 60, 93, 0.05);
        border-radius: 4px;
    }

    textarea.form-control::-webkit-scrollbar-thumb {
        background: rgba(59, 175, 218, 0.3);
        border-radius: 4px;
    }

    textarea.form-control::-webkit-scrollbar-thumb:hover {
        background: rgba(59, 175, 218, 0.5);
    }

    /* ---------- END OF CONTACT PAGE STYLING ---------- */

    /* ---------- service PAGE STYLING ---------- */

    /* ================================
           PREMIUM HERO SECTION
        ================================ */
    .services-hero-section {
        position: relative;
        background: linear-gradient(135deg,
                rgba(11, 60, 93, 0.92) 0%,
                rgba(10, 42, 67, 0.95) 100%),
            url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center 40%;
        background-attachment: fixed;
        color: var(--white);
        padding: 12rem 0 6rem;
        overflow: hidden;
        min-height: 80vh;
        display: flex;
        align-items: center;
    }

    .services-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg,
                rgba(59, 175, 218, 0.1) 0%,
                rgba(11, 60, 93, 0.15) 50%,
                rgba(10, 42, 67, 0.1) 100%);
        backdrop-filter: blur(3px);
        z-index: 1;
    }

    .services-hero-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
    }

    .services-hero-headline {
        font-size: 4.2rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg,
                var(--white) 0%,
                var(--ice-blue) 50%,
                var(--white) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 4px 25px rgba(59, 175, 218, 0.25);
        position: relative;
    }

    .services-hero-headline::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 140px;
        height: 5px;
        background: linear-gradient(90deg, var(--accent-blue), var(--ice-blue));
        border-radius: 3px;
    }

    .services-hero-subheading {
        font-size: 1.4rem;
        line-height: 1.6;
        max-width: 750px;
        margin-bottom: 3rem;
        opacity: 0.9;
        font-weight: 300;
        letter-spacing: 0.3px;
    }

    /* ================================
           SERVICES GRID SECTION
        ================================ */
    .services-grid-section {
        padding: 8rem 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
        overflow: hidden;
    }

    .services-grid-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
            radial-gradient(circle at 20% 30%, rgba(59, 175, 218, 0.03) 2%, transparent 3%),
            radial-gradient(circle at 80% 70%, rgba(166, 225, 250, 0.02) 1.5%, transparent 2.5%);
        background-size: 200px 200px, 150px 150px;
        opacity: 0.6;
        z-index: 0;
    }

    .services-container {
        position: relative;
        z-index: 1;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-intro {
        text-align: center;
        margin-bottom: 5rem;
    }

    .section-intro-title {
        font-size: 3.2rem;
        font-weight: 900;
        color: var(--deep-navy);
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block;
    }

    .section-intro-subtitle {
        font-size: 1.2rem;
        color: rgba(11, 60, 93, 0.8);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.7;
    }

    /* ================================
           INNOVATIVE SERVICES GRID
        ================================ */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
        margin-bottom: 6rem;
    }

    .service-item {
        background: var(--white);
        border-radius: 28px;
        padding: 3.5rem 3rem;
        position: relative;
        overflow: hidden;
        border: 1px solid var(--service-border);
        box-shadow:
            0 20px 60px rgba(11, 60, 93, 0.08),
            0 0 0 1px rgba(166, 225, 250, 0.1);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .service-item:hover {
        transform: translateY(-12px);
        box-shadow:
            0 35px 80px rgba(59, 175, 218, 0.15),
            0 0 0 1px rgba(59, 175, 218, 0.2);
        border-color: var(--accent-blue);
    }

    .service-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--accent-blue), var(--premium-gold));
        z-index: 1;
    }

    .service-number {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 5rem;
        font-weight: 900;
        color: rgba(11, 60, 93, 0.05);
        line-height: 1;
        z-index: 0;
    }

    .service-icon1 {
        width: 80px;
        height: 80px;
        border-radius: 22px;
        background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
        box-shadow: 0 15px 35px rgba(59, 175, 218, 0.3);
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
    }

    .service-item:hover .service-icon1 {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 20px 45px rgba(59, 175, 218, 0.4);
    }

    .service-content {
        position: relative;
        z-index: 1;
    }

    .service-title {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--deep-navy);
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }

    .service-description {
        color: rgba(11, 60, 93, 0.75);
        line-height: 1.7;
        margin-bottom: 2rem;
        font-size: 1.05rem;
    }

    .service-features {
        list-style: none;
        padding: 0;
        margin: 2rem 0 0;
    }

    .service-features li {
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
        color: rgba(11, 60, 93, 0.85);
        font-size: 0.95rem;
        font-weight: 500;
    }

    .service-features li i {
        color: var(--accent-blue);
        font-size: 0.9rem;
        margin-top: 3px;
        flex-shrink: 0;
    }

    /* ================================
           CTA SECTION
        ================================ */
    .services-cta-section {
        padding: 8rem 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
        overflow: hidden;
    }

    .services-cta-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 80%;
        background: radial-gradient(circle, rgba(59, 175, 218, 0.05) 0%, transparent 70%);
        filter: blur(60px);
        z-index: 0;
    }

    .cta-container {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .cta-content {
        background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
        border-radius: 32px;
        padding: 6rem 5rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 40px 100px rgba(11, 60, 93, 0.2);
    }

    .cta-content::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(59, 175, 218, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
    }

    .cta-title {
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--white);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .cta-subtitle {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 700px;
        margin: 0 auto 3rem;
        line-height: 1.7;
    }

    .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary-cta {
        background: linear-gradient(135deg, var(--accent-blue), var(--glacier-blue));
        color: var(--white);
        border: none;
        padding: 1.2rem 3rem;
        border-radius: 16px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        box-shadow: 0 15px 40px rgba(59, 175, 218, 0.3);
    }

    .btn-primary-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 50px rgba(59, 175, 218, 0.4);
    }

    /* ================================
           RESPONSIVE DESIGN
        ================================ */
    @media (max-width: 1200px) {
        .services-hero-headline {
            font-size: 3.5rem;
        }

        .services-grid {
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        }

        .cta-content {
            padding: 5rem 4rem;
        }

        .cta-title {
            font-size: 3rem;
        }
    }

    @media (max-width: 992px) {
        .services-hero-section {
            padding: 10rem 0 5rem;
        }

        .services-hero-headline {
            font-size: 3rem;
        }

        .services-hero-subheading {
            font-size: 1.2rem;
        }

        .section-intro-title {
            font-size: 2.8rem;
        }

        .service-item {
            padding: 3rem 2.5rem;
        }

        .categories-title {
            font-size: 2.5rem;
        }

        .cta-content {
            padding: 4rem 3rem;
        }

        .cta-title {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 768px) {
        .services-hero-section {
            background-attachment: scroll;
            padding: 8rem 0 4rem;
        }

        .services-hero-headline {
            font-size: 2.5rem;
        }

        .services-hero-subheading {
            font-size: 1.1rem;
            padding: 0 20px;
        }

        .services-grid-section,
        .categories-section,
        .services-cta-section {
            padding: 4rem 0;
        }

        .services-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .section-intro-title {
            font-size: 2.2rem;
        }

        .section-intro-subtitle {
            font-size: 1.1rem;
            padding: 0 20px;
        }

        .service-item {
            padding: 2.5rem 2rem;
        }

        .service-title {
            font-size: 1.6rem;
        }

        .categories-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .categories-title {
            font-size: 2.2rem;
        }

        .categories-subtitle {
            padding: 0 20px;
        }

        .cta-content {
            padding: 3rem 2rem;
            border-radius: 24px;
        }

        .cta-title {
            font-size: 2rem;
        }

        .cta-subtitle {
            font-size: 1.1rem;
            padding: 0 20px;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .btn-primary-cta,
        .btn-outline-cta {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }

    @media (max-width: 576px) {
        .services-hero-headline {
            font-size: 2rem;
        }

        .section-intro-title {
            font-size: 1.8rem;
        }

        .service-icon {
            width: 65px;
            height: 65px;
            font-size: 1.8rem;
        }

        .service-number {
            font-size: 4rem;
        }

        .cta-title {
            font-size: 1.8rem;
        }
    }

    /* ================================
           ANIMATIONS
        ================================ */
    .fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .fade-in-left {
        opacity: 0;
        transform: translateX(-30px);
        animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .fade-in-right {
        opacity: 0;
        transform: translateX(30px);
        animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .delay-1 {
        animation-delay: 0.1s;
    }

    .delay-2 {
        animation-delay: 0.2s;
    }

    .delay-3 {
        animation-delay: 0.3s;
    }

    .delay-4 {
        animation-delay: 0.4s;
    }

    .delay-5 {
        animation-delay: 0.5s;
    }

    /* ================================
           STICKY PROGRESS INDICATOR
        ================================ */
    .progress-indicator {
        position: fixed;
        top: 50%;
        right: 30px;
        transform: translateY(-50%);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .progress-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(11, 60, 93, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .progress-dot.active {
        background: var(--accent-blue);
        transform: scale(1.3);
        box-shadow: 0 0 20px rgba(59, 175, 218, 0.5);
    }

    .progress-dot::after {
        content: attr(data-section);
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--deep-navy);
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 600;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .progress-dot:hover::after {
        opacity: 1;
        visibility: visible;
    }

    @media (max-width: 992px) {
        .progress-indicator {
            display: none;
        }
    }


    /* ---------- END OF service PAGE STYLING ---------- */
    /* ================================
   Product page  STYLING
================================ */
    /* ================================
           PREMIUM HERO SECTION
        ================================ */
    .products-hero-section {
        position: relative;
        background: linear-gradient(135deg,
                rgba(11, 60, 93, 0.92) 0%,
                rgba(10, 42, 67, 0.95) 100%),
            url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center 40%;
        background-attachment: fixed;
        color: var(--white);
        padding: 12rem 0 6rem;
        overflow: hidden;
        min-height: 80vh;
        display: flex;
        align-items: center;
    }

    .products-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg,
                rgba(59, 175, 218, 0.1) 0%,
                rgba(11, 60, 93, 0.15) 50%,
                rgba(10, 42, 67, 0.1) 100%);
        backdrop-filter: blur(3px);
        z-index: 1;
    }

    .products-hero-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
    }

    .products-hero-headline {
        font-size: 4.2rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg,
                var(--white) 0%,
                var(--ice-blue) 50%,
                var(--white) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 4px 25px rgba(59, 175, 218, 0.25);
        position: relative;
    }

    .products-hero-headline::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 140px;
        height: 5px;
        background: linear-gradient(90deg, var(--accent-blue), var(--ice-blue));
        border-radius: 3px;
    }

    .products-hero-subheading {
        font-size: 1.4rem;
        line-height: 1.6;
        max-width: 750px;
        margin-bottom: 3rem;
        opacity: 0.9;
        font-weight: 300;
        letter-spacing: 0.3px;
    }

    /* ================================
           PRODUCT CATEGORIES SECTION
        ================================ */
    /* ================== MODERN CATEGORIES SECTION ================== */
    .categories-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #0e2842 0%, #181e77 50%, #213c5a 100%);
        font-family: 'Poppins', sans-serif;
        perspective: 1000px;
        /* for 3D tilt */
    }

    .categories-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
    }

    .section-intro-title {
        font-size: 3rem;
        font-weight: 900;
        margin-bottom: 4rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
    }

    .section-intro-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #00bfff, #00c851, #ff007f, #ff9900);
        margin: 10px auto 0 auto;
        border-radius: 2px;
    }

    /* Grid layout */
    .categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    /* Card */
    .category-card {
        position: relative;
        border-radius: 25px;
        height: 350px;
        background-size: cover;
        background-position: center;
        overflow: hidden;
        cursor: pointer;
        text-decoration: none;
        transition: transform 0.6s ease, box-shadow 0.6s ease;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        transform-style: preserve-3d;
    }

    /* Hover effect: 3D tilt + zoom + shadow */
    .category-card:hover {
        transform: rotateX(4deg) rotateY(-4deg) scale(1.05);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    }

    .category-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.05));
        transition: all 0.5s ease;
        border-radius: 25px;
    }

    .category-card:hover::before {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05));
    }

    /* Glassmorphism overlay */
    .category-overlay {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        padding: 1.5rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(8px);
        border-radius: 15px;
        transition: all 0.5s ease;
        z-index: 2;
    }

    .category-card:hover .category-overlay {
        transform: translateX(-50%) translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
    }

    /* Titles */
    .category-title {
        font-size: 2rem;
        font-weight: 700;
        color: #fff;
        position: relative;
        display: inline-block;
        padding-bottom: 0.3rem;
    }

    /* Gradient underline */
    .category-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 3px;
        background: linear-gradient(90deg, #00bfff, #00c851, #ff007f, #ff9900);
        border-radius: 2px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .category-card {
            height: 320px;
        }

        .category-title {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 768px) {
        .categories-grid {
            grid-template-columns: 1fr;
        }

        .category-card {
            height: 280px;
        }

        .section-intro-title {
            font-size: 2.5rem;
        }

        .category-title {
            font-size: 1.6rem;
        }
    }

    /* Scroll animation (fade + slide up) */
    .category-card {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .category-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ================================
           PRODUCT DETAILS SECTION
        ================================ */
    .products-details-section {
        padding: 8rem 0;
        background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
        position: relative;
        overflow: hidden;
    }

    .products-details-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(59, 175, 218, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(50px);
    }

    .details-container {
        position: relative;
        z-index: 1;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .details-header {
        text-align: center;
        margin-bottom: 5rem;
    }

    .details-title {
        font-size: 3rem;
        font-weight: 900;
        color: var(--white);
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, var(--white) 0%, var(--ice-blue) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .details-subtitle {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.85);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.7;
    }

    /* Product Tabs */
    .product-tabs {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 4rem;
        flex-wrap: wrap;
    }

    .tab-btn {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--white);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        backdrop-filter: blur(10px);
    }

    .tab-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
    }

    .tab-btn.active {
        background: var(--accent-blue);
        border-color: var(--accent-blue);
        box-shadow: 0 10px 30px rgba(59, 175, 218, 0.3);
    }

    /* Product Content */
    .product-content {
        display: none;
        animation: fadeIn 0.5s ease;
    }

    .product-content.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .product-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    @media (max-width: 992px) {
        .product-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
    }

    .product-image {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    }

    .product-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .product-image:hover img {
        transform: scale(1.05);
    }

    .product-image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(11, 60, 93, 0.9), transparent);
        padding: 2rem;
        color: var(--white);
    }

    .product-image-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .product-image-subtitle {
        font-size: 1rem;
        opacity: 0.9;
    }

    .product-info {
        color: var(--white);
    }

    .product-name {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .product-description {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .product-features {
        list-style: none;
        padding: 0;
        margin: 2rem 0;
    }

    .product-features li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
        font-size: 1.05rem;
    }

    .product-features li i {
        color: var(--ice-blue);
        font-size: 1.1rem;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .product-specs {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 2rem;
        margin-top: 3rem;
        backdrop-filter: blur(10px);
    }

    .specs-title {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--white);
    }

    .specs-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .spec-item {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .spec-label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .spec-value {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--white);
    }

    /* ================================
           CTA SECTION
        ================================ */
    .products-cta-section {
        padding: 8rem 0;
        background: linear-gradient(135deg, var(--white), var(--white));
        position: relative;
        overflow: hidden;
    }

    .products-cta-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: var(--deep-navy);
        border-radius: 50%;
        filter: blur(50px);
    }

    .products-cta-container {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .products-cta-content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 32px;
        padding: 6rem 5rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    }

    .products-cta-content::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(59, 175, 218, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
    }

    .products-cta-title {
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--deep-navy);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .products-cta-subtitle {
        font-size: 1.3rem;
        color: var(--deep-navy);
        max-width: 700px;
        margin: 0 auto 3rem;
        line-height: 1.7;
    }

    .products-cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary-cta {
        background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue));
        color: var(--white);
        border: none;
        padding: 1.2rem 3rem;
        border-radius: 16px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        box-shadow: 0 15px 40px rgba(59, 175, 218, 0.3);
    }

    .btn-primary-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 50px rgba(59, 175, 218, 0.4);
    }

    .btn-outline-cta1 {
        background: transparent;
        color: white;
        border: 2px solid var(--ice-blue);
        padding: 1.2rem 3rem;
        border-radius: 16px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-outline-cta1:hover {
        background: var(--ice-blue);
        color: var(--deep-navy);
        transform: translateY(-3px);
    }

    /* ================================
           RESPONSIVE DESIGN
        ================================ */
    @media (max-width: 1200px) {
        .products-hero-headline {
            font-size: 3.5rem;
        }

        .categories-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .products-cta-content {
            padding: 5rem 4rem;
        }

        .products-cta-title {
            font-size: 3rem;
        }
    }

    @media (max-width: 992px) {
        .products-hero-section {
            padding: 10rem 0 5rem;
        }

        .products-hero-headline {
            font-size: 3rem;
        }

        .products-hero-subheading {
            font-size: 1.2rem;
        }

        .section-intro-title,
        .details-title,
        .tech-title {
            font-size: 2.8rem;
        }

        .category-card {
            padding: 3rem 2rem;
            min-height: 400px;
        }

        .product-tabs {
            flex-direction: column;
            align-items: center;
        }

        .tab-btn {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }

        .products-cta-content {
            padding: 4rem 3rem;
        }

        .products-cta-title {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 768px) {
        .products-hero-section {
            background-attachment: scroll;
            padding: 8rem 0 4rem;
        }

        .products-hero-headline {
            font-size: 2.5rem;
        }

        .products-hero-subheading {
            font-size: 1.1rem;
            padding: 0 20px;
        }

        .categories-section,
        .products-details-section,
        .technologies-section,
        .products-cta-section {
            padding: 4rem 0;
        }

        .categories-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .section-intro-title,
        .details-title,
        .tech-title {
            font-size: 2.2rem;
        }

        .section-intro-subtitle,
        .details-subtitle,
        .tech-subtitle {
            font-size: 1.1rem;
            padding: 0 20px;
        }

        .category-card {
            padding: 2.5rem 2rem;
            min-height: 350px;
        }

        .category-title {
            font-size: 1.8rem;
        }

        .product-name {
            font-size: 2rem;
        }

        .specs-grid {
            grid-template-columns: 1fr;
        }

        .products-cta-content {
            padding: 3rem 2rem;
            border-radius: 24px;
        }

        .products-cta-title {
            font-size: 2rem;
        }

        .products-cta-subtitle {
            font-size: 1.1rem;
            padding: 0 20px;
        }

        .products-cta-buttons {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .btn-primary-cta,
        .btn-outline-cta {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }

    @media (max-width: 576px) {
        .products-hero-headline {
            font-size: 2rem;
        }

        .section-intro-title,
        .details-title,
        .tech-title {
            font-size: 1.8rem;
        }

        .category-icon {
            width: 80px;
            height: 80px;
            font-size: 2rem;
        }

        .category-stats {
            flex-direction: column;
            gap: 1.5rem;
        }

        .products-cta-title {
            font-size: 1.8rem;
        }
    }

    /* ================================
           ANIMATIONS
        ================================ */
    .fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .fade-in-left {
        opacity: 0;
        transform: translateX(-30px);
        animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .fade-in-right {
        opacity: 0;
        transform: translateX(30px);
        animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .delay-1 {
        animation-delay: 0.1s;
    }

    .delay-2 {
        animation-delay: 0.2s;
    }

    .delay-3 {
        animation-delay: 0.3s;
    }

    .delay-4 {
        animation-delay: 0.4s;
    }

    .delay-5 {
        animation-delay: 0.5s;
    }

    .delay-6 {
        animation-delay: 0.6s;
    }

    /* ================================
           STICKY PROGRESS INDICATOR
        ================================ */
    .progress-indicator {
        position: fixed;
        top: 50%;
        right: 30px;
        transform: translateY(-50%);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .progress-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(11, 60, 93, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .progress-dot.active {
        background: var(--accent-blue);
        transform: scale(1.3);
        box-shadow: 0 0 20px rgba(59, 175, 218, 0.5);
    }

    .progress-dot::after {
        content: attr(data-section);
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--deep-navy);
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 600;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .progress-dot:hover::after {
        opacity: 1;
        visibility: visible;
    }

    @media (max-width: 992px) {
        .progress-indicator {
            display: none;
        }
    }


    /* ---------- END OF Product PAGE STYLING ---------- */
    /* ============================= */


    /* REMOTE PAGE STYLING */
    /* ============================= */

    /* ------------------------------ */
    /* Hero Section */
    /* ------------------------------ */
    .remote-hero-section {
        position: relative;
        min-height: 85vh;
        display: flex;
        align-items: center;
        justify-content: center;

        background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(244, 247, 252, 0.98) 100%),
            url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=40');

        background-size: cover;
        background-position: center;
        background-attachment: fixed;

        padding: 120px 20px 80px;
        overflow: hidden;
    }

    /* Soft overlay */
    .remote-hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 50%,
                rgba(255, 255, 255, 0.85) 0%,
                rgba(255, 255, 255, 0.45) 50%,
                transparent 100%);
        z-index: 1;
    }

    /* Main Box */
    .hero-content-box {
        position: relative;
        z-index: 2;

        background: rgba(255, 255, 255, 0.93);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 32px;

        padding: 4rem;
        max-width: 820px;
        width: 100%;

        text-align: center;

        box-shadow:
            0 25px 60px rgba(11, 60, 93, 0.12),
            0 0 0 1px rgba(255, 255, 255, 0.2),
            inset 0 0 0 1px rgba(255, 255, 255, 0.5);

        animation: fadeInUp 0.8s ease-out;

        /* Ensures perfect centering */
        margin: 0 auto;
    }

    /* Glow border */
    .hero-content-box::before {
        content: "";
        position: absolute;
        inset: -2px;
        background: linear-gradient(135deg,
                rgba(59, 175, 218, 0.25),
                rgba(11, 60, 93, 0.12),
                rgba(59, 175, 218, 0.25));
        border-radius: 34px;
        z-index: -1;
        animation: borderGlow 3s ease-in-out infinite alternate;
    }

    /* Title */
    .hero-title {
        font-size: 3.8rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1.2rem;

        background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;

        text-shadow: 0 2px 15px rgba(11, 60, 93, 0.08);
    }

    /* Subtitle */
    .hero-subtitle {
        font-size: 1.3rem;
        color: var(--secondary-grey);
        line-height: 1.7;
        margin: 0 auto 2.2rem;
        max-width: 620px;
    }

    /* Stats */
    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: 2.5rem;
        padding-top: 2rem;

        border-top: 1px solid rgba(11, 60, 93, 0.1);
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
        min-width: 120px;
    }

    .stat-value {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--accent-blue);
        margin-bottom: 0.4rem;
        text-shadow: 0 2px 10px rgba(59, 175, 218, 0.18);
    }

    .stat-label {
        font-size: 0.9rem;
        color: var(--secondary-grey);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* ✅ Mobile Responsive Fix */
    @media (max-width: 768px) {
        .remote-hero-section {
            min-height: 100vh;
            padding: 90px 15px 60px;

            /* Fix background attachment on mobile */
            background-attachment: scroll;
        }

        .hero-content-box {
            padding: 2.2rem 1.5rem;
            border-radius: 24px;
        }

        .hero-title {
            font-size: 2.4rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .hero-stats {
            gap: 1.5rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
        }

        .stat-value {
            font-size: 2rem;
        }

        .stat-item {
            min-width: 100px;
        }
    }

    /* Extra Small Screens */
    @media (max-width: 480px) {
        .hero-content-box {
            padding: 1.8rem 1.2rem;
        }

        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .hero-stats {
            flex-direction: column;
            align-items: center;
        }
    }


    /* ------------------------------ */
    /* Products Section */
    /* ------------------------------ */

    .products-display-section {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
        overflow: hidden;
    }

    .products-display-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg,
                transparent,
                rgba(59, 175, 218, 0.3),
                transparent);
    }

    .products-display-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg,
                transparent,
                rgba(11, 60, 93, 0.1),
                transparent);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    /* Section Header */
    .section-header {
        text-align: center;
        margin-bottom: 5rem;
        position: relative;
    }

    .section-title2 {
        font-size: 3.2rem;
        font-weight: 900;
        color: var(--deep-navy);
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
        font-family: 'Montserrat', sans-serif;
    }

    .section-subtitle2 {
        font-size: 1.2rem;
        color: var(--grey-text);
        max-width: 700px;
        margin: 2rem auto 0;
        line-height: 1.7;
        font-weight: 400;
    }

    /* Products Grid */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        margin-top: 3rem;
    }

    /* Product Card */
    .product-card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--card-shadow);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        cursor: pointer;
        text-decoration: none;
        height: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .product-card:hover {
        transform: translateY(-15px);
        box-shadow: var(--hover-shadow);
    }

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg,
                rgba(59, 175, 218, 0.05) 0%,
                transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

    .product-card:hover::before {
        opacity: 1;
    }

    /* Product Image */
    .product-image {
        height: 220px;
        overflow: hidden;
        position: relative;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .product-card:hover .product-image img {
        transform: scale(1.08);
    }

    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom,
                transparent 0%,
                rgba(11, 60, 93, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .product-card:hover .image-overlay {
        opacity: 1;
    }

    /* Product Footer */
    .product-footer {
        background: linear-gradient(135deg, var(--accent-blue), #2a9bc8);
        color: var(--white);
        padding: 1.5rem 2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.1) 0%,
                transparent 50%);
        z-index: 1;
    }

    .product-footer-content {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .product-footer span {
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .product-footer i {
        font-size: 1.2rem;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }

    .product-card:hover .product-footer i {
        opacity: 1;
        transform: translateX(0);
    }

    /* Product Badge */
    .product-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.95);
        color: var(--accent-blue);
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 2;
        display: none;
        /* Hide by default, show with JS if needed */
    }

    /* Language Content */
    .lang-content {
        display: none;
    }

    .lang-content.active {
        display: inline;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .products-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
    }

    @media (max-width: 992px) {
        .products-display-section {
            padding: 5rem 1.5rem;
        }

        .section-title {
            font-size: 2.8rem;
        }

        .products-grid {
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.8rem;
        }

        .product-image {
            height: 200px;
        }
    }

    @media (max-width: 768px) {
        .products-display-section {
            padding: 4rem 1rem;
        }

        .section-title {
            font-size: 2.4rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            padding: 0 1rem;
        }

        .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .product-image {
            height: 180px;
        }

        .product-footer {
            padding: 1.2rem 1rem;
        }

        .product-footer span {
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .products-grid {
            grid-template-columns: 1fr;
            max-width: 350px;
            margin-left: auto;
            margin-right: auto;
        }

        .product-image {
            height: 200px;
        }

        .section-title {
            font-size: 2rem;
        }

        .product-footer {
            padding: 1.5rem 1rem;
        }

        .btn-view-all {
            padding: 0.9rem 2rem;
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .products-grid {
            gap: 1.2rem;
        }

        .product-footer i {
            display: none;
        }
    }

    /* Animation Classes */
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Stagger Animation Delays */
    .product-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .product-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .product-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .product-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .product-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .product-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    /* ------------------------------ */
    /* CTA Section */
    /* ------------------------------ */
    .remote-cta-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
        position: relative;
        overflow: hidden;
    }

    .remote-cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(166, 225, 250, 0.1) 0%, transparent 70%);
        z-index: 0;
    }

    .cta-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    }

    .cta-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 700px;
        margin: 0 auto 2rem;
    }

    .btn-primary-custom {
        background: linear-gradient(135deg, var(--accent-blue), var(--glacier-blue));
        color: #fff;
        padding: 1rem 2.5rem;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        box-shadow: 0 10px 25px rgba(59, 175, 218, 0.3);
        transition: all 0.3s ease;
    }

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(59, 175, 218, 0.4);
    }

    .cta-title1 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--deep-navy);
        margin-bottom: 1rem;
    }

    .cta-subtitle1 {
        font-size: 1.1rem;
        color: var(--deep-navy);
        max-width: 700px;
        margin: 0 auto 2rem;
    }

    /* =============================== */
    /* PERFECT MOBILE RESPONSIVENESS */
    /* =============================== */

    @media (max-width: 1200px) {
        .sectioncarousel-title {
            font-size: 2.8rem;
        }

        .cta-title {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 992px) {
        .products-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .cta-section {
            padding: 2.5rem;
        }
    }

    @media (max-width: 768px) {
        .cta-title {
            font-size: 1.8rem;
        }

        .cta-subtitle {
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .cta-section {
            padding: 1.8rem;
        }

        .cta-title {
            font-size: 1.6rem;
        }

        .cta-subtitle {
            font-size: 0.95rem;
        }
    }

    /* ---------- END OF Remote PAGE STYLING ---------- */

    /* ================================
   Plug-in PAGE STYLING
====================*/
    /* ================================
           HERO SECTION - Plug-In Specific
        ================================ */
    .plugin-hero-section {
        position: relative;
        min-height: 85vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg,
                rgba(248, 250, 252, 0.95) 0%,
                rgba(244, 247, 252, 0.98) 100%),
            url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=40');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 120px 20px 80px;
        overflow: hidden;
    }

    .plugin-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%,
                rgba(255, 255, 255, 0.8) 0%,
                rgba(255, 255, 255, 0.4) 50%,
                transparent 100%);
        z-index: 1;
    }

    .hero-content-box {
        position: relative;
        z-index: 2;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 32px;
        padding: 4rem;
        max-width: 800px;
        width: 100%;
        box-shadow:
            0 25px 60px rgba(11, 60, 93, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.2),
            inset 0 0 0 1px rgba(255, 255, 255, 0.5);
        text-align: center;
        animation: fadeInUp 0.8s ease-out;
    }

    .hero-content-box::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg,
                rgba(59, 175, 218, 0.2),
                rgba(11, 60, 93, 0.1),
                rgba(59, 175, 218, 0.2));
        border-radius: 34px;
        z-index: -1;
        animation: borderGlow 3s ease-in-out infinite alternate;
    }

    .hero-title {
        font-size: 3.8rem;
        font-weight: 900;
        color: var(--deep-navy);
        margin-bottom: 1.5rem;
        line-height: 1.1;
        background: linear-gradient(135deg,
                var(--deep-navy) 0%,
                var(--accent-blue) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 2px 15px rgba(11, 60, 93, 0.1);
    }

    .hero-subtitle {
        font-size: 1.3rem;
        color: var(--secondary-grey);
        line-height: 1.7;
        margin-bottom: 2.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: 3rem;
        padding-top: 2.5rem;
        border-top: 1px solid rgba(11, 60, 93, 0.1);
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
        min-width: 120px;
    }

    .stat-value {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--accent-blue);
        line-height: 1;
        margin-bottom: 0.5rem;
        text-shadow: 0 2px 10px rgba(59, 175, 218, 0.2);
    }

    .stat-label {
        font-size: 0.9rem;
        color: var(--secondary-grey);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* ================================
           BENEFITS SECTION
        ================================ */
    /* ===== Benefits Section ===== */
    .benefits-section {
        padding: 6rem 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    }

    .section-header {
        max-width: 900px;
        margin: 0 auto 4rem;
    }

    /* Benefits List (Horizontal on desktop, vertical on mobile) */
    .benefits-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem;
    }

    /* Individual Benefit Item */
    .benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        max-width: 350px;
        text-align: left;
    }

    .benefit-icon {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #3bafda, #60c2f7);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.8rem;
    }

    .benefit-text h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #1e2a78;
        margin-bottom: 0.5rem;
    }

    .benefit-text p {
        font-size: 1rem;
        color: #6b7280;
        line-height: 1.6;
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
        .benefits-list {
            flex-direction: column;
            align-items: center;
        }

        .benefit-item {
            text-align: center;
            flex-direction: column;
            align-items: center;
        }

        .benefit-icon {
            margin-bottom: 1rem;
        }
    }

    /* ================================
           CTA SECTION
        ================================ */


    /* ================================
           ANIMATIONS
        ================================ */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes borderGlow {
        from {
            opacity: 0.5;
        }

        to {
            opacity: 1;
        }
    }

    .fade-in {
        opacity: 0;
        animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .delay-1 {
        animation-delay: 0.1s;
    }

    .delay-2 {
        animation-delay: 0.2s;
    }

    .delay-3 {
        animation-delay: 0.3s;
    }

    .delay-4 {
        animation-delay: 0.4s;
    }

    /* ================================
           RESPONSIVE DESIGN
        ================================ */
    @media (max-width: 1200px) {

        .hero-title,
        .sectioncarousel-title,
        .section-title-light,
        .cta-title {
            font-size: 3rem;
        }
    }

    @media (max-width: 992px) {
        .plugin-hero-section {
            padding: 100px 20px 60px;
            min-height: 70vh;
        }

        .hero-content-box {
            padding: 3rem;
            max-width: 90%;
        }

        .hero-title {
            font-size: 2.8rem;
        }

        .hero-stats {
            gap: 2rem;
        }

        .applications-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .cta-content {
            padding: 3rem 2rem;
        }

        .cta-title {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 768px) {
        .plugin-hero-section {
            background-attachment: scroll;
            min-height: 60vh;
        }

        .hero-content-box {
            padding: 2.5rem;
        }

        .hero-title {
            font-size: 2.2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .hero-stats {
            flex-direction: column;
            gap: 1.5rem;
        }

        .benefits-section,
        .cta-section {
            padding: 4rem 0;
        }

        .sectioncarousel-title,
        .section-title-light {
            font-size: 2.2rem;
        }

        .benefits-grid,
        .applications-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .benefit-card,
        .application-card {
            padding: 2rem 1.5rem;
        }

        .cta-title {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 576px) {
        .hero-content-box {
            padding: 2rem;
            border-radius: 24px;
        }

        .hero-title {
            font-size: 1.8rem;
        }

        .stat-value {
            font-size: 2rem;
        }

        .cta-content {
            padding: 2.5rem 1.5rem;
        }

        .cta-title {
            font-size: 1.6rem;
        }
    }

    /*- ---------- END OF Plug-in PAGE STYLING ---------- */

    /* --------cold rooms page stlying ---------*/
    /* ================================
           HERO SECTION - Cold Rooms Specific
        ================================ */
    .coldrooms-hero-section {
        position: relative;
        min-height: 85vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg,
                rgba(227, 242, 253, 0.95) 0%,
                rgba(227, 242, 253, 0.98) 100%),
            url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=40');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 120px 20px 80px;
        overflow: hidden;
    }

    .coldrooms-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%,
                rgba(255, 255, 255, 0.9) 0%,
                rgba(227, 242, 253, 0.6) 50%,
                transparent 100%);
        z-index: 1;
    }

    .hero-content-box {
        position: relative;
        z-index: 2;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 32px;
        padding: 4rem;
        max-width: 900px;
        width: 100%;
        box-shadow:
            0 25px 60px rgba(11, 60, 93, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.2),
            inset 0 0 0 1px rgba(255, 255, 255, 0.5);
        text-align: center;
        animation: fadeInUp 0.8s ease-out;
    }

    .hero-content-box::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg,
                rgba(59, 175, 218, 0.2),
                rgba(166, 225, 250, 0.1),
                rgba(59, 175, 218, 0.2));
        border-radius: 34px;
        z-index: -1;
        animation: borderGlow 3s ease-in-out infinite alternate;
    }

    .hero-title {
        font-size: 3.8rem;
        font-weight: 900;
        color: var(--deep-navy);
        margin-bottom: 1.5rem;
        line-height: 1.1;
        background: linear-gradient(135deg,
                var(--deep-navy) 0%,
                var(--accent-blue) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 2px 15px rgba(11, 60, 93, 0.1);
    }

    .hero-subtitle {
        font-size: 1.3rem;
        color: var(--secondary-grey);
        line-height: 1.7;
        margin-bottom: 2.5rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: 3rem;
        padding-top: 2.5rem;
        border-top: 1px solid rgba(11, 60, 93, 0.1);
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
        min-width: 120px;
    }

    .stat-value {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--accent-blue);
        line-height: 1;
        margin-bottom: 0.5rem;
        text-shadow: 0 2px 10px rgba(59, 175, 218, 0.2);
    }

    .stat-label {
        font-size: 0.9rem;
        color: var(--secondary-grey);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* ================================
           APPLICATIONS SECTION
        ================================ */
    .applications-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    }

    .applications-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .application-card {
        background: var(--white);
        border-radius: 16px;
        padding: 3rem 2rem;
        text-align: center;
        box-shadow: 0 10px 30px rgba(11, 60, 93, 0.08);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .application-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(11, 60, 93, 0.15);
    }

    .application-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--accent-blue), var(--glacier-blue));
    }

    .application-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--accent-blue), var(--glacier-blue));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: var(--white);
        font-size: 1.8rem;
    }

    .application-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--deep-navy);
        margin-bottom: 0.5rem;
    }

    .application-description {
        color: var(--secondary-grey);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* ================================
           CTA SECTION
        ================================ */

    /* ================================
           ANIMATIONS
        ================================ */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes borderGlow {
        from {
            opacity: 0.5;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    .fade-in {
        opacity: 0;
        animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .delay-1 {
        animation-delay: 0.1s;
    }

    .delay-2 {
        animation-delay: 0.2s;
    }

    .delay-3 {
        animation-delay: 0.3s;
    }

    .delay-4 {
        animation-delay: 0.4s;
    }

    .delay-5 {
        animation-delay: 0.5s;
    }

    .delay-6 {
        animation-delay: 0.6s;
    }

    /* ================================
           RESPONSIVE DESIGN
        ================================ */
    @media (max-width: 1200px) {

        .hero-title,
        .sectioncarousel-title,
        .section-title-light,
        .cta-title {
            font-size: 3rem;
        }
    }

    @media (max-width: 992px) {
        .coldrooms-hero-section {
            padding: 100px 20px 60px;
            min-height: 70vh;
        }

        .hero-content-box {
            padding: 3rem;
            max-width: 90%;
        }

        .hero-title {
            font-size: 2.8rem;
        }

        .hero-stats {
            gap: 2rem;
        }

        .applications-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .type-content {
            padding: 2rem 1.5rem;
        }

        .cta-content {
            padding: 3rem 2rem;
        }

        .cta-title {
            font-size: 2.2rem;
        }

    }

    @media (max-width: 768px) {
        .coldrooms-hero-section {
            background-attachment: scroll;
            min-height: 60vh;
        }

        .hero-content-box {
            padding: 2.5rem;
        }

        .hero-title {
            font-size: 2.2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .hero-stats {
            flex-direction: column;
            gap: 1.5rem;
        }

        .applications-section,
        .cta-section {
            padding: 4rem 0;
        }

        .sectioncarousel-title,
        .section-title-light {
            font-size: 2.2rem;
        }

        .applications-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .type-specs {
            grid-template-columns: 1fr;
        }

        .cta-title {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 576px) {
        .hero-content-box {
            padding: 2rem;
            border-radius: 24px;
        }

        .hero-title {
            font-size: 1.8rem;
        }

        .stat-value {
            font-size: 2rem;
        }

        .type-image {
            height: 200px;
        }

        .application-card {
            padding: 2.5rem 1.5rem;
        }

        .cta-content {
            padding: 2.5rem 1.5rem;
        }

        .cta-title {
            font-size: 1.6rem;
        }
    }

    /*- ---------- END OF Cold Rooms PAGE STYLING ---------- */

    /* ================================
           refgiration system PAGE STYLING
====================*/
    /* ================================
           HERO SECTION - Complete Systems
        ================================ */
    .systems-hero-section {
        position: relative;
        min-height: 85vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg,
                rgba(232, 244, 252, 0.95) 0%,
                rgba(232, 244, 252, 0.98) 100%),
            url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=60');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 120px 20px 80px;
        overflow: hidden;
    }

    .systems-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%,
                rgba(255, 255, 255, 0.9) 0%,
                rgba(232, 244, 252, 0.6) 50%,
                transparent 100%);
        z-index: 1;
    }

    .hero-content-box {
        position: relative;
        z-index: 2;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 32px;
        padding: 4rem;
        max-width: 900px;
        width: 100%;
        box-shadow:
            0 25px 60px rgba(11, 60, 93, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.2),
            inset 0 0 0 1px rgba(255, 255, 255, 0.5);
        text-align: center;
        animation: fadeInUp 0.8s ease-out;
    }

    .hero-content-box::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg,
                rgba(59, 175, 218, 0.2),
                rgba(166, 225, 250, 0.1),
                rgba(59, 175, 218, 0.2));
        border-radius: 34px;
        z-index: -1;
        animation: borderGlow 3s ease-in-out infinite alternate;
    }

    .hero-title {
        font-size: 3.8rem;
        font-weight: 900;
        color: var(--deep-navy);
        margin-bottom: 1.5rem;
        line-height: 1.1;
        background: linear-gradient(135deg,
                var(--deep-navy) 0%,
                var(--accent-blue) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 2px 15px rgba(11, 60, 93, 0.1);
    }

    .hero-subtitle {
        font-size: 1.3rem;
        color: var(--secondary-grey);
        line-height: 1.7;
        margin-bottom: 2.5rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: 3rem;
        padding-top: 2.5rem;
        border-top: 1px solid rgba(11, 60, 93, 0.1);
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
        min-width: 120px;
    }

    .stat-value {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--accent-blue);
        line-height: 1;
        margin-bottom: 0.5rem;
        text-shadow: 0 2px 10px rgba(59, 175, 218, 0.2);
    }

    .stat-label {
        font-size: 0.9rem;
        color: var(--secondary-grey);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* ================================
           SYSTEM TYPES SECTION
        ================================ */
    .system-types-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
    }

    .system-types-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg,
                transparent,
                rgba(59, 175, 218, 0.3),
                transparent);
    }

    .sectioncarousel-title {
        font-size: 3.2rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--deep-navy), var(--accent-blue));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 1.5rem;
        text-align: center;
        width: 100%;
    }

    .sectioncarousel-subtitle {
        font-size: 1.2rem;
        color: var(--secondary-grey);
        max-width: 800px;
        margin: 0 auto 3rem;
        line-height: 1.7;
        text-align: center;
        font-weight: 400;
    }

    .systems-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .system-card {
        background: var(--white);
        border-radius: 24px;
        overflow: hidden;
        box-shadow:
            0 15px 40px var(--card-shadow),
            0 0 0 1px rgba(59, 175, 218, 0.05);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        cursor: pointer;
        text-decoration: none;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .system-card:hover {
        transform: translateY(-15px);
        box-shadow:
            0 30px 80px var(--hover-shadow),
            0 0 0 1px rgba(59, 175, 218, 0.1);
    }

    .system-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--accent-blue), var(--glacier-blue));
        z-index: 2;
    }

    .system-image {
        height: 250px;
        overflow: hidden;
        position: relative;
    }

    .system-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .system-card:hover .system-image img {
        transform: scale(1.08);
    }

    .system-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--accent-blue);
        color: white;
        padding: 0.5rem 1.2rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 5px 15px rgba(59, 175, 218, 0.3);
        z-index: 2;
    }

    .system-content {
        padding: 2.5rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .system-title {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--deep-navy);
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .system-description {
        color: var(--secondary-grey);
        line-height: 1.6;
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

    .system-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: rgba(166, 225, 250, 0.08);
        border-radius: 16px;
        border: 1px solid rgba(59, 175, 218, 0.1);
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .feature-icon {
        color: var(--accent-blue);
        font-size: 1rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
    }

    .feature-text {
        font-size: 0.9rem;
        color: var(--deep-navy);
        font-weight: 500;
        line-height: 1.4;
    }

    .btn-details {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        background: linear-gradient(135deg, var(--accent-blue), var(--glacier-blue));
        color: var(--white);
        border: none;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        text-decoration: none;
        width: 100%;
    }

    .btn-details:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(59, 175, 218, 0.3);
    }

    /* ================================
           PROCESS SECTION
        ================================ */
    .process-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, var(--system-blue), #d4eaf7);
        position: relative;
    }

    .process-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
            radial-gradient(circle at 10% 20%, rgba(59, 175, 218, 0.05) 2%, transparent 2.5%),
            radial-gradient(circle at 90% 80%, rgba(166, 225, 250, 0.05) 1.5%, transparent 2%);
        background-size: 150px 150px, 120px 120px;
        opacity: 0.5;
        z-index: 0;
    }

    .process-timeline {
        position: relative;
        z-index: 1;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .process-step {
        display: flex;
        align-items: center;
        gap: 2rem;
        margin-bottom: 3rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .process-step:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--accent-blue), var(--glacier-blue));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.5rem;
        font-weight: 700;
        flex-shrink: 0;
    }

    .step-content h4 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--deep-navy);
        margin-bottom: 0.5rem;
    }

    .step-content p {
        color: var(--secondary-grey);
        line-height: 1.6;
    }

    /* ================================
           CTA SECTION
        ================================ */


    /* ================================
           ANIMATIONS
        ================================ */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes borderGlow {
        from {
            opacity: 0.5;
        }

        to {
            opacity: 1;
        }
    }

    .fade-in {
        opacity: 0;
        animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .delay-1 {
        animation-delay: 0.1s;
    }

    .delay-2 {
        animation-delay: 0.2s;
    }

    .delay-3 {
        animation-delay: 0.3s;
    }

    .delay-4 {
        animation-delay: 0.4s;
    }

    .delay-5 {
        animation-delay: 0.5s;
    }

    .delay-6 {
        animation-delay: 0.6s;
    }

    /* ================================
           RESPONSIVE DESIGN
        ================================ */
    @media (max-width: 1200px) {

        .hero-title,
        .sectioncarousel-title,
        .section-title-light,
        .cta-title {
            font-size: 3rem;
        }

        .systems-grid {
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        }
    }

    @media (max-width: 992px) {
        .systems-hero-section {
            padding: 100px 20px 60px;
            min-height: 70vh;
        }

        .hero-content-box {
            padding: 3rem;
            max-width: 90%;
        }

        .hero-title {
            font-size: 2.8rem;
        }

        .hero-stats {
            gap: 2rem;
        }

        .systems-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .system-content {
            padding: 2rem 1.5rem;
        }

        .process-step {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }

        .cta-content {
            padding: 3rem 2rem;
        }

        .cta-title {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 768px) {
        .systems-hero-section {
            background-attachment: scroll;
            min-height: 60vh;
        }

        .hero-content-box {
            padding: 2.5rem;
        }

        .hero-title {
            font-size: 2.2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .hero-stats {
            flex-direction: column;
            gap: 1.5rem;
        }

        .system-types-section,
        .process-section,
        .cta-section {
            padding: 4rem 0;
        }

        .sectioncarousel-title,
        .section-title-light {
            font-size: 2.2rem;
        }

        .systems-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .system-features {
            grid-template-columns: 1fr;
        }

        .cta-title {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 576px) {
        .hero-content-box {
            padding: 2rem;
            border-radius: 24px;
        }

        .hero-title {
            font-size: 1.8rem;
        }

        .stat-value {
            font-size: 2rem;
        }

        .system-image {
            height: 200px;
        }

        .component-card,
        .industry-card,
        .benefit-card {
            padding: 2rem 1.5rem;
        }

        .process-step {
            padding: 1.5rem;
        }

        .cta-content {
            padding: 2.5rem 1.5rem;
        }

        .cta-title {
            font-size: 1.6rem;
        }
    }

    /* ================= Plugin Products Section ================= */
    .plugin-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
        font-family: 'Poppins', sans-serif;
    }

    .plugin-header {
        text-align: center;
        margin-bottom: 50px;
    }

    /* ================= Products Grid ================= */
    .plugin-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }

    /* ================= Plugin Card ================= */
    .plugin-card {
        background-color: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
        text-decoration: none;
        color: inherit;
    }

    .plugin-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }

    .plugin-image-wrapper {
        position: relative;
        overflow: hidden;
    }

    .plugin-image-wrapper img {
        width: 100%;
        display: block;
        transition: transform 0.3s ease;
    }

    .plugin-card:hover .plugin-image-wrapper img {
        transform: scale(1.05);
    }

    .plugin-image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(11, 60, 93, 0.15);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .plugin-card:hover .plugin-image-overlay {
        opacity: 1;
    }

    .plugin-footer {
        padding: 15px 20px;
        background: #90EE90;
    }

    .plugin-footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: #0b3c5d;
    }

    .plugin-footer-content i {
        font-size: 1rem;
        color: #007BFF;
        transition: transform 0.3s ease;
    }

    .plugin-card:hover .plugin-footer-content i {
        transform: translateX(5px);
    }

    /* ================= Mobile Responsive ================= */
    @media (max-width: 992px) {
        .plugin-grid {
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .plugin-title {
            font-size: 2rem;
        }

        .plugin-subtitle {
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .plugin-grid {
            grid-template-columns: 1fr;
        }

        .plugin-footer-content {
            flex-direction: column;
            gap: 5px;
            text-align: center;
        }
    }

    /* ================= End of Plugin Products Section ================= */

    /* ==============================
   freezers PAGE STYLING   
============================== */
    /* Freezer Page Specific Styles */


    /* Applications */
    .freezer-applications {
        padding: 5rem 2rem;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    }

    /* Wrapper for badges */
    .applications-wrap {
        margin-top: 2.5rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    /* Badge Design */
    .app-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        padding: 0.9rem 1.6rem;
        border-radius: 999px;

        font-size: 1rem;
        font-weight: 600;

        background: rgba(59, 130, 246, 0.08);
        border: 1px solid rgba(59, 130, 246, 0.18);
        color: var(--deep-navy);

        box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);

        transition: all 0.25s ease;
        cursor: pointer;
        user-select: none;
        white-space: nowrap;
    }

    /* Icon style */
    .app-badge i {
        font-size: 1.05rem;
        color: var(--accent-blue);
    }

    /* Hover */
    .app-badge:hover {
        transform: translateY(-4px);
        background: rgba(59, 130, 246, 0.14);
        border-color: rgba(59, 130, 246, 0.35);
        box-shadow: 0 16px 35px rgba(2, 6, 23, 0.12);
    }

    /* Click effect */
    .app-badge:active {
        transform: translateY(-1px);
    }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 992px) {
        .freezer-applications {
            padding: 4rem 1.5rem;
        }

        .applications-wrap {
            gap: 12px;
        }

        .app-badge {
            font-size: 0.95rem;
            padding: 0.85rem 1.4rem;
        }
    }

    @media (max-width: 768px) {
        .freezer-applications {
            padding: 3.5rem 1.2rem;
        }

        /* Mobile Grid Feel */
        .applications-wrap {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            justify-content: center;
            align-items: stretch;
        }

        .app-badge {
            width: 100%;
            justify-content: flex-start;
            border-radius: 18px;
            padding: 0.95rem 1rem;
            white-space: normal;
        }

        .app-badge i {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 480px) {
        .freezer-applications {
            padding: 3rem 1rem;
        }

        .applications-wrap {
            grid-template-columns: 1fr;
        }

        .app-badge {
            padding: 0.95rem 1rem;
            font-size: 0.95rem;
        }
    }

    /* Freezer CTA */
    /* ================= CTA SECTION ================= */
    .freezer-cta-section {
        padding: 6rem 2rem;
        position: relative;
        overflow: hidden;

        background:
            linear-gradient(135deg,
                rgba(248, 250, 252, 0.92) 0%,
                rgba(244, 247, 252, 0.96) 100%),
            url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=40');

        background-size: cover;
        background-position: center;
    }

    /* Extra overlay for readability */
    .freezer-cta-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left,
                rgba(59, 130, 246, 0.12),
                transparent 60%);
        pointer-events: none;
    }

    /* CTA Box (Glass Card) */
    .cta-box {
        position: relative;
        z-index: 2;

        padding: 3rem 3rem;
        border-radius: 26px;

        background: rgba(255, 255, 255, 0.72);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 18px 50px rgba(2, 6, 23, 0.12);
    }

    /* CTA Button */
    .cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        padding: 1rem 1.8rem;
        border-radius: 18px;

        font-size: 1.05rem;
        font-weight: 700;
        text-decoration: none;

        background: linear-gradient(135deg, var(--deep-navy), #1d4ed8);
        color: #fff;

        box-shadow: 0 14px 35px rgba(37, 99, 235, 0.28);
        transition: all 0.25s ease;
    }

    /* Button icon */
    .cta-btn i {
        font-size: 1.05rem;
    }

    /* Hover */
    .cta-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 45px rgba(37, 99, 235, 0.38);
        color: #fff;
    }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 992px) {
        .freezer-cta-section {
            padding: 4.5rem 1.5rem;
        }

        .cta-box {
            padding: 2.5rem 2rem;
        }

        .cta-title {
            font-size: 1.75rem;
        }
    }

    @media (max-width: 768px) {
        .freezer-cta-section {
            padding: 4rem 1.2rem;
        }

        .cta-box {
            padding: 2.2rem 1.5rem;
            border-radius: 22px;
            text-align: center;
        }

        .cta-title {
            font-size: 1.55rem;
        }

        .cta-subtitle {
            font-size: 1rem;
            margin: 0 auto;
        }

        .cta-btn {
            width: 100%;
            max-width: 320px;
            padding: 1rem 1.4rem;
            border-radius: 16px;
        }
    }

    @media (max-width: 480px) {
        .cta-box {
            padding: 2rem 1.2rem;
        }

        .cta-title {
            font-size: 1.4rem;
        }
    }



    /* Freezer Badge */
    .freezer-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.95);
        color: var(--accent-blue);
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

    /* ==============================
   Breadcrumb Section (Perfect)
============================== */

    .breadcrumb-section {
        background: linear-gradient(135deg,
                rgba(59, 175, 218, 0.12),
                rgba(11, 60, 93, 0.06));
        padding: 16px 0;
        font-family: 'Poppins', sans-serif;
        border-bottom: 1px solid rgba(11, 60, 93, 0.08);
    }

    /* Main breadcrumb wrapper */
    .breadcrumb-section .breadcrumb {
        background: transparent;
        margin: 0;
        padding: 0;

        display: flex;
        align-items: center;

        /* ✅ Key mobile fixes */
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;

        /* Smooth scroll on mobile */
        -webkit-overflow-scrolling: touch;

        /* Remove Bootstrap default */
        list-style: none;

        font-size: 0.95rem;
    }

    /* Hide scrollbar (optional but clean) */
    .breadcrumb-section .breadcrumb::-webkit-scrollbar {
        height: 0px;
    }

    .breadcrumb-section .breadcrumb-item {
        display: inline-flex;
        align-items: center;

        color: var(--secondary-grey);
        font-weight: 500;
        flex: 0 0 auto;
    }

    /* Separator */
    .breadcrumb-section .breadcrumb-item+.breadcrumb-item::before {
        content: "›";
        color: rgba(59, 175, 218, 0.9);
        margin: 0 10px;
        font-weight: 700;
        font-size: 1rem;
    }

    /* Links */
    .breadcrumb-section .breadcrumb-item a {
        text-decoration: none;
        color: var(--accent-blue);
        font-weight: 600;
        transition: all 0.25s ease;
    }

    /* Hover */
    .breadcrumb-section .breadcrumb-item a:hover {
        color: var(--deep-navy);
        text-decoration: underline;
        text-underline-offset: 4px;
    }

    /* Active */
    .breadcrumb-section .breadcrumb-item.active {
        color: var(--deep-navy);
        font-weight: 700;

        /* ✅ Prevent super long active breadcrumb from breaking */
        max-width: 220px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* ===================================== */
    /* Responsive Tweaks */
    /* ===================================== */

    @media (max-width: 768px) {
        .breadcrumb-section {
            padding: 12px 10px;
        }

        .breadcrumb-section .breadcrumb {
            font-size: 0.88rem;
        }

        .breadcrumb-section .breadcrumb-item+.breadcrumb-item::before {
            margin: 0 8px;
        }

        .breadcrumb-section .breadcrumb-item.active {
            max-width: 170px;
        }
    }

    @media (max-width: 480px) {
        .breadcrumb-section {
            padding: 10px 10px;
        }

        .breadcrumb-section .breadcrumb {
            font-size: 0.85rem;
        }

        .breadcrumb-section .breadcrumb-item+.breadcrumb-item::before {
            margin: 0 7px;
        }

        .breadcrumb-section .breadcrumb-item.active {
            max-width: 140px;
        }
    }