 :root {
            --primary: #f3469d;
            --secondary: #2da5bc;
            --accent: #FFFFFF;
            --bg: #F8F8F8;
            --text: #444444;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        a{
            text-decoration: none;
        }
        
        /* Header & Navigation */
        header {
            background-color: var(--accent);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 80px;
            margin-right: 10px;
        }
        
        .logo-text h1 {
            color: var(--primary);
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .logo-text span {
            color: var(--secondary);
            font-size: 0.9rem;
            display: block;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
            position: relative;
        }
        
        .nav-links a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--accent);
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            z-index: 1;
            border-radius: 5px;
            top: 100%;
            left: 0;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .dropdown-content a {
            padding: 12px 16px;
            display: block;
            color: var(--secondary);
        }
        
        .dropdown-content a:hover {
            background-color: var(--bg);
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: var(--secondary);
            cursor: pointer;
        }
        
        .contact-btn {
            background-color: var(--primary);
            color: var(--accent);
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .contact-btn:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,107,0,0.3);
        }
        
        /* Hero Section */
        .hero {
            padding-top: 100px;
            position: relative;
            height: 90vh;
            overflow: hidden;
        }
        
        .swiper {
            width: 100%;
            height: 100%;
        }
        
        .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }
        
        .slide-content {
            position: absolute;
            max-width: 1200px;
            width: 90%;
            color: var(--accent);
            text-align: center;
            z-index: 10;
        }
        
        .slide-content h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        
        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        
        .hero-btn {
            background-color: var(--primary);
            color: var(--accent);
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-block;
        }
        
        .hero-btn:hover {
            background-color: var(--accent);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .swiper-pagination-bullet {
            background: var(--accent);
            opacity: 0.7;
            width: 12px;
            height: 12px;
        }
        
        .swiper-pagination-bullet-active {
            background: var(--primary);
            opacity: 1;
        }
        
        /* About Section */
        .about {
            padding: 6rem 5%;
            background-color: var(--accent);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--primary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: var(--text);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 1rem auto 0;
            line-height: 1.6;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 3rem;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        
        .about-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .feature-item {
            flex: 1 1 200px;
            background-color: var(--bg);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .feature-item h4 {
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Services Section */
       
        
        /* Products Section */
        .products {
            padding: 6rem 5%;
            background-color: var(--accent);
        }
        
        .products-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .product-card {
            background-color: var(--bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255,107,0,0.1);
        }
        
        .product-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.1);
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--primary);
            color: var(--accent);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .product-content {
            padding: 1.5rem;
        }
        
        .product-content h3 {
            color: var(--secondary);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        
        .product-content .price {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            display: block;
        }
        
        .product-content .rating {
            color: #FFC107;
            margin-bottom: 1rem;
        }
        
        .product-btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--accent);
            padding: 0.6rem 1.2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
        }
        
        .product-btn:hover {
            background-color: var(--secondary);
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 6rem 5%;
            background-color: var(--bg);
        }
        
        .testimonial-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial-slider {
            padding: 2rem 0;
        }
        
        .testimonial-card {
            background-color: var(--accent);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 0 1rem;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 10px;
        }
        
        .testimonial-content {
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-style: italic;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            color: var(--secondary);
            margin-bottom: 0.3rem;
        }
        
        .author-info p {
            color: var(--primary);
            font-size: 0.9rem;
        }
        
        /* Contact Section */
        .contact {
            padding: 6rem 5%;
            background-color: var(--accent);
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .contact-info h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
            bottom: 0;
            left: 0;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .info-icon {
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 1rem;
            margin-top: 5px;
        }
        
        .info-content h4 {
            color: var(--secondary);
            margin-bottom: 0.3rem;
        }
        
        .info-content p, .info-content a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .info-content a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: var(--accent);
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-5px);
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: var(--bg);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--secondary);
            font-weight: 600;
        }
        
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--primary);
            color: var(--accent);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .submit-btn:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,107,0,0.3);
        }
        
        /* Map Section */
        .map {
            height: 400px;
            width: 100%;
        }
        
        .map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--accent);
            padding: 4rem 5% 2rem;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
            bottom: 0;
            left: 0;
        }
        
        .footer-col p {
            margin-bottom: 1rem;
            line-height: 1.6;
            opacity: 0.8;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--accent);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s;
            display: block;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .footer-newsletter input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 5px;
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        
        .footer-newsletter button {
            background-color: var(--primary);
            color: var(--accent);
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            width: 100%;
        }
        
        .footer-newsletter button:hover {
            background-color: var(--accent);
            color: var(--primary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--accent);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 2rem;
                transition: all 0.5s ease;
                z-index: 999;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 1rem 0;
            }
            
            .dropdown-content {
                position: static;
                display: none;
                width: 100%;
                box-shadow: none;
                border-radius: 0;
            }
            
            .dropdown:hover .dropdown-content {
                display: none;
            }
            
            .dropdown.active .dropdown-content {
                display: block;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .slide-content h2 {
                font-size: 2.5rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                height: 80vh;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                order: -1;
            }
            
            .slide-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .logo-text h1 {
                font-size: 1.5rem;
            }
            
            .hero {
                height: 70vh;
                padding-top: 80px;
            }
            
            .slide-content h2 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }



           .services-container {
        display: grid;
            grid-template-columns: repeat(3, 1fr);; /* 2 cards per row */
        gap: 2rem;
        margin-top: 3rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
    }
    
    .service-card {
        background-color: var(--accent);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s;
        position: relative;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(255,107,0,0.1);
    }
    
    .service-img {
        height: 250px;
        overflow: hidden;
    }
    
    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.5s;
    }
    
    .service-card:hover .service-img img {
        transform: scale(1.1);
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        color: var(--secondary);
        margin-bottom: 0.8rem;
        font-size: 1.4rem;
    }
    
    .service-content p {
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .read-more {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s;
    }
    
    .read-more:hover {
        color: var(--secondary);
    }
    
    .read-more i {
        margin-left: 5px;
        transition: transform 0.3s;
    }
    
    .read-more:hover i {
        transform: translateX(5px);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .services-container {
            grid-template-columns: 1fr; /* 1 card per row on mobile */
        }
    }


    /* Video Section Styles */
    .video-section {
        padding: 6rem 5%;
        background-color: var(--accent);
    }
    
    .video-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        max-width: 1400px;
        margin: 3rem auto 0;
    }
    
    .video-card {
        background: var(--bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    
    .video-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(255,107,0,0.1);
    }
    
    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
    }
    
    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .video-info {
        padding: 1.5rem;
    }
    
    .video-info h3 {
        color: var(--secondary);
        margin-bottom: 0.8rem;
        font-size: 1.3rem;
    }
    
    .video-info p {
        color: var(--text);
        line-height: 1.6;
    }
    
    .view-more {
        text-align: center;
        margin-top: 3rem;
    }
    
    .video-btn {
        display: inline-flex;
        align-items: center;
        background-color: #FF0000; /* YouTube red */
        color: white;
        padding: 0.8rem 1.8rem;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(255,0,0,0.2);
    }
    
    .video-btn:hover {
        background-color: #CC0000;
        transform: translateY(-3px);
        box-shadow: 0 7px 20px rgba(255,0,0,0.3);
    }
    
    .video-btn i {
        margin-left: 8px;
        font-size: 1.2rem;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .video-container {
            grid-template-columns: 1fr;
        }
        
        .video-section {
            padding: 4rem 5%;
        }
    }


     .clients-section {
        padding: 6rem 5%;
        background-color: var(--bg);
    }

    .clients-slider {
        max-width: 1200px;
        margin: 3rem auto;
        padding: 0 20px;
        position: relative;
        overflow: hidden;
    }

    .client-slide {
        padding: 10px;
        height: auto;
    }

    .client-card {
        background: var(--accent);
        border-radius: 10px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: all 0.3s ease;
    }

    .client-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(255,107,0,0.1);
    }

    .client-logo {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .client-logo img {
        max-width: 150px;
        max-height: 80px;
        width: auto;
        height: auto;
        object-fit: contain;
        /* filter: grayscale(100%); */
        opacity: 0.8;
        transition: all 0.3s;
    }

    .client-card:hover .client-logo img {
        filter: grayscale(0%);
        opacity: 1;
    }

    .client-info h3 {
        color: var(--secondary);
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .client-info p {
        color: var(--text);
        font-style: italic;
        line-height: 1.6;
        position: relative;
        padding-top: 1rem;
    }

    .client-info p::before {
        content: '"';
        font-size: 3rem;
        color: var(--primary);
        opacity: 0.2;
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Swiper Navigation */
    .swiper-button-next,
    .swiper-button-prev {
        color: var(--primary);
        background: var(--accent);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transition: all 0.3s;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: var(--primary);
        color: var(--accent);
    }

    .swiper-pagination-bullet {
        background: var(--text);
        opacity: 0.3;
        width: 10px;
        height: 10px;
    }

    .swiper-pagination-bullet-active {
        background: var(--primary);
        opacity: 1;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .clients-section {
            padding: 4rem 5%;
        }

        .client-card {
            padding: 1.5rem;
        }

        .client-logo {
            height: 60px;
            margin-bottom: 1rem;
        }

        .client-logo img {
            max-width: 120px;
            max-height: 60px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            display: none;
        }
    }


    .side-social-icons {
  position: fixed;
  top: 40%;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  gap: 15px;
  padding: 5px;
}

.side-social-icons .icon {
  width: 45px;
  height: 45px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s;
  font-size: 22px;
  text-decoration: none;
}

.side-social-icons .whatsapp {
  background-color: #25D366;
}

.side-social-icons .facebook {
  background-color: #1877F2;
}

.side-social-icons .instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}

.side-social-icons .linkedin {
  background-color: #0077b5;
}

.side-social-icons .youtube {
  background-color: #FF0000;
}

.side-social-icons .icon:hover {
  transform: scale(1.2) rotate(5deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}



/* about */
  .page-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/image/bg.jpg') no-repeat center center/cover;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px;
            color: var(--accent);
        }
        
        .page-hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb li {
            margin: 0 0.5rem;
        }
        
        .breadcrumb li a {
            color: var(--accent);
            transition: color 0.3s;
        }
        
        .breadcrumb li a:hover {
            color: var(--primary);
        }
        
        .breadcrumb li::after {
            content: '/';
            margin-left: 1rem;
            color: var(--accent);
        }
        
        .breadcrumb li:last-child::after {
            display: none;
        }
        
        /* About Content */
        .about-section {
            padding: 6rem 5%;
            background-color: var(--accent);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--primary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 3rem;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        
        .about-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .feature-item {
            flex: 1 1 200px;
            background-color: var(--bg);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .feature-item h4 {
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Mission & Vision */
        .mission-vision {
            padding: 6rem 5%;
            background-color: var(--bg);
        }
        
        .mv-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .mv-card {
            background-color: var(--accent);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s;
        }
        
        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255,107,0,0.1);
        }
        
        .mv-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .mv-card h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        
        /* Team Section */
        .team-section {
            padding: 6rem 5%;
            background-color: var(--accent);
        }
        
        .team-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .team-member {
            background-color: var(--bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            text-align: center;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255,107,0,0.1);
        }
        
        .member-img {
            height: 300px;
            overflow: hidden;
        }
        
        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .team-member:hover .member-img img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 1.5rem;
        }
        
        .member-info h3 {
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }
        
        .member-info p {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .member-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .member-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background-color: var(--primary);
            color: var(--accent);
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .member-social a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }

        /* contact */
          .contact-page {
            padding: 6rem 5%;
            background-color: var(--accent);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-info {
            background-color: var(--bg);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-info h2 {
            color: var(--secondary);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }
        
        .contact-details {
            margin-bottom: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            background-color: var(--primary);
            color: var(--accent);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .contact-text h3 {
            color: var(--secondary);
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }
        
        .contact-text p, .contact-text a {
            color: var(--text);
            opacity: 0.9;
            transition: all 0.3s;
        }
        
        .contact-text a:hover {
            color: var(--primary);
        }
        
        .business-hours h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .hours-list {
            list-style: none;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed rgba(0,0,0,0.1);
        }
        
        /* Contact Form */
        .contact-form {
            background-color: var(--bg);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-form h2 {
            color: var(--secondary);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--secondary);
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(243, 70, 157, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--primary);
            color: var(--accent);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,107,0,0.3);
        }
        
        /* Map Section */
        .map-section {
            padding: 0 5% 6rem;
            background-color: var(--bg);
        }
        
        .map-container {
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 450px;
            border: none;
            display: block;
        }

        /* product */
         .product-page {
            padding: 6rem 5%;
            background-color: var(--accent);
        }
        
        .product-container {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .product-sidebar {
            flex: 1;
            min-width: 300px;
            background-color: var(--bg);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .product-sidebar h3 {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }
        
        .product-list {
            list-style: none;
        }
        
        .product-list li {
            margin-bottom: 1rem;
        }
        
        .product-list a {
            display: block;
            padding: 0.8rem 1rem;
            color: var(--text);
            border-radius: 5px;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        .product-list a:hover, .product-list a.active {
            background-color: var(--primary);
            color: var(--accent);
            padding-left: 1.5rem;
        }
        
        .product-content {
            flex: 2;
            min-width: 300px;
        }
        
        .product-main {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .product-image {
            /* flex: 1; */
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background-color: #c3c8d2;
        }
        
        .product-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .product-image:hover img {
            transform: scale(1.05);
        }
        
        .product-details {
            flex: 1;
            min-width: 300px;
        }
        
        .product-details h2 {
            color: var(--secondary);
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .product-price {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .product-description {
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        
        .product-features {
            margin-bottom: 2rem;
        }
        
        .product-features h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .features-list {
            list-style-type: none;
        }
        
        .features-list li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .features-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary);
            position: absolute;
            left: 0;
        }
        
        .product-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: var(--accent);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,107,0,0.3);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            color: var(--accent);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn-secondary:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(45,165,188,0.3);
        }
        
        .product-specs {
            background-color: var(--bg);
            padding: 2rem;
            border-radius: 10px;
            margin-top: 3rem;
        }
        
        .product-specs h3 {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .specs-table tr:nth-child(even) {
            background-color: rgba(0,0,0,0.05);
        }
        
        .specs-table th, .specs-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .specs-table th {
            color: var(--secondary);
            width: 30%;
        }
        
        /* Gallery Section */
        .gallery-section {
            padding: 6rem 5%;
            background-color: var(--bg);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--primary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
            height: 250px;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255,107,0,0.1);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: var(--accent);
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }