
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --accent-color: #3498db;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333;
            --text-light: #777;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
       /* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background: #eceef4;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 95px;
  height: 80px;
}

.logo span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links li a {
  text-decoration: none;
  color: #302323;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #f45438;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0f172a;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

        /* Hero Section */
     
  .hero {
    position: relative;
    height: 85vh;                /* Adjust between 70vh–100vh as needed */
    min-height: 620px;           /* Prevents becoming too small on big screens */
    max-height: 900px;           /* Optional – cap it so it doesn't dominate too much */
    overflow: hidden;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
  }

  .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;           /* Key: keeps aspect ratio, crops edges if needed */
    object-position: center;     /* Centers the most important part */
    display: block;
  }

  .hero-title {
  font-size: 5.5rem;
  font-weight: 800;
  margin: 0 0 0.4em 0;
  letter-spacing: -1px;
  line-height: 1;
  color: white;
  text-shadow: 0 4px 16px rgba(0,0,0,0.65);
}

.hero-title span {
  color: #e34b28;           /* or your brand accent color */
  font-weight: 900;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3.8rem;
    margin-bottom: 0.6em;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3.2rem;
  }
}
  /* Dark overlay to improve text readability */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.55) 60%,
      rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 2;
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 920px;
    padding: 0 25px;
    width: 100%;
  }

  .subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0 0 2.5rem;
    line-height: 1.45;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    flex-wrap: wrap;
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.4rem;
    font-size: 1.18rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 200px;
  }

  .cta-button.primary {
    background: #eb6c45;
    color: white;
    border: 2px solid #eb6c45;
  }

  .cta-button.primary:hover {
    background: #eb6c45;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(59,130,246,0.35);
  }

  .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }

  .cta-button.secondary:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
  }

  /* Mobile adjustments */
  @media (max-width: 768px) {
    .hero {
      height: 70vh;
      min-height: 540px;
    }

    .subtitle {
      font-size: 1.35rem;
      margin-bottom: 2rem;
    }

    .hero-buttons {
      flex-direction: column;
      gap: 1.2rem;
    }

    .cta-button {
      width: 100%;
      max-width: 340px;
      padding: 0.95rem 2rem;
    }
  }

  /* Very wide desktops – prevent image stretching */
  @media (min-width: 1600px) {
    .hero {
      height: 80vh;
    }
  }


        /* About Section */
       .section {
  padding: 80px 0;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #1c2029;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 2.1rem;
  color:#e34b28;
  margin-bottom: 1.2rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.details-list {
  list-style: none;
  font-size: 1.15rem;
  line-height: 2.2;
}

.details-list li {
  margin-bottom: 0.8rem;
}

.details-list strong {
  color: #e34b28;
  min-width: 140px;
  display: inline-block;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  font-size: 2.2rem;
  color:#e34b28;
}

.contact-details h4 {
  margin: 0;
  font-size: 1.3rem;
  color: #1f2937;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  object-fit: cover;
  aspect-ratio: 4/3; /* Optional: keeps nice proportion */
}

/* Mobile responsive */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .about-text h3 {
    font-size: 1.9rem;
  }
}
        /* Products Section */

        .section.products {
  background-color: #e68a78;      /* dark navy / slate */
  color: #e2e8f0;                 /* light text if you add titles/descriptions later */
  padding: 80px 0;
}

.product-card {
  background: #1e293b;            /* darker card background */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
   
 .products-grid {
    
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;          /* square – change to 4/3 or auto if preferred */
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



/*why choose us*/

.why-choose-us {
  padding: 80px 0;
  background-color: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3.5rem;
  color: #0f172a;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3.2rem;              /* big & clear */
  color: #e27a65;                 /* your accent color – change if needed */
  margin-bottom: 1.4rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  color:#e27a65;                 /* darker on hover */
  transform: scale(1.15);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #e27a65;
  font-weight: 600;
}

.feature-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/*Brand*/

.brand-section {
  padding: 70px 0 90px;
  background-color: #e68a78; /* or #f9fafb / #f8fafc for subtle contrast */
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #1f2329c8;
  font-weight: 700;
}

.brand-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  animation: slide 40s linear infinite;   /* ← SLOWER: was 25s, now 40s */
  will-change: transform;                 /* smoother performance */
}

.slider-track img {
  height: 120px;                          /* ← LARGER: was 80px, now 120px */
  margin: 0 50px;                         /* more space between logos */
  flex-shrink: 0;
  object-fit: contain;
  filter: grayscale(80%);
  transition: filter 0.4s ease, transform 0.3s ease;
}

.slider-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* Infinite loop animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause when hovering over the slider */
.brand-slider:hover .slider-track {
  animation-play-state: paused;
}

/* Responsive – smaller on mobile */
@media (max-width: 992px) {
  .slider-track img {
    height: 100px;
    margin: 0 35px;
  }
  .slider-track {
    animation-duration: 45s;              /* even slower on tablets */
  }
}

@media (max-width: 576px) {
  .slider-track img {
    height: 80px;
    margin: 0 25px;
  }
  .slider-track {
    animation-duration: 50s;              /* very relaxed on phones */
  }
}
        /* Contact Section */

        .section.contact {
  padding: 80px 0;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  color: #0f172a;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
  min-height: 580px;
}

/* Form Styles */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1;
  min-width: 0;
}

