 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
       :root {
        --primary-orange: #f4a261;
        --primary-cyan: #2ec4b6;
        --primary-red: #e07a5f;
    }
        .nav-link {
            position: relative;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-orange) !important;
        }
        
        .nav-link:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, var(--primary-orange), var(--primary-cyan));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .nav-link:hover::after {
            transform: scaleX(1);
        }

        .blog-content h2 {
        color: #1f2937;
        font-size: 1.75rem;
        font-weight: 700;
        margin: 2.5rem 0 1rem;
    }

    .blog-content h3 {
        color: #374151;
        font-size: 1.35rem;
        font-weight: 600;
        margin: 2rem 0 0.75rem;
    }

    .blog-content p {
        color: #4b5563;
        line-height: 1.8;
        margin-bottom: 1.25rem;
    }

    .blog-content ul {
        list-style-type: disc;
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .blog-content li {
        margin-bottom: 0.75rem;
        color: #4b5563;
    }

    .share-btn {
        transition: all 0.3s;
    }
    
    .share-btn:hover {
        transform: translateY(-3px);
        color: var(--primary-orange);
    }

    .faq-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        border: 1px solid #f3f4f6;
        transition: all 0.3s ease;
    }

    .faq-card:hover {
        box-shadow: 0 15px 40px rgba(244, 162, 97, 0.12);
    }

    .faq-question {
        width: 100%;
        text-align: left;
        padding: 24px 28px;
        background: none;
        border: none;
        font-size: 1.1rem;
        font-weight: 600;
        color: #1f2937;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .faq-answer {
        padding: 0 28px 28px 28px;
        color: #4b5563;
        line-height: 1.75;
        display: none;
    }

    .faq-answer.open {
        display: block;
    }

    .faq-icon {
        font-size: 1.5rem;
        color: var(--primary-orange);
        transition: transform 0.4s ease;
    }

    .faq-question.active .faq-icon {
        transform: rotate(45deg);
    }

    .faq-header {
        background: linear-gradient(135deg, #f4a261, #e07a5f);
        color: white;
    }
    .about-hero {
        background: linear-gradient(135deg, #f8f4f0 0%, #ffffff 100%);
    }

    .stats-card {
        transition: all 0.4s ease;
    }
    
    .stats-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(244, 162, 97, 0.15);
    }

    .leadership-card {
        transition: all 0.3s ease;
    }
    
    .leadership-card:hover {
        transform: translateY(-10px);
    }

    .why-card {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .why-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px -12px rgb(244 162 97 / 0.15);
    }

    .benefit-icon {
        width: 72px;
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.2rem;
        border-radius: 9999px;
        background: linear-gradient(135deg, #fff4ed, #fefce8);
    }

    .award-card {
        transition: all 0.4s ease;
    }

    .award-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 60px -10px rgba(244, 162, 97, 0.18);
    }

    .award-year {
        background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
        color: white;
        font-weight: 700;
    }
    .office-card {
        transition: all 0.4s ease;
    }
    
    .office-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(244, 162, 97, 0.15);
    }

    .contact-btn {
        background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    }

    .gallery-img {
        transition: all 0.4s ease;
        border-radius: 20px;
        overflow: hidden;
    }

    .gallery-img:hover {
        transform: scale(1.05);
        box-shadow: 0 25px 50px -12px rgba(244, 162, 97, 0.25);
    }

    .gallery-img img {
        transition: transform 0.6s ease;
    }

    .gallery-img:hover img {
        transform: scale(1.08);
    }
    .hero-bg {
        background: linear-gradient(135deg, #f8f4f0 0%, #ffffff 100%);
    }

    .service-card {
        transition: all 0.4s ease;
        border: 1px solid #f3f4f6;
    }

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px -10px rgba(244, 162, 97, 0.18);
        border-color: var(--primary-orange);
    }

    .card-number {
        background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
        color: white;
        font-weight: 700;
    }
    .sidebar-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        padding: 24px;
        position: sticky;
        top: 100px;
    }

    .category-btn {
        width: 100%;
        text-align: left;
        padding: 14px 18px;
        border-radius: 14px;
        background: #f8f4f0;
        margin-bottom: 6px;
        transition: all 0.3s;
        font-weight: 500;
    }

    .category-btn:hover,
    .category-btn.active {
        background: #f4a261;
        color: white;
    }

    .sub-category {
        padding-left: 18px;
        font-size: 0.95rem;
        color: #555;
    }

    .product-card {
        transition: all 0.4s ease;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(244, 162, 97, 0.18);
    }

    .product-img {
        height: 240px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-card:hover .product-img {
        transform: scale(1.08);
    }

    .sort-btn {
        padding: 10px 24px;
        border-radius: 9999px;
        background: white;
        border: 2px solid #e5e7eb;
        font-weight: 500;
    }

    .product-slider {
        position: relative;
        overflow: hidden;
        border-radius: 24px;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.8s ease;
        object-fit: cover;
    }

    .slide.active {
        opacity: 1;
        position: relative;
    }

    .thumb {
        transition: all 0.3s;
    }

    .thumb.active {
        border: 3px solid var(--primary-orange);
        transform: scale(1.05);
    }

    .quote-btn {
        background: linear-gradient(135deg, #e07a5f, #f4a261);
        color: white;
    }

    .whatsapp-btn {
        background: #25D366;
    }

    .subcat-card {
        transition: all 0.4s ease;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .subcat-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(244, 162, 97, 0.18);
    }

    .subcat-img {
        height: 260px;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .subcat-card:hover .subcat-img {
        transform: scale(1.08);
    }

    .cart-item {
        transition: all 0.3s ease;
    }

    .quote-btn {
        background: linear-gradient(135deg, #e07a5f, #f4a261);
        color: white;
        padding: 18px 40px;
        border-radius: 9999px;
        font-weight: 600;
        font-size: 1.15rem;
    }

    .quote-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(224, 122, 95, 0.4);
    }

    .sidebar-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        padding: 24px;
        position: sticky;
        top: 100px;
    }

    .category-btn {
        width: 100%;
        text-align: left;
        padding: 14px 18px;
        border-radius: 14px;
        background: #f8f4f0;
        margin-bottom: 6px;
        transition: all 0.3s;
        font-weight: 500;
    }

    .category-btn:hover,
    .category-btn.active {
        background: #f4a261;
        color: white;
    }

    .product-card {
        transition: all 0.4s ease;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(244, 162, 97, 0.18);
    }

    .product-img {
        height: 240px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-card:hover .product-img {
        transform: scale(1.08);
    }

    .filter-chip {
        padding: 8px 16px;
        border-radius: 9999px;
        background: #f8f4f0;
        font-size: 0.95rem;
        transition: all 0.3s;
    }

    .filter-chip.active {
        background: #f4a261;
        color: white;
    }