.site-header {
    background-color: #ffffff;
    padding: 10px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    justify-content: flex-start;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.divider-line {
  height: 40px;
  width: 2px;
  background-color: black;
  margin: 0 10px;
}

.logo-img {
    height: 200px;
    width: auto;
    margin-right: 12px;
    flex-shrink: 0;
}

.site-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: black; /* Or desired navy shade */
}

@keyframes fadeInLogo {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-img {
  height: 200px;
  width: auto;
  margin-right: 12px;
  flex-shrink: 0;

  /* 👇 Animation properties */
  opacity: 0;
  animation: fadeInLogo 3s ease-in-out forwards;
  animation-delay: 0.5s;
}

/* Mobile view fix */
@media (max-width: 600px) {
    .site-header {
        padding: 10px;
    }

    .logo-img {
        height: 100px;
        margin-right: 10px;
        animation-duration: 0.7s;
    }

    .site-title {
        font-size: 1.6em;
    }

    .logo-container {
        flex-wrap: nowrap;
    }
}

/* --- Navbar Styling --- */
.navbar {
  background-color: black; /* Dark brown */
  height: 50px;
  display: center;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;

  /* 👇 New: 3D Shadow */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);

  /* 👇 Optional: Slightly smooth edges */
  border-radius: 6px;
}


.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(-30%);
    background-color: black;
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    gap: 20px;
    justify-content: center;
    align-items: center;
    transition: transform 0.1s ease, opacity 0.1s ease;
    z-index: 1;
}

.nav-links.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        pointer-events: auto;
}

.nav-links li a {
    color: White;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    margin: 8px 0;
}

.nav-links li {
  position: relative;
  padding: 10px 0;
}

.nav-links li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; /* chhoti line */
  height: 1px;
  background-color: white;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

.menu-toggle {
    display: center;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    align-items: center;           /* 👈 Add this */
    justify-content: center;       /* 👈 Add this */
    margin: 0 auto;                /* 👈 Ye karne se center me aayega */
    width: 40px;                   /* 👈 Width fix karo for neatness */
    background-color: transparent;       /* 👈 White background */
    padding: 8px;
    border-radius: 5px;
}

.bar {
    height: 2px;
    width: 100%;
    background-color: White;
    margin: 4px 0;
    transition: 0.1s;
}

/* Mobile View */
@media (max-width: 768px) {
    .nav-links {
     list-style: none;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(-30%);
    background-color: black;
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    gap: 20px;
    justify-content: center;
    align-items: center;
    transition: transform 0.1s ease, opacity 0.2s ease;
    z-index: 1;
    }


    .menu-toggle {
        display: flex;
    }


.nav-links.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        pointer-events: auto;
}


    /* Bar animation to cross */
    .menu-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* --- Ship Banner Section --- */
.ship-image {
    width: 100%;
    overflow: hidden;
    animation: fadeIn 5s ease-in-out;
}

.ship-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-top: 10px;
}

/* Fade-in Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(1.03);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: black;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
  animation: slideFromRight 1s ease-out forwards;
  transform: translateX(-100%);
  opacity: 0;
}

@keyframes slideFromRight {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: auto;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}


html {
  scroll-behavior: smooth;
}


/* --- About Section Styling --- */
.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.about-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #004080;
  margin-bottom: 20px;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

/* Stats Section */
.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 30px;
}

.stat-box {
  text-align: center;
  min-width: 120px;
}

.counter {
  font-size: 3rem;
  font-weight: 800;
  color: #004080;
}

.stat-label {
  font-size: 1.1rem;
  margin-top: 10px;
  font-weight: 500;
  color: #333;
}

/* Divider Line */
.divider-line-h {
  width: 1px;
  height: 70px;
  background-color: black;
  opacity: 0.4;
}
.typed-quote {
  font-size: 1.4rem;
  font-weight: 700;
  color: #004080;
  line-height: 1.5;
}

.products-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.products-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #000;
  font-family: 'Poppins', sans-serif;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  margin: 20px auto;
  width: 150px;
  transition: transform 0.3s ease;
}

