 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

      
        :root {
    --primary-blue: #142f76;
    --accent-orange: #DF8C3E;
    --dark-blue: #0a1a3e;
     --accent-gold: #f4a944;
    --darker-blue: #050d18;
    --light-gray: #e8ecf1;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-medium: #666666;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease-in-out;
}






        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
            overflow-x: hidden;
        }
        a {
    text-decoration: none;
}


        /* Override Bootstrap defaults for custom navbar */
        .custom-navbar * {
            box-sizing: border-box;
        }

       /* ===== TOP INFO BAR ===== */
        .hm-top-info-bar {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3d8f 100%);
            color: var(--white);
            padding: 10px 0;
            font-size: 13px;
            position: relative;
            overflow: hidden;
        }

        .hm-top-info-bar::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: shimmer 15s linear infinite;
        }

        @keyframes shimmer {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .hm-top-bar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            position: relative;
            z-index: 1;
        }

        .hm-top-contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            align-items: center;
        }

        .hm-top-contact-link {
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            padding: 5px 10px;
            border-radius: 6px;
        }

        .hm-top-contact-link i {
            font-size: 14px;
            transition: all 0.4s;
        }

        .hm-top-contact-link:hover i {
            transform: scale(1.2) rotate(10deg);
            color: var(--accent-orange);
        }

        .hm-top-contact-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .hm-top-contact-link:hover::after {
            width: 80%;
        }

        .hm-top-contact-link:hover {
            color: var(--accent-orange);
            transform: translateY(-2px);
        }

        .hm-top-social {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hm-top-social span {
            font-weight: 500;
            opacity: 0.9;
        }

        .hm-social-link {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            color: var(--white);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            overflow: hidden;
        }

        .hm-social-link::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--accent-orange);
            transform: scale(0) rotate(45deg);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .hm-social-link:hover::before {
            transform: scale(1) rotate(45deg);
        }

        .hm-social-link i {
            position: relative;
            z-index: 1;
            font-size: 14px;
        }

        .hm-social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(223, 140, 62, 0.5);
        }

        /* ===== MAIN NAVBAR ===== */
        .custom-navbar {
            background: var(--white);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 12px 0;
            transition: all 0.3s ease;
        }

        .custom-navbar.scrolled {
            padding: 8px 0;
            box-shadow: 0 6px 25px rgba(0,0,0,0.12);
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            position: relative;
        }

        .navbar-logo img {
            height: 67px;
            width: auto;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            filter: drop-shadow(0 2px 8px rgba(20, 47, 118, 0.15));
        }

        .navbar-logo:hover img {
            transform: scale(1.05) rotate(2deg);
            filter: drop-shadow(0 4px 12px rgba(223, 140, 62, 0.3));
        }

        .navbar-toggler-btn {
            display: none;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            font-size: 20px;
            color: var(--white);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 4px 15px rgba(20, 47, 118, 0.25);
            position: relative;
            overflow: hidden;
        }

        .navbar-toggler-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .navbar-toggler-btn:hover::before {
            width: 200px;
            height: 200px;
        }

        .navbar-toggler-btn:hover {
            transform: rotate(180deg) scale(1.1);
            box-shadow: 0 6px 25px rgba(223, 140, 62, 0.4);
        }

        .navbar-toggler-btn i {
            position: relative;
            z-index: 1;
        }

        .navbar-menu {
            display: flex;
            align-items: center;
            gap: 35px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
            list-style: none;
        }

        .nav-link-main {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            padding: 26px 16px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            border-radius: 8px;
            font-size: 15px;
        }

        .nav-link-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(20, 47, 118, 0.05), rgba(223, 140, 62, 0.05));
            border-radius: 8px;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .nav-link-main:hover::before {
            opacity: 1;
        }

        .nav-link-main:hover {
            color: var(--primary-blue);
            transform: translateY(-2px);
        }

        .nav-link-main.active {
            color: var(--primary-blue);
            background: linear-gradient(135deg, rgba(20, 47, 118, 0.08), rgba(223, 140, 62, 0.08));
        }

        .nav-link-main::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
            transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border-radius: 10px;
        }

        .nav-link-main:hover::after,
        .nav-link-main.active::after {
            width: 80%;
        }

        .chevron-icon {
            font-size: 11px;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .nav-item.has-mega:hover .chevron-icon {
            transform: rotate(180deg);
        }

        /* ===== PREMIUM CTA BUTTON ===== */
        .btn-quote {
            background: linear-gradient(135deg, var(--accent-orange) 0%, #e5a05f 100%);
            color: var(--white);
            padding: 13px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            border: none;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 6px 20px rgba(223, 140, 62, 0.35);
            font-size: 14px;
            letter-spacing: 0.5px;
            display: inline-block;
        }

        .btn-quote::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.7s;
        }

        .btn-quote:hover::before {
            left: 100%;
        }

        .btn-quote::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-quote:hover::after {
            width: 300px;
            height: 300px;
        }

        .btn-quote:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 30px rgba(223, 140, 62, 0.5);
            color: var(--white);
        }

        .btn-quote span {
            position: relative;
            z-index: 1;
        }

        /* ===== ENHANCED MEGA DROPDOWN - CENTERED ON BODY ===== */
        .mega-dropdown-container {
            position: fixed;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            width: 95vw;
            max-width: 1400px;
            background: var(--white);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            border-radius: 20px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            overflow: hidden;
            z-index: 999;
        }

        .mega-dropdown-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
        }

        .nav-item.has-mega:hover .mega-dropdown-container {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .mega-dropdown-content {
            padding: 45px 40px;
            display: grid;
            grid-template-columns: 2.2fr 2.5fr 1.3fr;
            gap: 20px;
            position: relative;
        }

        .mega-column {
            position: relative;
            animation: fadeInUp 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
            opacity: 0;
        }

        .nav-item.has-mega:hover .mega-column:nth-child(1) { animation-delay: 0.1s; }
        .nav-item.has-mega:hover .mega-column:nth-child(2) { animation-delay: 0.15s; }
        .nav-item.has-mega:hover .mega-column:nth-child(3) { animation-delay: 0.2s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mega-column.double-width {
            grid-column: span 1;
        }

        .mega-column-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 3px solid transparent;
            border-image: linear-gradient(90deg, var(--primary-blue), var(--accent-orange)) 1;
            transition: all 0.4s;
        }

        .mega-column-header:hover {
            transform: translateX(5px);
        }

        .mega-icon {
            width: 46px;
            height: 46px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 4px 15px rgba(20, 47, 118, 0.25);
        }

        .mega-column-header:hover .mega-icon {
            transform: rotate(360deg) scale(1.15);
            box-shadow: 0 6px 25px rgba(223, 140, 62, 0.4);
        }

        .mega-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--primary-blue);
            margin: 0;
            transition: color 0.4s;
            letter-spacing: 0.3px;
        }

        .mega-column-header:hover .mega-title {
            color: var(--accent-orange);
        }

        .mega-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mega-two-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .mega-list-item {
            margin-bottom: 4px;
            transition: all 0.3s;
        }

        .mega-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            color: var(--text-dark);
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            font-size: 13.5px;
            position: relative;
            overflow: hidden;
            background: transparent;
        }

        .mega-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, var(--primary-blue), var(--accent-orange));
            transition: height 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border-radius: 0 4px 4px 0;
        }

        .mega-link::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(20, 47, 118, 0.06), rgba(223, 140, 62, 0.06));
            opacity: 0;
            transition: opacity 0.4s;
            border-radius: 10px;
        }

        .mega-link:hover::before {
            height: 100%;
        }

        .mega-link:hover::after {
            opacity: 1;
        }

        .mega-link:hover {
            color: var(--primary-blue);
            transform: translateX(10px);
            box-shadow: 0 4px 15px rgba(20, 47, 118, 0.1);
        }

        .mega-link i {
            font-size: 7px;
            color: var(--accent-orange);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }

        .mega-link:hover i {
            transform: translateX(5px) scale(1.3);
        }

        .mega-link span {
            position: relative;
            z-index: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.3;
			text-transform: capitalize;
        }

        /* Mobile Overlay */
        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 999;
            backdrop-filter: blur(5px);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .mobile-overlay.active {
            display: block;
            opacity: 1;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 991px) {
            .top-info-bar {
                display: none;
            }

            .custom-navbar {
                padding: 10px 0;
            }

            .navbar-logo img {
                height: 45px;
            }

            .navbar-toggler-btn {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .navbar-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 90%;
                max-width: 380px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 75px 0 20px 0;
                box-shadow: -10px 0 40px rgba(0,0,0,0.3);
                transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                overflow-y: auto;
                z-index: 1001;
            }

            .navbar-menu.active {
                right: 0;
            }

            .mobile-close-btn {
                position: absolute;
                top: 20px;
                right: 20px;
                background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
                border: none;
                width: 45px;
                height: 45px;
                border-radius: 50%;
                font-size: 22px;
                color: var(--white);
                cursor: pointer;
                z-index: 10;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                box-shadow: 0 4px 15px rgba(20, 47, 118, 0.3);
            }

            .mobile-close-btn:hover {
                transform: rotate(90deg) scale(1.1);
                box-shadow: 0 6px 25px rgba(223, 140, 62, 0.5);
            }

            .nav-item {
                border-bottom: 1px solid var(--light-gray);
            }

            .nav-link-main {
                padding: 18px 25px;
                justify-content: space-between;
                border-radius: 0;
            }

            .nav-link-main::after,
            .nav-link-main::before {
                display: none;
            }

            .nav-item.has-mega:hover .chevron-icon {
                transform: none;
            }

            .mega-dropdown-container {
                position: static;
                width: 100%;
                margin: 0;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: #f8f9fb;
                border-radius: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                pointer-events: auto;
            }

            .mega-dropdown-container::before {
                display: none;
            }

            .mega-dropdown-container.active {
                max-height: 1500px;
                overflow-y: auto;
            }

            .mega-dropdown-content {
                grid-template-columns: 1fr;
                padding: 25px 20px;
                gap: 25px;
                opacity: 0;
                transform: translateY(-5px);
                transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
            }

            .mega-dropdown-container.active .mega-dropdown-content {
                opacity: 1;
                transform: translateY(0);
            }

            .mega-column {
                animation: none;
                opacity: 1;
            }

            .mega-column.double-width {
                grid-column: span 1;
            }

            .mega-two-columns {
                grid-template-columns: 1fr;
                gap: 6px;
            }

            .mega-link span {
                white-space: normal;
                overflow: visible;
                text-overflow: clip;
            }

            .mega-link {
                padding: 12px 15px;
                font-size: 14px;
            }

            .chevron-icon.rotated {
                transform: rotate(180deg);
            }

            .btn-quote {
                margin: 20px 25px;
                text-align: center;
                display: block;
            }

            .mobile-contacts {
                display: block;
                border-top: 2px solid var(--light-gray);
                padding: 25px;
                margin-top: 15px;
                background: #f8f9fb;
            }

            .mobile-contact-item {
                margin-bottom: 14px;
            }

            .mobile-contact-link {
                display: flex;
                align-items: center;
                gap: 14px;
                padding: 14px 16px;
                background: var(--white);
                border-radius: 12px;
                color: var(--text-dark);
                text-decoration: none;
                transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                font-size: 14px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            }

            .mobile-contact-link:hover {
                background: linear-gradient(135deg, rgba(20, 47, 118, 0.08), rgba(223, 140, 62, 0.08));
                transform: translateX(8px);
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            }

            .mobile-contact-icon {
                width: 40px;
                height: 40px;
                background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--white);
                flex-shrink: 0;
                box-shadow: 0 3px 10px rgba(20, 47, 118, 0.2);
            }

            .navbar-menu::-webkit-scrollbar,
            .mega-dropdown-container::-webkit-scrollbar {
                width: 5px;
            }

            .navbar-menu::-webkit-scrollbar-thumb,
            .mega-dropdown-container::-webkit-scrollbar-thumb {
                background: linear-gradient(180deg, var(--primary-blue), var(--accent-orange));
                border-radius: 10px;
            }
        }

        @media (max-width: 576px) {
            .navbar-logo img {
                height: 40px;
            }

            .navbar-menu {
                width: 100%;
                max-width: 100%;
            }

            .top-contact-info {
                gap: 15px;
            }

            .mega-link {
                font-size: 13px;
                padding: 10px 12px;
            }
        }

        @media (min-width: 992px) {
            .mobile-contacts {
                display: none;
            }

            .mobile-close-btn {
                display: none;
            }
        }
        .nav-item.has-mega:hover .mega-dropdown-container,
.mega-dropdown-container:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}


        /* ========================================
   Hero Banner Section
   ======================================== */
.hero-banner {
    position: relative;
    width: 100vw;
    overflow: hidden;
    height: 85vh;
}




/* Slider should fully match banner */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slides perfectly stack */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Background image */
.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: cinematicPan 20s ease-in-out infinite alternate;
}

@keyframes cinematicPan {
    0% {
        transform: scale(1.05) translateX(0);
    }
    100% {
        transform: scale(1.1) translateX(-20px);
    }
}

/* 🔥 FIXED OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0; /* replaces top/left/width/height */
    background: linear-gradient(
        135deg,
        rgba(26, 58, 82, 0.8) 0%,
        rgba(44, 95, 141, 0.6) 100%
    );
    z-index: 2;
}

/* Content container */
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 3;
    color: var(--text-light);
}

/* Slide text animations */
.hero-slide.active .hero-title {
    animation: fadeUp 1s ease-out 0.3s both;
}

.hero-slide.active .hero-description {
    animation: fadeUp 1s ease-out 0.6s both;
}

.hero-slide.active .hero-buttons {
    animation: fadeUp 1s ease-out 0.9s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title */
.hero-title {
    font-size: clamp(32px, 5vw, 45px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(255, 255, 255, 0.05);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Description */
.hero-description {
    font-size: clamp(16px, 2.2vw, 22px);
    margin-bottom: 32px;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    background: var(--accent-color);
    border: none;
    padding: 14px 40px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn::before {
    content: '';
    position: absolute;
    inset: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-btn-outline {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 14px 40px;
    font-weight: 500;
    background: transparent;
    transition: all 0.3s ease;
}

.hero-btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Mobile */
@media only screen and (max-width: 600px) {
    .hm-top-info-bar {
        display: none;
    }

    .hero-banner {
        height: 50vh;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btn,
    .hero-btn-outline {
        width: 100%;
        text-align: center;
    }
}


/* 
  home-cards styles */
  
       .tmv-premium-section {
            background: transparent;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        @keyframes tmv-float-pulse {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }

        .tmv-section-header {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            animation: tmv-fade-up 1s ease-out forwards;
        }

        @keyframes tmv-fade-up {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tmv-section-subtitle {
            color: var(--accent-orange);
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 3px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .tmv-section-title {
            color: var(--primary-blue);
            font-size: 48px;
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .tmv-section-description {
            color: var(--text-medium);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .tmv-card-wrapper {
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            filter: blur(10px);
        }

        .tmv-card-wrapper.tmv-visible {
            animation: tmv-card-reveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .tmv-card-wrapper:nth-child(1) { animation-delay: 0.1s; }
        .tmv-card-wrapper:nth-child(2) { animation-delay: 0.3s; }
        .tmv-card-wrapper:nth-child(3) { animation-delay: 0.5s; }

        @keyframes tmv-card-reveal {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        .tmv-premium-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 32px;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
            border: 2px solid var(--light-gray);
            box-shadow: var(--shadow-md), 0 0 40px rgba(20, 47, 118, 0.08);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .tmv-premium-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(20, 47, 118, 0.05), transparent);
            transition: left 0.6s ease;
        }

        .tmv-premium-card:hover::before {
            left: 100%;
        }

        .tmv-premium-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 32px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange), var(--accent-gold));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .tmv-premium-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg), 0 20px 60px rgba(20, 47, 118, 0.15);
            border-color: var(--primary-blue);
            background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 1));
        }

        .tmv-premium-card:hover::after {
            opacity: 1;
        }

        .tmv-card-icon-wrapper {
            width: 90px;
            height: 90px;
            margin: 0 auto 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            position: relative;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .tmv-card-trust .tmv-card-icon-wrapper {
            background: linear-gradient(135deg, rgba(20, 47, 118, 0.15), rgba(59, 130, 246, 0.15));
            box-shadow: 0 8px 32px rgba(20, 47, 118, 0.2);
            border: 2px solid rgba(20, 47, 118, 0.2);
        }

        .tmv-card-mission .tmv-card-icon-wrapper {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.15));
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
            border: 2px solid rgba(139, 92, 246, 0.2);
        }

        .tmv-card-vision .tmv-card-icon-wrapper {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(14, 165, 233, 0.15));
            box-shadow: 0 8px 32px rgba(6, 182, 212, 0.2);
            border: 2px solid rgba(6, 182, 212, 0.2);
        }

        .tmv-premium-card:hover .tmv-card-icon-wrapper {
            transform: rotateY(360deg) scale(1.1);
        }

        .tmv-card-icon {
            font-size: 40px;
            transition: all 0.4s ease;
        }

        .tmv-card-trust .tmv-card-icon {
            color: #3b82f6;
        }

        .tmv-card-mission .tmv-card-icon {
            color: #a855f7;
        }

        .tmv-card-vision .tmv-card-icon {
            color: #06b6d4;
        }

        .tmv-premium-card:hover .tmv-card-icon {
            animation: tmv-icon-pulse 1s ease infinite;
        }

        @keyframes tmv-icon-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }

        .tmv-card-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-dark);
            text-align: center;
            letter-spacing: 0.5px;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .tmv-card-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            border-radius: 2px;
            transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .tmv-card-trust .tmv-card-title::after {
            background: linear-gradient(90deg, transparent, #3b82f6, transparent);
        }

        .tmv-card-mission .tmv-card-title::after {
            background: linear-gradient(90deg, transparent, #a855f7, transparent);
        }

        .tmv-card-vision .tmv-card-title::after {
            background: linear-gradient(90deg, transparent, #06b6d4, transparent);
        }

        .tmv-premium-card:hover .tmv-card-title::after {
            width: 120px;
        }

        .tmv-card-description {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-medium);
            text-align: center;
            flex-grow: 1;
        }

        .tmv-card-glow {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0;
            transition: opacity 0.6s ease;
            pointer-events: none;
        }

        .tmv-card-trust .tmv-card-glow {
            background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent);
            top: -50px;
            left: -50px;
        }

        .tmv-card-mission .tmv-card-glow {
            background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent);
            top: -50px;
            right: -50px;
        }

        .tmv-card-vision .tmv-card-glow {
            background: radial-gradient(circle, rgba(6, 182, 212, 0.4), transparent);
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
        }

        .tmv-premium-card:hover .tmv-card-glow {
            opacity: 0.6;
        }

        @media (max-width: 991px) {
            .tmv-section-title {
                font-size: 36px;
            }

            .tmv-premium-card {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 767px) {
            .tmv-premium-section {
                padding: 80px 0;
            }

            .tmv-section-title {
                font-size: 32px;
            }

            .tmv-section-description {
                font-size: 16px;
            }

            .tmv-premium-card {
                padding: 40px 30px;
            }

            .tmv-card-title {
                font-size: 24px;
            }

            .tmv-premium-card:hover {
                transform: translateY(-8px);
            }
        }



        


  /* image and content syles */

  /* Base Hero Section */
.phs-hero-section {
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker-blue) 0%, var(--dark-blue) 50%, var(--primary-blue) 100%);
}

.phs-hero-section::before {
    content: '';
    position: absolute;
    width: clamp(300px, 50vw, 600px);
    height: clamp(300px, 50vw, 600px);
    background: radial-gradient(circle, rgba(223, 140, 62, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: clamp(-100px, -15vh, -200px);
    right: clamp(-50px, -8vw, -100px);
    animation: phs-blob-float 8s ease-in-out infinite;
    z-index: 1;
}

.phs-hero-section::after {
    content: '';
    position: absolute;
    width: clamp(250px, 45vw, 500px);
    height: clamp(250px, 45vw, 500px);
    background: radial-gradient(circle, rgba(20, 47, 118, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: clamp(-75px, -12vh, -150px);
    left: clamp(-50px, -8vw, -100px);
    animation: phs-blob-float 10s ease-in-out infinite reverse;
    z-index: 1;
}

@keyframes phs-blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.phs-hero-container {
    position: relative;
    z-index: 2;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: clamp(20px, 4vw, 40px);
}

/* Status Badge */
.phs-status-badge {
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1vw, 8px);
    padding: clamp(8px, 1.5vw, 10px) clamp(16px, 3vw, 20px);
    background: linear-gradient(135deg, rgba(223, 140, 62, 0.2), rgba(244, 169, 68, 0.2));
    border: 1px solid rgba(223, 140, 62, 0.3);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
    margin-bottom: clamp(20px, 4vw, 30px);
    opacity: 0;
    transform: translateY(20px);
    animation: phs-fadeInUp 0.8s ease forwards;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    width: fit-content;
}

.phs-status-badge::before {
    content: '';
    width: clamp(6px, 1.2vw, 8px);
    height: clamp(6px, 1.2vw, 8px);
    background: var(--accent-orange);
    border-radius: 50%;
    animation: phs-pulse-glow 2s ease-in-out infinite;
    flex-shrink: 0;
}

.phs-status-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(223, 140, 62, 0.4);
}

@keyframes phs-pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(223, 140, 62, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(223, 140, 62, 0); }
}

@keyframes phs-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Headline */
.phs-hero-headline {
    font-size: clamp(2rem, 5vw + 1rem, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: clamp(20px, 3vw, 25px);
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-gold) 50%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
}

.phs-hero-headline span {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.phs-hero-headline span:nth-child(1) {
    animation: phs-fadeInUp 0.8s ease 0.2s forwards;
}

.phs-hero-headline span:nth-child(2) {
    animation: phs-fadeInUp 0.8s ease 0.4s forwards;
}

.phs-hero-headline span:nth-child(3) {
    animation: phs-fadeInUp 0.8s ease 0.6s forwards;
}

/* Subheading */
.phs-hero-subheading {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: clamp(30px, 5vw, 40px);
    max-width: min(600px, 90vw);
    opacity: 0;
    filter: blur(5px);
    animation: phs-fadeInBlur 1s ease 0.8s forwards;
}

@keyframes phs-fadeInBlur {
    to {
        opacity: 1;
        filter: blur(0);
    }
}

/* CTA Buttons */
.phs-cta-buttons {
    display: flex;
    gap: clamp(12px, 2.5vw, 20px);
    flex-wrap: wrap;
    margin-bottom: clamp(35px, 6vw, 50px);
    opacity: 0;
    transform: translateY(20px);
    animation: phs-fadeInUp 0.8s ease 1s forwards;
}

.phs-btn-primary-cta {
    padding: clamp(14px, 2.5vw, 18px) clamp(28px, 5vw, 40px);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    color: var(--white);
    border: none;
    border-radius: clamp(10px, 1.5vw, 12px);
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(223, 140, 62, 0.3);
    white-space: nowrap;
}

.phs-btn-primary-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.phs-btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(223, 140, 62, 0.5);
}

.phs-btn-primary-cta:active::before {
    width: 300px;
    height: 300px;
}

.phs-btn-secondary-cta {
    padding: clamp(14px, 2.5vw, 18px) clamp(28px, 5vw, 40px);
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: clamp(10px, 1.5vw, 12px);
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 10px);
    white-space: nowrap;
}

.phs-btn-secondary-cta .phs-arrow {
    transition: var(--transition);
}

.phs-btn-secondary-cta:hover {
    border-color: var(--accent-orange);
    background: rgba(223, 140, 62, 0.1);
    transform: translateY(-3px);
}

.phs-btn-secondary-cta:hover .phs-arrow {
    transform: translateX(5px);
}

/* Trust Indicators */
.phs-trust-indicators {
    display: flex;
    gap: clamp(20px, 5vw, 40px);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: phs-fadeInUp 0.8s ease 1.2s forwards;
}

.phs-trust-item {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 12px);
    color: var(--light-gray);
    font-size: clamp(12px, 1.8vw, 14px);
    transition: var(--transition);
}

.phs-trust-item:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.phs-trust-icon {
    width: clamp(20px, 3vw, 24px);
    height: clamp(20px, 3vw, 24px);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(10px, 1.5vw, 12px);
    color: var(--white);
    flex-shrink: 0;
}

/* Image Container */
.phs-hero-visual {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: phs-fadeInRight 1s ease 0.5s forwards;
    width: 100%;
    max-width: 100%;
}

@keyframes phs-fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phs-visual-card {
    position: relative;
    border-radius: clamp(20px, 4vw, 32px);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: phs-float 6s ease-in-out infinite;
}

@keyframes phs-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.phs-visual-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(223, 140, 62, 0.4);
    border-color: rgba(223, 140, 62, 0.5);
}

.phs-visual-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold), var(--primary-blue));
    border-radius: clamp(20px, 4vw, 32px);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.phs-visual-card:hover::before {
    opacity: 0.5;
    animation: phs-glow-rotate 3s linear infinite;
}

@keyframes phs-glow-rotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.phs-visual-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.phs-visual-card:hover img {
    transform: scale(1.05);
}

/* Decorative Elements */
.phs-geometric-accent {
    position: absolute;
    width: clamp(80px, 15vw, 150px);
    height: clamp(80px, 15vw, 150px);
    border: 2px solid rgba(223, 140, 62, 0.3);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: phs-rotate 20s linear infinite;
    z-index: 1;
}

@keyframes phs-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Tablet Breakpoint (768px - 991px) */
@media (max-width: 991px) {
    .phs-hero-section {
        min-height: auto;
        padding: clamp(60px, 10vh, 80px) 0;
    }

    .phs-hero-container {
        min-height: auto;
        flex-direction: column;
        text-align: center;
    }

    .phs-hero-visual {
        margin-top: clamp(40px, 8vw, 60px);
        animation: phs-fadeInUp 1s ease 0.5s forwards;
        transform: translateY(50px);
    }

    .phs-cta-buttons {
        justify-content: center;
    }

    .phs-trust-indicators {
        justify-content: center;
    }

    .phs-hero-headline,
    .phs-hero-subheading {
        text-align: center;
    }

    .phs-status-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .phs-hero-subheading {
        max-width: 100%;
    }

    .phs-geometric-accent {
        display: none;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .phs-hero-section::before,
    .phs-hero-section::after {
        opacity: 0.5;
    }

    .phs-hero-headline {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .phs-trust-indicators {
        gap: clamp(15px, 4vw, 30px);
    }

    .phs-visual-card {
        animation: none;
    }

    .phs-visual-card:hover {
        transform: scale(1.01);
    }
}

/* Mobile Portrait (max-width: 576px) */
@media (max-width: 576px) {
    .phs-hero-section {
        padding: clamp(40px, 8vh, 60px) 0;
    }

    .phs-hero-container {
        padding: clamp(15px, 5vw, 20px);
    }

    .phs-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: clamp(10px, 3vw, 15px);
    }

    .phs-btn-primary-cta,
    .phs-btn-secondary-cta {
        width: 100%;
        justify-content: center;
        padding: clamp(14px, 3vw, 16px) clamp(24px, 6vw, 32px);
    }

    .phs-trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 3vw, 20px);
    }

    .phs-trust-item {
        font-size: clamp(13px, 3vw, 14px);
    }

    .phs-hero-visual {
        margin-top: clamp(30px, 6vw, 40px);
    }

    /* Disable complex animations on mobile for performance */
    .phs-hero-section::before,
    .phs-hero-section::after {
        animation: none;
        opacity: 0.3;
    }

    .phs-status-badge::before {
        animation: phs-pulse-glow 3s ease-in-out infinite;
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .phs-hero-headline {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 15px;
    }

    .phs-hero-subheading {
        font-size: clamp(0.9rem, 4vw, 1rem);
        line-height: 1.6;
    }

    .phs-status-badge {
        font-size: 11px;
        padding: 8px 14px;
        gap: 6px;
    }

    .phs-btn-primary-cta,
    .phs-btn-secondary-cta {
        font-size: 14px;
        padding: 14px 24px;
    }
}

