
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap');

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #2563eb;
  --secondary-color: #0891b2;
  --accent-color: #059669;
  --orange-gradient: linear-gradient(135deg, #ff6b35, #f7931e);
  --blue-gradient: linear-gradient(135deg, #667eea, #764ba2);
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  scroll-behavior: smooth;
}
/* Sticky Navbar Styles for Home Page */
#navbar-placeholder {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

#navbar-placeholder .navbar {
  position: relative;
  margin: 0;
}

/* Enhanced Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slide {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
}

.slide.active {
  display: block;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(8, 145, 178, 0.3));
  z-index: 1;
}

.captions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  max-width: 900px;
  padding: 0 2rem;
}

.caption-top {
  background: var(--accent-color);
  color: white;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.caption-main {
  font-family: 'Playfair Display', serif;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 1.5rem 2.5rem;
  border-radius: var(--radius-xl);
  display: inline-block;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 1s ease-out 0.6s both;
  line-height: 1.2;
}

.caption-sub {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: white;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  display: inline-block;
  font-weight: 400;
  animation: fadeInUp 1s ease-out 0.9s both;
  box-shadow: var(--shadow-lg);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev:hover, .next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.prev { left: 2rem; }
.next { right: 2rem; }

/* Logo Section */
.logo-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 4rem auto;
  max-width: 1200px;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.logo-line img {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%) opacity(0.7);
  transition: var(--transition);
  border-radius: var(--radius-md);
}

.logo-line img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Info Section */
.info-section {
  text-align: center;
  margin: 5rem 0;
  padding: 0 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.info-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-section p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Video Section */
.video-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.video-container iframe {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: none;
}

.content-container {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.content-container p {
  margin-bottom: 1.5rem;
}

/* Info Section 2 */
.info-section-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 5rem 0;
  gap: 0;
}

.info-box {
  padding: 4rem;
  color: white;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  z-index: -1;
  transition: var(--transition);
}

.info-box:hover::before {
  transform: scale(1.02);
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.orange-box {
  background: var(--orange-gradient);
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.blue-box {
  background: var(--blue-gradient);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

.info-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.info-box p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  font-size: 0.9rem;
}

.read-more:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Product Section */
.product-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  text-align: center;
}

.product-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 3rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.product-section h1::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  border-radius: var(--radius-sm);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  margin: 1rem 0;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Playfair Display', serif;
}

.buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.buttons button {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.buttons button::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;
}

.buttons button:hover::before {
  left: 100%;
}

.more-btn {
  background: linear-gradient(135deg, var(--text-primary), #374151);
  color: white;
  border: 2px solid transparent;
}

.more-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.query-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: 2px solid transparent;
}

.query-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 50%;
  padding: 1rem;
  font-size: 1.5rem;
  z-index: 1000;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel {
    height: 70vh;
  }
  
  .prev, .next {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
  
  .prev { left: 1rem; }
  .next { right: 1rem; }
  
  .logo-line {
    gap: 2rem;
    padding: 1.5rem;
  }
  
  .video-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1rem;
  }
  
  .info-section-2 {
    grid-template-columns: 1fr;
  }
  
  .orange-box, .blue-box {
    border-radius: var(--radius-xl);
  }
  
  .info-box {
    padding: 2.5rem 1.5rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .captions {
    padding: 0 1rem;
  }
  
  .caption-main {
    padding: 1rem 1.5rem;
  }
  
  .caption-sub {
    padding: 0.75rem 1.5rem;
  }
  
  .info-box {
    padding: 2rem 1rem;
  }
  
  .product-section {
    padding: 4rem 1rem;
  }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
  .product-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
  }
  
  .product-card:nth-child(1) { animation-delay: 0.1s; }
  .product-card:nth-child(2) { animation-delay: 0.2s; }
  .product-card:nth-child(3) { animation-delay: 0.3s; }
  .product-card:nth-child(4) { animation-delay: 0.4s; }
  .product-card:nth-child(5) { animation-delay: 0.5s; }
  .product-card:nth-child(6) { animation-delay: 0.6s; }
  .product-card:nth-child(7) { animation-delay: 0.7s; }
  .product-card:nth-child(8) { animation-delay: 0.8s; }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}
