@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* CSS Variables */
:root {
  --primary-color: #1a1f2b;
  --accent-color: #cfae6d;
  --accent-secondary: #2e8b57;
  --bg-light: #f9f9f9;
  --bg-dark: #0c0c0c;
  --text-white: #ffffff;
  --text-muted: #999999;
  --text-dark: #333333;
  --gradient-primary: linear-gradient(135deg, #1a1f2b 0%, #2c3e50 100%);
  --gradient-accent: linear-gradient(135deg, #cfae6d 0%, #d4af37 100%);
  --shadow-light: 0 4px 20px rgba(26, 31, 43, 0.1);
  --shadow-medium: 0 8px 40px rgba(26, 31, 43, 0.15);
  --shadow-heavy: 0 20px 60px rgba(26, 31, 43, 0.3);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --heading:  "Montserrat", sans-serif;
  --para: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6{ font-family: "Montserrat", sans-serif;}
p{ font-family: "Poppins", sans-serif;}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */


h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--bg-dark);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(26, 31, 43, 0.98);
  box-shadow: var(--shadow-light);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h2 {
  color: var(--text-white);
  font-size: 1.5rem;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-white);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/home-banner.jpeg);
  z-index: -2;
      background-size: cover;
    background-repeat: no-repeat;
    background-position-y: center;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/placeholder.svg?height=1080&width=1920") center / cover;
  opacity: 0.1;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 31, 43, 0.7);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text {
  color: var(--text-white);
}

.hero-title {
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.2s;
}

.title-line:nth-child(3) {
  animation-delay: 0.4s;
}

.accent-text {
  color: var(--accent-color);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--text-white);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
  background: var(--accent-color);
  color: var(--text-white);
}
.btn-secondary:hover i{
  color: var(--text-white);
}

.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  color: var(--text-white);
  animation: float 6s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 40%;
  right: 10%;
  animation-delay: 2s;
}

.card-3 {
  bottom: -4%;
  left: 30%;
  animation-delay: 4s;
}

.card-content i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.card-content h3 {
  margin: 0;
  font-size: 1.2rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-white);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--accent-color);
  position: relative;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  transform: rotate(45deg);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* Features Section */
.features {
  background: #fff0f0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--text-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(207, 174, 109, 0.1), transparent);
  transition: var(--transition);
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--text-white);
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Showcase Section */
.showcase {
  background: var(--primary-color);
  color: var(--text-white);
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-text h2 {
  color: var(--text-white);
  margin-bottom: 2rem;
}

.showcase-features {
  list-style: none;
  margin: 2rem 0;
}

.showcase-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.showcase-features i {
  color: var(--accent-color);
}

.showcase-visual {
  position: relative;
}

.showcase-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.showcase-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 31, 43, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.showcase-image:hover .image-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
}

.play-button:hover {
  transform: scale(1.1);
}

/* Stats Section */
.stats {
  background: var(--bg-dark);
  color: var(--text-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  width: 20%;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-number {
  font-size: 50px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-family: auto;
  position: relative;
  z-index: 1;
}

.stat-label {
  color: var(--text-muted);
    color: var(--accent-color);
    font-size: 20px;
    width: 100%;
    font-weight: bold;
}

/* CTA Section */
.cta {
  background: var(--gradient-accent);
  color: var(--text-white);
  text-align: center;
}

.cta-content h2 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  margin-top: 30px;
}

.footer-section h3,
.footer-section h4 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
}

