
        .rain-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }
        
        .raindrop {
            position: absolute;
            top: -50px;
            width: 2px;
            height: 20px;
            background: linear-gradient(to bottom, transparent, rgba(136, 192, 214, 0.6));
            border-radius: 0 0 5px 5px;
            animation: rainFall linear infinite;
        }
        
        .ripple-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .ripple {
            position: absolute;
            border: 2px solid rgba(136, 192, 214, 0.3);
            border-radius: 50%;
            animation: rippleEffect 4s infinite ease-out;
            opacity: 0;
        }
        
        .water-bubble {
            position: fixed;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(136, 192, 214, 0.4));
            border-radius: 50%;
            box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.6);
            z-index: -1;
            animation: bubbleFloat 15s infinite ease-in-out;
        }
        
        .dynamic-wave {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 200%;
            height: 20%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%233B6D87"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%233B6D87"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%233B6D87"/></svg>');
            background-size: 50% 100%;
            animation: waveMove 20s infinite linear;
            z-index: -1;
            opacity: 0.1;
        }
        
        .dynamic-wave-top {
            top: 0;
            transform: rotate(180deg);
        }
        
        .water-reflection {
            position: relative;
            display: inline-block;
        }
        
        .water-reflection::after {
            content: attr(data-text);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(136, 192, 214, 0.3));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transform: scaleY(-1) skewX(10deg);
            opacity: 0.6;
            filter: blur(1px);
        }
        
        .water-scroll-effect {
            position: relative;
            overflow: hidden;
        }
        
        .water-scroll-effect::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, transparent, var(--logo-color2), transparent);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
            z-index: 10;
        }
        
        .water-scroll-effect.in-view::before {
            transform: translateX(100%);
        }
        
        .btn-water-effect {
            position: relative;
            overflow: hidden;
        }
        
        .btn-water-effect::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .btn-water-effect:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .water-card-effect {
            position: relative;
            overflow: hidden;
        }
        
        .water-card-effect::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(136, 192, 214, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        
        .water-card-effect:hover::after {
            opacity: 1;
        }

        @keyframes rainFall {
            0% {
                transform: translateY(0) rotate(10deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(10deg);
                opacity: 0;
            }
        }

        @keyframes rippleEffect {
            0% {
                transform: scale(0.1);
                opacity: 0.8;
            }
            100% {
                transform: scale(4);
                opacity: 0;
            }
        }

        @keyframes bubbleFloat {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            5% {
                opacity: 0.6;
            }
            95% {
                opacity: 0.2;
            }
            100% {
                transform: translateY(-100px) scale(1.2);
                opacity: 0;
            }
        }

        @keyframes waveMove {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .biohazard-visuals {
            padding: 80px 5%;
            background: linear-gradient(to bottom, #f8fafc, #f0f7ff);
            position: relative;
        }

        .visuals-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .visual-row {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .visual-card {
            flex: 1;
            min-width: 280px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            border-top: 4px solid var(--logo-color1);
        }

        .visual-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .visual-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .visual-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .visual-card:hover .visual-image img {
            transform: scale(1.05);
        }

        .visual-content {
            padding: 25px;
            text-align: center;
        }

        .visual-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--logo-color1);
            font-weight: 700;
        }

        .visual-content p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        @media (max-width: 768px) {
            .visual-row {
                flex-direction: column;
            }
            
            .visual-card {
                width: 100%;
            }
        }

        @font-face {
            font-family: 'Saudi Health';
            src: url('https://cdn.jsdelivr.net/gh/muhammadkh4n/kingdom-of-saudi-arabia-fonts@main/SaudiHealthSans-Regular.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
        }

        :root {
            --primary: #1a6fc9;
            --secondary: #4a90e2;
            --accent: #ffb347;
            --light: #f8fafc;
            --dark: #2c3e50;
            --light-blue: #e3f2fd;
            --gray: #7f8c8d;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --gold-gradient: linear-gradient(135deg, #ffb347 0%, #ffcc33 100%);
            --glass: rgba(255, 255, 255, 0.8);
            --glass-border: rgba(255, 255, 255, 0.3);
            --logo-color1: #3B6D87;
            --logo-color2: #88C0D6;
            --card-bg: #ffffff;
            --gradient-primary: linear-gradient(135deg, var(--logo-color1), var(--logo-color2));
            --gradient-accent: linear-gradient(135deg, var(--accent), #ffa724);
            --water-gradient: linear-gradient(135deg, rgba(136, 192, 214, 0.1), rgba(59, 109, 135, 0.2));
            --water-color: rgba(136, 192, 214, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Saudi Health', sans-serif;
        }

        body {
            background: #ffffff;
            color: var(--dark);
            line-height: 1.8;
            padding-top: 100px;
            overflow-x: hidden;
            scroll-behavior: smooth;
            font-size: 1.05rem;
            background: linear-gradient(to bottom, #f8fafc, #f0f7ff);
            position: relative;
            min-height: 100vh;
        }

        .waterfall-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
            background: linear-gradient(to bottom, #e6f7ff, #c4e8ff);
        }

        .waterfall {
            position: absolute;
            top: -100%;
            width: 20px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(136, 192, 214, 0.5), transparent);
            animation: waterfall 15s linear infinite;
            filter: blur(2px);
        }

        .bubble {
            position: fixed;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            z-index: -1;
            animation: floatBubble 15s infinite ease-in-out;
        }

        .water-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%233B6D87"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%233B6D87"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%233B6D87"/></svg>');
            background-size: cover;
            z-index: -1;
            animation: wave 15s infinite linear;
        }

        .water-wave-top {
            top: 0;
            transform: rotate(180deg);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            height: 100px;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--glass-border);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
        }

        .logo img {
            height: 80px;
            width: auto;
            object-fit: contain;
            transition: var(--transition);
            filter: drop-shadow(0 3px 5px rgba(59, 109, 135, 0.2));
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text h1 {
            font-size: 1.6rem;
            margin: 0;
            background: linear-gradient(to right, var(--logo-color1), var(--logo-color2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .logo-text h1::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold-gradient);
            border-radius: 3px;
        }

        .logo-text span {
            font-size: 0.9rem;
            color: var(--logo-color2);
            font-weight: 600;
        }

        .main-nav {
            display: flex;
            justify-content: center;
            flex: 1;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links > li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--logo-color1);
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            padding: 10px 15px;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--water-gradient);
            z-index: -1;
            transition: var(--transition);
            border-radius: 8px;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a:hover::before {
            width: 100%;
        }

        .nav-links a i {
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .nav-links a:hover i {
            transform: rotate(180deg);
        }

        .dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            min-width: 250px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
            padding: 15px 0;
        }

        .nav-links li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown li {
            padding: 10px 20px;
            transition: var(--transition);
        }

        .dropdown li:hover {
            background: rgba(136, 192, 214, 0.1);
        }

        .dropdown li a {
            padding: 8px 15px;
            width: 100%;
            color: var(--dark);
            font-weight: 500;
        }

        .dropdown li a:hover {
            color: var(--logo-color1);
            padding-right: 20px;
        }

        .hamburger {
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 35px;
            height: 25px;
            z-index: 1100;
            position: relative;
            display: none;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--logo-color1);
            border-radius: 3px;
            transition: var(--transition);
            position: absolute;
            left: 0;
        }

        .hamburger span:nth-child(1) {
            top: 0;
        }

        .hamburger span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger span:nth-child(3) {
            bottom: 0;
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(10px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-10px) rotate(-45deg);
        }

        .menu {
            position: fixed;
            top: 100px;
            right: -350px;
            width: 300px;
            height: calc(100vh - 100px);
            background: linear-gradient(to bottom, var(--logo-color1), var(--logo-color2));
            transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
            padding-top: 30px;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            overflow-y: auto;
        }

        .menu.active {
            right: 0;
        }

        .menu ul {
            list-style: none;
            padding: 0;
        }

        .menu ul li {
            padding: 12px 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            position: relative;
        }

        .menu ul li .submenu-trigger {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            transition: var(--transition);
        }

        .menu ul li .submenu-trigger.active {
            transform: translateY(-50%) rotate(180deg);
        }

        .menu ul li:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .menu ul li a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            display: block;
            transition: var(--transition);
            display: flex;
            align-items: center;
            font-weight: 500;
            padding-right: 30px;
        }

        .menu ul li a i {
            margin-left: 10px;
            font-size: 20px;
            color: var(--accent);
        }

        .menu ul li a:hover {
            color: var(--accent);
            transform: translateX(-10px);
        }

        .submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            margin-top: 8px;
        }

        .submenu.active {
            max-height: 500px;
        }

        .submenu li {
            padding: 10px 20px 10px 40px;
            border-bottom: none;
        }

        .submenu li a {
            font-size: 16px;
            font-weight: 400;
        }

        .contact-info {
            padding: 25px;
            background: rgba(0, 0, 0, 0.1);
            margin-top: 20px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-info p {
            color: white;
            margin: 10px 0;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .contact-info i {
            color: var(--accent);
        }

        .hero {
            padding: 150px 5% 100px;
            margin: 0;
            color: var(--primary);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f0f7ff32 0%, #e6f0f5db 100%);
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img4/Group-80.jpg');
            opacity: 0.05;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .hero-text {
            flex: 1;
            text-align: right;
            padding-left: 50px;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--logo-color2) 0%, transparent 70%);
            opacity: 0.2;
            border-radius: 50%;
            z-index: -1;
            animation: pulse 4s infinite ease-in-out;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            max-height: 550px;
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
            animation: float 6s ease-in-out infinite;
            transform-origin: center bottom;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            font-weight: 900;
            line-height: 1.3;
            color: var(--logo-color1);
            background: linear-gradient(to right, var(--logo-color1), var(--logo-color2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(59, 109, 135, 0.2);
        }

        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
            font-weight: 300;
            color: var(--dark);
            position: relative;
            padding: 20px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .hero p::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 5px 0 0 5px;
        }

        .hero-btns {
            display: flex;
            justify-content: flex-start;
            gap: 25px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .card, .point-card, .product-card {
            transition: var(--transition);
            box-shadow: var(--shadow);
            border-radius: 15px;
            overflow: hidden;
            background: var(--card-bg);
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
            transform: translateZ(0);
        }

        .card:hover, .point-card:hover, .product-card:hover {
            transform: translateY(-10px) translateZ(20px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .card::before, .product-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(136, 192, 214, 0.2) 0%, transparent 70%);
            opacity: 0;
            transition: var(--transition);
            pointer-events: none;
        }

        .card:hover::before, .product-card:hover::before {
            opacity: 1;
        }

        .btn {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            padding: 15px 35px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(59, 109, 135, 0.3);
            border: none;
            cursor: pointer;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transform: translateZ(0);
        }

        .btn::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-accent);
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(59, 109, 135, 0.4);
        }

        .btn:hover::after {
            opacity: 1;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--logo-color1);
            color: var(--logo-color1);
            box-shadow: none;
        }

        .btn-outline::after {
            background: var(--gradient-primary);
        }

        .btn-outline:hover {
            background: var(--gradient-primary);
            color: white;
        }

        .btn-small {
            padding: 12px 25px;
            font-size: 1rem;
        }

        .section-title {
            position: relative;
            margin-bottom: 60px;
            padding-bottom: 20px;
            text-align: center;
            font-size: 2.8rem;
            color: var(--logo-color1);
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, var(--logo-color1), var(--logo-color2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(59, 109, 135, 0.2);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--gold-gradient);
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(255, 179, 71, 0.3);
        }
        
        .testimonial {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--light-blue);
        }
        
        .footer-column h3 {
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 4px;
            background: white;
            border-radius: 5px;
        }
        
        .social-links a:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 179, 71, 0.3);
        }

        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .hero-content {
                flex-direction: column-reverse;
                text-align: center;
            }
            
            .hero-text {
                padding-left: 0;
                text-align: center;
            }
            
            .hero-btns {
                justify-content: center;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.7rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .main-nav {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
        }

        @media (max-width: 768px) {
            header {
                height: 90px;
                padding: 10px 5%;
            }

            .logo img {
                height: 70px;
            }

            .logo-text h1 {
                font-size: 1.5rem;
            }

            .menu {
                top: 90px;
                height: calc(100vh - 90px);
            }

            .hero {
                padding: 120px 5% 80px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.9rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .section-title {
                font-size: 1.9rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .cta-form {
                flex-direction: column;
            }
            
            .cta-form input, 
            .cta-form .btn {
                width: 100%;
            }
        }

        .awareness {
            padding: 100px 5%;
            background: linear-gradient(to bottom, #e6f7ff, #d1edff);
            position: relative;
            overflow: hidden;
        }

        .awareness::before {
            content: "";
            position: absolute;
            top: -150px;
            right: -150px;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, var(--logo-color1), var(--logo-color2));
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.1;
            z-index: 0;
        }

        .awareness-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .awareness h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: var(--logo-color1);
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .awareness h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--gold-gradient);
            border-radius: 5px;
        }

        .awareness-text {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            text-align: right;
            line-height: 1.9;
            font-size: 1.2rem;
            margin-bottom: 40px;
        }

        .awareness-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .point-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: var(--transition);
            border-top: 4px solid var(--logo-color2);
        }

        .point-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .point-icon {
            font-size: 3rem;
            color: var(--logo-color1);
            margin-bottom: 20px;
        }

        .point-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--logo-color1);
        }

        .point-card p {
            color: var(--dark);
            line-height: 1.8;
        }

        .highlight {
            background: linear-gradient(to right, var(--logo-color1), var(--logo-color2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        .manufacturers {
            padding: 100px 5%;
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .manufacturers::before {
            content: "";
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: var(--gold-gradient);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
            z-index: 0;
        }

        .manufacturers::after {
            content: "";
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
            z-index: 0;
        }

        .carousel-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            padding: 30px 0;
            z-index: 1;
        }

        .carousel {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 30px 0;
        }

        .carousel-item {
            flex: 0 0 auto;
            width: 240px;
            height: 180px;
            margin: 0 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 20px;
            transition: var(--transition);
            border: 1px solid #f0f4f8;
            position: relative;
            overflow: hidden;
            transform: translateZ(0);
        }

        .carousel-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gold-gradient);
            border-radius: 3px;
        }

        .carousel-item:hover {
            transform: translateY(-10px) rotate(2deg);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--accent);
        }

        .carousel-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: var(--transition);
            filter: grayscale(100%);
        }

        .carousel-item:hover img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 28px;
            color: var(--logo-color1);
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--light-blue);
        }

        .carousel-btn:hover {
            background: var(--logo-color1);
            color: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 10px 30px rgba(59, 109, 135, 0.3);
        }

        .prev {
            right: 20px;
        }

        .next {
            left: 20px;
        }

        .services {
            padding: 100px 5%;
            background: linear-gradient(to bottom, #f8fafc, #f0f5fa);
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
            opacity: 0.05;
            z-index: 0;
        }

        .services-content {
            position: relative;
            z-index: 1;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            border-top: 5px solid var(--accent);
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 0.8s forwards;
        }

        .card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .card:nth-child(3) {
            animation-delay: 0.4s;
        }

        .card-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .card-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.1));
            z-index: 1;
        }

        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .card:hover .card-img img {
            transform: scale(1.1);
        }

        .card-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gold-gradient);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1rem;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(255, 179, 71, 0.3);
            animation: pulse 2s infinite;
        }

        .card-content {
            padding: 30px;
        }

        .card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--logo-color1);
            position: relative;
            padding-bottom: 15px;
        }

        .card h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 3px;
            background: var(--gold-gradient);
            border-radius: 3px;
        }

        .card p {
            color: var(--gray);
            margin-bottom: 25px;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .features {
            margin: 25px 0;
            padding-left: 25px;
        }

        .features li {
            margin-bottom: 15px;
            position: relative;
            padding-right: 30px;
            color: var(--dark);
            font-size: 1.05rem;
        }

        .features li::before {
            content: "✓";
            position: absolute;
            right: 0;
            width: 25px;
            height: 25px;
            background: var(--gold-gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .products {
            padding: 100px 5%;
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .products::before {
            content: "";
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: var(--gold-gradient);
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.1;
            z-index: 0;
        }

        .product-filters {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .filter-btn {
            padding: 12px 30px;
            background: var(--light);
            border: 1px solid #e1e8ed;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            color: var(--dark);
            font-size: 1.05rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .filter-btn.active, .filter-btn:hover {
            background: linear-gradient(to right, var(--logo-color1), var(--logo-color2));
            color: white;
            border-color: var(--accent);
            box-shadow: 0 8px 20px rgba(59, 109, 135, 0.3);
            transform: translateY(-3px);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            position: relative;
            border: 1px solid #f0f4f8;
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 0.8s forwards;
        }

        .product-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            opacity: 0.7;
            transition: var(--transition);
        }

        .product-card:hover::after {
            height: 8px;
            opacity: 1;
        }

        .product-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .product-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .product-card:nth-child(3) {
            animation-delay: 0.4s;
        }

        .product-card:nth-child(4) {
            animation-delay: 0.6s;
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border-color: var(--accent);
        }

        .product-img {
            height: 250px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #f8fafc, #f0f5fa);
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-img img {
            transform: scale(1.08);
        }

        .product-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gold-gradient);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1rem;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(255, 179, 71, 0.3);
        }

        .product-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-title {
            font-size: 1.7rem;
            margin-bottom: 15px;
            color: var(--logo-color1);
            font-weight: 700;
        }

        .product-specs {
            margin-bottom: 20px;
            color: var(--gray);
            font-size: 1.05rem;
            flex: 1;
        }

        .product-specs ul {
            padding-left: 25px;
            margin-top: 15px;
        }

        .product-specs li {
            margin-bottom: 12px;
            position: relative;
            padding-right: 25px;
            color: var(--dark);
            font-size: 1.05rem;
        }

        .product-specs li::before {
            content: "•";
            color: var(--accent);
            font-weight: bold;
            position: absolute;
            right: 0;
            font-size: 1.8rem;
            line-height: 1;
        }

        .product-price {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--logo-color1);
            margin: 20px 0;
            text-align: center;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .product-action {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .testimonials {
            padding: 100px 5%;
            background: linear-gradient(to bottom, #f0f5fa, #e3f2fd);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: "";
            position: absolute;
            top: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.1;
            z-index: 0;
        }

        .testimonial-container {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .testimonial-slider {
            position: relative;
            overflow: hidden;
            padding: 20px;
        }

        .testimonial-wrapper {
            display: flex;
            transition: transform 0.6s ease;
        }

        .testimonial {
            background: white;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            margin: 20px;
            position: relative;
            border: 1px solid var(--light-blue);
            min-width: calc(100% - 40px);
            flex-shrink: 0;
            opacity: 0.5;
            transform: scale(0.9);
            transition: all 0.6s ease;
        }

        .testimonial.active {
            opacity: 1;
            transform: scale(1);
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 6rem;
            color: rgba(74, 144, 226, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-content {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--dark);
            line-height: 1.9;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            font-weight: 500;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .author-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--accent);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            color: var(--logo-color1);
            margin-bottom: 8px;
            font-size: 1.3rem;
        }

        .author-info p {
            color: var(--gray);
            font-size: 1rem;
        }

        .testimonial-rating {
            color: #ffc107;
            font-size: 1.4rem;
            margin: 20px 0;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .testimonial-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(59, 109, 135, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .testimonial-dot.active {
            background: var(--accent);
            transform: scale(1.2);
        }

        .cta {
            padding: 120px 5%;
            background: linear-gradient(rgba(59, 108, 135, 0.117), rgba(136, 192, 214, 0.193)), url('img2/1000.jpg') center/cover;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('');
            opacity: 0.1;
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .cta p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.9;
            font-weight: 300;
        }

        .cta-form {
            max-width: 700px;
            margin: 50px auto 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .cta-form input {
            flex: 1;
            min-width: 250px;
            padding: 18px 25px;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            background: rgba(255, 255, 255, 0.9);
            transition: var(--transition);
        }

        .cta-form input:focus {
            outline: none;
            box-shadow: 0 8px 30px rgba(255, 179, 71, 0.4);
            transform: translateY(-3px);
        }

        .cta-form input::placeholder {
            color: rgba(0, 0, 0, 0.5);
        }

        .cta-form .btn {
            padding: 18px 50px;
            font-size: 1.2rem;
            background: var(--accent);
            box-shadow: 0 8px 25px rgba(255, 179, 71, 0.3);
        }

        .cta-form .btn:hover {
            background: #ffa724;
        }

        footer {
            background: linear-gradient(90deg, var(--logo-color1), var(--logo-color2));
            color: white;
            padding: 80px 5% 40px;
            position: relative;
            overflow: hidden;
            border-top-left-radius: 50px;
            border-top-right-radius: 50px;
            margin-top: 100px;
        }

        footer::before {
            content: "";
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: var(--gold-gradient);
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.1;
            z-index: 0;
        }

        footer::after {
            content: "";
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
            z-index: 0;
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .footer-column h3 {
            font-size: 1.7rem;
            margin-bottom: 30px;
        }

        .footer-column p {
            margin-bottom: 25px;
            line-height: 1.9;
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 18px;
            transition: var(--transition);
        }

        .footer-links li:hover {
            transform: translateX(-5px);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-links a i {
            color: var(--accent);
            font-size: 1.3rem;
            transition: var(--transition);
        }

        .footer-links a:hover i {
            transform: scale(1.2);
        }

        .contact-list {
            list-style: none;
        }

        .contact-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
        }

        .contact-list i {
            color: var(--accent);
            font-size: 1.4rem;
            margin-top: 3px;
            min-width: 25px;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-links a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 55px;
            height: 55px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            font-size: 1.5rem;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transform: translateZ(0);
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 179, 71, 0.3);
            border-color: var(--accent);
        }

        .copyright {
            text-align: center;
            margin-top: 80px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.05rem;
            position: relative;
            z-index: 1;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(2deg);
            }
            100% {
                transform: translateY(0px) rotate(0deg);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 5px 15px rgba(255, 179, 71, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 7px 20px rgba(255, 179, 71, 0.4);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 5px 15px rgba(255, 179, 71, 0.3);
            }
        }

        @keyframes waterfall {
            0% {
                transform: translateY(-100%);
            }
            100% {
                transform: translateY(100%);
            }
        }

        @keyframes floatBubble {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            90% {
                opacity: 0.2;
            }
            100% {
                transform: translateY(-100px) scale(1.2);
                opacity: 0;
            }
        }

        @keyframes wave {
            0% {
                background-position-x: 0;
            }
            100% {
                background-position-x: 1200px;
            }
        }

        .animate-float {
            animation: float 4s ease-in-out infinite;
        }

        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 10px;
            transition: var(--transition);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--gradient-accent);
        }

        .how-it-works {
            padding: 100px 5%;
            background-color: white;
            position: relative;
        }
        
        .steps-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        
        .step-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            text-align: center;
            border-top: 5px solid var(--accent);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gold-gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 25px;
            box-shadow: 0 5px 15px rgba(255, 179, 71, 0.3);
        }
        
        .step-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--logo-color1);
        }
        
        .step-card p {
            color: var(--gray);
            line-height: 1.8;
        }
        
        .portfolio {
            padding: 100px 5%;
            background: linear-gradient(to bottom, #f8fafc, #f0f5fa);
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .portfolio-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            height: 250px;
        }
        
        .portfolio-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(59, 109, 135, 0.9), transparent);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: var(--transition);
        }
        
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }
        
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }
        
        .faq {
            padding: 100px 5%;
            background-color: white;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            background: var(--light);
            padding: 20px 25px;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--logo-color1);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question:hover {
            background: var(--light-blue);
            transform: translateX(-5px);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: white;
        }
        
        .faq-answer p {
            padding: 20px 0;
            color: var(--gray);
            line-height: 1.8;
        }
        
        .faq-item.active .faq-question {
            background: var(--logo-color1);
            color: white;
            box-shadow: 0 5px 15px rgba(59, 109, 135, 0.3);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        .blog {
            padding: 100px 5%;
            background: linear-gradient(to bottom, #f0f5fa, #e3f2fd);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            transform: translateZ(0);
        }
        
        .blog-card:hover {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .blog-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .blog-img::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
            z-index: 1;
        }
        
        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-date {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }
        
        .blog-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--logo-color1);
        }
        
        .blog-excerpt {
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .rating-system {
            padding: 100px 5%;
            background-color: white;
        }
        
        .rating-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--light);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 30px 0;
        }
        
        .rating-star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .rating-star.active, .rating-star:hover {
            color: #ffc107;
        }
        
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .rating-form input, .rating-form textarea {
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #ddd;
            font-size: 1.1rem;
        }
        
        .rating-form textarea {
            min-height: 150px;
        }
        
        .page-links {
            display: flex;
            justify-content: center;
            margin: 50px 0;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .page-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--dark);
            transition: var(--transition);
            width: 200px;
            padding: 25px;
            border-radius: 15px;
            background: white;
            box-shadow: var(--shadow);
        }
        
        .page-link:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            color: var(--logo-color1);
        }
        
        .page-link i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--logo-color2);
            transition: var(--transition);
        }
        
        .page-link:hover i {
            color: var(--accent);
            transform: scale(1.2);
        }
        
        .page-link h3 {
            font-size: 1.4rem;
            text-align: center;
        }

        .portfolio {
            padding: 100px 5%;
            background: linear-gradient(to bottom, #f8fafc, #f0f5fa);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: var(--logo-color1);
            position: relative;
            font-weight: 700;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--logo-color1), var(--logo-color2));
            border-radius: 2px;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .portfolio-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            height: 300px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .portfolio-slider {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .portfolio-images {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .portfolio-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 1s ease-in-out;
            opacity: 0;
        }
        
        .portfolio-img.active {
            opacity: 1;
        }
        
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(59, 109, 135, 0.9), transparent);
            color: white;
            padding: 20px;
            transform: translateY(0);
            transition: var(--transition);
            z-index: 10;
        }
        
        .portfolio-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 15px;
            z-index: 5;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .portfolio-item:hover .portfolio-nav {
            opacity: 1;
        }
        
        .portfolio-nav-btn {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--logo-color1);
            font-size: 1.2rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }
        
        .portfolio-nav-btn:hover {
            background: var(--accent);
            color: white;
            transform: scale(1.1);
        }
        
        .portfolio-indicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        
        .portfolio-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .portfolio-indicator.active {
            background: var(--accent);
            transform: scale(1.2);
        }
        
        .portfolio-overlay h3 {
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .portfolio-overlay p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .portfolio-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .portfolio-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90vh;
            width: 800px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
        }
        
        .modal-slider {
            position: relative;
            height: 400px;
            overflow: hidden;
            background: #f5f5f5;
        }
        
        .modal-images {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .modal-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #f5f5f5;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .modal-img.active {
            opacity: 1;
        }
        
        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 5;
        }
        
        .modal-nav-btn {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--logo-color1);
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
        }
        
        .modal-nav-btn:hover {
            background: var(--accent);
            color: white;
            transform: scale(1.1);
        }
        
        .modal-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .modal-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .modal-indicator.active {
            background: var(--accent);
            transform: scale(1.2);
        }
        
        .modal-info {
            padding: 25px;
            background: white;
            max-height: calc(90vh - 400px);
            overflow-y: auto;
        }
        
        .modal-info h3 {
            font-size: 1.8rem;
            color: var(--logo-color1);
            margin-bottom: 10px;
            text-align: center;
        }
        
        .modal-location {
            color: var(--gray);
            font-size: 1.2rem;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .modal-description {
            color: #555;
            font-size: 1.15rem;
            line-height: 1.7;
            text-align: justify;
            padding: 0 10px;
        }
        
        .modal-features {
            margin-top: 25px;
            padding-left: 20px;
        }
        
        .modal-features li {
            margin-bottom: 10px;
            position: relative;
            padding-right: 20px;
        }
        
        .modal-features li::before {
            content: "✓";
            position: absolute;
            right: 0;
            top: 0;
            color: var(--accent);
            font-weight: bold;
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #333;
            font-size: 1.5rem;
            z-index: 20;
            transition: var(--transition);
        }
        
        .modal-close:hover {
            background: var(--accent);
            color: white;
            transform: rotate(90deg);
        }
        
        @media (max-width: 768px) {
            .portfolio-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            
            .modal-slider {
                height: 300px;
            }
            
            .modal-info {
                padding: 15px;
            }
            
            .modal-info h3 {
                font-size: 1.5rem;
            }
            
            .modal-description {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .portfolio {
                padding: 70px 5%;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .modal-slider {
                height: 250px;
            }
            
            .modal-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }
        
        #consultation-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 15px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: white;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .form-group input {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.15);
            color: white;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        
        .form-group input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.25);
            border-color: var(--accent);
        }
        
        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .form-message {
            padding: 15px;
            margin-top: 20px;
            border-radius: 10px;
            display: none;
            text-align: center;
        }
        
        .form-message.success {
            background: rgba(40, 167, 69, 0.2);
            color: #28a745;
            display: block;
        }
        
        .form-message.error {
            background: rgba(220, 53, 69, 0.2);
            color: #dc3545;
            display: block;
        }
        
        .testimonial-wrapper {
            display: flex;
            transition: transform 0.6s ease;
            width: 300%;
        }
        
        .testimonial {
            flex: 0 0 33.333%;
            transition: all 0.6s ease;
            transform: scale(0.9);
            opacity: 0.5;
        }
        
        .testimonial.active {
            transform: scale(1);
            opacity: 1;
        }
        
        .biohazard-section {
            padding: 100px 5%;
            background: linear-gradient(to bottom, #f0f7ff, #e6f2fa);
            position: relative;
        }
        
        .hazard-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .hazard-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            border-top: 4px solid var(--logo-color1);
            position: relative;
            overflow: hidden;
        }
        
        .hazard-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: var(--gold-gradient);
        }
        
        .hazard-icon {
            font-size: 2.5rem;
            color: #d9534f;
            margin-bottom: 20px;
        }
        
        .hazard-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--logo-color1);
        }
        
        .contamination-causes {
            background: rgba(255, 255, 255, 0.198);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            margin: 50px auto;
            max-width: 1000px;
        }
        
        .contamination-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .contamination-item {
            background: #f8fafc;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid #e1e8ed;
        }
        
        .contamination-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-color: var(--accent);
        }
        
        .contamination-icon {
            font-size: 2rem;
            color: var(--logo-color1);
            margin-bottom: 15px;
        }
        
        .uv-features {
            background: linear-gradient(to right, var(--logo-color1), var(--logo-color2));
            color: white;
            padding: 80px 5%;
            position: relative;
            overflow: hidden;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 30px;
            border-radius: 15px;
            transition: var(--transition);
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .technology-section {
            padding: 100px 5%;
            background: rgba(255, 255, 255, 0.519);
        }
        
        .tech-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .tech-content {
            flex: 1;
            min-width: 300px;
        }
        
        .tech-image {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .tech-image img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        }
        
        .applications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .app-item {
            background: var(--light);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            font-weight: 600;
            color: var(--logo-color1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .smart-controls {
            background: linear-gradient(to bottom, #f8fafc, #f0f5fa);
            padding: 100px 5%;
        }
        
        .control-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            max-width: 1000px;
            margin: 40px auto 0;
        }
        
        .control-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: var(--transition);
            border-top: 4px solid var(--accent);
        }
        
        .control-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .control-icon {
            font-size: 2.5rem;
            color: var(--logo-color1);
            margin-bottom: 20px;
        }
        
        .partnership {
            padding: 100px 5%;
            background: linear-gradient(135deg, var(--logo-color1) 0%, var(--logo-color2) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .partnership-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .flags-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .flag {
            width: 200px;
            height: 120px;
            border-radius: 8px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .flag:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .flag-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .partnership-symbol {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partnership-icon {
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent), #54535137);
            border-radius: 50%;
            box-shadow: 0 10px 25px rgba(255, 179, 71, 0.4);
            transition: all 0.4s ease;
        }

        .partnership-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 35px rgba(255, 179, 71, 0.6);
        }

        .partnership-icon-image {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }

        .partner-logo {
            margin-top: 30px;
        }

        .logo-container {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            padding: 20px 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            letter-spacing: 2px;
        }

        .logo-subtitle {
            font-size: 1rem;
            opacity: 0.8;
        }

        .partnership-info {
            max-width: 900px;
            margin: 0 auto;
        }

        .partnership-header {
            margin-bottom: 40px;
        }

        .partnership-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 800;
            color: white;
        }

        .title-decoration {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }

        .decoration-line {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }

        .title-decoration i {
            color: var(--accent);
            font-size: 1.2rem;
        }

        .partnership-header h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
        }

        .partnership-description {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 50px;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .partnership-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.08);
            padding: 30px 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent), #ffa724);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: white;
        }

        .feature-card h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 700;
            color: white;
        }

        .feature-card p {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .flags-container {
                gap: 30px;
            }
            
            .flag {
                width: 150px;
                height: 90px;
            }
            
            .partnership-icon {
                width: 80px;
                height: 80px;
            }
            
            .partnership-icon-image {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .flags-container {
                flex-direction: column;
                gap: 40px;
            }
            
            .partnership-header h2 {
                font-size: 2rem;
            }
            
            .partnership-header h3 {
                font-size: 1.4rem;
            }
            
            .partnership-features {
                grid-template-columns: 1fr;
            }
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .footer-brand img {
            height: 60px;
        }
        
        .footer-brand h3 {
            font-size: 1.8rem;
            color: white;
            margin: 0;
        }

    
        .elegant-card {
            position: relative;
            background: white;
            border-radius: 20px;
            padding: 35px 30px;
            box-shadow: 0 15px 35px rgba(59, 109, 135, 0.15);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            z-index: 1;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transform: translateY(0);
            perspective: 1000px;
        }
        
        .elegant-card::before {
            content: '';
            position: absolute;
            top: -2px;
            right: -2px;
            bottom: -2px;
            left: -2px;
            background: linear-gradient(135deg, 
                rgba(71, 249, 255, 0.694) 0%, 
                rgba(59, 109, 135, 0.8) 50%, 
                rgba(136, 192, 214, 0.8) 100%);
            z-index: -1;
            border-radius: 22px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .elegant-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(59, 109, 135, 0.25);
            z-index: 10;
        }
        
        .elegant-card:hover::before {
            opacity: 1;
        }
        
        .elegant-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--logo-color1), var(--logo-color2));
            border-radius: 5px 5px 0 0;
            transition: all 0.4s ease;
        }
        
        .elegant-card:hover::after {
            height: 8px;
            background: linear-gradient(90deg, var(--accent), #ffa724);
        }
        
        .card-icon {
            font-size: 2.8rem;
            margin-bottom: 25px;
            display: inline-block;
            background: linear-gradient(135deg, var(--logo-color1), var(--logo-color2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.4s ease;
        }
        
        .elegant-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--accent), #ffa724);
            -webkit-background-clip: text;
        }
        
        .card-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--logo-color1);
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }
        
        .card-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--logo-color1), var(--logo-color2));
            border-radius: 3px;
            transition: all 0.4s ease;
        }
        
        .elegant-card:hover .card-title::after {
            width: 100px;
            background: linear-gradient(90deg, var(--accent), #ffa724);
        }
        
        .card-content {
            color: var(--dark);
            line-height: 1.8;
            font-size: 1.15rem;
            position: relative;
            z-index: 2;
        }
        
        .elegant-card .shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, 
                rgba(255, 255, 255, 0) 0%, 
                rgba(255, 255, 255, 0.3) 100%);
            transform: skewX(-25deg);
            z-index: 1;
            transition: left 0.8s ease;
        }
        
        .elegant-card:hover .shine {
            left: 150%;
        }
