
        :root {
            --primary-color: #0077b6;
            --secondary-color: #023e8a;
            --accent-color: #00b4d8;
            --light-blue: #e0f4ff;
            --white: #ffffff;
            --dark: #1a1a2e;
            --gray: #6c757d;
            --light-gray: #f8f9fa;
            --success: #28a745;
            --shadow: 0 10px 40px rgba(0, 119, 182, 0.1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            max-width: 100%;
        }

        html {
            overflow-x: hidden;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--white);
            overflow-x: hidden;
            max-width: 100vw;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            padding: 0 5%;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border-radius: 12px;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--secondary-color);
            line-height: 1.2;
        }

        .logo-text span {
            color: var(--primary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s;
        }

        nav a:hover {
            color: var(--primary-color);
        }

        nav a:hover::after {
            width: 100%;
        }

        .contact-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white) !important;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 600;
        }

        .contact-btn::after {
            display: none;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 119, 182, 0.3);
        }

        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--secondary-color);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f4ff 50%, #f0f9ff 100%);
            padding: 120px 5% 80px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: var(--white);
            color: var(--primary-color);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0, 119, 182, 0.1);
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero h1 span {
            color: var(--primary-color);
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary-color);
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            border: 2px solid var(--primary-color);
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--gray);
        }

        .hero-image {
            position: relative;
            z-index: 2;
        }

        .hero-img {
            width: 100%;
            max-width: 550px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 119, 182, 0.15);
        }

        /* Features */
        .features {
            padding: 80px 5%;
            background: linear-gradient(135deg, #f8fcff 0%, #e8f4fc 100%);
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 119, 182, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: var(--white);
            padding: 35px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 119, 182, 0.2);
            border-color: var(--primary-color);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: var(--white);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .feature-card:hover .feature-icon::after {
            width: 200px;
            height: 200px;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 30px rgba(0, 119, 182, 0.4);
        }

        .feature-card h3 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-card p {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.7;
        }

        .promotional-card {
            grid-column: span 3;
            background: linear-gradient(135deg, var(--primary-color), #023e8a);
            color: var(--white);
            padding: 50px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            gap: 40px;
            text-align: left;
            margin-top: 20px;
        }

        .promotional-card .feature-icon {
            background: rgba(255, 255, 255, 0.2);
            flex-shrink: 0;
        }

        .promotional-card h3 {
            color: var(--white);
            font-size: 1.5rem;
        }

        .promotional-card p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            flex: 1;
        }

        .promotional-card .btn-primary {
            background: var(--white);
            color: var(--primary-color);
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .promotional-card .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 1024px) {
            .header-container {
                padding: 0 3%;
            }
            .hero-container {
                gap: 40px;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .promotional-card {
                grid-column: span 2;
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            .promotional-card {
                grid-column: span 1;
                padding: 30px;
            }
        }

        /* About Section */
        .about {
            padding: 100px 5%;
            background: linear-gradient(180deg, var(--light-blue) 0%, var(--white) 100%);
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 119, 182, 0.15);
        }

        .about-badge {
            position: absolute;
            bottom: 30px;
            left: -30px;
            background: var(--white);
            padding: 20px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .about-badge h4 {
            font-size: 2rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        .about-badge p {
            font-size: 0.9rem;
            color: var(--gray);
        }

        .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .about-content h2 span {
            color: var(--primary-color);
        }

        .about-content > p {
            color: var(--gray);
            margin-bottom: 30px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .about-feature i {
            color: var(--success);
            font-size: 18px;
        }

        .gem-feature {
            grid-column: 1 / -1;
            background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
            padding: 20px 25px;
            border-radius: 12px;
            border: 2px solid #ffd700;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .marketplace-badges {
            display: flex;
            gap: 15px;
            margin: 25px 0 20px;
            flex-wrap: wrap;
        }

        .gem-badge {
            display: inline-block;
        }

        .gem-portal-link {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #0077b6, #023e8a);
            padding: 14px 24px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 119, 182, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .gem-portal-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 119, 182, 0.35);
        }

        .gem-hero-logo {
            width: 50px;
            height: 50px;
            object-fit: contain;
            background: #fff;
            border-radius: 8px;
            padding: 6px;
        }

        .gem-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .gem-title {
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
        }

        .gem-status {
            color: #90e0ef;
            font-size: 0.85rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .gem-status i {
            font-size: 0.75rem;
        }

        .indiamart-badge {
            margin: 0 0 15px;
            display: inline-block;
        }

        .indiamart-portal-link {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #0077b6, #023e8a);
            padding: 14px 24px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 119, 182, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .indiamart-portal-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 119, 182, 0.35);
        }

        .indiamart-hero-logo {
            width: 50px;
            height: 50px;
            object-fit: contain;
            background: #fff;
            border-radius: 8px;
            padding: 6px;
        }

        .indiamart-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .indiamart-title {
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
        }

        .indiamart-status {
            color: #90e0ef;
            font-size: 0.85rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .indiamart-status i {
            font-size: 0.75rem;
        }

        @media (max-width: 768px) {
            .marketplace-badges {
                display: flex;
                flex-direction: row;
                justify-content: center;
                gap: 10px;
                margin: 20px 0 15px;
            }
            .gem-badge,
            .indiamart-badge {
                flex: 1;
                min-width: 0;
            }
            .gem-portal-link {
                flex-direction: column;
                padding: 12px 8px;
                gap: 8px;
                text-align: center;
            }
            .gem-hero-logo {
                width: 40px;
                height: 40px;
                padding: 4px;
            }
            .gem-text {
                align-items: center;
            }
            .gem-title {
                font-size: 0.7rem;
                line-height: 1.2;
            }
            .gem-status {
                font-size: 0.65rem;
            }
            .indiamart-portal-link {
                flex-direction: column;
                padding: 12px 8px;
                gap: 8px;
                text-align: center;
            }
            .indiamart-hero-logo {
                width: 40px;
                height: 40px;
                padding: 4px;
            }
            .indiamart-text {
                align-items: center;
            }
            .indiamart-title {
                font-size: 0.7rem;
                line-height: 1.2;
            }
            .indiamart-status {
                font-size: 0.65rem;
            }
        }

        @media (max-width: 400px) {
            .marketplace-badges {
                flex-direction: column;
                gap: 8px;
            }
            .gem-badge,
            .indiamart-badge {
                width: 100%;
            }
            .gem-portal-link,
            .indiamart-portal-link {
                flex-direction: row;
                padding: 10px 14px;
                justify-content: flex-start;
            }
            .gem-hero-logo,
            .indiamart-hero-logo {
                width: 35px;
                height: 35px;
            }
            .gem-text,
            .indiamart-text {
                align-items: flex-start;
            }
            .gem-title,
            .indiamart-title {
                font-size: 0.8rem;
            }
            .gem-status,
            .indiamart-status {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 480px) {
            .indiamart-portal-link {
                padding: 15px;
            }
            .indiamart-hero-logo {
                width: 65px;
                height: 65px;
            }
            .indiamart-title {
                font-size: 0.9rem;
            }
            .indiamart-status {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 768px) {
            .about {
                padding: 60px 5%;
            }
            .about-container {
                gap: 30px;
            }
            .about-content h2 {
                font-size: 1.8rem;
            }
            .about-badge {
                left: 0;
                padding: 15px 20px;
            }
            .about-badge h4 {
                font-size: 1.5rem;
            }
            .about-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .about {
                padding: 40px 5%;
            }
            .about-content h2 {
                font-size: 1.5rem;
            }
        }

        /* Products Section */
        .products {
            padding: 100px 5%;
            background: linear-gradient(135deg, #f8fcff 0%, #e8f4fc 50%, #f0f9ff 100%);
            position: relative;
            overflow: hidden;
        }

        .products::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 119, 182, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulseGlow 8s ease-in-out infinite;
        }

        .products::after {
            content: '';
            position: absolute;
            bottom: -25%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulseGlow 10s ease-in-out infinite reverse;
        }

        @keyframes pulseGlow {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.1); opacity: 1; }
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
            position: relative;
            z-index: 2;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .section-header p {
            color: var(--gray);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .product-card {
            background: var(--white);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0, 119, 182, 0.08);
            border: 2px solid transparent;
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            position: relative;
        }

        .product-card:nth-child(1) { animation: productCardIn 0.6s ease 0.1s forwards; }
        .product-card:nth-child(2) { animation: productCardIn 0.6s ease 0.2s forwards; }
        .product-card:nth-child(3) { animation: productCardIn 0.6s ease 0.3s forwards; }
        .product-card:nth-child(4) { animation: productCardIn 0.6s ease 0.4s forwards; }
        .product-card:nth-child(5) { animation: productCardIn 0.6s ease 0.5s forwards; }
        .product-card:nth-child(6) { animation: productCardIn 0.6s ease 0.6s forwards; }

        @keyframes productCardIn {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .product-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 119, 182, 0.2);
            border-color: var(--primary-color);
        }

        .product-card:hover::before {
            transform: scaleX(1);
        }

        .product-image {
            height: 180px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f4ff 50%, #f8fcff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 55px;
            color: var(--primary-color);
            position: relative;
            overflow: hidden;
        }

        .product-image::before {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(0, 119, 182, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: iconPulse 3s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.3); opacity: 0.8; }
        }

        .product-image i {
            position: relative;
            z-index: 1;
            transition: all 0.5s ease;
        }

        .product-card:hover .product-image i {
            transform: scale(1.2) rotate(10deg);
            color: var(--accent-color);
        }

        .product-content {
            padding: 30px;
            position: relative;
        }

        .product-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 30px;
            right: 30px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 119, 182, 0.2), transparent);
        }

        .product-content h3 {
            color: var(--secondary-color);
            margin-bottom: 12px;
            font-size: 1.25rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .product-card:hover .product-content h3 {
            color: var(--primary-color);
        }

        .product-content p {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .product-card .explore-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.9rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .product-card:hover .explore-btn {
            opacity: 1;
            transform: translateX(0);
        }

        .explore-btn i {
            transition: transform 0.3s ease;
        }

        .product-card:hover .explore-btn i {
            transform: translateX(5px);
        }

        /* Redesigned Products Section */
        .product-section-wrapper {
            position: relative;
            z-index: 2;
        }

        .product-category {
            margin-bottom: 60px;
        }

        .product-category:last-child {
            margin-bottom: 0;
        }

        .category-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .category-header .category-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--white);
            box-shadow: 0 8px 25px rgba(0, 119, 182, 0.3);
        }

        .category-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--secondary-color);
        }

        .distributor-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #023e8a, #0077b6);
            color: var(--white);
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 40px;
            box-shadow: 0 8px 30px rgba(2, 62, 138, 0.3);
        }

        .distributor-badge i {
            font-size: 16px;
        }

        .tagline {
            font-size: 1.2rem;
            color: var(--primary-color) !important;
            font-weight: 500;
            font-style: italic;
            margin-top: 10px;
        }

        .equipment-grid {
            margin-bottom: 30px;
        }

        .product-card .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 20px;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.08);
        }

        .product-model {
            color: var(--primary-color) !important;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 8px;
            display: inline-block;
            background: var(--light-blue);
            padding: 4px 12px;
            border-radius: 15px;
        }

        .cleaning-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
            max-width: 900px;
            margin: 0 auto;
        }

        .cleaning-card {
            background: linear-gradient(145deg, var(--white), #f8fdfc);
        }

        .cleaning-card .product-image {
            background: linear-gradient(135deg, #E2F5FF 0%, #E2F5FF 50%, #E2F5FF 100%);
            padding: 15px;
            height: auto;
            min-height: 200px;
        }

        .cleaning-card .product-image img {
            width: 100%;
            height: auto;
            max-height: 250px;
            object-fit: contain;
        }

        @media (max-width: 1200px) {
            .equipment-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .equipment-grid,
            .cleaning-grid {
                grid-template-columns: 1fr;
            }
            
            .category-header {
                flex-direction: column;
            }
            
            .category-header h3 {
                font-size: 1.4rem;
            }
            
            .distributor-badge {
                font-size: 0.8rem;
                padding: 10px 20px;
            }
            
            .tagline {
                font-size: 1rem;
            }
        }

        /* What We Deals With Section */
        .deals {
            padding: 100px 5%;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f4ff 50%, #f8fcff 100%);
            position: relative;
            overflow: hidden;
        }

        .deals::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: dealsGlow 8s ease-in-out infinite;
        }

        .deals::after {
            content: '';
            position: absolute;
            bottom: -25%;
            left: -10%;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(0, 119, 182, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: dealsGlow 10s ease-in-out infinite reverse;
        }

        @keyframes dealsGlow {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.15); opacity: 1; }
        }

        .deals-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .deal-card {
            background: var(--white);
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 30px rgba(0, 119, 182, 0.08);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px) scale(0.95);
        }

        .deal-card:nth-child(1) { animation: dealCardIn 0.5s ease 0.05s forwards; }
        .deal-card:nth-child(2) { animation: dealCardIn 0.5s ease 0.1s forwards; }
        .deal-card:nth-child(3) { animation: dealCardIn 0.5s ease 0.15s forwards; }
        .deal-card:nth-child(4) { animation: dealCardIn 0.5s ease 0.2s forwards; }
        .deal-card:nth-child(5) { animation: dealCardIn 0.5s ease 0.25s forwards; }
        .deal-card:nth-child(6) { animation: dealCardIn 0.5s ease 0.3s forwards; }
        .deal-card:nth-child(7) { animation: dealCardIn 0.5s ease 0.35s forwards; }
        .deal-card:nth-child(8) { animation: dealCardIn 0.5s ease 0.4s forwards; }
        .deal-card:nth-child(9) { animation: dealCardIn 0.5s ease 0.45s forwards; }
        .deal-card:nth-child(10) { animation: dealCardIn 0.5s ease 0.5s forwards; }

        @keyframes dealCardIn {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .deal-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .deal-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(180deg, rgba(0, 119, 182, 0.03) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .deal-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 119, 182, 0.2);
            border-color: var(--primary-color);
        }

        .deal-card:hover::before {
            transform: scaleX(1);
        }

        .deal-card:hover::after {
            opacity: 1;
        }

        .deal-icon {
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f4ff 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: var(--primary-color);
            transition: all 0.4s ease;
            position: relative;
        }

        .deal-icon::before {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(0, 119, 182, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: iconPulse 3s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        .deal-card:hover .deal-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: var(--white);
            box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
        }

        .deal-icon i {
            position: relative;
            z-index: 1;
        }

        .deal-card h3 {
            color: var(--secondary-color);
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .deal-card:hover h3 {
            color: var(--primary-color);
        }

        .deal-arrow {
            position: absolute;
            bottom: 15px;
            right: 15px;
            color: var(--primary-color);
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .deal-card:hover .deal-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        @media (max-width: 1200px) {
            .deals-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 992px) {
            .deals-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .deals-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .deals {
                padding: 60px 5%;
            }
            .deal-card {
                padding: 25px 20px;
            }
            .deal-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            .deal-card h3 {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .deals-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Products Responsive */
        @media (max-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            .products {
                padding: 60px 5%;
            }
        }

        /* Clients Section */
        .clients {
            padding: 100px 5%;
            background: linear-gradient(135deg, #f8fbff 0%, #eef4fa 100%);
            position: relative;
            overflow: hidden;
        }

        .clients::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 119, 182, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .clients::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(0, 119, 182, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .clients-carousel {
            max-width: 1400px;
            margin: 60px auto 0;
            position: relative;
            z-index: 1;
        }

        .clients-carousel .carousel-container {
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            box-shadow: 0 25px 80px rgba(0, 119, 182, 0.15);
        }

        .clients-carousel .carousel-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
            padding: 20px 0;
        }

        .client-item {
            background: var(--white);
            backdrop-filter: blur(10px);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            flex: 0 0 280px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(30px);
            animation: clientsFadeIn 0.5s ease forwards;
        }

        .client-item:nth-child(1) { animation-delay: 0.05s; }
        .client-item:nth-child(2) { animation-delay: 0.1s; }
        .client-item:nth-child(3) { animation-delay: 0.15s; }
        .client-item:nth-child(4) { animation-delay: 0.2s; }
        .client-item:nth-child(5) { animation-delay: 0.25s; }
        .client-item:nth-child(6) { animation-delay: 0.3s; }
        .client-item:nth-child(7) { animation-delay: 0.35s; }
        .client-item:nth-child(8) { animation-delay: 0.4s; }
        .client-item:nth-child(9) { animation-delay: 0.45s; }

        @keyframes clientsFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .client-item:hover {
            transform: translateY(-10px);
            background: var(--white);
            box-shadow: 0 20px 50px rgba(0, 119, 182, 0.2);
            border-color: var(--primary-color);
        }

        .client-item img {
            max-width: 100%;
            max-height: 120px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: all 0.4s ease;
        }

        .client-item:hover img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        /* Services Section */
        .services {
            padding: 100px 5%;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: var(--white);
        }

        .services .section-header h2,
        .services .section-header p {
            color: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .service-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
        }

        .service-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .service-card p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 5%;
            background: var(--light-gray);
        }

        .testimonials-carousel {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonials-carousel .carousel-container {
            overflow: hidden;
            padding: 20px 40px;
        }

        .testimonials-carousel .carousel-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: 400px;
            max-width: 400px;
            background: var(--white);
            padding: 40px 35px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 119, 182, 0.15);
        }

        .testimonial-quote {
            position: absolute;
            top: 25px;
            right: 30px;
            font-size: 50px;
            color: var(--light-blue);
            line-height: 1;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .author-avatar {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
        }

        .author-info h4 {
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 3px;
        }

        .author-info p {
            font-size: 0.85rem;
            color: var(--primary-color);
            font-weight: 500;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--light-blue);
            cursor: pointer;
            transition: all 0.3s;
        }

        .testimonial-dot.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }

        .testimonials-carousel .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--white);
            border: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--primary-color);
            transition: all 0.3s;
            z-index: 10;
        }

        .testimonials-carousel .carousel-btn:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .testimonials-carousel .carousel-btn.prev {
            left: -60px;
        }

        .testimonials-carousel .carousel-btn.next {
            right: -60px;
        }