/* Large Desktop (min-width: 1400px) */
@media (min-width: 1400px) {
    .phs-hero-headline {
        font-size: 2.6rem;
    }

    .phs-hero-subheading {
        font-size: 1.2rem;
        max-width: 700px;
    }

    .phs-btn-primary-cta,
    .phs-btn-secondary-cta {
        padding: 20px 45px;
        font-size: 17px;
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .phs-visual-card {
        animation: none;
    }
    
    .phs-hero-section::before,
    .phs-hero-section::after {
        animation: none;
    }
}


        /* products categories */
            /* Floating Background Elements */
       /* Floating Orbs - Responsive */
.pcs-floating-orb {
    position: absolute;
    width: clamp(150px, 30vw, 300px);
    height: clamp(150px, 30vw, 300px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    opacity: 0.05;
    filter: blur(clamp(40px, 8vw, 80px));
    animation: pcs-float-anim 8s ease-in-out infinite;
}

.pcs-floating-orb-top {
    top: 5%;
    left: 2%;
    animation-delay: 0s;
}

.pcs-floating-orb-bottom {
    bottom: 5%;
    right: 2%;
    animation-delay: 2s;
}

@keyframes pcs-float-anim {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(clamp(15px, 3vw, 30px), clamp(-15px, -3vw, -30px)); }
}

/* Section Header - Responsive */
.pcs-header-block {
    text-align: center;
    margin-bottom: clamp(25px, 5vw, 35px);
    position: relative;
    opacity: 0;
    animation: pcs-fade-up 0.8s ease forwards;
    padding: 0 clamp(15px, 3vw, 20px);
}

@keyframes pcs-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pcs-header-block {
    transform: translateY(30px);
}

.pcs-main-heading {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: clamp(10px, 2vw, 15px);
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.pcs-sub-text {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-medium);
    margin-bottom: clamp(15px, 3vw, 20px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pcs-accent-line {
    width: clamp(60px, 10vw, 80px);
    height: clamp(3px, 0.5vw, 4px);
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.pcs-accent-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: pcs-shimmer-anim 2s infinite;
}

@keyframes pcs-shimmer-anim {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Card Grid - Fully Responsive */
.pcs-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(20px, 4vw, 40px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
}

/* Product Card - Responsive Height */
.pcs-item-card {
    position: relative;
    height: clamp(350px, 60vw, 450px);
    border-radius: clamp(15px, 2.5vw, 20px);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(50px);
    animation: pcs-card-reveal 0.8s ease forwards;
}

.pcs-item-card:nth-child(1) { animation-delay: 0.1s; }
.pcs-item-card:nth-child(2) { animation-delay: 0.2s; }
.pcs-item-card:nth-child(3) { animation-delay: 0.3s; }
.pcs-item-card:nth-child(4) { animation-delay: 0.4s; }
.pcs-item-card:nth-child(5) { animation-delay: 0.5s; }
.pcs-item-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes pcs-card-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pcs-item-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-gold), var(--primary-blue));
    border-radius: clamp(15px, 2.5vw, 20px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

@media (hover: hover) {
    .pcs-item-card:hover::before {
        opacity: 1;
        animation: pcs-border-glow 2s linear infinite;
    }

    .pcs-item-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(20, 47, 118, 0.2);
    }
}

@keyframes pcs-border-glow {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

/* Card Image - Responsive */
.pcs-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

@media (hover: hover) {
    .pcs-item-card:hover .pcs-hero-image {
        transform: scale(1.15) rotate(2deg);
    }
}

/* Overlay - Responsive */
.pcs-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 47, 118, 0.85) 0%,
        rgba(10, 26, 62, 0.9) 50%,
        rgba(5, 13, 24, 0.95) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(20px, 4vw, 40px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

@media (hover: hover) {
    .pcs-item-card:hover .pcs-dark-overlay {
        opacity: 1;
    }
}

/* Accent Shape - Responsive */
.pcs-blob-shape {
    position: absolute;
    top: clamp(-30px, -5vw, -50px);
    right: clamp(-30px, -5vw, -50px);
    width: clamp(100px, 15vw, 150px);
    height: clamp(100px, 15vw, 150px);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.2;
    transform: rotate(0deg);
    transition: all 0.8s ease;
}

@media (hover: hover) {
    .pcs-item-card:hover .pcs-blob-shape {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.3;
    }
}

/* Card Content - Responsive */
.pcs-text-wrapper {
    position: relative;
    z-index: 2;
}

.pcs-category-name {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: clamp(10px, 2vw, 15px);
    line-height: 1.2;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

@media (hover: hover) {
    .pcs-item-card:hover .pcs-category-name {
        transform: translateY(0);
        opacity: 1;
    }
}

.pcs-brief-desc {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: clamp(15px, 3vw, 20px);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
}

@media (hover: hover) {
    .pcs-item-card:hover .pcs-brief-desc {
        transform: translateY(0);
        opacity: 1;
    }
}

.pcs-action-link {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 10px);
    color: var(--accent-gold);
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.1rem);
    text-decoration: none;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
}

@media (hover: hover) {
    .pcs-item-card:hover .pcs-action-link {
        transform: translateX(0);
        opacity: 1;
    }

    .pcs-action-link:hover {
        gap: 15px;
        color: var(--accent-orange);
    }

    .pcs-action-link:hover .pcs-arrow-icon {
        transform: translateX(5px);
    }
}

.pcs-arrow-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Category Label - Responsive */
.pcs-badge-tag {
    position: absolute;
    top: clamp(15px, 2.5vw, 20px);
    left: clamp(15px, 2.5vw, 20px);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    color: var(--white);
    padding: clamp(6px, 1.2vw, 8px) clamp(15px, 2.5vw, 20px);
    border-radius: 30px;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    z-index: 3;
    box-shadow: 0 4px 15px rgba(223, 140, 62, 0.3);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.5s ease;
}

@media (hover: hover) {
    .pcs-item-card:hover .pcs-badge-tag {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Devices (up to 480px) */
@media (max-width: 480px) {
    .pcs-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pcs-item-card {
        height: 300px;
    }

    .pcs-dark-overlay {
        opacity: 0.95;
        background: linear-gradient(
            to top,
            rgba(5, 13, 24, 0.95) 0%,
            rgba(10, 26, 62, 0.85) 50%,
            rgba(20, 47, 118, 0.7) 80%,
            transparent 100%
        );
        padding: 25px 20px;
    }

    .pcs-category-name,
    .pcs-brief-desc,
    .pcs-action-link {
        transform: translateY(0);
        opacity: 1;
    }

    .pcs-badge-tag {
        transform: translateY(0);
        opacity: 1;
    }

    .pcs-floating-orb {
        display: none;
    }
}

/* Small Tablets (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .pcs-grid-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pcs-item-card {
        height: 400px;
    }

    .pcs-dark-overlay {
        opacity: 0.9;
        background: linear-gradient(
            to top,
            rgba(5, 13, 24, 0.95) 0%,
            rgba(10, 26, 62, 0.8) 60%,
            transparent 100%
        );
    }

    .pcs-category-name,
    .pcs-brief-desc,
    .pcs-action-link {
        transform: translateY(0);
        opacity: 1;
    }

    .pcs-badge-tag {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Tablets (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .pcs-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .pcs-item-card {
        height: 420px;
    }
}

/* Large Tablets and Small Desktops (1025px to 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
    .pcs-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 35px;
    }
}

/* Extra Large Screens (1441px and up) */
@media (min-width: 1441px) {
    .pcs-grid-container {
        max-width: 1600px;
        gap: 45px;
    }

    .pcs-item-card {
        height: 400px;
    }
}

/* Touch Device Optimization */
@media (hover: none) {
    .pcs-dark-overlay {
        opacity: 0.9;
        background: linear-gradient(
            to top,
            rgba(5, 13, 24, 0.95) 0%,
            rgba(10, 26, 62, 0.8) 60%,
            transparent 100%
        );
    }

    .pcs-category-name,
    .pcs-brief-desc,
    .pcs-action-link,
    .pcs-badge-tag {
        transform: translateY(0);
        opacity: 1;
    }

    /* Enhance touch targets */
    .pcs-action-link {
        padding: 10px 0;
        min-height: 44px;
        align-items: center;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 896px) and (orientation: landscape) {
    .pcs-item-card {
        height: 60vh;
        min-height: 300px;
    }

    .pcs-header-block {
        margin-bottom: 20px;
    }
}

/* Print Styles */
@media print {
    .pcs-floating-orb {
        display: none;
    }

    .pcs-item-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .pcs-dark-overlay {
        opacity: 0;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .pcs-item-card {
        border: 2px solid currentColor;
    }

    .pcs-badge-tag {
        border: 1px solid var(--white);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .pcs-header-block,
    .pcs-item-card {
        opacity: 1;
        transform: none;
    }
}







/* Footer Styles */
        .footer-section {
            background: linear-gradient(135deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
            color: var(--white);
            padding: 80px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                var(--accent-orange) 50%, 
                transparent 100%);
        }

        .footer-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 200%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(223, 140, 62, 0.05) 0%, transparent 70%);
            pointer-events: none;
            animation: ambientGlow 8s ease-in-out infinite;
        }

        @keyframes ambientGlow {
            0%, 100% {
                opacity: 1;
                transform: translateX(0);
            }
            50% {
                opacity: 0.7;
                transform: translateX(5%);
            }
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .footer-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .footer-col {
            flex: 0 0 25%;
            max-width: 25%;
            padding: 0 15px;
        }

        .footer-widget {
            margin-bottom: 40px;
        }

        .footer-logo {
            height: 70px;
            margin-bottom: 25px;
            filter: drop-shadow(0 4px 10px rgba(223, 140, 62, 0.3));
            transition: var(--transition);
            animation: logoFloat 3s ease-in-out infinite;
        }

        .footer-logo:hover {
            filter: drop-shadow(0 6px 20px rgba(223, 140, 62, 0.5));
            transform: scale(1.05);
            animation: none;
        }

        @keyframes logoFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        .footer-description {
            color: var(--light-gray);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .footer-social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
            opacity: 0;
            transition: var(--transition);
        }

        .footer-social-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .footer-social-icon i {
            position: relative;
            z-index: 1;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .footer-social-icon:hover {
            transform: translateY(-8px) scale(1.15);
            box-shadow: 0 15px 35px rgba(223, 140, 62, 0.5);
            border-color: var(--accent-orange);
            animation: iconPulse 1.5s ease-in-out infinite;
        }

        .footer-social-icon:hover::before {
            opacity: 1;
        }

        .footer-social-icon:hover::after {
            width: 100%;
            height: 100%;
            opacity: 0;
        }

        .footer-social-icon:hover i {
            transform: rotateY(360deg) scale(1.2);
        }

        @keyframes iconPulse {
            0%, 100% {
                box-shadow: 0 15px 35px rgba(223, 140, 62, 0.5);
            }
            50% {
                box-shadow: 0 15px 45px rgba(223, 140, 62, 0.7);
            }
        }

        .footer-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
            border-radius: 2px;
            box-shadow: 0 2px 10px rgba(223, 140, 62, 0.5);
            animation: underlineExpand 2s ease-in-out infinite;
        }

        @keyframes underlineExpand {
            0%, 100% {
                width: 60px;
            }
            50% {
                width: 80px;
            }
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            color: var(--light-gray);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: var(--transition);
            font-size: 15px;
            padding: 5px 0;
        }

        .footer-links a i {
            font-size: 10px;
            transition: var(--transition);
            color: var(--accent-orange);
        }

        .footer-links a:hover {
            color: var(--accent-orange);
            transform: translateX(8px);
        }

        .footer-links a:hover i {
            transform: translateX(3px);
        }

        .footer-contact {
            list-style: none;
            padding: 0;
        }

        .footer-contact li {
            display: flex;
            gap: 15px;
            margin-bottom: 18px;
            color: var(--light-gray);
            align-items: flex-start;
        }

        .footer-contact i {
            color: var(--accent-orange);
            font-size: 18px;
            min-width: 22px;
            margin-top: 3px;
            animation: iconBounce 2s ease-in-out infinite;
        }

        @keyframes iconBounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        .footer-contact li:hover i {
            animation: iconSpin 0.6s ease-in-out;
            color: var(--accent-gold);
        }

        @keyframes iconSpin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .footer-contact a {
            color: var(--light-gray);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-contact a:hover {
            color: var(--accent-orange);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
padding: 10px 0;
  margin-top: 0px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .footer-bottom .row {
            align-items: center;
        }

        .copyright-text {
            margin: 0;
            color: var(--light-gray);
            font-size: 14px;
        }

        .footer-bottom-social {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
        }

        /* Responsive Design */
        @media (max-width: 1199px) {
            .footer-container {
                max-width: 960px;
            }

            .footer-section {
                padding: 70px 0 0;
            }

            .footer-title {
                font-size: 20px;
            }
        }

        @media (max-width: 991px) {
            .footer-col {
                flex: 0 0 50%;
                max-width: 50%;
                margin-bottom: 40px;
            }

            .footer-container {
                max-width: 720px;
            }

            .footer-section {
                padding: 60px 0 0;
            }

            .footer-widget {
                margin-bottom: 0;
            }

            .footer-title {
                font-size: 19px;
                margin-bottom: 25px;
            }

            .footer-links a,
            .footer-description {
                font-size: 14px;
            }
        }

        @media (max-width: 767px) {
            .footer-col {
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 45px;
            }

            .footer-container {
                padding: 0 25px;
            }

            .footer-section {
                padding: 50px 0 0;
            }

            .footer-logo {
                height: 60px;
                margin: 0 auto 20px;
                display: block;
            }

            .footer-description {
                text-align: center;
                font-size: 14px;
                margin-bottom: 20px;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-title {
                font-size: 18px;
                text-align: center;
                margin-bottom: 20px;
            }

            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-links {
                text-align: center;
            }

            .footer-links a {
                justify-content: center;
                font-size: 14px;
            }

            .footer-contact {
                text-align: center;
            }

            .footer-contact li {
                justify-content: center;
                font-size: 14px;
            }

            .footer-bottom {
                padding: 20px 0;
                margin-top: 50px;
            }

            .footer-bottom .footer-row {
                flex-direction: column;
                gap: 15px;
            }

            .footer-bottom .footer-col {
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 0;
            }

            .footer-bottom-social {
                justify-content: center;
                margin-top: 0;
            }

            .copyright-text {
                text-align: center;
                font-size: 13px;
            }
        }

        @media (max-width: 575px) {
            .footer-container {
                padding: 0 20px;
            }

            .footer-section {
                padding: 40px 0 0;
            }

            .demo-content h1 {
                font-size: 32px;
            }

            .demo-content {
                padding: 60px 20px;
            }

            .footer-logo {
                height: 50px;
            }

            .footer-social-icon {
                width: 42px;
                height: 42px;
            }

            .footer-title {
                font-size: 17px;
            }

            .footer-links a,
            .footer-contact li,
            .footer-description {
                font-size: 13px;
            }

            .footer-links li {
                margin-bottom: 10px;
            }

            .footer-contact li {
                margin-bottom: 15px;
            }

            .footer-bottom {
                padding: 18px 0;
                margin-top: 40px;
            }

            .copyright-text {
                font-size: 12px;
                line-height: 1.6;
            }
        }

        @media (max-width: 390px) {
            .footer-section {
                padding: 35px 0 0;
            }

            .footer-title {
                font-size: 16px;
                margin-bottom: 18px;
            }

            .footer-social {
                gap: 8px;
            }

            .footer-social-icon {
                width: 38px;
                height: 38px;
                font-size: 14px;
            }

            .footer-links a,
            .footer-contact li {
                font-size: 12px;
            }

            .footer-contact i {
                font-size: 16px;
            }

            .footer-col {
                margin-bottom: 35px;
            }
        }


              /* Page Header */
        .page-header {
            position: relative;
           height: 300px;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue), var(--accent-orange));
            background-size: 200% 200%;
            animation: gradientMove 15s ease infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        @keyframes gradientMove {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../assets/images/banner/page.webp') center/cover;
            opacity: 0.15;
            animation: zoomPulse 20s ease-in-out infinite;
        }

        .page-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, rgba(255,255,255,1), transparent);
        }

        @keyframes zoomPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Floating Particles */
        .particle {
            position: absolute;
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite;
        }

        .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
        .particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 2s; }
        .particle:nth-child(3) { left: 50%; top: 40%; animation-delay: 4s; }
        .particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 6s; }
        .particle:nth-child(5) { left: 85%; top: 30%; animation-delay: 8s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
        }

        .page-header-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: var(--white);
            animation: fadeInDown 1s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .page-header h1 {
               font-size: 36px;
            font-weight: 700;
            margin-bottom: 30px;
            text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.4);
            animation: slideInFromLeft 1s ease;
            letter-spacing: 2px;
        }

        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Breadcrumb Navigation */
        .breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            padding: 11px 17px;
           
            backdrop-filter: blur(10px);
            border-radius: 50px;
           
            animation: fadeInUp 1s ease 0.3s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 500;
        }

        .breadcrumb-item a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            padding: 8px 20px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb-item a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .breadcrumb-separator {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .breadcrumb-item.active {
            color: var(--accent-gold);
            font-weight: 600;
            padding: 8px 20px;
            background: rgba(244, 169, 68, 0.2);
            border-radius: 25px;
        }

        /* Container */
        .con-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInUp 1s ease;
        }

        .section-title {
            font-size: 36px;
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .section-title::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
            border-radius: 2px;
            animation: expandWidth 1.5s ease;
        }

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 60px; }
        }

        .title-underline {
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
            margin: 0 auto 25px;
            border-radius: 3px;
            animation: pulseWidth 2s ease infinite;
        }

        @keyframes pulseWidth {
            0%, 100% { width: 100px; }
            50% { width: 120px; }
        }

        .section-subtitle {
            color: var(--text-medium);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .contact-info-wrapper {
            animation: slideInLeft 1s ease;
        }

        .contact-form-wrapper {
            animation: slideInRight 1s ease;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Contact Info Box */
        .contact-info-box {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue), var(--accent-orange));
            background-size: 200% 200%;
            animation: gradientMove 15s ease infinite;
            border-radius: 25px;
            padding: 45px;
            color: var(--white);
            height: 100%;
            box-shadow: 0 20px 60px rgba(20, 47, 118, 0.3);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .contact-info-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .contact-info-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 70px rgba(20, 47, 118, 0.4);
        }

        .contact-info-box h3 {
            position: relative;
            z-index: 1;
            margin-bottom: 35px;
            font-size: 32px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 35px;
            position: relative;
            z-index: 1;
            opacity: 0;
            animation: fadeInItem 0.6s ease forwards;
            padding: 15px;
            border-radius: 15px;
            transition: var(--transition);
        }

        .contact-info-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(10px);
        }

        .contact-info-item:nth-child(2) { animation-delay: 0.2s; }
        .contact-info-item:nth-child(3) { animation-delay: 0.4s; }
        .contact-info-item:nth-child(4) { animation-delay: 0.6s; }
        .contact-info-item:nth-child(5) { animation-delay: 0.8s; }

        @keyframes fadeInItem {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .contact-info-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            flex-shrink: 0;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .contact-info-item:hover .contact-info-icon {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.15) rotate(360deg);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .contact-info-content h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .contact-info-content p {
            font-size: 15px;
            opacity: 0.95;
            margin: 0;
            line-height: 1.6;
        }

        .contact-info-content a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
        }

        .contact-info-content a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: var(--transition);
        }

        .contact-info-content a:hover::after {
            width: 100%;
        }

        .contact-info-content a:hover {
            color: var(--accent-gold);
        }

        /* Contact Form */
        .contact-form {
            background: var(--white);
            border-radius: 25px;
            padding: 45px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange), var(--accent-gold), var(--primary-blue));
            background-size: 200% 100%;
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .contact-form h3 {
            margin-bottom: 35px;
            font-size: 32px;
            color: var(--primary-blue);
            font-weight: 700;
            letter-spacing: 1px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 25px;
        }

        .form-group {
            position: relative;
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
        #message{
          margin-bottom: 10px;
        }

        .form-group:nth-child(1) { animation-delay: 0.1s; }
        .form-group:nth-child(2) { animation-delay: 0.2s; }
        .form-group:nth-child(3) { animation-delay: 0.3s; }
        .form-group:nth-child(4) { animation-delay: 0.4s; }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
            font-size: 15px;
            transition: var(--transition);
        }

        .form-group:focus-within label {
            color: var(--accent-orange);
            transform: translateX(5px);
        }

        .form-control {
            width: 100%;
            padding: 16px 22px;
            border: 2px solid var(--light-gray);
            border-radius: 14px;
            background: var(--white);
            font-size: 15px;
            transition: var(--transition);
            font-family: inherit;
        }

        .form-control:hover {
            border-color: var(--accent-gold);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-orange);
            box-shadow: 0 0 0 5px rgba(223, 140, 62, 0.1);
            transform: translateY(-2px);
            background: #fafbfc;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 140px;
        }

        /* Input Icons */
        .form-group-icon {
            position: relative;
        }

        .form-group-icon .form-control {
            padding-left: 50px;
        }

        .form-group-icon::before {
            content: attr(data-icon);
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-medium);
            pointer-events: none;
            transition: var(--transition);
            margin-top: 20px;
            font-size: 18px;
        }

        .form-group-icon:focus-within::before {
            color: var(--accent-orange);
            transform: translateY(-50%) scale(1.1);
        }

        /* Submit Button */
        .btn-submit {
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
            color: var(--white);
            padding: 18px 45px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 17px;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(20, 47, 118, 0.3);
            letter-spacing: 1px;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-submit:hover::before {
            width: 400px;
            height: 400px;
        }

        .btn-submit:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(20, 47, 118, 0.5);
        }

        .btn-submit:active {
            transform: translateY(-1px);
        }

        .btn-submit span {
            position: relative;
            z-index: 1;
        }

        /* Map Container */
        .map-container {
            margin-top: 60px;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            height: 450px;
            animation: fadeInUp 1s ease 0.8s backwards;
            transition: var(--transition);
            border: 5px solid var(--white);
        }

        .map-container:hover {
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
            transform: scale(1.01);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Success Message */
        .success-message {
            display: none;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 18px 25px;
            border-radius: 15px;
            margin-bottom: 25px;
            animation: slideDown 0.5s ease;
            align-items: center;
            gap: 12px;
            box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
        }

        .success-message.show {
            display: flex;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .success-message i {
            font-size: 24px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .container {
                padding: 0 30px;
            }

            .contact-grid {
                gap: 30px;
            }

            .section-title {
                font-size: 42px;
            }

            .page-header h1 {
                font-size: 56px;
            }
        }

        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-section {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 38px;
            }

            .page-header h1 {
                font-size: 48px;
            }

            .contact-form,
            .contact-info-box {
                padding: 35px;
            }

            .contact-info-box h3,
            .contact-form h3 {
                font-size: 28px;
            }

            .map-container {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .page-header {
                height: 300px;
            }

            .page-header h1 {
                font-size: 38px;
                margin-bottom: 20px;
                letter-spacing: 1px;
            }

            .section-title {
                font-size: 32px;
            }

            .section-subtitle {
                font-size: 16px;
                padding: 0 15px;
            }

            .breadcrumb {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 8px;
                padding: 12px 20px;
            }

            .breadcrumb-item a,
            .breadcrumb-item.active {
                padding: 6px 15px;
                font-size: 14px;
            }

            .breadcrumb-separator {
                font-size: 12px;
            }

            .contact-form,
            .contact-info-box {
                padding: 25px;
            }

            .contact-info-box h3,
            .contact-form h3 {
                font-size: 24px;
                margin-bottom: 25px;
            }

            .contact-info-item {
                margin-bottom: 25px;
                padding: 12px;
            }

            .contact-info-icon {
                width: 50px;
                height: 50px;
                font-size: 22px;
            }

            .contact-info-content h4 {
                font-size: 18px;
            }

            .contact-info-content p {
                font-size: 14px;
            }

            .form-group label {
                font-size: 14px;
                margin-bottom: 10px;
            }

            .form-control {
                padding: 14px 18px;
                font-size: 14px;
            }

            .form-group-icon .form-control {
                padding-left: 45px;
            }

            .form-group-icon::before {
                left: 15px;
                font-size: 16px;
            }

            .btn-submit {
                padding: 16px 35px;
                font-size: 16px;
            }

            .map-container {
                height: 350px;
                margin-top: 40px;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .contact-section {
                padding: 50px 15px;
            }

            .particle {
                width: 15px;
                height: 15px;
            }
        }

        @media (max-width: 576px) {
            .page-header {
                height: 250px;
            }

            .page-header h1 {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .section-title {
                font-size: 28px;
            }

            .section-title::before {
                width: 40px;
                top: -15px;
            }

            .title-underline {
                width: 70px;
                height: 4px;
            }

            .section-subtitle {
                font-size: 15px;
            }

            .breadcrumb {
                padding: 10px 15px;
                gap: 6px;
            }

            .breadcrumb-item a,
            .breadcrumb-item.active {
                padding: 5px 12px;
                font-size: 13px;
            }

            .breadcrumb-item a i,
            .breadcrumb-item.active i {
                font-size: 12px;
            }

            .contact-form,
            .contact-info-box {
                padding: 20px;
                border-radius: 20px;
            }

            .contact-info-box h3,
            .contact-form h3 {
                font-size: 22px;
                margin-bottom: 20px;
            }

            .contact-info-item {
                margin-bottom: 20px;
                padding: 10px;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .contact-info-item:hover {
                transform: translateX(0);
                transform: scale(1.02);
            }

            .contact-info-icon {
                width: 55px;
                height: 55px;
                font-size: 24px;
            }

            .contact-info-content h4 {
                font-size: 17px;
                margin-bottom: 6px;
            }

            .contact-info-content p {
                font-size: 13px;
            }

            .form-row {
                gap: 20px;
            }

            .form-group label {
                font-size: 13px;
            }

            .form-control {
                padding: 13px 16px;
                font-size: 13px;
                border-radius: 12px;
            }

            .form-group-icon .form-control {
                padding-left: 42px;
            }

            .form-group-icon::before {
                left: 14px;
                font-size: 15px;
            }

            textarea.form-control {
                min-height: 120px;
            }

            .btn-submit {
                padding: 15px 30px;
                font-size: 15px;
                letter-spacing: 0.5px;
            }

            .btn-submit i {
                font-size: 14px;
            }

            .map-container {
                height: 300px;
                margin-top: 30px;
                border-radius: 20px;
                border-width: 3px;
            }

            .contact-section {
                padding: 40px 10px;
            }

            .section-header {
                margin-bottom: 35px;
            }

            .success-message {
                padding: 15px 20px;
                font-size: 14px;
                border-radius: 12px;
            }

            .success-message i {
                font-size: 20px;
            }

            .particle {
                width: 12px;
                height: 12px;
            }

            .container {
                padding: 0 15px;
            }
        }

        @media (max-width: 400px) {
            .page-header {
                height: 250px;
            }

            .page-header h1 {
                font-size: 28px;
            }

            .section-title {
                font-size: 24px;
            }

            .breadcrumb {
                padding: 8px 12px;
            }

            .breadcrumb-item a,
            .breadcrumb-item.active {
                padding: 4px 10px;
                font-size: 12px;
            }

            .contact-form,
            .contact-info-box {
                padding: 18px;
            }

            .contact-info-box h3,
            .contact-form h3 {
                font-size: 20px;
            }

            .contact-info-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .form-control {
                padding: 12px 14px;
            }

            .btn-submit {
                padding: 14px 25px;
                font-size: 14px;
            }

            .map-container {
                height: 250px;
            }

            .section-subtitle {
                font-size: 14px;
            }
        }


        /* about styles */
        
        .pcs-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .pcs-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
            align-items: center;
        }

        .pcs-col-half {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0 15px;
        }

        /* Hero Banner Section */
        .pcs-hero-banner {
            padding: 120px 0 100px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 50%, var(--darker-blue) 100%);
            position: relative;
            overflow: hidden;
        }

        .pcs-hero-pattern {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(223, 140, 62, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(244, 169, 68, 0.1) 0%, transparent 50%);
            animation: pcs-pulse-glow 8s ease-in-out infinite;
        }

        .pcs-hero-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: pcs-move-dots 20s linear infinite;
        }

        @keyframes pcs-move-dots {
            0% { transform: translate(0, 0); }
            100% { transform: translate(100px, 100px); }
        }

        @keyframes pcs-pulse-glow {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .pcs-hero-wrapper {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .pcs-hero-title {
            font-size: 52px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 25px;
            animation: pcs-fade-down 0.8s ease;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            line-height: 1.2;
        }

        .pcs-hero-subtitle {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.95);
            max-width: 750px;
            margin: 0 auto 50px;
            animation: pcs-fade-up 0.8s ease 0.2s both;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .pcs-stats-wrapper {
            display: flex;
            justify-content: center;
            gap: 80px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .pcs-stat-box {
            text-align: center;
            animation: pcs-fade-up 0.8s ease 0.4s both;
            position: relative;
            padding: 20px;
        }

        .pcs-stat-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
            border-radius: 2px;
        }

        .pcs-stat-value {
            font-size: 56px;
            font-weight: 700;
            color: var(--accent-orange);
            display: block;
            margin-bottom: 12px;
            text-shadow: 0 0 20px rgba(223, 140, 62, 0.4);
            margin-top: 15px;
        }

        .pcs-stat-text {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        /* Company Overview Section */
        .pcs-company-overview {
            padding: 30px 0;
            background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 50%, var(--light-gray) 100%);
            position: relative;
        }

        .pcs-bg-decoration {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(20, 47, 118, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(223, 140, 62, 0.04) 0%, transparent 50%);
            pointer-events: none;
        }

        .pcs-overview-content {
            position: relative;
            z-index: 1;
        }

        .pcs-main-heading {
           font-size: 36px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 25px;
            position: relative;
            animation: pcs-fade-left 0.8s ease;
            letter-spacing: -0.5px;
        }

        .pcs-heading-line {
            width: 90px;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
            margin-bottom: 35px;
            border-radius: 3px;
            position: relative;
            animation: pcs-expand-line 1s ease-out;
            box-shadow: 0 2px 8px rgba(223, 140, 62, 0.3);
        }

        .pcs-heading-line::after {
            content: '';
            position: absolute;
            right: -12px;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            background: var(--accent-orange);
            border-radius: 50%;
            animation: pcs-dot-pulse 2s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(223, 140, 62, 0.5);
        }

        @keyframes pcs-expand-line {
            from { width: 0; opacity: 0; }
            to { width: 90px; opacity: 1; }
        }

        @keyframes pcs-dot-pulse {
            0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
            50% { opacity: 0.6; transform: translateY(-50%) scale(1.4); }
        }

        .pcs-description-text {
            font-size: 18px;
            color: var(--text-medium);
            margin-bottom: 28px;
            line-height: 1.9;
            animation: pcs-fade-left 0.8s ease 0.2s both;
            text-align: justify;
        }

        .pcs-description-text:first-of-type {
            font-size: 18px;
            color: var(--text-dark);
            font-weight: 500;
        }

        .pcs-feature-grid {
            list-style: none;
            padding: 0;
            margin-top: 45px;
        }

        .pcs-feature-item {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 22px;
            font-size: 17px;
            color: var(--text-dark);
            padding: 18px 22px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            cursor: default;
            opacity: 0;
            animation: pcs-fade-up 0.6s ease forwards;
            border-left: 4px solid transparent;
        }

        .pcs-feature-item:nth-child(1) { animation-delay: 0.3s; }
        .pcs-feature-item:nth-child(2) { animation-delay: 0.4s; }
        .pcs-feature-item:nth-child(3) { animation-delay: 0.5s; }
        .pcs-feature-item:nth-child(4) { animation-delay: 0.6s; }

        .pcs-feature-item:hover {
            transform: translateX(12px);
            box-shadow: var(--shadow-md);
            background: linear-gradient(135deg, var(--white) 0%, rgba(232, 236, 241, 0.5) 100%);
            border-left-color: var(--accent-orange);
        }

        .pcs-feature-icon {
            color: var(--accent-orange);
            font-size: 26px;
            min-width: 26px;
            transition: var(--transition);
        }

        .pcs-feature-item:hover .pcs-feature-icon {
            transform: scale(1.25) rotate(360deg);
            filter: drop-shadow(0 0 8px rgba(223, 140, 62, 0.6));
        }

        .pcs-visual-wrapper {
            position: relative;
            animation: pcs-fade-right 0.8s ease;
            perspective: 1000px;
        }

        .pcs-image-frame {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 4px solid var(--accent-orange);
            border-radius: 25px;
            z-index: -1;
            opacity: 0.4;
            transition: var(--transition);
        }

        .pcs-image-frame::before {
            content: '';
            position: absolute;
            top: -10px;
            right: -10px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--accent-gold);
            border-radius: 25px;
            opacity: 0.3;
        }

        .pcs-visual-wrapper:hover .pcs-image-frame {
            top: -25px;
            right: -25px;
            opacity: 0.6;
            transform: rotate(2deg);
        }

        .pcs-main-image {
            width: 100%;
            border-radius: 25px;
            box-shadow: var(--shadow-lg);
            animation: pcs-float-img 5s ease-in-out infinite;
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .pcs-main-image:hover {
            transform: scale(1.03) translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        @keyframes pcs-float-img {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-25px) rotate(1deg); }
        }

        .pcs-main-image:hover {
            animation-play-state: paused;
        }

        /* Core Principles Section */
        .pcs-principles-section {
            padding: 30px 0;
            background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
            position: relative;
        }

        .pcs-principles-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="1" height="1" fill="rgba(20,47,118,0.02)"/></svg>');
            opacity: 0.5;
        }

        .pcs-section-header {
            text-align: center;
      
            position: relative;
            z-index: 1;
        }

        .pcs-section-header .pcs-main-heading {
            animation: pcs-fade-down 0.8s ease;
        }

        .pcs-section-header .pcs-heading-line {
            margin: 25px auto 35px;
        }

        .pcs-principles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            position: relative;
            z-index: 1;
        }

        .pcs-principle-card {
            background: linear-gradient(145deg, var(--white) 0%, var(--light-gray) 100%);
           padding: 13px 19px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: pcs-fade-up 0.8s ease forwards;
            border: 1px solid rgba(20, 47, 118, 0.05);
        }

        .pcs-principle-card:nth-child(1) { animation-delay: 0.1s; }
        .pcs-principle-card:nth-child(2) { animation-delay: 0.2s; }
        .pcs-principle-card:nth-child(3) { animation-delay: 0.3s; }
        .pcs-principle-card:nth-child(4) { animation-delay: 0.4s; }

        .pcs-principle-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(223, 140, 62, 0.08), transparent);
            transition: left 0.6s ease;
        }

        .pcs-principle-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .pcs-principle-card:hover::before {
            left: 100%;
        }

        .pcs-principle-card:hover::after {
            transform: scaleX(1);
        }

        .pcs-principle-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent-orange);
        }

        .pcs-principle-icon-wrapper {
           width: 60px;
  height: 60px;
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 40px;
            color: var(--white);
            box-shadow: 0 8px 20px rgba(223, 140, 62, 0.3);
            transition: var(--transition);
            position: relative;
        } 
        .pcs-principle-icon-wrapper i{
            font-size: 25px;
        }

        .pcs-principle-icon-wrapper::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
            opacity: 0;
            transition: var(--transition);
        }

        .pcs-principle-card:hover .pcs-principle-icon-wrapper {
            transform: rotateY(360deg) scale(1.1);
            box-shadow: 0 12px 30px rgba(223, 140, 62, 0.5);
        }

        .pcs-principle-card:hover .pcs-principle-icon-wrapper::before {
            opacity: 1;
        }

        .pcs-principle-icon-wrapper i {
            position: relative;
            z-index: 1;
        }

        .pcs-principle-title {
            font-size: 24px;
            color: var(--primary-blue);
            margin-bottom: 18px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .pcs-principle-desc {
            font-size: 16px;
            color: var(--text-medium);
            line-height: 1.8;
        }

        /* Call To Action Section */
        .pcs-cta-banner {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 50%, var(--darker-blue) 100%);
            position: relative;
            overflow: hidden;
        }

        .pcs-cta-glow-left {
            position: absolute;
            top: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(223, 140, 62, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: pcs-pulse-glow 6s ease-in-out infinite;
        }

        .pcs-cta-glow-right {
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(244, 169, 68, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: pcs-pulse-glow 8s ease-in-out infinite reverse;
        }

        .pcs-cta-wrapper {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .pcs-cta-heading {
            font-size: 42px;
            color: var(--white);
            margin-bottom: 25px;
            font-weight: 700;
            animation: pcs-fade-down 0.8s ease;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .pcs-cta-description {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 45px;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
            animation: pcs-fade-up 0.8s ease 0.2s both;
        }

        .pcs-cta-btn {
            display: inline-block;
            padding: 18px 50px;
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 8px 25px rgba(223, 140, 62, 0.4);
            position: relative;
            overflow: hidden;
            animation: pcs-fade-up 0.8s ease 0.4s both;
        }

        .pcs-cta-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .pcs-cta-btn:hover::before {
            width: 350px;
            height: 350px;
        }

        .pcs-cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(223, 140, 62, 0.6);
        }

        .pcs-cta-btn-text {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
        }

        .pcs-cta-btn i {
            transition: transform 0.3s ease;
        }

        .pcs-cta-btn:hover i {
            transform: translateX(5px);
        }

        /* Animations */
        @keyframes pcs-fade-down {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pcs-fade-up {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pcs-fade-left {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pcs-fade-right {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .pcs-col-half {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .pcs-hero-banner {
                padding: 100px 0 80px;
            }

            .pcs-hero-title {
                font-size: 38px;
            }

            .pcs-hero-subtitle {
                font-size: 19px;
            }

            .pcs-stat-value {
                font-size: 44px;
            }

            .pcs-stats-wrapper {
                gap: 50px;
            }

            .pcs-company-overview {
                padding: 80px 0;
            }

            .pcs-main-heading {
                font-size: 36px;
            }

            .pcs-visual-wrapper {
                margin-top: 60px;
            }

            .pcs-main-image {
                animation: none;
            }

            .pcs-principles-section {
                padding: 80px 0;
            }

            .pcs-principles-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .pcs-cta-banner {
                padding: 80px 0;
            }

            .pcs-cta-heading {
                font-size: 32px;
            }

            .pcs-cta-description {
                font-size: 17px;
            }
        }

        @media (max-width: 768px) {
            .pcs-hero-banner {
                padding: 80px 0 60px;
            }

            .pcs-hero-title {
                font-size: 32px;
            }

            .pcs-hero-subtitle {
                font-size: 17px;
            }

            .pcs-stats-wrapper {
                gap: 35px;
            }

            .pcs-stat-value {
                font-size: 38px;
            }

            .pcs-stat-text {
                font-size: 14px;
            }

            .pcs-company-overview {
                padding: 60px 0;
            }

            .pcs-main-heading {
                font-size: 30px;
            }

            .pcs-description-text {
                font-size: 16px;
            }

            .pcs-feature-item {
                padding: 15px 18px;
                font-size: 16px;
            }

            .pcs-feature-icon {
                font-size: 22px;
            }

            .pcs-principle-card {
                padding: 35px 25px;
            }

            .pcs-principle-icon-wrapper {
                width: 80px;
                height: 80px;
                font-size: 36px;
            }

            .pcs-principle-title {
                font-size: 21px;
            }

            .pcs-cta-heading {
                font-size: 28px;
            }

            .pcs-cta-btn {
                padding: 16px 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 600px) {
            .pcs-container {
                padding: 0 15px;
            }

            .pcs-hero-title {
                font-size: 26px;
            }

            .pcs-hero-subtitle {
                font-size: 15px;
            }
              .pcs-principle-card {
    padding: 14px 17px;
  }

            .pcs-stats-wrapper {
                gap: 25px;
            }

            .pcs-stat-value {
                font-size: 32px;
            }

            .pcs-stat-text {
                font-size: 13px;
                letter-spacing: 1px;
            }

            .pcs-main-heading {
                font-size: 26px;
            }

            .pcs-company-overview {
                padding: 27px 0;
            }

            .pcs-principles-section {
                padding: 24px 0;
            }

            .pcs-cta-banner {
                padding: 50px 0;
            }

            .pcs-feature-item {
                gap: 12px;
            }

            .pcs-feature-item:hover {
                transform: translateX(8px);
            }

            .pcs-cta-heading {
                font-size: 24px;
            }

            .pcs-cta-description {
                font-size: 15px;
            }
        }

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.5s ease;
    position: relative;
    overflow: hidden;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.call-btn {
    background: #026187;
}

.scroll-top-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-blue));
    opacity: 0;
    visibility: hidden;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.fab-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fab-button i {
    font-size: 24px;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}



/****************** certificate page styles starts here ****************/


        .cert-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cert-header {
            text-align: center;
            margin-bottom: 10px;
            opacity: 0;
            transform: translateY(30px);
            animation: certFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes certFadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cert-title {
            font-size: clamp(2rem, 5vw, 2.1rem);
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .cert-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
            border-radius: 2px;
            animation: certUnderlineReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
        }

        @keyframes certUnderlineReveal {
            to {
                width: 120px;
            }
        }

        .cert-subtitle {
            font-size: 1.1rem;
            color: var(--text-medium);
            margin-top: 25px;
        }

        .cert-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 35px;
            margin-top: 50px;
        }

        .cert-card {
            position: relative;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
            backdrop-filter: blur(10px);
            border-radius: 18px;
            padding: 30px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
        }

        .cert-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 18px;
            padding: 2px;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .cert-card.cert-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .cert-card:hover {
            transform: translateY(-12px) scale(1.04);
            box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
        }

        .cert-card:hover::before {
            opacity: 1;
        }

        .cert-image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 4/3;
            border-radius: 12px;
            overflow: hidden;
            background: var(--white);
        }

        .cert-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .cert-card:hover .cert-image {
            transform: scale(1.05);
        }

        .cert-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(20, 47, 118, 0.95), rgba(10, 26, 62, 0.95));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            border-radius: 12px;
        }

        .cert-card:hover .cert-overlay {
            opacity: 1;
        }

        .cert-overlay-text {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
        }

        .cert-card:hover .cert-overlay-text {
            transform: translateY(0);
        }

        .cert-overlay-icon {
            color: var(--accent-gold);
            font-size: 2rem;
            transform: scale(0.8);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
        }

        .cert-card:hover .cert-overlay-icon {
            transform: scale(1);
        }

        .cert-card-title {
            margin-top: 20px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
        }

        /* Lightbox Modal */
        .cert-lightbox {
            position: fixed;
            inset: 0;
            background: rgba(5, 13, 24, 0.95);
            backdrop-filter: blur(20px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 20px;
        }

        .cert-lightbox.cert-active {
            opacity: 1;
            visibility: visible;
        }

        .cert-lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            transform: scale(0.8);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .cert-lightbox.cert-active .cert-lightbox-content {
            transform: scale(1);
        }

        .cert-lightbox-image {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
        }

        .cert-lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: var(--white);
            color: var(--primary-blue);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .cert-lightbox-close:hover {
            transform: rotate(90deg) scale(1.1);
            background: var(--accent-orange);
            color: var(--white);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .cert-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 992px) {
            .cert-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 576px) {
            .cert-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .cert-card {
                padding: 20px;
            }

            .cert-lightbox-close {
                top: -45px;
                width: 40px;
                height: 40px;
            }
        }



/****************** certificate page styles ends here ****************/

/* product table styles */
        .tb-body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
           
            background-attachment: fixed;
            padding: 0.5rem 0;
            min-height: auto;
            position: relative;
            overflow-x: hidden;
        }

        .tb-body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(20, 47, 118, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(223, 140, 62, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .tb-container {
            max-width: 1000px;
            position: relative;
            z-index: 1;
        }

        .tb-page-header {
            text-align: center;
    
            opacity: 0;
            animation: fadeInDown 0.8s ease forwards;
        }

        .tb-page-header h1 {
            color: var(--primary-blue);
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 4px 8px rgba(20, 47, 118, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .tb-icon-wrapper {
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
           width: 40px;
  height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(223, 140, 62, 0.4);
            animation: pulse 2s ease-in-out infinite;
        }

        .tb-icon-wrapper i {
            color: var(--white);
        }

        .tb-page-header p {
            color: var(--text-dark);
            font-size: 1.2rem;
            font-weight: 500;
        }

        .tb-table-card {
            background: var(--white);
            border-radius: 24px;
            box-shadow: var(--shadow-xl);
            overflow: hidden;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            border: 1px solid rgba(20, 47, 118, 0.1);
        }

        .tb-card-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            padding: 1rem;
            position: relative;
            overflow: hidden;
        }

        .tb-card-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: shimmer 3s ease-in-out infinite;
        }

        .tb-card-header h2 {
            color: var(--white);
            font-weight: 700;
            font-size: 1rem;
            margin: 0;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            position: relative;
            z-index: 1;
        }

        .tb-card-subtitle {
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
            margin: 0;
            font-size: 1rem;
            font-weight: 400;
            position: relative;
            z-index: 1;
        }

        .tb-table-responsive {
            padding: 0;
        }

        .tb-specs-table {
            margin: 0;
            width: 100%;
        }

        .tb-specs-table thead {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .tb-specs-table thead th {
            color: var(--white);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
           padding: 0.5rem 0.5rem;
            border: none;
            vertical-align: middle;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, rgba(20, 47, 118, 0.95) 0%, rgba(10, 26, 62, 0.95) 100%);
        }

        .tb-specs-table thead th::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }

        .tb-specs-table thead th i {
            display: block;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            color: var(--accent-gold);
        }

        .tb-specs-table thead th small {
            display: block;
            font-size: 0.75rem;
            font-weight: 500;
            opacity: 0.9;
            margin-top: 0.3rem;
        }

        .tb-specs-table tbody tr {
            transition: var(--transition);
            opacity: 0;
            animation: fadeInRow 0.5s ease forwards;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .tb-specs-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
        .tb-specs-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
        .tb-specs-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
        .tb-specs-table tbody tr:nth-child(4) { animation-delay: 0.4s; }
        .tb-specs-table tbody tr:nth-child(5) { animation-delay: 0.5s; }
        .tb-specs-table tbody tr:nth-child(6) { animation-delay: 0.6s; }
        .tb-specs-table tbody tr:nth-child(7) { animation-delay: 0.7s; }
        .tb-specs-table tbody tr:nth-child(8) { animation-delay: 0.8s; }

        .tb-specs-table tbody tr:nth-child(even) {
            background: linear-gradient(90deg, rgba(20, 47, 118, 0.02) 0%, rgba(20, 47, 118, 0.05) 50%, rgba(20, 47, 118, 0.02) 100%);
        }

        .tb-specs-table tbody tr:hover {
            background: linear-gradient(90deg, rgba(223, 140, 62, 0.15) 0%, rgba(244, 169, 68, 0.15) 100%);
            transform: translateX(8px) scale(1.01);
            box-shadow: -4px 0 0 var(--accent-orange), var(--shadow-md);
        }

        .tb-specs-table tbody td {
            padding: 0.5rem 0.5rem;
            vertical-align: middle;
            text-align: center;
            color: var(--text-dark);
            font-size: 1rem;
            font-weight: 500;
        }

        .tb-specs-table tbody td:first-child,
        .tb-specs-table tbody td:nth-child(2) {
            font-weight: 700;
            color: var(--primary-blue);
            font-size: 1.1rem;
        }

        .tb-badge-pressure {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
        }

        .tb-badge-pressure::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .tb-badge-pressure:hover::before {
            left: 100%;
        }

        .tb-badge-working {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
        }

        .tb-badge-burst {
            background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
            color: white;
        }

        .tb-stats-footer {
            background: linear-gradient(135deg, var(--light-gray) 0%, rgba(255, 255, 255, 0.9) 100%);
            padding: 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            border-top: 3px solid var(--accent-gold);
        }

        .tb-stat-item {
            text-align: center;
           padding: 0.5rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .tb-stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .tb-stat-item i {
            font-size: 2rem;
            color: var(--accent-orange);
            margin-bottom: 0.5rem;
        }

        .tb-stat-item h4 {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0.5rem 0;
        }

        .tb-stat-item p {
            color: var(--text-medium);
            font-size: 0.85rem;
            margin: 0;
        }

        .tb-footer-note {
            text-align: center;
            margin-top: 2.5rem;
            padding: 1.5rem;
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.4s forwards;
            border: 2px solid var(--light-gray);
        }

        .tb-footer-note i {
            color: var(--accent-orange);
            margin-right: 0.5rem;
            font-size: 1.2rem;
        }

        .tb-footer-note p {
            color: var(--text-dark);
            font-size: 1rem;
            margin: 0;
            font-weight: 500;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRow {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        @media (max-width: 992px) {
            .tb-page-header h1 {
                font-size: 2.2rem;
                flex-direction: column;
            }

            .tb-icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .tb-card-header h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
           

            .tb-page-header h1 {
                font-size: 1.8rem;
            }

            .tb-icon-wrapper {
                width: 50px;
                height: 50px;
            }

            .tb-page-header p {
                font-size: 1rem;
            }

            .tb-card-header {
                padding: 0.5rem;
            }

            .tb-card-header h2 {
                font-size: 1.3rem;
            }

            .tb-specs-table thead th {
                font-size: 0.75rem;
                padding: 1rem 0.5rem;
            }

            .tb-specs-table thead th i {
                font-size: 1.2rem;
            }

            .tb-specs-table tbody td {
                font-size: 0.9rem;
                padding: 1rem 0.5rem;
            }

            .tb-badge-pressure {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
            }

            .tb-stats-footer {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            
 
            .tb-page-header h1 {
                font-size: 1.5rem;
            }

            .tb-card-header h2 {
                font-size: 1rem;
            }

            .tb-specs-table thead th {
                font-size: 0.65rem;
                padding: 0.3rem 0.3rem;
            }

            .tb-specs-table thead th i {
                font-size: 1rem;
                margin-bottom: 0.3rem;
            }

            .tb-specs-table thead th small {
                font-size: 0.65rem;
            }

            .tb-specs-table tbody td {
                font-size: 0.7rem;
                padding: 0.3rem 0.3rem;
            }

            .tb-badge-pressure {
                padding: 0.3rem 0.6rem;
                font-size: 0.7rem;
            }
        }

        /* In the products image section styles */
               .pr-section {
    padding: 20px 20px;
   
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.pr-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 47, 118, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pr-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(223, 140, 62, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pr-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pr-header {
    text-align: center;
    margin-bottom: 50px;
}

.pr-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.pr-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
    border-radius: 2px;
}

.pr-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 20px auto 0;
}

/* Grid spacing */
.pr-row {
    row-gap: 30px;
}

/* Card */
.pr-card {
    background: var(--white);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(20, 47, 118, 0.08);
}


/* Shimmer */
.pr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s ease;
}

.pr-card:hover::before {
    left: 100%;
}

.pr-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--accent-orange);
}

/* 🔹 IMAGE WRAPPER (AUTO HEIGHT) */
.pr-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    overflow: hidden;
}


/* Image container */
.pr-image-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image */
.pr-image {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}


/* Hover image effect */
.pr-card:hover .pr-image {
    transform: scale(1.08) rotate(2deg);
    filter: brightness(1.1) contrast(1.05);
}

/* Overlay */
.pr-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 47, 118, 0.95),
        rgba(10, 26, 62, 0.95)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: 12px;
    pointer-events: none;
}


.pr-card:hover .pr-overlay {
    opacity: 1;
}

/* Product name */
.pr-name {
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    text-align: center;
    padding: 15px;
    transform: translateY(15px);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.pr-name::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.pr-card:hover .pr-name {
    transform: translateY(0);
}

.pr-card:hover .pr-name::before {
    width: 60px;
}

/* Badge */
.pr-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(
        135deg,
        var(--accent-orange),
        var(--accent-gold)
    );
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pr-card:hover .pr-badge {
    opacity: 1;
    transform: scale(1);
}

/* Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation */
.pr-card:nth-child(1) { animation-delay: 0.05s; }
.pr-card:nth-child(2) { animation-delay: 0.1s; }
.pr-card:nth-child(3) { animation-delay: 0.15s; }
.pr-card:nth-child(4) { animation-delay: 0.2s; }
.pr-card:nth-child(5) { animation-delay: 0.25s; }
.pr-card:nth-child(6) { animation-delay: 0.3s; }
.pr-card:nth-child(7) { animation-delay: 0.35s; }
.pr-card:nth-child(8) { animation-delay: 0.4s; }

/* Mobile support */
@media (max-width: 991px) {
    .pr-card:active .pr-overlay,
    .pr-card:active .pr-badge {
        opacity: 1;
        transform: scale(1);
    }

    .pr-card:active .pr-image {
        transform: scale(1.08) rotate(2deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .pr-header h2 {
        font-size: 2rem;
    }

    .pr-section {
        padding: 0px 15px;
    }

    .pr-card {
        padding: 5px;
    }

    .pr-row {
        row-gap: 20px;
    }

    .pr-image {
        max-height: 140px;
    }
}

@media (max-width: 576px) {
       .pr-card {
        padding: 5px;
    }
    .pr-header h2 {
        font-size: 1.75rem;
    }

    .pr-name {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .pr-row {
        row-gap: 15px;
    }

    .pr-image {
        max-height: 120px;
    }
}


@media only screen and (max-width: 600px) {
  .footer-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
    .footer-bottom {
    padding: 18px 0;
    margin-top: 0px;
  }
   .footer-bottom-social{
    margin-top: 5px;
   }
   .floating-buttons {
  position: fixed;
  bottom: 120px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
  .prm-product-page-wrapper {
    padding: 0;
  }
  .tb-specs-table tbody td:first-child, .tb-specs-table tbody td:nth-child(2) {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 0.7rem;
}
 .tb-table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    }



}



        /* CTA Banner Section */
        .cl-cta-section {
            position: relative;
            padding: clamp(1rem, 1vw, 4rem) 0;
            background: linear-gradient(135deg, var(--darker-blue) 0%, var(--dark-blue) 50%, var(--primary-blue) 100%);
            background-size: 200% 200%;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .cl-cta-section.cl-animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animated gradient background */
        .cl-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(20, 47, 118, 0.95) 0%, 
                rgba(10, 26, 62, 0.97) 50%, 
                rgba(5, 13, 24, 0.95) 100%);
            background-size: 200% 200%;
            animation: cl-gradient-shift 10s ease infinite;
            z-index: 1;
        }

        @keyframes cl-gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Enhanced glassmorphism overlay with particles */
        .cl-cta-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(223, 140, 62, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(244, 169, 68, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(20, 47, 118, 0.1) 0%, transparent 50%);
            z-index: 2;
            pointer-events: none;
            animation: cl-glow-pulse 8s ease-in-out infinite;
        }

        @keyframes cl-glow-pulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        /* Decorative geometric shapes */
        .cl-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            z-index: 2;
            pointer-events: none;
        }

        .cl-shape-1 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
            top: -200px;
            right: -100px;
            animation: cl-float 20s ease-in-out infinite;
        }

        .cl-shape-2 {
            width: 300px;
            height: 300px;
            background: linear-gradient(225deg, var(--primary-blue), var(--dark-blue));
            bottom: -150px;
            left: -80px;
            animation: cl-float 15s ease-in-out infinite reverse;
        }

        .cl-shape-3 {
            width: 200px;
            height: 200px;
            background: linear-gradient(315deg, var(--accent-gold), var(--accent-orange));
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: cl-float 25s ease-in-out infinite;
            opacity: 0.05;
        }

        @keyframes cl-float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        .cl-cta-container {
            position: relative;
            z-index: 3;
        }

        .cl-cta-content {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
        }

        .cl-cta-section.cl-animate .cl-cta-content {
            opacity: 1;
            transform: translateX(0);
        }

        .cl-cta-headline {
            font-size: clamp(1.5rem, 6vw, 2.5rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: clamp(1.5rem, 3vw, 2rem);
            text-shadow: 3px 5px 12px rgba(0, 0, 0, 0.4);
            letter-spacing: -0.02em;
        }

        .cl-cta-headline span {
            position: relative;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .cl-cta-headline span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            animation: cl-underline 1s ease-out 0.8s forwards;
        }

        @keyframes cl-underline {
            to { transform: scaleX(1); }
        }

        .cl-cta-description {
            font-size: clamp(1.1rem, 2.2vw, 0.7rem);
            color: rgba(255, 255, 255, 0.92);
            line-height: 1.7;
            max-width: 90%;
            font-weight: 400;
            text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
        }

        /* Button Container */
        .cl-cta-buttons {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
        }

        .cl-cta-section.cl-animate .cl-cta-buttons {
            opacity: 1;
            transform: translateX(0);
        }

        /* Premium CTA Buttons */
        .cl-btn {
            position: relative;
            padding: clamp(1rem, 2.5vw, 0.25rem) clamp(2.5rem, 5vw, 3.5rem);
            font-size: clamp(1.05rem, 2.2vw, 1rem);
            font-weight: 700;
            border: none;
            border-radius: 60px;
            cursor: pointer;
            overflow: hidden;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.875rem;
            box-shadow: var(--shadow-lg);
            min-width: 220px;
            justify-content: center;
            letter-spacing: 0.3px;
        }

        .cl-btn-primary {
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
            color: var(--white);
            position: relative;
            z-index: 1;
        }

        .cl-btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .cl-btn-primary::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.35);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .cl-btn-primary:hover::before {
            opacity: 1;
        }

        .cl-btn-primary:hover::after {
            width: 350px;
            height: 350px;
        }

        .cl-btn-primary:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 50px rgba(223, 140, 62, 0.5), 0 0 30px rgba(244, 169, 68, 0.3);
        }

        .cl-btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            position: relative;
        }

        .cl-btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
            transition: left 0.6s ease;
        }

        .cl-btn-secondary:hover::before {
            left: 100%;
        }

        .cl-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 12px 40px rgba(255, 255, 255, 0.25), 0 0 40px rgba(244, 169, 68, 0.2);
            border-color: var(--accent-gold);
        }

        /* Icon animations */
        .cl-btn i {
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .cl-btn-primary:hover i {
            transform: translateX(6px);
        }

        .cl-btn-secondary:hover i {
            transform: rotate(360deg);
        }

        /* Enhanced pulse animation for primary button */
        @keyframes cl-pulse {
            0%, 100% {
                box-shadow: 0 8px 30px rgba(223, 140, 62, 0.4);
            }
            50% {
                box-shadow: 0 8px 40px rgba(223, 140, 62, 0.7), 0 0 0 15px rgba(223, 140, 62, 0.15), 0 0 0 30px rgba(223, 140, 62, 0.05);
            }
        }

        .cl-btn-primary.cl-pulse {
            animation: cl-pulse 2s ease-in-out;
        }

        /* Responsive spacing */
        @media (max-width: 767px) {
            .cl-cta-buttons {
                flex-direction: column;
                gap: 1.25rem;
            }

            .cl-btn {
                width: 100%;
                max-width: 100%;
            }

            .cl-cta-description {
                max-width: 100%;
            }

            .cl-shape-1, .cl-shape-2, .cl-shape-3 {
                opacity: 0.04;
            }
        }

        @media (min-width: 768px) {
            .cl-cta-buttons {
                display: flex;
                gap: 1.75rem;
                align-items: center;
            }
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
       @media only screen and (max-width: 600px) {
          .cl-btn {
    width: 100%;
    max-width: 60%;
    margin-bottom: 10px;
  }



       }


