 :root {
            --primary-color: #2563eb;
            --primary-dark: #1e40af;
            --primary-light: #3b82f6;
            --secondary-color: #f59e0b;
            --secondary-dark: #d97706;
            --accent-color: #10b981;
            --dark-color: #1f2937;
            --light-bg: #f8fafc;
            --card-shadow: 0 10px 40px rgba(0,0,0,0.08);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.7;
            color: #334155;
            overflow-x: hidden;
            background: white;
        }
        
        /* ===== NAVIGATION ===== */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
            padding: 15px 0;
            transition: var(--transition);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        
        .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            font-size: 0.95rem;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 8px;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
            background: rgba(37, 99, 235, 0.05);
        }
        
        .btn-nav-contact {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white !important;
            padding: 10px 24px !important;
            border-radius: 10px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
            transition: var(--transition);
        }
        
        .btn-nav-contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
        }
        
        /* ===== HERO SECTION ===== */
        .hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 100px 0 80px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.03;
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 2px, white 2px, white 4px),
                repeating-linear-gradient(90deg, transparent, transparent 2px, white 2px, white 4px);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .hero-badge i {
            color: var(--secondary-color);
        }
        
        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-highlight {
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
        }
        
        .hero p {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 40px;
            color: #cbd5e1;
            max-width: 600px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .btn-hero-primary {
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
            color: white;
            padding: 16px 40px;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: 12px;
            border: none;
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
            color: white;
        }
        
        .btn-hero-secondary {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            padding: 16px 40px;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: 12px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            color: white;
        }
        
        .hero-image-wrapper {
            position: relative;
            z-index: 2;
        }
        
        .hero-image {
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }
        
        .hero-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .floating-card {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-card-1 {
            top: 10%;
            right: -10%;
            animation-delay: 0s;
        }
        
        .floating-card-2 {
            bottom: 15%;
            right: -5%;
            animation-delay: 2s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .stat-item {
            text-align: center;
            color: white;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, var(--secondary-color), #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-label {
            color: #94a3b8;
            font-size: 0.95rem;
        }
        
        /* ===== SECTION STYLES ===== */
        .section-padding {
            padding: 100px 0;
        }
        
        .section-title-wrapper {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .section-subtitle {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: inline-block;
        }
        
        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .section-description {
            font-size: 1.15rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* ===== PRODUCT CARDS ===== */
        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            transition: var(--transition);
            height: 100%;
            border: 1px solid #f1f5f9;
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--card-shadow);
        }
        
        .product-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 250px;
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
        }
        
        .product-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .product-card:hover img {
            transform: scale(1.1);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary-color);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .product-card-body {
            padding: 30px;
        }
        
        .product-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }
        
        .product-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
        }
        
        .product-card p {
            color: #64748b;
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .btn-product {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            padding: 12px 28px;
            border-radius: 10px;
            border: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        
        .btn-product:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
            color: white;
        }
        
        /* ===== FEATURES ===== */
        .features-bg {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }
        
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 45px 35px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: var(--transition);
            border: 1px solid #f1f5f9;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-shadow);
        }
        
        .feature-icon-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .feature-icon-wrapper::before {
            content: '';
            position: absolute;
            inset: -5px;
            background: inherit;
            border-radius: inherit;
            opacity: 0.2;
            filter: blur(10px);
        }
        
        .feature-icon {
            font-size: 2rem;
            color: white;
            position: relative;
            z-index: 1;
        }
        
        .feature-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: #64748b;
            line-height: 1.8;
        }
        
        /* ===== ABOUT SECTION ===== */
        .about-image-wrapper {
            position: relative;
        }
        
        .about-image {
            border-radius: 20px;
            box-shadow: var(--card-shadow);
            width: 100%;
        }
        
        .about-badge {
            position: absolute;
            bottom: -30px;
            right: 30px;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--card-shadow);
            text-align: center;
        }
        
        .about-badge-number {
            font-size: 3rem;
            font-weight: 800;
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }
        
        .about-badge-text {
            color: #64748b;
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 5px;
        }
        
        .about-content h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark-color);
            margin-bottom: 25px;
            line-height: 1.3;
        }
        
        .about-content .lead {
            font-size: 1.2rem;
            color: #475569;
            margin-bottom: 25px;
        }
        
        .about-content p {
            color: #64748b;
            line-height: 1.9;
            margin-bottom: 20px;
        }
        
        .check-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        
        .check-list li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 15px;
            color: #475569;
            font-weight: 500;
        }
        
        .check-list i {
            color: var(--accent-color);
            font-size: 1.2rem;
        }
        
        /* ===== CONTACT SECTION ===== */
        .contact-bg {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }
        
        .contact-info-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            border: 1px solid #f1f5f9;
        }
        
        .contact-item {
            display: flex;
            align-items: start;
            gap: 20px;
            padding: 25px 0;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .contact-item:last-child {
            border-bottom: none;
        }
        
        .contact-item-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .contact-item-content h4 {
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        
        .contact-item-content p {
            color: #64748b;
            margin: 0;
        }
        
        .contact-item-content a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .contact-item-content a:hover {
            color: var(--primary-dark);
        }
        
        .contact-form {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border: 1px solid #f1f5f9;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 10px;
        }
        
        .form-control, .form-select {
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            padding: 14px 18px;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }
        
        .btn-submit {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            padding: 16px 40px;
            border-radius: 12px;
            border: none;
            font-weight: 600;
            font-size: 1.05rem;
            width: 100%;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
        }
        
        .map-wrapper {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            height: 400px;
            margin-top: 30px;
        }
        
        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* ===== FOOTER ===== */
        .footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            padding: 80px 0 0;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        }
        
        .footer h5 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), transparent);
        }
        
        .footer-link {
            color: #cbd5e1;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: var(--transition);
            padding-left: 0;
        }
        
        .footer-link:hover {
            color: white;
            padding-left: 10px;
        }
        
        .footer-description {
            color: #94a3b8;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.1);
            text-decoration: none;
        }
        
        .social-icon:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
            border-color: var(--primary-color);
            color: white;
        }
        
        .footer-bottom {
            background: rgba(0,0,0,0.2);
            padding: 25px 0;
            margin-top: 60px;
            text-align: center;
            color: #94a3b8;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        
        .footer-bottom p {
            margin: 5px 0;
        }
        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .hero-image-wrapper {
                margin-top: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 80px 0 60px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .section-title-wrapper {
                margin-bottom: 50px;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn-hero-primary, .btn-hero-secondary {
                width: 100%;
                justify-content: center;
            }
            
            .floating-card {
                display: none;
            }
        }
        
        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll {
            animation: fadeInUp 0.8s ease-out;
        }
.logo {
	width: 250px !important;
}