﻿        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            overflow-x: hidden;
        }

body {
  background: #000;
  color: #fff;
  scroll-behavior: smooth;
}      
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 10px 5%;
            background-color: rgba(255, 255, 255, 0.95);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            text-decoration: none;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #0066ff;
        }
        
        .menu-toggle {
            display: none;
            cursor: pointer;
        }
        
        /* Full-screen Product Sections */
        .product-section {
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            padding: 0 10%;
            position: relative;
            overflow: hidden;
        }
/* ===== Section Base ===== */
.section {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.section.reverse {
  flex-direction: row-reverse;
}
/* ===== Content ===== */
.content {
  width: 50%;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.section.show .content {
  opacity: 1;
  transform: translateY(0);
}

.content h1 {
  font-size: 52px;
  margin-bottom: 20px;
}
.content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}
.content ul {
  margin-top: 20px;
}

.content ul li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 16px;
}
/* ===== Image ===== */
.image {
  width: 50%;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease 0.2s;
}

.section.show .image {
  opacity: 1;
  transform: translateY(0);
}

.image img {
  max-width: 90%;
}
/* ===== Color Themes ===== */
.bg-dark { background: #0b0b0b; }
.bg-blue { background: #0a1a2f; }
.bg-light { background: #f5f5f5; color: #000; }
.bg-green { background: #0f2d26; }
.bg-warm { background: #ece7df; color: #000; }
.bg-black { background: #000; }

/* ===== CTA ===== */
.cta {
  margin-top: 30px;
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid currentColor;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.cta:hover {
  background: currentColor;
  color: #000;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .section,
  .section.reverse {
    flex-direction: column;
    text-align: center;
  }

  .content, .image {
    width: 100%;
  }

  .content h1 {
    font-size: 36px;
  }
}		
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  font-size: 16px;
  text-decoration: none;
  color: inherit;
  position: relative;
  opacity: 0.9;
}

.learn-more::after {
  content: "→";
  transition: transform 0.3s ease;
}

.learn-more:hover::after {
  transform: translateX(6px);
}

.learn-more:hover {
  opacity: 1;
}      
        #product1 {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        
        #product2 {
            background: linear-gradient(135deg, #e0f7fa 0%, #80deea 100%);
        }
        
        .product-content {
            width: 50%;
            z-index: 2;
        }
        
        .product-image {
            position: absolute;
            right: 10%;
            height:70%;
            max-width: 50%;
            object-fit: contain;
            z-index: 1;
        }
        
        .product-title {
            font-size: 48px;
            margin-bottom: 20px;
            color: #333;
        }
        
        .product-description {
            font-size: 18px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 30px;
        }
        
        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: #0066ff;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: background-color 0.3s, transform 0.3s;
        }
        
        .cta-button:hover {
            background-color: #0052cc;
            transform: translateY(-3px);
        }
        
        /* News Section */
        .news-section {
            padding: 80px 6%;
            background-color: #f9f9f9;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            color: #333;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }
        
        .news-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
        }
        
        .news-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .news-content {
            padding: 20px;
        }
        
        .news-date {
            font-size: 14px;
            color: #777;
            margin-bottom: 10px;
        }
        
        .news-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .news-excerpt {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 15px;
        }
        
        .read-more {
            color: #0066ff;
            text-decoration: none;
            font-weight: 600;
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 50px 10% 20px;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
        }
        
        .copyright {
            font-size: 14px;
            color: #aaa;
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .product-content {
                width: 60%;
            }
            
            .product-image {
                right: 5%;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s;
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .product-section {
                flex-direction: column;
                justify-content: center;
                text-align: center;
                padding: 0 5%;
            }
            
            .product-content {
                width: 100%;
                margin-bottom: 40px;
            }
            
            .product-image {
                position: relative;
                right: auto;
                max-width: 80%;
                height: auto;
            }
        }
        
        @media (max-width: 480px) {
            .product-title {
                font-size: 36px;
            }
            
            .product-description {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 28px;
            }
        }