
@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-section {
    padding: 60px 20px;
    background: #fff;
}

/* HEADING */
.logo-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ff4b2b, #d32f2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SUBHEADING */
.logo-subheading {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* ================= IMAGE LOGO LINE ================= */

.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: 140px;
    height: auto;
    transition: 0.3s ease;
    border-radius: var(--radius-md);
}

.logo-line img:hover {
    transform: scale(1.1);
}

/* ================= TEXT CAROUSEL ================= */

.logo-carousel {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 60s linear infinite;
}

/* TEXT ITEMS */
.logo-track span {
    margin: 0 40px;
    font-size: 20px;
    font-weight: 600;
    color: #d32f2f;
    white-space: nowrap;
    transition: 0.3s;
        will-change: transform;

}

.logo-track span:hover {
    color: #000;
    transform: scale(1.1);
}

/* LINKS */
.logo-track a {
    text-decoration: none;
    color: inherit;
}

/* PAUSE ON HOVER */
.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

/* ================= ANIMATION ================= */

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================= SEO CONTENT ================= */

.seo-content {
    margin-top: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #444;
}
/* 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 ================= */
.product-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--bg-primary, #f9fafb), var(--bg-secondary, #eef2f7));
  text-align: center;
}

/* HEADING */
.product-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
  font-weight: 600;
  color: var(--text-primary, #222);
  position: relative;
  display: inline-block;
}

.product-section h1::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d32f2f, #ff4b2b);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  border-radius: 6px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* CARD */
.product-card {
  background: var(--bg-primary, #fff);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

/* TOP BORDER ANIMATION */
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d32f2f, #ff4b2b);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

/* HOVER */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-color: #d32f2f;
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  transition: 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* TITLE */
.product-card h3 {
  margin: 0.8rem 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary, #222);
  font-family: 'Playfair Display', serif;
}

/* ================= BUTTONS ================= */
.buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* VIEW BUTTON */
.view-btn {
  flex: 1;
  text-align: center;
  background: linear-gradient(135deg, #d32f2f, #ff4b2b);
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.view-btn:hover {
  background: black;
  transform: scale(1.05);
}

/* QUERY BUTTON */
.query-btn {
  flex: 1;
  text-align: center;
  background: #25D366;
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.query-btn:hover {
  background: #128C7E;
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .product-section {
    padding: 4rem 1rem;
  }

  .product-card {
    padding: 1.2rem;
  }

  .buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .product-section h1 {
    font-size: 2rem;
  }

  .product-card img {
    height: 150px;
  }
}



.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;
  }
}
/* ================= BUSINESS LINKS ================= */
.business-links {
  padding: 60px 20px;
  text-align: center;
  background: #f9fafb;
}

.business-links h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.links-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.business-card {
  display: block;
  width: 280px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.business-card:hover {
  transform: translateY(-8px);
  background: #d32f2f;
  color: white;
}
/* 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);
  }
}