.product-item img {
  width: 100px;
  height: 100px;
  border-radius: 50%; /* Round Image */
  border: 2px solid #00000020;
  padding: 8px;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.product-item p {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.product-item:hover {
  transform: scale(1.05);
}

/* Contact Us Section Updated */
.contact-us-section {
  background-color: #000; /* Pure black background */
  color: #f1f1f1;
  padding: 60px 20px;
  text-align: center;
  border-top: 3px solid #f1c40f;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #f1c40f;
}

/* Decorative Yellow Lines Inside Box */
.contact-us-section::before,
.contact-us-section::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, #f1c40f, transparent);
  left: 10%;
}

.contact-us-section::before {
  top: 20px;
}

.contact-us-section::after {
  bottom: 20px;
}

.contact-us-section h2 {
  font-size: 2.2em; /* Reduced from 3em */
  color: #f1c40f;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
  font-weight: bold;
}

.contact-details p {
  font-size: 1.1em;
  margin: 10px 0;
  color: #ccc;
}

.contact-details strong {
  color: #f1c40f;
}

/* Footer */
.site-footer {
  background-color: #000;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
  color: #888;
  border-top: 1px solid #333;
}



.automation-section {
  background-color: #f2f8ff;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.automation-title {
  font-size: 36px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 30px;
  border-left: 6px solid #007BFF;
  padding-left: 15px;
}

.brand-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brand-list li {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideIn 0.6s ease-out forwards;
}

.brand-list li:nth-child(1) { animation-delay: 0.1s; }
.brand-list li:nth-child(2) { animation-delay: 0.2s; }
.brand-list li:nth-child(3) { animation-delay: 0.3s; }
.brand-list li:nth-child(4) { animation-delay: 0.4s; }
.brand-list li:nth-child(5) { animation-delay: 0.5s; }
.brand-list li:nth-child(6) { animation-delay: 0.6s; }
.brand-list li:nth-child(7) { animation-delay: 0.7s; }
.brand-list li:nth-child(8) { animation-delay: 0.8s; }
.brand-list li:nth-child(9) { animation-delay: 0.9s; }
.brand-list li:nth-child(10) { animation-delay: 1.0s; }
.brand-list li:nth-child(11) { animation-delay: 1.1s; }
.brand-list li:nth-child(12) { animation-delay: 1.2s; }
.brand-list li:nth-child(13) { animation-delay: 1.3s; }
.brand-list li:nth-child(14) { animation-delay: 1.4s; }
.brand-list li:nth-child(15) { animation-delay: 1.5s; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.left-overlay {
  position: absolute;
  top: 20%;
  left: 5%;
  padding: 20px;
  color: white;
  border-radius: 10px;
  max-width: 300px;
  /* ...existing styles... */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);

}

.left-overlay .counter-box {
  margin-bottom: 15px;
}

.left-overlay .counter-box h2 {
  font-size: 24px;
  margin: 0;
}

.left-overlay .counter-box p {
  font-size: 25px;
  font-weight: 700;
  font-family: 'Segoe UI', Sans-Serif;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
  margin: 0.5;
  color: #eee;
}


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background: #f9f9f9;
  color: #333;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.image-section {
  flex: 1 1 50%;
  position: relative;
  padding: 10px;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
}

.slider img {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: skyblue;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 4px;
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}

.info-section {
  flex: 1 1 50%;
  padding: 10px 20px;
}

.price {
  font-size: 24px;
  color: #e63946;
  margin-bottom: 10px;
}

.details p {
  margin: 4px 0;
}

.add-to-cart, .offer-btn {
  background-color: #000;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 10px 5px 0 0;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}

.tabs {
  margin-top: 20px;
  display: flex;
}

.tab-btn {
  flex: 1;
  padding: 10px;
  background: #eee;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.tab-btn.active {
  background: #000;
  color: white;
}

.tab-content {
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  margin-top: 0;
}


.stock-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  color: white;
  padding: 20px 30px;
  font-size: 28px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  margin: 40px 0;
  border-radius: 5px;
}

.stock-banner:hover {
  background-color: #1a1a1a;
}

.banner-text {
  letter-spacing: 1px;
}

.banner-arrow {
  font-size: 40px;
}

.category-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  color: white;
  padding: 20px 30px;
  font-size: 24px;
  text-decoration: none;
  font-weight: bold;
  margin: 20px 0;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideIn 0.6s ease forwards;
}

.category-banner:nth-child(1) {
  animation-delay: 0.2s;
}

.category-banner:nth-child(2) {
  animation-delay: 0.4s;
}

.category-banner:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-banner:hover {
  background-color: #1a1a1a;
}

.category-banner .banner-arrow {
  font-size: 36px;
}


.product-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  color: white;
  padding: 18px 25px;
  font-size: 22px;
  text-decoration: none;
  font-weight: 600;
  margin: 20px 0;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlide 0.6s ease forwards;
  transition: background 0.3s ease;
}

.product-banner:hover {
  background-color: #1a1a1a;
}

.product-banner .banner-arrow {
  font-size: 34px;
}

/* Slow motion fade-in animation */
@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* If multiple items added, delay them one by one */
.product-banner:nth-child(1) {
  animation-delay: 0.2s;
}

.product-banner:nth-child(2) {
  animation-delay: 0.4s;
}

.product-banner:nth-child(3) {
  animation-delay: 0.6s;
}


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

/* Font */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
.product-header {
  background-color: navy; /* ⬅️ Navy Blue Header */
  color: white;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

/* Container */
.container {
  width: 90%;
  margin: auto;
}

/* Product Section */
.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  background-color: #fff;
  max-width: 1200px;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product-details {
  flex: 1;
  margin-left: 30px;
  min-width: 280px;
}

.product-details h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.price {
  font-size: 22px;
  color: green;
  margin-bottom: 15px;
  font-weight: bold;
}

.description {
  font-size: 16px;
  margin-bottom: 25px;
}

.buy-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: navy;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.buy-btn:hover {
  background-color: #000066;
}

/* Responsive */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    align-items: center;
  }

  .product-details {
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
  }
}

/* ========== SLIDER ========== */
.slider {
  position: relative;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: none;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  display: block;
}

/* Dots / Bubble Indicators */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s;
  cursor: pointer;
}

.dot.active {
  background-color: navy;
}