/* Testimonials Responsive */
        @media (max-width: 1200px) {
            .testimonial-card {
                min-width: 350px;
                max-width: 350px;
            }
            .testimonials-carousel .carousel-container {
                padding: 20px 35px;
            }
            .testimonials-carousel .carousel-btn.prev {
                left: -15px;
            }
            .testimonials-carousel .carousel-btn.next {
                right: -15px;
            }
        }

        @media (max-width: 768px) {
            .testimonials {
                padding: 60px 5%;
            }
            
            .testimonial-card {
                min-width: calc(100vw - 80px);
                max-width: calc(100vw - 80px);
                padding: 30px 25px;
            }
            
            .testimonial-quote {
                font-size: 35px;
                top: 20px;
                right: 20px;
            }
            
            .testimonial-text {
                font-size: 0.9rem;
            }
            
            .author-avatar {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
            
            .author-info h4 {
                font-size: 1rem;
            }
            
            .testimonials-carousel .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }
            
.testimonials-carousel .carousel-btn.prev {
                left: -10px;
            }
            
            .testimonials-carousel .carousel-btn.next {
                right: -10px;
            }
            
            .testimonials-carousel .carousel-container {
                padding: 20px 30px;
            }
        }

/* Contact Section */
        .contact {
            padding: 100px 5%;
            background: linear-gradient(135deg, #f8fcff 0%, #e8f4fc 50%, #f0f9ff 100%);
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 119, 182, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: contactGlow 8s ease-in-out infinite;
        }

        .contact::after {
            content: '';
            position: absolute;
            bottom: -15%;
            left: -8%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            animation: contactGlow 10s ease-in-out infinite reverse;
        }

        @keyframes contactGlow {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.15); opacity: 1; }
        }

        .contact .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
            position: relative;
            z-index: 2;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        .contact-info {
            background: linear-gradient(145deg, var(--secondary-color), #0156a3);
            padding: 45px 40px;
            border-radius: 25px;
            color: var(--white);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateX(-40px);
            animation: slideInLeft 0.8s ease forwards;
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .contact-info::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -30%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        .contact-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .contact-info > p {
            opacity: 0.9;
            margin-bottom: 35px;
            font-size: 1.05rem;
            position: relative;
            z-index: 1;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .contact-item:nth-child(2) { animation-delay: 0.15s; }
        .contact-item:nth-child(3) { animation-delay: 0.25s; }
        .contact-item:nth-child(4) { animation-delay: 0.35s; }
        .contact-item:nth-child(5) { animation-delay: 0.45s; }

        .contact-item i {
            width: 52px;
            height: 52px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            flex-shrink: 0;
        }

        .contact-item:hover i {
            background: var(--white);
            color: var(--primary-color);
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .contact-item div h4 {
            font-size: 1.05rem;
            margin-bottom: 6px;
            font-weight: 600;
        }

        .contact-item div p {
            font-size: 0.92rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .payment-methods {
            margin-top: 35px;
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 1;
            opacity: 0;
            animation: fadeInUp 0.6s ease 0.6s forwards;
        }

        .payment-methods h4 {
            margin-bottom: 18px;
            font-size: 1rem;
            font-weight: 600;
        }

        .payment-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .payment-icon {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 10px 16px;
            border-radius: 10px;
            font-size: 0.82rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .payment-icon:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .contact-form {
            background: var(--white);
            padding: 45px 40px;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 119, 182, 0.1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateX(40px);
            animation: slideInRight 0.8s ease forwards;
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
            background-size: 200% 100%;
            animation: gradientMove 3s linear infinite;
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }

        .contact-form h3 {
            color: var(--secondary-color);
            font-size: 1.6rem;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .form-group:focus-within label {
            color: var(--primary-color);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e8eef3;
            border-radius: 14px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8fbfd;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            background: var(--white);
            box-shadow: 0 8px 25px rgba(0, 119, 182, 0.12);
            transform: translateY(-2px);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #a0aeb8;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 130px;
        }

        .form-group::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .form-group:focus-within::after {
            width: 100%;
        }

        .contact-form .btn-primary {
            width: 100%;
            padding: 18px 35px;
            font-size: 1.1rem;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .contact-form .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .contact-form .btn-primary:hover::before {
            left: 100%;
        }

        .contact-form .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 119, 182, 0.35);
        }

        @media (max-width: 1024px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
            .contact-info {
                transform: translateY(-20px);
                animation: slideUp 0.8s ease forwards;
            }
            .contact-form {
                transform: translateY(20px);
                animation: slideUp 0.8s ease 0.2s forwards;
            }
            @keyframes slideUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }

        @media (max-width: 768px) {
            .contact {
                padding: 60px 5%;
            }
            .contact-info,
            .contact-form {
                padding: 30px 25px;
            }
            .contact-info h2 {
                font-size: 1.8rem;
            }
            .contact-item i {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        /* Vision Section */
        .vision {
            padding: 100px 5%;
            background: linear-gradient(180deg, var(--light-blue) 0%, var(--white) 100%);
        }

        .vision-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .vision-image {
            position: relative;
        }

        .vision-img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 119, 182, 0.15);
        }

        .vision-badge {
            position: absolute;
            bottom: 30px;
            left: -30px;
            background: var(--white);
            padding: 20px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .vision-badge h4 {
            font-size: 2rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        .vision-badge p {
            font-size: 0.9rem;
            color: var(--gray);
        }

        .vision-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .vision-content h2 span {
            color: var(--primary-color);
        }

        .vision-content > p {
            color: var(--gray);
            margin-bottom: 30px;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        @media (max-width: 1024px) {
            .vision-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .vision {
                padding: 60px 5%;
            }
            .vision-image {
                order: -1;
            }
            .vision-content h2 {
                font-size: 1.8rem;
            }
            .vision-content > p {
                font-size: 0.95rem;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .vision {
                padding: 40px 5%;
            }
            .vision-content h2 {
                font-size: 1.5rem;
            }
        }

        /* Map Section */
        .map-section {
            padding: 0;
            background: linear-gradient(135deg, #f8fcff 0%, #e8f4fc 100%);
            margin-top: -1px;
            position: relative;
            overflow: hidden;
        }

        .map-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 119, 182, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .map-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .map-container {
            width: 100%;
            max-width: 100%;
            position: relative;
            z-index: 1;
        }

        .map-frame {
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 119, 182, 0.15);
            border-top: 4px solid var(--primary-color);
            border-bottom: 4px solid var(--primary-color);
        }

        .map-frame iframe {
            display: block;
            transition: transform 0.5s ease;
        }

        .map-frame:hover iframe {
            transform: scale(1.01);
        }

        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0, 119, 182, 0.05) 0%, transparent 20%, transparent 80%, rgba(0, 119, 182, 0.05) 100%);
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .map-section::before,
            .map-section::after {
                width: 200px;
                height: 200px;
            }
            .map-section::before {
                top: -30%;
            }
            .map-section::after {
                bottom: -20%;
            }
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 60px 5% 20px;
            margin-top: -1px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-about .logo-text {
            color: var(--white);
            margin-bottom: 15px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .footer-logo .logo-img {
            width: 80px;
            height: 80px;
        }

        .footer-logo .logo-text {
            font-size: 1.6rem;
            margin-bottom: 0;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 10px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .footer-bottom p {
            margin-bottom: 8px;
        }

        .footer-bottom p:last-child {
            margin-bottom: 0;
        }

        .developed-by {
            font-size: 0.85rem;
        }

        .developed-by a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .developed-by a:hover {
            color: #ffd700;
        }

        /* Rating Badge */
        .rating-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fffacd;
            padding: 8px 16px;
            border-radius: 20px;
            margin-top: 15px;
        }

        .rating-badge i {
            color: #ffc107;
        }

        .rating-badge span {
            font-weight: 600;
            color: var(--secondary-color);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        @media (max-width: 768px) {
            .clients {
                padding: 60px 5%;
            }
            .client-item {
                flex: 0 0 180px;
                padding: 15px;
            }
            .client-item img {
                max-width: 100%;
                height: auto;
            }
        }

        @media (max-width: 480px) {
            .clients {
                padding: 40px 5%;
            }
            .client-item {
                flex: 0 0 140px;
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .clients-carousel .carousel-track {
                gap: 20px;
            }
            .client-item {
                flex: 0 0 250px;
            }
        }

        @media (max-width: 992px) {
            .hero-container,
            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
            }
            .hero {
                padding-top: 100px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            body {
                overflow-x: hidden;
                max-width: 100vw;
            }
            header {
                height: 70px;
            }
            .header-container {
                height: 70px;
                padding: 0 4%;
            }
            .logo-img {
                width: 50px;
                height: 50px;
            }
            .logo-text {
                font-size: 0.95rem;
            }
            .mobile-toggle {
                width: 40px;
                height: 40px;
            }
            nav {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--white);
                padding: 15px 20px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 1000;
            }
            nav.active {
                transform: translateY(0);
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav ul li {
                width: 100%;
            }
            nav ul li a {
                display: block;
                padding: 14px 0;
                font-size: 1rem;
                border-bottom: 1px solid rgba(0, 119, 182, 0.1);
            }
            nav ul li a.contact-btn {
                margin-top: 15px;
                text-align: center;
                display: block;
            }
            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .mobile-toggle.active i::before {
                content: "\f00d";
            }
            .hero {
                padding: 100px 5% 60px;
            }
            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-content {
                text-align: center;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }
            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary {
                width: 100%;
                text-align: center;
            }
            .hero-stats {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            .stat-item {
                flex: 1 1 calc(33.333% - 15px);
                min-width: 80px;
                text-align: center;
            }
            .hero-image {
                order: -1;
                margin-bottom: 20px;
            }
            .hero-image img {
                max-width: 100%;
                height: auto;
            }
            .features-grid,
            .services-grid,
            .products-grid {
                grid-template-columns: 1fr;
            }
            .about-features {
                grid-template-columns: 1fr;
            }
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .about-badge {
                left: 0;
            }
            .section-header h2 {
                font-size: 1.8rem;
            }
            .section-header p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 90px 4% 30px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero p {
                font-size: 0.9rem;
            }
            .hero-stats {
                gap: 10px;
            }
            .stat-item {
                flex: 1 1 calc(50% - 10px);
                min-width: 70px;
            }
            .stat-number {
                font-size: 1.4rem;
            }
            .stat-label {
                font-size: 0.7rem;
            }
        }

        /* Toast Notification Styles */
        .toast {
            position: fixed;
            top: 100px;
            right: -400px;
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 20px 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
            z-index: 10000;
            display: flex;
            align-items: center;
            gap: 15px;
            max-width: 380px;
            transition: right 0.5s ease-in-out;
        }

        .toast.show {
            right: 20px;
        }

        .toast-icon {
            font-size: 24px;
        }

        .toast-content {
            flex: 1;
        }

        .toast-title {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .toast-message {
            font-size: 14px;
            opacity: 0.9;
        }

        .toast-close {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .toast-close:hover {
            opacity: 1;
        }

        .toast.error {
            background: linear-gradient(135deg, #dc3545, #e74c3c);
            box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
        }

        /* WhatsApp Chat Button */
        .whatsapp-chat {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            z-index: 9999;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-chat:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-chat i {
            color: white;
            font-size: 30px;
        }

        .whatsapp-chat-tooltip {
            position: absolute;
            bottom: 70px;
            right: 130px;
            background: #1a1a2e;
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 10000;
            pointer-events: none;
            display: inline-block;
            min-width: max-content;
        }

        .whatsapp-chat:hover .whatsapp-chat-tooltip {
            opacity: 1;
            visibility: visible;
        }

        /* Mission Section */
        .mission {
            padding: 100px 5%;
            background: linear-gradient(135deg, #f0f7ff 0%, #e1effa 100%);
            position: relative;
            overflow: hidden;
        }

        .mission::before {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 119, 182, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .mission::after {
            content: '';
            position: absolute;
            top: -20%;
            right: -5%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 119, 182, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .mission-carousel {
            max-width: 1400px;
            margin: 60px auto 0;
            position: relative;
            z-index: 1;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            box-shadow: 0 25px 80px rgba(0, 119, 182, 0.15);
        }

        .carousel-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
            padding: 20px 0;
        }

        .mission-item {
            background: var(--white);
            backdrop-filter: blur(10px);
            padding: 40px 30px;
            border-radius: 25px;
            text-align: center;
            flex: 0 0 340px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            height: 340px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            opacity: 0;
            transform: translateY(40px);
            animation: missionFadeIn 0.6s ease forwards;
        }

        .mission-item:nth-child(1) { animation-delay: 0.1s; }
        .mission-item:nth-child(2) { animation-delay: 0.2s; }
        .mission-item:nth-child(3) { animation-delay: 0.3s; }
        .mission-item:nth-child(4) { animation-delay: 0.4s; }
        .mission-item:nth-child(5) { animation-delay: 0.5s; }
        .mission-item:nth-child(6) { animation-delay: 0.6s; }

        @keyframes missionFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mission-item:hover {
            transform: translateY(-12px);
            background: var(--white);
            box-shadow: 0 25px 60px rgba(0, 119, 182, 0.25);
            border-color: var(--primary-color);
        }

        .mission-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: var(--white);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .mission-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .mission-item:hover .mission-icon::after {
            width: 250px;
            height: 250px;
        }

        .mission-item:hover .mission-icon {
            transform: scale(1.1) rotate(8deg);
            box-shadow: 0 12px 35px rgba(0, 119, 182, 0.4);
        }

        .mission-item h3 {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .mission-item p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
            flex-grow: 1;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            color: var(--primary-color);
            z-index: 10;
        }

        .carousel-btn:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 12px 35px rgba(0, 119, 182, 0.35);
            color: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 12px 35px rgba(0, 119, 182, 0.4);
        }

        .carousel-btn.prev {
            left: -67px;
        }

        .carousel-btn.next {
            right: -67px;
        }

        .mission-carousel {
            position: relative;
        }

        @media (max-width: 992px) {
            .carousel-btn.prev {
                left: -15px;
            }
            .carousel-btn.next {
                right: -15px;
            }
        }

        @media (max-width: 768px) {
            .carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
            .carousel-btn.prev {
                left: -10px;
            }
            .carousel-btn.next {
                right: -10px;
            }
        }

        @media (max-width: 992px) {
            .carousel-track {
                gap: 20px;
            }
            .mission-item {
                flex: 0 0 280px;
            }
        }

        @media (max-width: 768px) {
            .mission-item {
                flex: 0 0 calc(100vw - 80px);
            }
        }

        @media (max-width: 768px) {
            .mission {
                padding: 60px 5%;
            }
            .mission .section-header h2 {
                font-size: 1.8rem;
            }
            .mission-item {
                padding: 25px 20px;
            }
            .mission-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            .mission-item h3 {
                font-size: 1.1rem;
            }
            .mission-item p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .mission {
                padding: 40px 5%;
            }
            .mission .section-header h2 {
                font-size: 1.5rem;
            }
        }

        /* Services Carousel */
        .services-carousel {
            max-width: 1400px;
            margin: 60px auto 0;
            position: relative;
            z-index: 1;
        }

        .services-carousel::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 119, 182, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
        }

.services-carousel .carousel-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
            padding: 20px 0px;
        }

        .services-carousel .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            color: var(--primary-color);
            z-index: 10;
        }

        .services-carousel .carousel-btn:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 12px 35px rgba(0, 119, 182, 0.35);
        }

        .services-carousel .carousel-btn.prev {
            left: 15px;
        }

        .services-carousel .carousel-btn.next {
            right: 15px;
        }

        @media (max-width: 992px) {
            .services-carousel .carousel-btn.prev {
                left: 15px;
            }
            .services-carousel .carousel-btn.next {
                right: 15px;
            }
        }

        .services-carousel .service-card {
            background: var(--white);
            backdrop-filter: blur(10px);
            padding: 40px 30px;
            border-radius: 25px;
            text-align: center;
            flex: 0 0 340px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            height: 380px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            opacity: 0;
            transform: translateY(40px);
            animation: servicesFadeIn 0.6s ease forwards;
        }

        .services-carousel .service-card:nth-child(1) { animation-delay: 0.1s; }
        .services-carousel .service-card:nth-child(2) { animation-delay: 0.2s; }
        .services-carousel .service-card:nth-child(3) { animation-delay: 0.3s; }
        .services-carousel .service-card:nth-child(4) { animation-delay: 0.4s; }
        .services-carousel .service-card:nth-child(5) { animation-delay: 0.5s; }
        .services-carousel .service-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes servicesFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .services-carousel .service-card:hover {
            transform: translateY(-12px);
            background: var(--white);
            box-shadow: 0 25px 60px rgba(0, 119, 182, 0.25);
            border-color: var(--primary-color);
        }

        .services-carousel .service-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: var(--white);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .services-carousel .service-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .services-carousel .service-card:hover .service-icon::after {
            width: 250px;
            height: 250px;
        }

        .services-carousel .service-card:hover .service-icon {
            transform: scale(1.1) rotate(8deg);
            box-shadow: 0 12px 35px rgba(0, 119, 182, 0.4);
        }

        .services-carousel .service-card h3 {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

.services-carousel .service-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
            flex-grow: 1;
        }

        .services-carousel .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            color: var(--primary-color);
        }

        .services-carousel .carousel-btn:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 12px 35px rgba(0, 119, 182, 0.4);
        }

        .services-carousel .carousel-btn.prev {
            left: -67px;
        }

        .services-carousel .carousel-btn.next {
            right: -67px;
        }

@media (max-width: 992px) {
            .services-carousel .carousel-btn.prev {
                left: -15px;
            }
            .services-carousel .carousel-btn.next {
                right: -15px;
            }
            .services-carousel .carousel-track {
                gap: 20px;
                padding: 20px 35px;
            }
            .services-carousel .service-card {
                flex: 0 0 280px;
            }
        }

        @media (max-width: 768px) {
            .services-carousel .carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
            .services-carousel .carousel-btn.prev {
                left: -10px;
            }
            .services-carousel .carousel-btn.next {
                right: -10px;
            }
            .services-carousel .carousel-track {
                padding: 20px 30px;
            }
            .services-carousel .service-card {
                flex: 0 0 calc(100vw - 80px);
                height: auto;
                min-height: 380px;
            }
        }
    
   