.whatsapp-widget a {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-widget a:hover {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--primary-color);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-visual {
    height: 300px;
  }

  .showcase-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .btn {
    padding: 0.8rem 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    padding: 1rem;
  }

  .whatsapp-widget {
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-widget a {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
 
    .slider {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      user-select: none;
    }
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      opacity: 0;
      z-index: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0px 50px;
      background: rgba(255, 255, 255, 0.02);
      backdrop-filter: blur(10px);
      transition: opacity 0.6s ease;
      pointer-events: none;
      gap: 50px;
    }
    .slide.active {
      opacity: 1;
      z-index: 1;
      pointer-events: auto;
    }
    .slide-content {
      width: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      animation: fadeInLeft 0.8s ease forwards;
    }
    .slide-images {
      width: 50%;
      height: 80%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeInRight 0.8s ease forwards;
    }
    @keyframes fadeInLeft {
      0% { opacity: 0; transform: translateX(-50px); }
      100% { opacity: 1; transform: translateX(0); }
    }
    @keyframes fadeInRight {
      0% { opacity: 0; transform: translateX(50px); }
      100% { opacity: 1; transform: translateX(0); }
    }
    .slide-content-text h1 {
      font-size: 3.2rem;
      margin-bottom: 1rem;
      color: var(--bg-dark);
    }
    .slide-content-text h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: var(--accent-color);
    }
    .slide-content-text p {
      font-size: 1.2rem;
      color:var(--bg-dark);
      line-height: 1.6;
      font-weight: 600;
    }
    .info-box {
      background:#cfae6df7 ;
      padding: 10px;
      border-radius: 10px;
      backdrop-filter: blur(5px);
      border: 2px solid rgba(0, 0, 0, 0.1);
      color: #fff;
      margin-bottom: 15px;
      font-size: 17px;
      font-weight: bold;
    }
    .slide-content img {
      height: 350px;
      width: 85%;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      margin-top: 20px;
    }
    .slide-images img {
      width: 90%;
      height: 100%;
      max-width: 800px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      margin-top: 15px;
    }
    @media (max-width: 1024px) {
      .slide {
        flex-direction: column;
        padding: 30px 20px;
      }
      .slide-content, .slide-images {
        width: 100%;
        animation: none !important;
      }
      .slide-content {
        height: auto;
        margin-bottom: 30px;
      }
      .slide-content img {
        width: 100%;
        max-width: 300px;
        align-self: center;
      }
      .slide-images img {
        width: 100%;
      }
      .slide-content-text h1 {
        font-size: 2.2rem;
      }
      .slide-content-text g--bg-lighth2 {
        font-size: 1.5rem;
      }
      .slide-content-text p {
        font-size: 1rem;
      }
    }
    .stats .row{ display: flex; justify-content: space-around; padding: 50px 0px;}
    .stats-img video{ width: 100%; height: 100%; object-fit: cover;position: relative;;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);}
    .stats-img{ width: 80%; height: 80vh; position: relative;}