.form-group.full-width {
  flex: 100%;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.captcha-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.captcha-image {
  height: 48px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
}

.captcha-note {
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: -10px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59,130,246,0.3);
}

/* Map Styles */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: #e5e7eb;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .map-container {
    height: 500px;
  }
}

@media (max-width: 576px) {
  .contact-form {
    padding: 30px 20px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
}.video-section{
  padding:60px 20px;
  background:#f8f9fa;
}

.section-title{
  text-align:center;
  font-size:32px;
  margin-bottom:30px;
  color:#222;
}

.video-wrapper{
  display:flex;
  justify-content:center;
}

.product-card{
  width:400px;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.product-doc video{
  width:100%;
  height:260px;
  object-fit:cover;
}

     /* Footer */
       .footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 0 40px;
  font-size: 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  color: rgb(215, 114, 114);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d46565;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact i {
  font-size: 1.4rem;
  color: #49db97;
  margin-top: 4px;
}

.footer-contact a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #49db97;
}

.qr-section {
  margin: 20px 0;
  text-align: center;
}

.footer-qr {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 2px solid #334155;
}

.qr-text {
  font-size: 0.9rem;
  color: #94a3b8;
}



.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 30px;
  text-align: center;
  font-size: 0.95rem;
  color: #94a3b8;
}

.copyright {
  margin-bottom: 8px;
}

.designed-by a {
  color: #cd7b6d;
  text-decoration: none;
  font-weight: 500;
}

.designed-by a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer {
    padding: 60px 0 30px;
  }
}



/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    padding: 12px 20px;
  }

  .logo img {
    width: 70px;
    height: 60px;
  }

  /* HERO */
  .hero {
    height: auto;
    min-height: 500px;
    padding: 60px 0;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  /* ABOUT */
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-text h3 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  /* PRODUCTS */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* WHY CHOOSE US */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 25px 20px;
  }

  /* BRAND SLIDER */
  .slider-track img {
    height: 70px;
    margin: 0 15px;
  }

  /* CONTACT */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 25px 15px;
  }

  .map-container {
    height: 300px;
  }

  /* FOOTER */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-links li {
    text-align: center;
  }

}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 18px;
  }

  .product-card {
    width: 100%;
  }

}


@media (max-width: 768px) {

  .products-grid {
    grid-template-columns: 1fr 1fr; /* 2 equal columns */
    gap: 12px;
    padding: 0 10px;
  }

  .product-card {
    border-radius: 10px;
    overflow: hidden;
  }

  .product-img {
    aspect-ratio: 1 / 1;
  }

}


/* ================= PRODUCTS MOBILE FIX ================= */
@media (max-width: 768px) {

  .products-grid {
    grid-template-columns: 1fr;   /* ✅ ONE COLUMN */
    gap: 18px;
    padding: 0 12px;
  }

  .product-card {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }

  .product-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* PDF Section Fix */
  .product-doc iframe {
    width: 100%;
    height: 300px;
    border: none;
  }

}




/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
  color: #333;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* ================= SECTION ================= */
.section {
  width: 100%;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

/* ================= PRODUCTS ================= */
.section.products {
  background: #e68a78;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.product-img {
  width: 100%;
  aspect-ratio: 1/1;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PDF */
.product-doc iframe {
  width: 100%;
  height: 250px;
  border: none;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .container {
    max-width: 100%;
    padding: 0 10px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  /* 🔥 MAIN FIX: ONE COLUMN */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-card {
    width: 100%;
  }

  .product-img {
    aspect-ratio: auto;
  }

  .product-img img {
    height: auto;
  }

  .product-doc iframe {
    height: 300px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .section-title {
    font-size: 1.5rem;
  }

  .products-grid {
    gap: 12px;
  }

}