/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(59, 130, 246, 0.15);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}



.brand-name {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-link {
    text-decoration: none;
    color: #334155;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
}

.hamburger span {
    width: 32px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Main Content */
.main {
    margin-top: 100px;
}

.page {
    display: none;
}

.page.active {
    display: block;
}



/* Hero Slider Section */
/* HERO SLIDER - Responsive, Centered Banner Images */

/* Update swiper section to not use full viewport */
.hero-slider {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.hero-slider .swiper {
  width: 100%;
  height: 960px; /* Full screen height */
}

.hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: 800px;
  object-fit: contain; /* Ensures perfect fill without distortion */
  display: block;
}







/* Overlay (optional) */
.hero-slider .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}


.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* ✅ This fills the entire slider */
  display: block;
  border-radius: 0;
}




.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #475569;
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 36px;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 3px solid #3b82f6;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-large {
    padding: 22px 44px;
    font-size: 20px;
}

.btn-full {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.2);
  transition: none !important;
  transform: none !important;
}


.hero-image img:hover {
  transform: none !important;
  animation: none !important;
}


/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #2563eb;
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 900;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: #2563eb;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Section Styles */
.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Enhanced Features Section */
.features {
    padding: 150px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: center;
    padding: 60px 40px;
    border-radius: 25px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 40px;
    color: white;
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Enhanced Products Preview */
.products-preview {
    padding: 150px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.products-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.2);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: #fff;
    transition: transform 0.3s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-image-container img {
    transform: scale(1.1);
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.product-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.product-highlights {
    list-style: none;
    padding: 0;
}

.product-highlights li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
    font-weight: 500;
}

.product-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 16px;
    width: 20px;
    height: 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-center {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 150px 0;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: white;
}

.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #2563eb;
}

.cta-buttons .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #2563eb;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 100px 20px;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(106, 171, 200, 0.867)),
    url('./public/WhatsApp\ Image\ 2025-06-27\ at\ 16.20.34_01a94f66.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}



.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.page-header p {
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Enhanced Products Showcase */
.products-showcase {
    padding: 120px 0;
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 120px;
    padding-bottom: 120px;
    border-bottom: 3px solid rgba(59, 130, 246, 0.1);
}

.product-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.product-item:nth-child(even) {
    direction: rtl;
}

.product-item:nth-child(even) > * {
    direction: ltr;
}

.product-image img {
    width: 100%;
    max-width: 400px;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.15);
    border: 3px solid rgba(59, 130, 246, 0.1);
    padding: 20px;
    background: #f8fafc;
}

.product-info h3 {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.product-info p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 35px;
    line-height: 1.8;
}

.product-specifications,
.product-applications {
    margin-bottom: 30px;
}

.product-specifications h4,
.product-applications h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 15px 0;
    color: #374151;
    position: relative;
    padding-left: 40px;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 20px;
    width: 30px;
    height: 30px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Quality Section */
.quality-section {
    padding: 120px 60px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 30px;
    margin: 120px 0;
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.quality-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.quality-section h2 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 1;
}

.quality-item {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 25px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
}

.quality-item i {
    font-size: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.quality-item h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.quality-item p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* About Page Styles */
.about-content {
    padding: 120px 0;
}

.about-section {
    margin-bottom: 120px;
}

.about-section h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.about-section p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Timeline */
.milestones {
    margin-bottom: 120px;
}

.milestones h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 80px;
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 80px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 10px;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    box-shadow: 0 0 0 6px #ffffff, 0 0 0 12px rgba(59, 130, 246, 0.2);
}

.timeline-year {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.timeline-content h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Mission Vision */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-bottom: 120px;
}

.mv-item {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    padding: 60px;
    border-radius: 25px;
    border-left: 6px solid #3b82f6;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.mv-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.mv-item h3 {
    font-size: 1.9rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.mv-item p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
}

.mv-item ul {
    list-style: none;
    padding: 0;
}

.mv-item li {
    padding: 12px 0;
    color: #374151;
    position: relative;
    padding-left: 35px;
    font-size: 1.1rem;
    font-weight: 500;
}

.mv-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 24px;
}

/* Stats Section */
.stats-section {
    margin-bottom: 120px;
}

.stats-section h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 80px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.stat-item {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 25px;
    color: white;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.4);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.contact-info-section h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 35px;
}

.contact-intro {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 60px;
}

.contact-info {
    margin-bottom: 70px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.contact-item i {
    font-size: 32px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.contact-item h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.contact-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

.contact-note {
    font-size: 1rem;
    color: #94a3b8;
    font-style: italic;
}

/* Business Hours */
.business-hours {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    padding: 50px;
    border-radius: 25px;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.business-hours h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 30px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 700;
    color: #374151;
    font-size: 1.1rem;
}

.time {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form-section h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 35px;
}

.form-intro {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    color: #374151;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 20px 25px;
    border: 3px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    font-size: 16px;
    font-family: inherit;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Checkbox Group */
.checkbox-group {
    margin-top: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.3);
    accent-color: #3b82f6;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 100px 0;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-cta .cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: white;
}

.contact-cta p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: white;
}

.cta-stat .stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
    color: white;
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.footer-brand-name {
    font-size: 24px;
    font-weight: 900;
    color: white;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.footer-section h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    cursor: pointer;
}

.footer-section ul li a:hover {
    color: #60a5fa;
    transform: translateX(8px);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #374151, #4b5563);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-links a:hover {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.footer-bottom {
    border-top: 2px solid #475569;
    padding-top: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #cbd5e1;
    margin: 0;
    font-size: 1.1rem;
}

/* WhatsApp Plugin */
.whatsapp-plugin {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 24px;
}

.whatsapp-text {
    display: none;
}

.whatsapp-btn:hover .whatsapp-text {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: linear-gradient(135deg, #ffffff, #f8fafc);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: left 0.4s ease;
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
        backdrop-filter: blur(15px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 30px 0;
    }
    
    .nav-link {
        font-size: 20px;
        padding: 15px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .product-item {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .product-item:nth-child(even) {
        direction: ltr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .brand-name {
        font-size: 28px;
    }
    
    .nav-container {
        height: 80px;
    }
    
    .main {
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-slider {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .features,
    .products-preview,
    .about-content {
        padding: 100px 0;
    }
    
    .feature-card,
    .mv-item {
        padding: 40px 30px;
    }
    
    .product-info h3 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .quality-section {
        padding: 80px 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.2rem;
    }
    
    .contact-content {
        padding: 80px 0;
    }
    
    .contact-cta {
        padding: 80px 0;
    }
    
    .cta-content h2,
    .contact-cta h2 {
        font-size: 2.5rem;
    }
    
    .whatsapp-btn {
        padding: 12px 20px;
        border-radius: 40px;
    }
    
    .whatsapp-btn i {
        font-size: 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

/* Hover effects */
.product-card,
.feature-card,
.stat-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 4px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

/* Selection color */
::selection {
    background: rgba(59, 130, 246, 0.2);
    color: #1e293b;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .whatsapp-plugin {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .page {
        display: block !important;
    }
}