.video-section {
  width: 80%;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.video-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
  opacity: 0;
}
.stats-img:hover .video-controls {
  opacity: 1;
}
#pauseBtn {
  display: none;
}
.video-controls button {
  padding: 30px 37px;
  font-size: 35px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.video-controls button:hover {
  background: rgba(255, 255, 255, 0.9);
  color: black;
}

.stats-img .controls button {
  padding: 10px 20px;
  font-size: 16px;
  background: #555;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;}

 .stats-img.controls button:hover {
  background: #777;
}

     @keyframes waveDown {
    0% { transform: translateY(-10px); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(-10px); }
  }
  #img3 {
    animation: waveDown 3.5s infinite ease-in-out;
  }
   #img2 {
    animation: waveDown 3s infinite ease-in-out;
  }
     #img1 {
    animation: waveDown 4s infinite ease-in-out;
  }
  
  

  .hover-option:hover span {
    color: #f2b200 !important;
    transition:  0.4s ease   ;
    
  }
  .product-section {
    text-align: center;
    padding: 50px 20px;
  }

  .product-section h4 {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary-color);
  }

  .product-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0 40px;
    color: var(--accent-color);
    text-transform: uppercase;
  }

  .product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .product-section .product-card {
    background-color: #fdfdfd;
    padding: 10px;
    width: 21%;
    position: relative;
    transition: 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 350px;
  }

  .product-section .product-card:hover {
    transform: translateY(-5px);
  }

  .product-section .product-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
  }

  .product-section .product-image img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 8px;
  }

  .product-section .product-card:hover .product-image img {
    transform: scale(1.05);
  }

  .product-section .overlay {
    position: absolute;
    top: 80%;
    left: 0;
    right: 0;
    bottom: 0;
    background: #cfae6d71;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 20px 20px 0px 0px;
  }

  .product-section .product-card:hover .overlay {
    opacity: 1;
  }

 .product-section .icons {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 100%);
    display: flex;
    gap: 10px;
    opacity: 0;
    z-index: 2;
    transition: transform 0.4s ease, opacity 0.4s ease;
  

  }

  .icons i {
    background: white;
    padding: 10px;
    border-radius: 50%;
    font-size: 14px;
    color: #001f5b;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
  }

  .icons i::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #001f5b;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
  }

  .icons i:hover::after {
    opacity: 1;
  }

  .product-card:hover .icons {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .product-card h3 {
    font-size: 16px;
    margin: -25px 0 0px;
  }

  .product-card p {
    font-size: 14px;
    color: #555;
  }

  @media (max-width: 768px) {
    .product-grid {
      flex-direction: column;
      align-items: center;
    }
  }
  .whatsapp-widget a::before,
    .whatsapp-widget a::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      border: 2px solid #25d366;
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      animation: wave 5s ease-out infinite;
      opacity: 0;
      pointer-events: none;
    }

     .whatsapp-widget a::after {
      animation-delay: 2.5s;
    }

    @keyframes wave {
      0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
      }
      100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
      }
    }
    .nav-logo{
      height: 45px;
    }
.nav-logo img{
  height: 100%;
}


section.hero-section.section-visible{
  background: url(img/home-banner.jpeg) center / cover no-repeat;
  padding: inherit;
   padding-top: 50px;
   margin-top: 30px ;
}
.product-card .icons a {
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    background: var(--bg-light);
    color: var(--primary-color);
    width: 100%;
    padding: 0 20px ;
    border-radius: 25px;

}
section.stats.section-visible{
  padding: inherit !important;
}
section.stats.section-visible .container{
  padding: inherit !important;
}

.premium-section .row{
display: flex;
  justify-content: center;
  gap: 20px;
}
.premium-section .container{

}
.premium-section .row .left,.right{
  width: 50%;
}
.premium-section .row .left .img-1{
  width: 45%;
}
.premium-section .row .left img{
  width: 109%;
  height: 463px;
  margin-left: -20px;
}
.premium-section .row .left{
  display: flex;
  gap: 30px;
}
.premium-section .row .right{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.premium-section .row .right span{
  display: block  ;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 700;
}
.premium-section .row .right h3{
  font-size: 40px;
  color: var(--accent-color);
  margin: 10px 0;;
}
.premium-section .row .right p{
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 20px;  
  font-weight: 500;
}
.premium-section .row .right a{
  background: var(--accent-color);
  width: 32%;
  padding: 10px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 10px;
  font-size: 15px;
}
 .popular-card{
  width: 20%;
  height: 50%;
  position: relative;
}
.popular-images{
  display: flex;
  justify-content: space-between;
}
 .popular-card img{
  width: 100%;
}

 .popular-card a{
  text-decoration: none;
  background-color: var(--accent-color);
  color: var(--bg-light);
  font-size: 20px;
  padding: 5px 10px;
  border-radius: 10px;
  font-weight: 500;
  position: absolute;
  bottom: -10%;
  left: 24%;
  opacity: 0;
 }

 .popular-card:hover a{
  opacity: 1;
  transition: all 0.3s ease-in-out;
  bottom: 10%;
  opacity: 1;
 }
 .product-section{
  background-color: #f4f3f3;
 }
  .product-section .row h3{
    color: var(--primary-color) !important;
    margin-bottom: 25px !important;
    text-transform: uppercase;
  }
 
  .footer-logo{
    text-align: center;
    border-bottom: 1px solid #eeeeee9a;
  }

  .footer-logo img{
    width: 29%;
    margin-bottom: 20px;  
  }




  .category-section {
  padding: 40px;
  text-align: center;
  position: relative;
}

.category-section h5 {
  letter-spacing: 2px;
  color: #555;
  font-size: 14px;
  margin-bottom: 5px;
}

.category-section h2 {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 20px;
}

.card {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 15px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  transition: transform 0.3s;
}

.card.large {
  grid-row: span 2;
  grid-column: span 2;
}

.card:hover {
  transform: scale(1.02);
}

.label {
  background: rgba(0, 0, 0, 0.4);
  padding: 5px 10px;
  border-radius: 4px;
}

.logo-slider-section {
  padding: 50px 20px;
  text-align: center;
  background: #f7f7f7;
}

.logo-slider-section h2 {
  margin-bottom: 40px;
  font-size: 28px;
  color: var(--accent-color);
}

/* Slider Styling */
.logo-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  width: calc(150px * 20); /* 10 logos * 2 */
  animation: scroll 30s linear infinite;
}

