 :root {
            --primary: #de4c26;      /* Teal Green */
            --dark-blue: #de4c26;   /* Dark Navy */
            --accent: #FF8A71;     /* Peach/Pink */
            --bg-body: #FDFBF0;    /* Light Cream */
            --white: #FFFFFF;
            --text-gray: #666666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            background-color: var(--bg-body);
            color: var(--dark-blue);
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Top Bar --- */
        .top-bar {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 10px 0;
            font-size: 14px;
        }

        .top-bar .container {
            display: flex;
            justify-content: flex-end;
            gap: 25px;
        }

        .top-bar span i {
            margin-right: 8px;
            color: var(--white);
        }

        /* --- Navigation --- */
        .header-main {
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            background: var(--white);
            border-radius: 100px;
            padding: 12px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: inherit;
        }

        .logo-box {
            width: 45px;
            height: 45px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
        }

        .logo-text h3 { font-size: 24px; line-height: 1; }
        .logo-text span { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--dark-blue);
            font-weight: 700;
            font-size: 16px;
            transition: 0.3s;
        }

        .nav-menu a:hover { color: var(--primary); }

        .btn-contact {
            background: var(--primary);
            color: var(--white);
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: 0.3s;
        }

        .btn-contact:hover { background: var(--dark-blue); }

        /* --- Hero Section --- */
        .hero {
            padding: 80px 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 50px;
        }

        .hero-text h1 {
            font-size: 100px; /* Big Typography like original */
            line-height: 0.95;
            margin-bottom: 25px;
        }

        .hero-text h1 span { color: #38363b; }

        .hero-text p {
            font-size: 18px;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 500px;
        }

        .hero-btns {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 60px;
        }

        .btn-learn {
            background: var(--primary);
            color: white;
            padding: 18px 38px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 20px rgba(65, 109, 109, 0.2);
        }

        .play-group {
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            font-weight: 700;
        }

        .play-btn-circle {
            width: 55px;
            height: 55px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-blue);
            border: 2px solid var(--accent);
            position: relative;
        }

        /* Pulse Animation */
        .play-btn-circle::after {
            content: '';
            position: absolute;
            width: 100%; height: 100%;
            border: 2px solid var(--accent);
            border-radius: 50%;
            animation: pulse-ring 1.5s infinite;
        }

        @keyframes pulse-ring {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.6); opacity: 0; }
        }

        /* --- Hero Visuals (Right Side) --- */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .blob-bg {
            position: absolute;
            bottom: 0;
            width: 90%;
            height: 80%;
            background: var(--dark-blue);
            border-radius: 160px 160px 30px 160px; /* Custom shape like image */
            z-index: 1;
        }

        .main-product {
            width: 100%;
            position: relative;
            z-index: 2;
            filter: drop-shadow(30px 30px 50px rgba(0,0,0,0.2));
            transform: translateY(-20px);
        }

        /* --- Hero Footer Icons --- */
        .hero-footer {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .footer-img {
            width: 140px;
            height: 90px;
            border-radius: 20px;
            overflow: hidden;
        }

        .footer-img img { width: 100%; height: 100%; object-fit: cover; }

        .feature-item {
            background: #E9ECE4;
            padding: 12px;
            border-radius: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            width: 55px;
            border-bottom: 5px solid var(--dark-blue);
        }

        .icon-inner {
            width: 35px;
            height: 35px;
            background: var(--dark-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .arrow-up { font-size: 12px; color: var(--dark-blue); }

        /* --- Mobile Responsive --- */
        @media (max-width: 1024px) {
            .hero-text h1 { font-size: 70px; }
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-text p { margin: 0 auto 30px; }
            .hero-btns, .hero-footer { justify-content: center; }
            .nav-menu { display: none; } /* Hide menu on mobile */
        }

        @media (max-width: 600px) {
            .hero-text h1 { font-size: 50px; }
            .top-bar .container { justify-content: center; font-size: 12px; }
            .navbar { padding: 10px 20px; }
        }


        /* Google Fonts Import agar pehle se nahi hai */
    @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;800&family=Plus+Jakarta+Sans:wght@400;600&display=swap');

    .excellence-wrapper {
        background-color: #de4c26;
        margin: 20px;
        padding: 80px 40px;
        border-radius: 40px;
        color: #ffffff;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .excellence-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Cards Side */
    .cards-column {
        display: flex;
        gap: 25px;
    }

    .info-card {
        flex: 1;
        padding: 7px 25px 5px;
        border-radius: 35px;
        text-align: center;
        position: relative;
    }

    .info-card.dark { background-color: #162C36; }
    .info-card.teal { background-color: #50322a; }

    .icon-wrap {
        position: absolute;
        top: -35px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        backdrop-filter: blur(5px);
    }

    .info-card h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .info-card p {
        font-size: 14px;
        line-height: 1.6;
        opacity: 0.8;
    }

    /* Content Side */
    .section-title {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(32px, 5vw, 52px); /* Responsive font size */
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .section-desc {
        font-size: 16px;
        opacity: 0.8;
        margin-bottom: 35px;
        max-width: 500px;
    }

    .dots-separator {
        height: 2px;
        background-image: radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1.5px);
        background-size: 15px 15px;
        width: 100%;
        margin-bottom: 40px;
    }

    .partners-box {
        display: flex;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .partners-text {
        font-weight: 700;
        font-size: 18px;
        white-space: nowrap;
    }

    .partner-logos {
        display: flex;
        gap: 25px;
        align-items: center;
        opacity: 0.7;
    }

    .logo-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 20px;
        font-weight: 800;
    }

    /* --- RESPONSIVE BREAKPOINTS --- */

    /* For Tablets (Ipad/Large Tablets) */
    @media (max-width: 1024px) {
        .excellence-grid {
            gap: 40px;
        }
        .section-title { font-size: 42px; }
    }

    /* For Small Tablets / Large Phones */
    @media (max-width: 850px) {
        .excellence-grid {
            grid-template-columns: 1fr; /* Stack vertically */
            text-align: center;
        }
        .cards-column {
            order: 2; /* Content upar, cards neeche */
        }
        .section-desc { margin: 0 auto 35px; }
        .partners-box { justify-content: center; }
        .dots-separator { width: 80%; margin: 30px auto; }
    }

    /* For Small Mobile Devices */
    @media (max-width: 500px) {
        .excellence-wrapper {
            padding: 60px 20px;
            margin: 10px;
        }
        .cards-column {
            flex-direction: column; /* Cards ek ke upar ek */
            gap: 50px;
            margin-top: 40px;
        }
        .info-card { padding-top: 45px; }
        .partner-logos { flex-wrap: wrap; justify-content: center; }
        .section-title { font-size: 32px; }
    }


     /* Section Styles */
    .why-choose-us {
        padding: 100px 0;
        background-color: #fff;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .wcu-container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 40px;
        align-items: center;
    }

    /* Left Content */
    .wcu-title {
        font-family: 'Outfit', sans-serif;
        font-size: 58px;
        line-height: 1.1;
        color: #de4c26;
        margin-bottom: 25px;
    }

    .wcu-desc {
        color: #666;
        margin-bottom: 35px;
        line-height: 1.6;
    }

    .wcu-btn {
        background-color: #de4c26;
        color: white;
        padding: 15px 35px;
        border-radius: 50px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.3s;
    }

    .wcu-btn:hover { background-color: #de4c26; transform: translateY(-3px); }

    /* Center Visual */
    .wcu-visual {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .visual-bg-blob {
        position: absolute;
        width: 100%;
        height: 80%;
        background-color: #de4c26;
        border-radius: 40px;
        z-index: 1;
    }

    .wcu-img {
        position: relative;
        z-index: 2;
        width: 110%;
        filter: drop-shadow(20px 20px 40px rgba(0,0,0,0.2));
    }

    /* Right Features */
    .wcu-features {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .feat-pill {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px 30px;
        border-radius: 100px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: 0.3s;
    }

    .feat-pill:hover { transform: translateX(-10px); }

    .feat-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .feat-info h4 { font-family: 'Outfit', sans-serif; font-size: 20px; margin-bottom: 2px; }
    .feat-info p { font-size: 13px; opacity: 0.8; }

    /* Pill Colors */
    .feat-dark { background-color: #de4c26; color: white; }
    .feat-teal { background-color: #de4c26; color: white; }
    .feat-cream { background-color: #FDFBF0; color: #de4c26; }
    .feat-cream .feat-icon { border-color: #de4c26; }

    /* Responsive */
    @media (max-width: 1024px) {
        .wcu-container { grid-template-columns: 1fr; text-align: center; }
        .wcu-visual { order: -1; margin-bottom: 40px; }
        .wcu-features { flex-direction: row; flex-wrap: wrap; justify-content: center; }
        .feat-pill { width: 100%; max-width: 320px; }
    }

    @media (max-width: 600px) {
        .wcu-title { font-size: 40px; }
        .feat-pill { flex-direction: column; border-radius: 30px; padding: 30px; }
    }

      .services-section {
        background-color: #de4c26; /* Image background color */
        padding: 100px 0;
        text-align: center;
        color: white;
    }
    .section-header h2 { font-size: 52px; margin-bottom: 15px; }
    .section-header p { max-width: 600px; margin: 0 auto 60px; opacity: 0.8; }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .service-card {
        padding: 40px 30px;
        border-radius: 40px;
        text-align: left;
        transition: transform 0.3s ease;
    }
    .service-card:hover { transform: translateY(-10px); }

    .service-card.cream { background-color: #FDFBF0; color: #de4c26; }
    .service-card.teal { background-color: #de4c26; color: white; }
    .service-card.navy { background-color: #162C36; color: white; }
    .service-card.grey { background-color: #6C7E8B; color: white; }

    .card-icon {
        width: 70px; height: 70px;
        background: rgba(0,0,0,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center; justify-content: center;
        font-size: 30px; margin-bottom: 25px;
    }
    .white-icon { background: white; color: #de4c26; }
    .teal-icon { background: #de4c26; color: white; }

    .service-card h3 { font-size: 24px; margin-bottom: 15px; }
    .service-card p { font-size: 14px; margin-bottom: 25px; line-height: 1.6; }
    .card-link { font-weight: 700; text-decoration: none; color: inherit; display: flex; align-items: center; gap: 8px; }  /* Section Core Styles */
    .custom-print-service {
        padding: 80px 0;
        background-color: #FDFBF0; /* Cream background from image */
        font-family: 'Plus Jakarta Sans', sans-serif;
        overflow: hidden;
    }

    .print-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    /* Left Side Visuals */
    .print-visual {
        position: relative;
        display: flex;
        justify-content: center;
    }

    .visual-blob {
        position: absolute;
        bottom: 10%;
        width: 90%;
        height: 70%;
        background-color: #de4c26;
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
        z-index: 1;
        transform: rotate(-5deg);
    }

    .print-mockup-img {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 550px;
        filter: drop-shadow(20px 20px 50px rgba(0,0,0,0.15));
    }

    .top-product-badge {
        position: absolute;
        top: 0;
        left: 5%;
        z-index: 3;
        background: white;
        padding: 12px 25px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .badge-icon {
        width: 40px; height: 40px;
        background: #de4c26;
        color: white;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
    }

    /* Right Side Content */
    .print-title {
        font-family: 'Outfit', sans-serif;
        font-size: 52px;
        line-height: 1.1;
        color: #de4c26;
        margin-bottom: 40px;
    }

    .print-categories {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .category-pill {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 40px;
        border-radius: 100px;
        color: white;
        transition: 0.3s;
    }

    .category-pill:hover { transform: translateX(10px); }

    .pill-teal { background-color: #de4c26; }
    .pill-navy { background-color: #de4c26; }

    .pill-info h3 { font-size: 28px; margin-bottom: 5px; }
    .pill-info a { color: white; text-decoration: none; font-weight: 700; font-size: 14px; opacity: 0.9; }

    .pill-img {
        width: 130px;
        margin-right: -20px;
        filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.2));
    }

    /* Footer & Separator */
    .dotted-separator {
        height: 2px;
        background-image: radial-gradient(circle, #de4c26 1px, transparent 1px);
        background-size: 15px 1px;
        margin: 40px 0;
        opacity: 0.2;
    }

    .action-group {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .btn-view-more {
        background-color: #de4c26;
        color: white;
        padding: 15px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .link-learn-more {
        color: #de4c26;
        text-decoration: none;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .print-container { grid-template-columns: 1fr; text-align: center; }
        .print-visual { margin-bottom: 50px; }
        .action-group { justify-content: center; }
        .category-pill { padding: 20px; }
    }

     .how-we-work { padding: 60px 0; background-color: #FDFBF0; }
    .hww-container {
        max-width: 1200px; margin: 0 auto; padding: 60px 40px;
        background-color: #de4c26; border-radius: 50px;
        display: grid; grid-template-columns: 1fr 2.5fr; gap: 40px; color: white;
    }
    .hww-title { font-family: 'Outfit'; font-size: 45px; margin-bottom: 20px; }
    .btn-hww-view {
        display: inline-flex; align-items: center; gap: 10px;
        background: #de4c26; color: white; padding: 15px 30px;
        border-radius: 50px; text-decoration: none; font-weight: 700; margin-top: 20px;
    }
    .hww-steps { display: flex; justify-content: space-between; align-items: flex-start; }
    .hww-step { flex: 1; text-align: center; }
    .step-icon {
        width: 80px; height: 80px; border-radius: 50%; display: flex;
        align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px;
    }
    .icon-cream { background: #FDFBF0; color: #de4c26; }
    .icon-navy { background: #de4c26; color: white; }
    .step-heading { font-family: 'Outfit'; font-size: 20px; margin-bottom: 10px; line-height: 1.2; }
    .step-desc { font-size: 13px; opacity: 0.8; }
    .step-divider { padding-top: 30px; opacity: 0.5; font-size: 20px; }

    @media (max-width: 991px) {
        .hww-container { grid-template-columns: 1fr; text-align: center; }
        .hww-steps { flex-direction: column; gap: 40px; align-items: center; }
        .step-divider { display: none; }
    }

     /* Footer Main Styles */
    .main-footer {
        background-color: #de4c26; /* Navy Blue from image */
        color: #ffffff;
        padding: 80px 20px 30px;
        border-radius: 60px 60px 0 0; /* Rounded top corners */
        font-family: 'Plus Jakarta Sans', sans-serif;
        margin-top: 50px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr 0.8fr 1.5fr;
        gap: 40px;
    }

    .footer-col h4 {
        font-family: 'Outfit', sans-serif;
        font-size: 22px;
        margin-bottom: 25px;
    }

    /* Branding Col */
    .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 20px;
        font-family: 'Outfit', sans-serif;
    }
    .footer-desc {
        opacity: 0.8;
        line-height: 1.6;
        font-size: 15px;
    }

    /* Links Col */
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a {
        color: #ffffff;
        text-decoration: none;
        opacity: 0.8;
        font-size: 15px;
        transition: 0.3s;
    }
    .footer-links a:hover { opacity: 1; padding-left: 5px; color: #fff; }

    /* Newsletter Col */
    .subscribe-form {
        display: flex;
        gap: 10px;
        background: #fff;
        padding: 8px;
        border-radius: 50px;
        border: 1px solid rgba(255,255,255,0.2);
        margin-bottom: 25px;
    }
    .subscribe-form input {
        background: transparent;
        border: none;
        padding: 10px 20px;
        color: #000;
        flex: 1;
        outline: none;
    }
    .subscribe-form button {
        background-color: #de4c26;
        color: white;
        border: none;
        padding: 10px 25px;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 700;
        transition: 0.3s;
    }
    .subscribe-form button:hover { background-color: #ffffff; color: #de4c26; }

    .social-icons { display: flex; gap: 15px; }
    .social-icons a {
        color: white;
        font-size: 18px;
        opacity: 0.8;
        transition: 0.3s;
    }
    .social-icons a:hover { opacity: 1; transform: translateY(-3px); }

    /* Bottom Part */
    .footer-bottom {
        text-align: center;
    }
    .footer-line {
        height: 1px;
        background: radial-gradient(circle, rgba(255,255,255,0.2) 2px, transparent 1px);
        background-size: 15px 1px;
        margin-bottom: 30px;
        opacity: 0.5;
    }
    .footer-bottom p {
        font-size: 14px;
        opacity: 0.6;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .footer-container { grid-template-columns: 1fr 1fr; gap: 50px; }
    }

    @media (max-width: 600px) {
        .footer-container { grid-template-columns: 1fr; text-align: center; }
        .subscribe-form { flex-direction: column; border-radius: 20px; }
        .social-icons { justify-content: center; }
        .footer-logo { justify-content: center; }
    }


    .logo-text img{
        width: 80px;
    }

    .footer-logo img{
        width: 200px;
    }

    .product-section {
        padding: 50px 15px;
        background-color: #f9f9f9;
        font-family: 'Segoe UI', Arial, sans-serif;
    }

    .section-title {
        text-align: center;
        margin-bottom: 40px;
        font-size: 35px;
        color: #333;
    }

    .section-title1{
        color: #fff;
    }

    .product-grid {
        display: grid;
        /* Desktop par 5 columns */
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
        max-width: 1300px;
        margin: 0 auto;
    }

    .product-card {
        background: #fff;
        border-radius: 12px;
        padding: 20px 10px;
        text-align: center;
        position: relative;
        border: 1px solid #eee;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        
        /* Sabhi boxes ki height barabar karne ke liye */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .product-number {
        position: absolute;
        top: -12px;
        left: -12px;
        background: #162C36;
        color: #fff;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 14px;
        z-index: 5;
    }

    .img-wrapper {
        width: 100%;
        max-width: 120px;
        /* Circle ko perfect rakhne ke liye */
        aspect-ratio: 1 / 1; 
        border: 1.5px dashed #ccc;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        padding: 10px;
        background: #fff;
    }

    .img-wrapper img {
        width: 160%;
        height: 160%;
        object-fit: contain;
    }

    .product-card h4 {
        font-size: 14px;
        color: #444;
        margin: 0;
        font-weight: 600;
        line-height: 1.3;
        /* Text length ki wajah se height na badle isliye */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* --- RESPONSIVE FIXES --- */

    /* Laptops/Tablets (3 Columns) */
    @media (max-width: 1024px) {
        .product-grid { grid-template-columns: repeat(3, 1fr); }
    }

    /* Mobile (2 Columns) - Yahan box chhote bade nahi honge */
    @media (max-width: 768px) {
        .product-grid { 
            grid-template-columns: repeat(2, 1fr); 
            gap: 20px 15px; 
        }
        .img-wrapper { max-width: 100px; }
        .product-card h4 { font-size: 13px; }
    }

    /* Chhote Mobile (1 Column) agar aapko chahiye toh */
    @media (max-width: 380px) {
        /* Agar screen bahut chhoti ho tabhi 1 column karein */
        /* .product-grid { grid-template-columns: 1fr; } */
    }




        .heading {
            text-align: center;
            font-size: 28px;
            margin-bottom: 30px;
            color: #222;
        }

        .heading span {
            color: #ff5722;
            border-bottom: 3px solid #ff5722;
        }

        /* Compact Slider Container */
        .scroller {
            max-width: 1100px; /* 5 boxes fit perfectly */
            margin: 0 auto;
            overflow: hidden;
            mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
            -webkit-mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
        }

        .scroller__inner {
            display: flex;
            gap: 20px;
            padding-block: 15px;
            width: max-content;
            animation: scroll 25s linear infinite;
        }

        /* Small & Stylish Box */
        .card {
            width: 100px; 
            background: white;
            padding: 20px 10px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 87, 34, 0.2);
        }

.icon-circle i{
    font-size: 15px;
}
        .icon-circle {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #ff8a00, #ff5722);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            color: white;
            font-size: 28px;
        }

        .card p {
            font-size: 11px;
            font-weight: 600;
            color: #333;
            margin: 0;
            line-height: 1.2;
        }

        /* Smooth Animation */
        @keyframes scroll {
            to { transform: translate(calc(-50% - 10px)); }
        }

        /* Hover pe speed slow ho jayegi */
        .scroller:hover .scroller__inner {
            animation-play-state: paused;
        }





        /* Pehle se jo CSS hai wo rahega, bas ye extra add karein */

.menu-toggle {
    display: none; /* Desktop par chhupa rahega */
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-blue);
}

.mobile-only { display: none; }

/* --- Responsive Media Query --- */
@media (max-width: 992px) {
    .navbar {
        padding: 10px 25px;
        border-radius: 50px; /* Tablet/Mobile ke liye thoda kam radius */
    }

    .menu-toggle {
        display: block; /* Mobile par dikhega */
        order: 2;
    }

    .logo { order: 1; }

    .hide-mobile { display: none; } /* Main Contact button chhupa do */
    .mobile-only { display: block; margin-top: 20px; }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-radius: 20px;
        display: none; /* Default hidden */
        z-index: 999;
    }

    .nav-menu.active {
        display: flex; /* Click karne par dikhega */
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .nav-menu li:last-child { border: none; }
}





/*================================== Contact Us ================================== */
/*================================== Contact Us ================================== */


:root {
    --primary-orange: #e65100;
    --dark-navy: #001d3d;
    --light-bg: #f8fafc;
}

.contact-section {
    padding: 100px 0;
    background: var(--light-bg);
    font-family: 'Poppins', sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    padding: 0 30px;
    align-items: center;
}

/* Info Side Styling */
.sub-heading {
    color: var(--primary-orange);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.section-title {
    font-size: 48px;
    color: #ccc;
    margin: 10px 0;
    text-align: left;
}

.section-title span { color: var(--primary-orange); }

.divider {
    width: 80px;
    height: 5px;
    background: var(--primary-orange);
    border-radius: 10px;
    margin-bottom: 30px;
}

.company-name {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.tagline {
    color: #777;
    margin-bottom: 40px;
}

.info-list { display: flex; flex-direction: column; gap: 25px; }

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
}

.info-card:hover { transform: translateX(10px); }

.info-icon-box {
    width: 60px;
    height: 60px;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-orange);
    font-size: 22px;
}

.info-details small { color: #888; font-size: 12px; text-transform: uppercase; font-weight: 600; }
.info-details p { color: var(--dark-navy); font-weight: 600; margin: 0; font-size: 16px; }

/* Form Card Styling */
.form-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.form-card h3 {
    margin-bottom: 30px;
    font-size: 26px;
    color: var(--dark-navy);
}

.field-box {
    position: relative;
    margin-bottom: 20px;
}

.field-box input, .field-box textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background: #f9f9f9;
    font-size: 15px;
    transition: 0.3s;
    box-sizing: border-box;
}

.field-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    transition: 0.3s;
}

.field-box textarea ~ i { top: 25px; }

.field-box input:focus, .field-box textarea:focus {
    background: white;
    border-color: var(--primary-orange);
    box-shadow: 0 5px 15px rgba(230, 81, 0, 0.1);
}

.field-box input:focus ~ i { color: var(--primary-orange); }

.wa-submit-btn {
    width: 100%;
    padding: 18px;
    background: #de4c26;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: 0.4s;
}

.wa-submit-btn:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Tablet & Mobile */
@media (max-width: 992px) {
    .contact-container { grid-template-columns: 1fr; }
    .form-card { padding: 30px; }
    .section-title { font-size: 36px; }
}


/*================================== Contact Us ================================== */
/*================================== Contact Us ================================== */




/* About Section Styles */
.about-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side: Image Styling */
.about-image-side {
    position: relative;
}

.main-img-box {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.main-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.main-img:hover {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #ff5722;
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
    z-index: 3;
}

.experience-badge .years {
    display: block;
    font-size: 24px;
    font-weight: 800;
}

.experience-badge .text {
    font-size: 14px;
    text-transform: uppercase;
}

/* Right Side: Content Styling */
.top-label {
    color: #ff5722;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.about-title {
    font-size: 42px;
    color: #001d3d;
    margin: 10px 0;
}

.about-title span {
    color: #ff5722;
}

.title-line {
    width: 70px;
    height: 5px;
    background: #ff5722;
    margin-bottom: 30px;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: justify;
}

.lead-text {
    font-size: 17px !important;
    color: #333 !important;
    border-left: 4px solid #ff5722;
    padding-left: 15px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.feature-tag {
    background: #fdf2ef;
    color: #ff5722;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.about-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #001d3d;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    background: #ff5722;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .title-line {
        margin: 0 auto 30px;
    }
    
    .about-features {
        justify-content: center;
    }

    .experience-badge {
        right: 20px;
    }
    
    .about-image-side {
        margin-bottom: 40px;
    }
}


.text-products {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header-left {
    margin-bottom: 50px;
    padding: 0 20px;
}

.line-label {
    color: #ff5722;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

.title-main {
    font-size: 32px;
    color: #001d3d;
    margin-top: 10px;
}

.title-main span {
    color: #ff5722;
}

/* Product List Styling */
.product-list {
    max-width: 1000px;
    margin: 0 auto;
}

.product-item {
    display: flex;
    gap: 30px;
    padding: 30px 20px;
    border-bottom: 1px solid #eee; /* Sirf niche line */
    transition: 0.3s;
}

.product-item:hover {
    background: #fffaf9; /* Halka sa hover effect */
}

.product-number {
    font-size: 24px;
    font-weight: 800;
    color: #ddd; /* Light grey number */
    font-family: serif;
}

.product-details h3 {
    font-size: 22px;
    color: #001d3d;
    margin: 0 0 10px 0;
}

.product-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 700px;
}

.action-links a {
    color: #ff5722;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.action-links a:hover {
    border-bottom: 2px solid #ff5722;
}

/* Responsive */
@media (max-width: 768px) {
    .product-item {
        flex-direction: column;
        gap: 10px;
    }
}

.info-card.dark{
    background:#111;
    color:#fff;
    padding:35px 25px;
    border-radius:20px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
    min-height:320px;

    transition:0.3s ease;
}

.info-card.dark:hover{
    transform:translateY(-5px);
}

.icon-wrap{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#1f1f1f;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.icon-wrap i{
    font-size:32px;
    color:#fff;
}

.content{
    width:100%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.content h3{
    font-size:28px;
    font-weight:700;
    margin:0 0 15px;
    text-align:center;
}

.content p{
    font-size:13px;
    line-height:1.8;
    margin:0;

    text-align:center;
    max-width:300px;
    color:#d6d6d6;
}

  .call-link,
    .call-link:hover,
    .call-link:focus,
    .call-link:active {
        text-decoration: none;
        color: inherit;
    }

    .mobile-only a{
        color: #fff;
    }

     @media screen and (min-width: 100px) and (max-width: 767px){
    .top-bar{
        display: none;
    } 
    .btn-learn {
    padding: 12px 17px;
    font-size: 12px;
    }

.play-btn-circle::after {
    width: 65%;
    height: 65%;
}

     }


     /* --- Basic Layout Styles (Aapke page ke hisab se modify kar sakte hain) --- */
.hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-color: #f9f9f9;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}
.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}
.hero-text h1 span {
    color: #de4c26; /* Accent Color */
}
.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}
.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}
.btn-learn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ff6b6b;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}
.btn-learn:hover {
    background-color: #e55b5b;
}
.call-link {
    text-decoration: none;
    color: #333;
}
.play-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}
.play-btn-circle {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: #ff6b6b;
}

/* --- AUTOMATIC SLIDER SYSTEM (Pure CSS Setup) --- */
.hero-visual {
    position: relative;
    width: 100%;
    height: 450px; /* Slider container ki fix height */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Blob-bg apni jagah par peeche hi rahega */
.blob-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffe3e3;
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
    opacity: 0.7;
}

/* Sari images ko ek hi jagah stack karne ke liye position absolute kiya */
.hero-visual img {
    position: absolute;
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    z-index: 2;
    opacity: 0; /* Shuruat me images invisible rahengi */
    transform: scale(0.9) translateX(30px); /* Smooth slide-in starting position */
    transition: opacity 0.8s ease, transform 0.8s ease; /* Transitions lagayi */
}

/* Jab script active class add karegi tab image samne aayegi */
.hero-visual img.active {
    opacity: 1;
    transform: scale(1) translateX(0); /* Normal clean position */
}

/* Responsive adjustment bade se chote screens ke liye */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-visual {
        height: 350px;
    }
}
/* --- HEADING ANIMATION STYLES --- */

/* 1. Heading ko pehle se thoda neeche aur hidden rakhne ke liye wrapper */
.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
    overflow: hidden; /* Text line ko cut hone se bachane aur clean look ke liye */
}

/* Heading ke andar ke text aur span ko alag se animate karenge */
.hero-text h1, 
.hero-text h1 span,
.hero-text p {
    opacity: 0;
    transform: translateY(30px); /* Text thoda neeche se upar aayega */
    animation: textReveal 1s cubic-bezier(0.2, 1, 0.2, 1) forwards;
}

/* Har line thodi der ruk kar aayegi (Delay Effect) */
.hero-text h1 {
    animation-delay: 0.2s;
}
.hero-text h1 span {
    display: inline-block; /* Animation trigger karne ke liye zaroori hai */
    animation-delay: 0.4s;
}
.hero-text p {
    animation-delay: 0.6s;
}
.hero-btns {
    opacity: 0;
    transform: translateY(20px);
    animation: textReveal 1s cubic-bezier(0.2, 1, 0.2, 1) forwards;
    animation-delay: 0.8s;
}

/* CSS Keyframes Animation Logic */
@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0); /* Apni normal jagah par aa jayega */
    }
}


/* --- IMAGE SLIDER STYLES (Same as before) --- */
.hero-visual {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blob-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffe3e3;
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
    opacity: 0.7;
}
.hero-visual img {
    position: absolute;
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    z-index: 2;
    opacity: 0;
    transform: scale(0.9) translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-visual img.active {
    opacity: 1;
    transform: scale(1) translateX(0);
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-visual {
        height: 350px;
    }
}

.active-bar a{
    color: #001d3d;
    font-weight: bold;
}

/* WhatsApp Button Styles */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 9999;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        /* Hover karne par color thoda dark hoga */
        .whatsapp-btn:hover {
            background-color: #20ba5a;
        }

        /* Infinity Pulse Animation Effect */
        .whatsapp-btn::before,
        .whatsapp-btn::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            background-color: #25D366;
            z-index: -1;
            animation: whatsapp-pulse 2s infinite;
            opacity: 0.7;
        }

        /* Doosra wave thoda late start hoga depth dene ke liye */
        .whatsapp-btn::after {
            animation-delay: 0.5s;
        }

        /* Animation Keyframes */
        @keyframes whatsapp-pulse {
            0% {
                transform: scale(1);
                opacity: 0.7;
            }
            50% {
                opacity: 0.4;
            }
            100% {
                transform: scale(1.6);
                opacity: 0;
            }
        }


          .pck-terms-scope {
            --pck-primary: #1e3a8a;
            --pck-secondary: #0d9488;
            --pck-text: #334155;
            --pck-bg: #f8fafc;
            --pck-card: #ffffff;
            --pck-border: #e2e8f0;
            
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--pck-text);
            background-color: var(--pck-bg);
            padding: 30px 15px;
            width: 100%;
        }

        .pck-terms-scope *, 
        .pck-terms-scope *::before, 
        .pck-terms-scope *::after {
            box-sizing: border-box;
        }

        .pck-terms-wrapper {
            max-width: 850px;
            margin: 0 auto;
            background: var(--pck-card);
            padding: 45px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--pck-border);
        }

        .pck-terms-title {
            font-size: 24pt;
            color: var(--pck-primary);
            margin: 0 0 8px 0;
            border-bottom: 3px solid var(--pck-primary);
            padding-bottom: 12px;
            text-align: center;
            font-weight: 700;
        }

        .pck-terms-meta {
            font-size: 10pt;
            color: #64748b;
            text-align: center;
            margin-bottom: 35px;
            font-style: italic;
        }

        .pck-terms-section-title {
            font-size: 14pt;
            color: var(--pck-primary);
            margin: 30px 0 12px 0;
            border-left: 4px solid var(--pck-secondary);
            padding-left: 12px;
            font-weight: 600;
        }

        .pck-terms-text {
            font-size: 11pt;
            margin-bottom: 16px;
            text-align: justify;
            color: var(--pck-text);
        }

        .pck-terms-footer {
            margin-top: 45px;
            padding-top: 25px;
            border-top: 1px solid var(--pck-border);
            text-align: center;
            font-size: 10pt;
            color: #475569;
        }

        /* Responsive Design for Mobile Devices */
        @media (max-width: 768px) {
            .pck-terms-scope {
                padding: 15px 5px;
            }
            .pck-terms-wrapper {
                padding: 25px 20px;
                border-radius: 8px;
            }
            .pck-terms-title {
                font-size: 20pt;
            }
            .pck-terms-section-title {
                font-size: 13pt;
            }
            .pck-terms-text {
                font-size: 10.5pt;
            }
        }

          .pck-privacy-scope {
            --pck-priv-primary: #1e3a8a;
            --pck-priv-secondary: #0d9488;
            --pck-priv-text: #334155;
            --pck-priv-bg: #f8fafc;
            --pck-priv-card: #ffffff;
            --pck-priv-border: #e2e8f0;
            
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--pck-priv-text);
            background-color: var(--pck-priv-bg);
            padding: 30px 15px;
            width: 100%;
        }

        .pck-privacy-scope *, 
        .pck-privacy-scope *::before, 
        .pck-privacy-scope *::after {
            box-sizing: border-box;
        }

        .pck-privacy-wrapper {
            max-width: 850px;
            margin: 0 auto;
            background: var(--pck-priv-card);
            padding: 45px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--pck-priv-border);
        }

        .pck-privacy-title {
            font-size: 24pt;
            color: var(--pck-priv-primary);
            margin: 0 0 8px 0;
            border-bottom: 3px solid var(--pck-priv-primary);
            padding-bottom: 12px;
            text-align: center;
            font-weight: 700;
        }

        .pck-privacy-meta {
            font-size: 10pt;
            color: #64748b;
            text-align: center;
            margin-bottom: 35px;
            font-style: italic;
        }

        .pck-privacy-section-title {
            font-size: 14pt;
            color: var(--pck-priv-primary);
            margin: 30px 0 12px 0;
            border-left: 4px solid var(--pck-priv-secondary);
            padding-left: 12px;
            font-weight: 600;
        }

        .pck-privacy-text {
            font-size: 11pt;
            margin-bottom: 16px;
            text-align: justify;
            color: var(--pck-priv-text);
        }

        .pck-privacy-footer {
            margin-top: 45px;
            padding-top: 25px;
            border-top: 1px solid var(--pck-priv-border);
            text-align: center;
            font-size: 10pt;
            color: #475569;
        }

        /* Responsive Design for Mobile Devices */
        @media (max-width: 768px) {
            .pck-privacy-scope {
                padding: 15px 5px;
            }
            .pck-privacy-wrapper {
                padding: 25px 20px;
                border-radius: 8px;
            }
            .pck-privacy-title {
                font-size: 20pt;
            }
            .pck-privacy-section-title {
                font-size: 13pt;
            }
            .pck-privacy-text {
                font-size: 10.5pt;
            }
        }

              .gvi-protect-scope {
            --gvi-pr-primary: #0f172a;
            --gvi-pr-accent: #b45309;
            --gvi-pr-text: #334155;
            --gvi-pr-bg: #f8fafc;
            --gvi-pr-card: #ffffff;
            --gvi-pr-border: #e2e8f0;
            
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--gvi-pr-text);
            background-color: var(--gvi-pr-bg);
            padding: 40px 15px;
            width: 100%;
        }

        .gvi-protect-scope *, 
        .gvi-protect-scope *::before, 
        .gvi-protect-scope *::after {
            box-sizing: border-box;
        }

        .gvi-protect-wrapper {
            max-width: 850px;
            margin: 0 auto;
            background: var(--gvi-pr-card);
            padding: 45px;
            border-radius: 12px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--gvi-pr-border);
        }

        .gvi-protect-title {
            font-size: 24pt;
            color: var(--gvi-pr-primary);
            margin: 0 0 5px 0;
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .gvi-protect-company {
            font-size: 11pt;
            color: var(--gvi-pr-accent);
            text-align: center;
            margin-bottom: 15px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .gvi-protect-divider {
            height: 3px;
            width: 80px;
            background: var(--gvi-pr-accent);
            margin: 0 auto 35px auto;
            border-radius: 2px;
        }

        .gvi-protect-section-title {
            font-size: 14pt;
            color: var(--gvi-pr-primary);
            margin: 28px 0 12px 0;
            border-left: 4px solid var(--gvi-pr-accent);
            padding-left: 12px;
            font-weight: 600;
        }

        .gvi-protect-text {
            font-size: 11pt;
            margin-bottom: 16px;
            text-align: justify;
            color: var(--gvi-pr-text);
        }

        .gvi-protect-footer {
            margin-top: 45px;
            padding-top: 25px;
            border-top: 1px solid var(--gvi-pr-border);
            text-align: center;
            font-size: 9.5pt;
            color: #64748b;
        }

        /* Responsive Breakpoints for Mobile and Tablets */
        @media (max-width: 768px) {
            .gvi-protect-scope {
                padding: 20px 5px;
            }
            .gvi-protect-wrapper {
                padding: 25px 20px;
                border-radius: 8px;
            }
            .gvi-protect-title {
                font-size: 18pt;
            }
            .gvi-protect-company {
                font-size: 10pt;
            }
            .gvi-protect-section-title {
                font-size: 12.5pt;
            }
            .gvi-protect-text {
                font-size: 10.5pt;
            }
        }

           .gvi-faq-scope {
            --gvi-faq-primary: #0f172a;
            --gvi-faq-accent: #b45309;
            --gvi-faq-text: #334155;
            --gvi-faq-bg: #f8fafc;
            --gvi-faq-card: #ffffff;
            --gvi-faq-border: #e2e8f0;
            
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--gvi-faq-text);
            background-color: var(--gvi-faq-bg);
            padding: 40px 15px;
            width: 100%;
        }

        .gvi-faq-scope *, 
        .gvi-faq-scope *::before, 
        .gvi-faq-scope *::after {
            box-sizing: border-box;
        }

        .gvi-faq-wrapper {
            max-width: 850px;
            margin: 0 auto;
            background: var(--gvi-faq-card);
            padding: 45px;
            border-radius: 12px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--gvi-faq-border);
        }

        .gvi-faq-title {
            font-size: 24pt;
            color: var(--gvi-faq-primary);
            margin: 0 0 5px 0;
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .gvi-faq-company {
            font-size: 11pt;
            color: var(--gvi-faq-accent);
            text-align: center;
            margin-bottom: 15px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .gvi-faq-divider {
            height: 3px;
            width: 80px;
            background: var(--gvi-faq-accent);
            margin: 0 auto 35px auto;
            border-radius: 2px;
        }

        /* Accordion Style details/summary */
        .gvi-faq-item {
            background: #ffffff;
            border: 1px solid var(--gvi-faq-border);
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .gvi-faq-item[open] {
            border-color: var(--gvi-faq-accent);
            box-shadow: 0 2px 8px rgba(180, 83, 9, 0.08);
        }

        .gvi-faq-question {
            padding: 16px 20px;
            font-size: 11pt;
            font-weight: 600;
            color: var(--gvi-faq-primary);
            cursor: pointer;
            list-style: none;
            position: relative;
            outline: none;
            user-select: none;
        }

        /* Custom Arrow */
        .gvi-faq-question::-webkit-details-marker {
            display: none;
        }
        
        .gvi-faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 16pt;
            color: var(--gvi-faq-accent);
            transition: transform 0.3s ease;
        }

        .gvi-faq-item[open] .gvi-faq-question::after {
            content: '−';
        }

        .gvi-faq-answer {
            padding: 0 20px 16px 20px;
            font-size: 10.5pt;
            color: var(--gvi-faq-text);
            text-align: justify;
            border-top: 1px solid transparent;
        }

        .gvi-faq-item[open] .gvi-faq-answer {
            border-top: 1px solid #f1f5f9;
            padding-top: 12px;
        }

        .gvi-faq-footer {
            margin-top: 45px;
            padding-top: 25px;
            border-top: 1px solid var(--gvi-faq-border);
            text-align: center;
            font-size: 9.5pt;
            color: #64748b;
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .gvi-faq-scope {
                padding: 20px 5px;
            }
            .gvi-faq-wrapper {
                padding: 25px 15px;
                border-radius: 8px;
            }
            .gvi-faq-title {
                font-size: 18pt;
            }
            .gvi-faq-question {
                font-size: 10pt;
                padding: 14px 40px 14px 15px;
            }
            .gvi-faq-answer {
                font-size: 9.5pt;
                padding: 0 15px 14px 15px;
            }
        }

           .gvi-quality-scope {
            --gvi-ql-primary: #0f172a;
            --gvi-ql-accent: #b45309;
            --gvi-ql-text: #334155;
            --gvi-ql-bg: #f8fafc;
            --gvi-ql-card: #ffffff;
            --gvi-ql-border: #e2e8f0;
            
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--gvi-ql-text);
            background-color: var(--gvi-ql-bg);
            padding: 40px 15px;
            width: 100%;
        }

        .gvi-quality-scope *, 
        .gvi-quality-scope *::before, 
        .gvi-quality-scope *::after {
            box-sizing: border-box;
        }

        .gvi-quality-wrapper {
            max-width: 900px;
            margin: 0 auto;
            background: var(--gvi-ql-card);
            padding: 45px;
            border-radius: 12px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--gvi-ql-border);
        }

        .gvi-quality-title {
            font-size: 24pt;
            color: var(--gvi-ql-primary);
            margin: 0 0 5px 0;
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .gvi-quality-company {
            font-size: 11pt;
            color: var(--gvi-ql-accent);
            text-align: center;
            margin-bottom: 15px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .gvi-quality-divider {
            height: 3px;
            width: 80px;
            background: var(--gvi-ql-accent);
            margin: 0 auto 35px auto;
            border-radius: 2px;
        }

        /* Banner Image Section */
        .gvi-quality-banner {
            width: 100%;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }

        .gvi-quality-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Content Layout split with smaller image */
        .gvi-quality-grid {
            display: flex;
            gap: 30px;
            align-items: center;
            margin-bottom: 30px;
        }

        .gvi-quality-grid-content {
            flex: 1;
        }

        .gvi-quality-grid-image {
            width: 300px;
            height: 250px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }

        .gvi-quality-grid-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gvi-quality-section-title {
            font-size: 14pt;
            color: var(--gvi-ql-primary);
            margin: 25px 0 12px 0;
            border-left: 4px solid var(--gvi-ql-accent);
            padding-left: 12px;
            font-weight: 600;
        }

        .gvi-quality-text {
            font-size: 11pt;
            margin-bottom: 16px;
            text-align: justify;
            color: var(--gvi-ql-text);
        }

        .gvi-quality-footer {
            margin-top: 45px;
            padding-top: 25px;
            border-top: 1px solid var(--gvi-ql-border);
            text-align: center;
            font-size: 9.5pt;
            color: #64748b;
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .gvi-quality-scope {
                padding: 20px 5px;
            }
            .gvi-quality-wrapper {
                padding: 25px 20px;
                border-radius: 8px;
            }
            .gvi-quality-title {
                font-size: 18pt;
            }
            .gvi-quality-banner {
                height: 180px;
            }
            .gvi-quality-grid {
                flex-direction: column;
                gap: 20px;
            }
            .gvi-quality-grid-image {
                width: 100%;
                height: 200px;
            }
            .gvi-quality-section-title {
                font-size: 12.5pt;
            }
            .gvi-quality-text {
                font-size: 10.5pt;
            }
        }
           .gvi-quality-scope {
            --gvi-ql-primary: #0f172a;
            --gvi-ql-accent: #b45309;
            --gvi-ql-text: #334155;
            --gvi-ql-bg: #f8fafc;
            --gvi-ql-card: #ffffff;
            --gvi-ql-border: #e2e8f0;
            
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--gvi-ql-text);
            background-color: var(--gvi-ql-bg);
            padding: 40px 15px;
            width: 100%;
        }

        .gvi-quality-scope *, 
        .gvi-quality-scope *::before, 
        .gvi-quality-scope *::after {
            box-sizing: border-box;
        }

        .gvi-quality-wrapper {
            max-width: 900px;
            margin: 0 auto;
            background: var(--gvi-ql-card);
            padding: 45px;
            border-radius: 12px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--gvi-ql-border);
        }

        .gvi-quality-title {
            font-size: 24pt;
            color: var(--gvi-ql-primary);
            margin: 0 0 5px 0;
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .gvi-quality-company {
            font-size: 11pt;
            color: var(--gvi-ql-accent);
            text-align: center;
            margin-bottom: 15px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .gvi-quality-divider {
            height: 3px;
            width: 80px;
            background: var(--gvi-ql-accent);
            margin: 0 auto 35px auto;
            border-radius: 2px;
        }

        /* Banner Image Section */
        .gvi-quality-banner {
            width: 100%;
            height: 320px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            background: #e2e8f0; /* Image load hone tak skeleton color */
        }

        .gvi-quality-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Content Layout split with smaller image */
        .gvi-quality-grid {
            display: flex;
            gap: 30px;
            align-items: center;
            margin-bottom: 30px;
        }

        .gvi-quality-grid-content {
            flex: 1;
        }

        .gvi-quality-grid-image {
            width: 320px;
            height: 240px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            background: #e2e8f0;
            flex-shrink: 0;
        }

        .gvi-quality-grid-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gvi-quality-section-title {
            font-size: 14pt;
            color: var(--gvi-ql-primary);
            margin: 25px 0 12px 0;
            border-left: 4px solid var(--gvi-ql-accent);
            padding-left: 12px;
            font-weight: 600;
        }

        .gvi-quality-text {
            font-size: 11pt;
            margin-bottom: 16px;
            text-align: justify;
            color: var(--gvi-ql-text);
        }

        .gvi-quality-footer {
            margin-top: 45px;
            padding-top: 25px;
            border-top: 1px solid var(--gvi-ql-border);
            text-align: center;
            font-size: 9.5pt;
            color: #64748b;
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .gvi-quality-scope {
                padding: 20px 5px;
            }
            .gvi-quality-wrapper {
                padding: 25px 20px;
                border-radius: 8px;
            }
            .gvi-quality-title {
                font-size: 18pt;
            }
            .gvi-quality-banner {
                height: 180px;
            }
            .gvi-quality-grid {
                flex-direction: column;
                gap: 20px;
            }
            .gvi-quality-grid-image {
                width: 100%;
                height: 200px;
            }
            .gvi-quality-section-title {
                font-size: 12.5pt;
            }
            .gvi-quality-text {
                font-size: 10.5pt;
            }
        }