.logo-slider:hover .slider-track {
  animation-play-state: paused;
}





.slide img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slider-track {
    animation-duration: 50s;
  }

  .slide {
    width: 120px;
    margin: 0 10px;
  }
}

button#getBtn {
    font-size: 15px;
    padding: 10px;
    border-radius: 50px;
    border: 2px solid rgb(255 255 255);
    background: #000000;
    color: var(--text-white);
    font-weight: 600;
    transition: 0.5s;
}

button#getBtn:hover{
  background: #946300;

}



.grid-presence {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
      max-width: 1000px;
      margin: auto;
    }

    .grid-button {
      background-color: var(--accent-color);
      color: white;
      border: none;
      padding: 15px;
      text-align: center;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      width: 100%;
    }

    .grid-button:hover {
      background-color: var(--bg-dark);
    }



    .slogan-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 60px 40px;
      background-color: #eee;
      flex-wrap: wrap;
    }

    .slogan-text {
      flex: 1;
      min-width: 280px;
    }

    .slogan-text h1 {
      font-size: 2.5rem;
      font-weight: 400;
      margin: 0;
      color: #111;
      line-height: 1.4;
    }

    .highlight {
      color: #e76f51;
      font-weight: 500;
    }

    .slogan-logo {
      flex: 0 0 auto;
      margin-left: 40px;
    }

    .slogan-logo img {
      max-width: 160px;
      height: auto;
    }

    @media (max-width: 768px) {
      .slogan-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
      }

      .slogan-logo {
        margin: 30px 0 0 0;
      }

      .slogan-text h1 {
        font-size: 2rem;
      }
    }





    .door-images-section{
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .door-images-section .product-card {
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 40px 0 40px 0;
      box-shadow: 0 0 8px rgba(0,0,0,0.03);
      text-align: center;
      padding: 0px 20px;
      width: 20%;
      transition: transform 0.3s ease;
    }

   .door-images-section .product-card:hover {
      transform: translateY(-5px);
    }

   .door-images-section .product-card img {
      width: 100%;
      height: auto;
      max-height: 300px;
      object-fit: contain;
      
    }

   .door-images-section .product-name {
      font-size: 18px;
      font-weight: 400;
      color: #333;
    }

    @media (max-width: 768px) {
    .door-images-section  .product-card {
        width: 45%;
      }
    }

    @media (max-width: 480px) {
     .door-images-section .product-card {
        width: 100%;
      }
    }

     .solid-doors-section {
      display: flex;
      flex-wrap: wrap;
      min-height: 100vh;
      padding: inherit;
    }

    .solid-image {
      flex: 1;
      min-width: 50%;
    }

    .solid-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .solid-content {
      flex: 1;
      background-color: #2c2f39;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px 40px;
      text-align: center;
      min-width: 300px;
    }

    .solid-content h1 {
      font-size: 48px;
      margin-bottom: 40px;
      font-weight: 500;
    }

    .solid-content h3 {
      font-size: 18px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .solid-content p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 768px) {
      .solid-doors-section {
        flex-direction: column;
      }

      .solid-content {
        padding: 40px 20px;
      }

      .solid-content h1 {
        font-size: 36px;
      }

      .solid-content p {
        font-size: 15px;
      }
    }




    .solid-doors-section-2 {
      display: flex;
      flex-wrap: wrap;
      min-height: 100vh;
      padding: inherit;
    }

    .solid-doors-section-2 .solid-image {
      flex: 1;
      min-width: 50%;
    }

    .solid-doors-section-2 .solid-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .solid-doors-section-2 .solid-content {
      flex: 1;
      background-color: var(--accent-color);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px 40px;
      text-align: center;
      min-width: 300px;
    }

    .solid-doors-section-2 .solid-content h1 {
      font-size: 48px;
      margin-bottom: 40px;
      font-weight: 500;
    }

    .solid-doors-section-2 .solid-content h3 {
      font-size: 18px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .solid-doors-section-2 .solid-content p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 768px) {
     .solid-doors-section-2  {
        flex-direction: column-reverse;
      }

      .solid-doors-section-2 .solid-content {
        padding: 40px 20px;
      }

      .solid-doors-section-2 .solid-content h1 {
        font-size: 36px;
      }

     .solid-doors-section- .solid-content p {
        font-size: 15px;
      }
    }


    /* door-slider */
        .door-sec-slider-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 40px;
      align-items: center;
    }

    .door-sec-slider-section .slider-left {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      min-width: 300px;
    }

    .door-sec-slider-section .door-image {
      width: 250px;
      height: auto;
      object-fit: contain;
      transition: opacity 0.5s ease;
    }

    .door-sec-slider-section .nav-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: 2px solid goldenrod;
      color: var(--accent-color);
      font-size: 24px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
    }

    .door-sec-slider-section .nav-button:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }

    .door-sec-slider-section .prev-btn {
      left: 0;
    }

    .door-sec-slider-section .next-btn {
      right: 0;
    }

    .door-sec-slider-section .door-title {
      text-align: center;
      margin-top: 20px;
      font-size: 20px;
      letter-spacing: 1px;
    }

    .door-sec-slider-section .slider-right {
      flex: 1;
      padding: 20px 40px;
      min-width: 300px;
    }

    .door-sec-slider-section .logo {
      text-align: right;
      margin-bottom: 30px;
    }

    .door-sec-slider-section .logo img {
      max-width: 160px;
    }

    .door-sec-slider-section .accordion {
      border-top: 1px solid #555;
    }

    .door-sec-slider-section .accordion-item {
      border-bottom: 1px solid #555;
    }

    .door-sec-slider-section .accordion-header {
      cursor: pointer;
      padding: 15px 10px;
      font-size: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .door-sec-slider-section .accordion-content {
      display: none;
      padding: 10px 10px 20px;
      font-size: 15px;
      color: #000;
    }

    .door-sec-slider-section .accordion-item.active .accordion-content {
      display: block;
    }

    .door-sec-slider-section .door-display{
        display: flex;
        flex-direction: column;
    }

    @media (max-width: 768px) {
      .door-sec-slider-section .slider-section {
        flex-direction: column;
        padding: 20px;
      }

      .door-sec-slider-section .slider-left {
        margin-bottom: 30px;
      }

      .door-sec-slider-section .slider-right {
        padding: 0;
      }

     .door-sec-slider-section .logo {
        text-align: center;
      }
    }


    /* door-slider-2 */
.why-choose-us-wrapper{ background-color: #eee;}
 .why-choose-us-wrapper h2 {
      font-size: 36px;
      margin-bottom: 10px;
      margin: 0PX 50PX;
    }

   .why-choose-us-wrapper p.subtitle {
      font-size: 18px;
      color: #333;
      
      margin: 30PX 50PX;
    }

   .why-choose-us-wrapper .swiper {
      padding-bottom: 50px;
    }

   .why-choose-us-wrapper .swiper-slide {
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      height: auto;
    }

   .why-choose-us-wrapper .feature-icon {
      font-size: 40px;
      margin-bottom: 10px;
    }

   .why-choose-us-wrapper .feature-title {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 10px;
    }

   .why-choose-us-wrapper .feature-description {
      font-size: 14px;
      color: #555;
    }

   .why-choose-us-wrapper .swiper-button-next,
    .swiper-button-prev {
      color: var(--accent-color) !important;
    }

    /* Optional: hide scrollbar */
  .why-choose-us-wrapper  .swiper-wrapper::-webkit-scrollbar {
      display: none;
    }

    .why-choose-us-wrapper .swiper{
      margin: 0px 50px;
      cursor: grab;
    }

    @media (max-width: 768px) {
    .why-choose-us-wrapper  .swiper-slide {
        font-size: 14px;
      }
    }

    /* why-choose-2 */
      .why-choose-2 {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 60px 8%;
      background-color: var(--accent-color);
    }

    .why-choose-2 .why-choose-left {
      flex: 1 1 45%;
      font-size: 40px;
      font-weight: 500;
      line-height: 1.2;
    }

    .why-choose-2 .why-choose-right {
      flex: 1 1 50%;
      font-size: 18px;
      color: #fff;
      line-height: 1.6;
    }

    .why-choose-2 .why-choose-right ul {
      list-style: none;
      padding-left: 0;
      margin-top: 20px;
    }

   .why-choose-2 .why-choose-right li {
      margin-bottom: 15px;
      display: flex;
      align-items: flex-start;
    }

   .why-choose-2 .why-choose-right li::before {
      content: '➔';
      color: #fff;
      font-size: 18px;
      margin-right: 12px;
    }

    @media (max-width: 768px) {
     .why-choose-2  .why-choose {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
      }

     .why-choose-2 .why-choose-left {
        font-size: 32px;
      }
      
      .whatsapp-widget{
        display: none;
      }
    }


    /* fancy-box */
    .fancy-btn {
    padding: 10px 20px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
  }

  #popup-form h2 {
    margin-top: 0;
  }

  #popup-form input, textarea {
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 4px;
  }

  #popup-form button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    margin-top: 40px;
  }

 #popup-form button:hover {
    background-color: var(--bg-dark);
  }

  .submit-btn{
    padding: 10px 20px;
  }

  .product-categories a{ text-decoration: none;}

  /* fire-rated-section */

      .fire-rated-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 60px 10%;
      background-color: #fff;
    }

    .fire-rated-image {
      flex: 1 1 50%;
      padding-right: 30px;
    }

    .fire-rated-image img {
      width: 100%;
      height: 600px;
      border-radius: 4px;
    }

    .fire-rated-content {
      flex: 1 1 50%;
    }

    .fire-rated-content h2 {
      font-size: 20px;
      font-weight: 600;
      color: #000;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .fire-rated-content p {
      font-size: 16px;
      color: #000;
      line-height: 1.8;
      margin-bottom: 16px;
      text-align: justify;
    }

    @media (max-width: 768px) {
      .fire-rated-section {
        flex-direction: column;
        padding: 40px 20px;
      }

      .fire-rated-image {
        padding-right: 0;
        margin-bottom: 30px;
      }
    }


     /* fire-rated-section-2 */

      .fire-rated-section-2 {
      display: flex;
      flex-direction: row-reverse;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 60px 10%;
      background-color: #eee;
    }

    .fire-rated-image {
      flex: 1 1 50%;
      padding-left: 30px;
    }

    .fire-rated-image img {
      width: 100%;
      height: 600px;
      border-radius: 4px;
    }

    .fire-rated-content {
      flex: 1 1 50%;
    }

    .fire-rated-content h2 {
      font-size: 20px;
      font-weight: 600;
      color: #000;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .fire-rated-content p {
      font-size: 16px;
      color: #000;
      line-height: 1.8;
      margin-bottom: 16px;
      text-align: justify;
    }

    @media (max-width: 768px) {
      .fire-rated-section-2 {
        flex-direction: column;
        padding: 40px 20px;
      }

      .fire-rated-image {
        padding-right: 0;
        margin-bottom: 30px;
      }
    }

    /*  */

     section#product-specifications {
      padding: 60px 10%;
      text-align: center;
    }

    section#product-specifications h2 {
      color: var(--accent-color);
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    section#product-specifications h3 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 30px;
    }

    section#product-specifications p {
      font-size: 16px;
      color: #111;
      line-height: 1.7;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .specifications-icons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
    }

    .spec-item {
      flex: 1 1 200px;
      max-width: 220px;
      text-align: center;
    }

    .spec-item img {
      width: 100px;
      height: auto;
      margin-bottom: 10px;
    }

    .spec-item h4 {
      font-size: 16px;
      font-weight: bold;
      margin-top: 10px;
    }

    @media (max-width: 768px) {
      .specifications-icons {
        flex-direction: column;
        align-items: center;
      }
    }

    video.hero-bg-video{ width: 100%;}
    .hero-content-overlay{ position: absolute; top: 50%; left: 12%;}
    .hero2-header h1{ color: #fff;}
    .hero2-header p{ color: #ffff;}
    .hero2-header {
    background: #00000078;
    padding: 20px;
    border-radius: 20px;
}

span.demo{ background-color: var(--accent-color);}


/* home-swipper */
 .swiper {
      width: 100%;
      padding: 80px 0;
    }

    .swiper-slide {
      background: white;
      border-radius: 16px;
      height: 280px;
      width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 24px;
      font-weight: bold;
      color: #333;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      transform: scale(0.85);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .swiper-slide img{
      height: 100%;
      width: 100%;
    }
    .swiper-slide-active {
      transform: scale(1.2) translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
      z-index: 10;
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: #333;
    }

    @media (max-width: 768px) {
      .swiper-slide {
        height: 220px;
      }
    }

    .swiper-button-next, .swiper-button-prev{ color: var(--accent-color) !important;}


   /* Section Styling */
.home-collection {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}
.home-collection .container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}
.home-collection .title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}
.home-collection .subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}
.home-collection .collection-grid {
  column-count: 4;
  column-gap: 20px;
}
 .home-collection .item {
  break-inside: avoid;
  margin-bottom: 20px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.home-collection .item img {
  width: 100%;
  display: block;
}
.item.info-box {
  padding: 20px;
  background-color: #ddd;
  text-align: left;
}
.item.info-box.light {
  background-color: #dbe6e7;
}
.item.info-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.item.info-box p {
  font-size: 14px;
  color: #333;
}

@media screen and (max-width: 1024px) {
  .home-collection .collection-grid {
    column-count: 3;
  }
}
@media screen and (max-width: 768px) {
 .home-collection .collection-grid {
    column-count: 2;
  }
}
@media screen and (max-width: 480px) {
 .home-collection .collection-grid {
    column-count: 1;
  }
}

.mySwiper{ background-color: #eee;}
.mySwiper h2{ text-align: center; padding: 50px 0px;}

.swiper-backface-hidden .swiper-slide p{
  opacity: 0;
  position: absolute;
  left: 40%;
  
}
.swiper-backface-hidden .swiper-slide{
  transition: 1.5s;
}

.swiper-backface-hidden .swiper-slide:hover p{
  bottom: 20px;
  opacity: 1;
}

.map-section iframe{
  width: 100%;
  height: 400px;
}