/* Global CSS Styles for Oil & Chemical Industry Website */
:root {
 /* Color Palette (updated for black & white logo) */
--primary-blue: #032843;       /* near black */
--primary-blue-dark: #444444;  /* neutral dark gray */
--accent-orange: #F2C95E;      /* gold accent */
--accent-orange-dark: #EFBC38; /* darker gold for hover */

  --metallic-silver: #9ca3af;
  --dark-grey: #1f2937;
  --medium-grey: #4b5563;
  --light-grey: #f3f4f6;
  --white: #ffffff;
  --black: #000000;
  

  /* #032843 */



  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-grey);
  background-color: var(--white);
}


/* About us left over  */
.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem; /* spacing between items */
  margin: 1rem 0;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-item .counter {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-orange);
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.info-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-md);

 opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}
.info-card.show {
  opacity: 1;
  transform: translateY(0);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.info-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.info-card p {
  font-size: 0.9rem;
  color: #444;
  margin: 0;
}


.info-card .info-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}


.custom-products-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */

    /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: repeat(3, 1fr); 


  gap: 35px;
  margin-top: 20px;
  margin-bottom: 3rem;
}

.custom-product-card {
  text-decoration: none;
  color: inherit;
}

.custom-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.custom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.custom-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  padding: 15px;
  background: #f7f7f7;
  margin: 0;
  color: #222;
  border-top: 1px solid #eee;
  transition: background 0.3s;
}

.custom-card:hover .product-name {
  background: #ececec;
}
 .btn-primary {
    background: linear-gradient(135deg, #032843, #065a9e);
    border: none;
    font-weight: 600;
  }

  .btn-primary:hover {
    background: linear-gradient(135deg, #065a9e, #032843);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  }

  .btn-lg {
    padding: 12px 35px;
    font-size: 16px;
  }


/* Responsive - 2 per row on mobile */
@media (max-width: 768px) {
  .custom-products-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

/* Extra small screens - 1 per row */
/* @media (max-width: 480px) {
  .custom-products-grid {
    grid-template-columns: 1fr; 
  }
} */

/* Base hidden state */
.custom-product-card {
  opacity: 0;
  transform: translateY(50px); /* start below */
  transition: all 0.8s ease-out;
}

/* When visible on scroll */
.custom-product-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: stagger effect (delay) */
.custom-products-grid .custom-product-card:nth-child(1) { transition-delay: 0.1s; }
.custom-products-grid .custom-product-card:nth-child(2) { transition-delay: 0.2s; }
.custom-products-grid .custom-product-card:nth-child(3) { transition-delay: 0.3s; }
.custom-products-grid .custom-product-card:nth-child(4) { transition-delay: 0.4s; }
.custom-products-grid .custom-product-card:nth-child(5) { transition-delay: 0.5s; }
.custom-products-grid .custom-product-card:nth-child(6) { transition-delay: 0.6s; }

/* why choose us  */

/* Section Wrapper */
.why-choose-us {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.why-choose-us .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #002943;
}

/* Grid Layout */
.cards-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 3 per row desktop */
  gap: 24px;
}

/* Card Style */
.card {
  background: #fff;
  border-radius: 14px;
  padding: 25px 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.8s ease, translate 0.8s ease;
  text-align: center;

  /* animation start state */
  opacity: 0;
  translate: 0 30px;
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.card h4 {
  font-size: 1rem;
  font-weight: bold;
  color: #002943;
  margin: 0;
}

/* Hover */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

/* Scroll animation visible state */
.card.show {
  opacity: 1;
  translate: 0 0;
}

/* Responsive - 2 per row on tablets */
@media (max-width: 768px) {
  .cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - 1 per row on small mobiles */
/* @media (max-width: 480px) {
  .cards-row {
    grid-template-columns: 1fr;
  }
} */



/* Get quote  */
/* Custom Quote Section */
.custom-quote-section {
  padding: 50px 20px;
  background: #f5f7fa;
}

.custom-title-box {
  text-align: center;
  margin-bottom: 40px;
}

.custom-title-box h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.custom-title-box p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.custom-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 0 auto;
}

.custom-quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.custom-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.custom-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.custom-form-group label {
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.custom-input {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: 0.3s;
  font-size: 1rem;
}

.custom-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0,123,255,0.2);
  outline: none;
}

.custom-submit-box {
  text-align: center;
  margin-top: 20px;
}

.custom-btn {
  background: linear-gradient(135deg, #111111, #222222);
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-btn:hover {
background: linear-gradient(135deg, #EDB41F, #f5c842, #c28d10);

  transform: translateY(-2px);
}

/* Animation */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}


/* About us page  */

.goel-about-section {
  padding: 30px 20px;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65));
  background-size: cover;
  color: #fff;
  margin-top: 3rem;
}

.goel-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.goel-header {
  text-align: center;
  margin-bottom: 40px;
}

.goel-header h1 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: -1px;
  animation: goel-glow 2s infinite;
}

.goel-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.goel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.goel-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 24px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
}

.goel-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
}

.goel-card h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #bfdbfe;
  margin-bottom: 16px;
}

.goel-card p,
.goel-card ul {
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.5;
}

.goel-card ul {
  list-style: none;
  padding-left: 0;
}

.goel-card ul li {
  margin-bottom: 8px;
  position: relative;
  /* padding-left: 30px; */
}

.goel-card ul li::before {
  /* content: "🛢️"; */
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

 .about-sec{position:relative;padding: 20px 10px;}
  .about-sec-container{max-width:1100px;margin:auto;display:grid;grid-template-columns:1.06fr .94fr;gap:clamp(28px,4vw,56px);align-items:center}
  @media(max-width:900px){.about-sec-container{grid-template-columns:1fr}}

  .about-sec-eyebrow{display:inline-flex;align-items:center;gap:10px;color:#8ba0b6;text-transform:uppercase;font-weight:600;font-size:.8rem}
  .about-sec-eyebrow .dot{width:8px;height:8px;border-radius:50%;background:#ffb703;box-shadow:0 0 0 6px rgba(255,183,3,.45)}
  .about-sec-title{margin:.4rem 0 1rem;font-size:clamp(28px,4.2vw,44px)}
  .about-sec-subtitle{color:#8ba0b6;font-size:1.05rem;max-width:55ch}

  .about-sec-features{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:26px 0 8px}
  @media(max-width:700px){.about-sec-features{grid-template-columns:1fr}}
  .about-sec-feature{display:flex;gap:12px;padding:14px;border:1px solid rgba(255,255,255,.06);background:rgba(255,255,255,.03);border-radius:16px;align-items:flex-start}
  .about-sec-feature h4{margin:2px 0 4px;font-size:1rem}
  .about-sec-feature p{margin:0;color:#8ba0b6;font-size:.95rem}

  .about-sec-stats{display:flex;gap:18px;flex-wrap:wrap;margin:22px 0 28px}
  .about-sec-stat{min-width:170px;flex:1 1 170px;background:#121821;padding:16px 18px;border-radius:16px;border:1px solid rgba(255,255,255,.06)}
  .about-sec-stat .num{font-size:1.8rem;font-weight:800}
  .about-sec-stat .label{color:#8ba0b6;font-size:.9rem}

  .about-sec-actions{display:flex;gap:12px;flex-wrap:wrap}
  .about-sec-btn{border-radius:999px;padding:12px 18px;font-weight:700;text-decoration:none;display:inline-flex}
  /* .btn-primary{background:#ffb703;color:#1a1a1a} */
  .btn-outline{border:1px solid rgba(255,255,255,.18);color:#fff}

  .about-sec-media{position:relative}
  .about-sec-badge{position:absolute;right:16px;top:16px;background:rgba(33,158,188,.18);padding:10px 14px;border-radius:999px}
  .about-sec-visual{border-radius:24px;overflow:hidden;background:#0f1722;min-height:300px;display:flex;align-items:center;justify-content:center}
  .oil-svg{width:90%;max-height:420px}

  /* Animations */
  .reveal{opacity:0;transform:translateY(18px);transition:.7s ease}
  .reveal.is-visible{opacity:1;transform:translateY(0)}


@keyframes goel-slideIn {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes goel-glow {
  0% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.5); }
  50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.8); }
  100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.5); }
}

.fade-on-scroll:nth-child(1) { animation: goel-slideIn 1.2s ease-out 0.2s forwards; }
.fade-on-scroll:nth-child(2) { animation: goel-slideIn 1.2s ease-out 0.4s forwards; }
.fade-on-scroll:nth-child(3) { animation: goel-slideIn 1.2s ease-out 0.6s forwards; }

@media (max-width: 768px) {
  .goel-header h1 { font-size: 2.2rem; }
  .goel-header p { font-size: 1rem; }
  .goel-wrapper { padding: 20px; }
  .goel-card h2 { font-size: 1.5rem; }
}

.goel-testimonials-section {
  padding: 60px 20px;
  background: #f5f7fa;
  color: #333;
}
.goel-testimonials-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.goel-testimonials-heading {
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.goel-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.goel-testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.5;
}
.testimonial-author {
  font-weight: bold;
  font-size: 1rem;
  color: #1f2937;
}
.goel-testimonials-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 1rem;
}

.goel-testimonial-card {
  /* background: #f9f9f9; */
  border-radius: 10px;
  padding: 1.5rem;
  flex: 0 0 calc(33.333% - 1rem); /* 3 cards per row */
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: bold;
  font-size: 0.95rem;
  color: #333;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #002943;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
}

.carousel-btn.prev {
  left: 0.5rem;
}

.carousel-btn.next {
  right: 0.5rem;
}

/* Responsive: 2 cards on mobile */
@media (max-width: 900px) {
  .goel-testimonial-card {
    flex: 0 0 100%; /* 1 card per row */
    margin: 0 auto; /* center the card */
  }
}



/* product page  */
/* Industrial Oils Section */
.industrial-oils-sec {
  padding: 40px 0;
  background: #fafafa;
}

.ind-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.ind-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #222;
}

.ind-subtitle {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}

/* Grid Layout */
.ind-card-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Card */
.ind-card {
  background: #fff;
  /* border-radius: 14px; */
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ind-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* .ind-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
} */

.ind-card-img {
  width: 100%;        /* take full card width */
  height: auto;       /* keep natural aspect ratio */
  object-fit: contain; /* ensures full image fits without cropping */
  display: block;     /* removes inline gaps */
  margin: 0 auto;     /* centers the image */
}

.ind-card-body {
  padding: 20px;
}

.ind-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.ind-card-text {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* Specs */
.ind-specs {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 15px;
  padding-left: 18px;
  text-align: left;
}

/* Buttons */
.ind-btn-group {
  display: flex;
  gap: 10px;
}

.ind-btn {
  padding: 8px 16px;
  /* border-radius: 8px; */
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ind-btn-primary {
  background: #222;
  color: #fff;
}

.ind-btn-primary:hover {
  background: #444;
}

.ind-btn-secondary {
  background: #eee;
  color: #222;
}

.ind-btn-secondary:hover {
  background: #ddd;
}

/* Mobile responsiveness */
@media (max-width: 900px) {
  .ind-card-grid {
    flex-direction: column;
    align-items: center;
  }

  .ind-card {
    flex: 1 1 100%; /* full width of the row */
    max-width: 100%;
  }
  .ind-card-grid {
  display: flex;
  }
}



/* product pages  */

/* ==========================
   PRODUCTS SECTION STYLING
   ========================== */
:root {
  --primary: #F2C94C;
  --secondary: #0b0f14;
  --card: #121821;
  --text: #ffffff;
  --muted: #8ba0b7;
  --accent: #00bfff;
}

#products {
  /* background: var(--secondary); */
  color: var(--text);
  overflow: hidden;
  padding-bottom: 2rem;
}

/* Header */
#products .header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text);
}

#products .header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

#products .header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Product Item */

/* all 6 products navigation  */
  .product-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .product-categories a {
    flex: 1 1 150px; /* default for larger screens */
    max-width: 200px;
    text-align: center;
    padding: 1rem 0.5rem;
    border-radius: 8px;
    background: #f5d364; /* gold-ish background for buttons */
    color: #000;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .product-categories a:hover {
    background: #e0c850;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }

  /* Mobile: 2 per row */
  @media (max-width: 768px) {
    .product-categories a {
      flex: 1 1 calc(50% - 0.5rem); 
      max-width: none;
      padding: 1rem 0;
    }
  }

  /* Small mobile: optional 1 per row for very small screens */
  @media (max-width: 480px) {
    .product-categories a {
      flex: 1 1 100%;
    }
  }

#products .product-item {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

#products .product-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  background: #032843;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  padding: 2rem;
}

#products .product-image {
  width: 40%;
  margin-right: 2rem;
}

#products .product-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

#products .product-image img:hover {
  transform: scale(1.05);
}

#products .product-details {
  width: 60%;
}

#products .product-details h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

#products .product-details p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

#products .product-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

#products .product-details ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

#products .product-details ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
}

/* Buttons */
#products .btn-group {
  display: flex;
  gap: 1rem;
}

#products .btn-primary,
#products .btn-secondary {
  padding: 0.75rem 1.2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* WhatsApp Button (icon only) */
#products .btn-primary {
  background: #25d366;
  color: var(--text);
  font-size: 1.3rem; /* larger for icon */
  width: 48px;
  height: 48px;
  padding: 0;
}

#products .btn-primary:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

/* Secondary button */
#products .btn-secondary {
  background: transparent;
  border: 1px solid #032843;
  color: var(--primary);
  /* padding: 0.75rem 1.5rem; */
}

#products .btn-secondary:hover {
  background: #EDB41F;
  color: var(--text);
  transform: scale(0.9);
}

/* CTA Section */
#products .cta-section {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--primary);
  color: var(--text);
}

#products .cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#products .cta-section p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

#products .cta-section a {
  background: var(--secondary);
  color: var(--text);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

#products .cta-section a:hover {
  background: #1e2633;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  #products .product-item {
    min-height: 700px;
    background-attachment: scroll;
  }

  #products .product-content {
    flex-direction: column;
    padding: 1.5rem;
  }

  #products .product-image,
  #products .product-details {
    width: 100%;
    margin: 0;
  }

  #products .product-image img {
    height: 250px;
    margin-bottom: 1.5rem;
  }

  #products .header h1 {
    font-size: 2rem;
  }

  #products .header p {
    font-size: 1rem;
  }
}


/* Get Quote */

/* Slide Panel Base */
/* Panel should always fill screen height and half width */
.quote-panel {
  position: fixed;
  top: 0;
  right: -50%;
  width: 50%;
  max-width: 600px;
  height: 100vh; /* Full viewport height */
  background: #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 9999;
  display: flex;
  align-items: stretch; /* Stretch children to full height */
  justify-content: center;
}
.quote-panel.active { right: 0; }

/* Layout */
.quote-content {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden; /* Prevent both sides scrolling */
}

.quote-left {
  flex: 1;
  background: #f5f5f5;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-left img {
  max-width: 180px;
  margin: 0 auto 1rem;
}
.quote-left h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.quote-left p {
  font-size: 1rem;
  color: #555;
}

/* Form Side */
.quote-right {
  flex: 2;
  padding: 2rem;
  overflow-y: auto; /* Scroll only the form */
  height: 100%; /* Fill panel */
}
.quote-right h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.quote-right form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-right input,
.quote-right select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
}
.submit-btn {
  padding: 12px;
  background: #032843;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}
.submit-btn:hover { background: #EFBC38; }

/* Close Btn */
.close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 2rem;
  cursor: pointer;
}

/* call to action help  */

#main-div {
  position: fixed;
  right: 30px;
  bottom: 60px;
  z-index: 43454354530;
}

#main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  font-size: 20px;
  color: #2E3192;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

#main-button ~ button {
  visibility: hidden;
  font-weight: 600;
  height: 50px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(90deg, #d6f6d6, #09db09);
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
  border: 0;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  opacity: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: .2s all linear;
  -webkit-transition: .2s all linear;
  -moz-transition: .2s all linear;
  -ms-transition: .2s all linear;
  -o-transition: .2s all linear;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

#main-button.open ~ button {
  visibility: visible;
  right: 70px;
  opacity: 1;
  transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -webkit-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -moz-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -ms-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -o-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button ~ a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 50px;
  width: 50px;
  font-size: 20px;
  opacity: 0;
  text-decoration: none;
  color: #fff;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: .2s all linear;
  -webkit-transition: .2s all linear;
  -moz-transition: .2s all linear;
  -ms-transition: .2s all linear;
  -o-transition: .2s all linear;
}

#main-button ~ .telegram-color {
  background: linear-gradient(0deg, #017AB1, #01ABE6);
}
#main-button ~ .question-color {
  background: linear-gradient(0deg, #ff0000, #e70a0a);
}
#main-button ~ .whatsapp-color {
  background: linear-gradient(0deg, #00B100, #09db09);
}

#main-button ~ .messenger-color {
  background: linear-gradient(0deg, #0078FF, #00C6FF);
}

#main-button.open ~ a {
  opacity: 1;
  transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -webkit-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -moz-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -ms-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -o-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
}
#main-button.open ~ a:nth-of-type(1) {
  bottom: 60px;
}
#main-button.open ~ a:nth-of-type(2) {
  bottom: 120px;
}
#main-button.open ~ a:nth-of-type(3) {
  bottom: 180px;
}

.wave {
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes wave {
  0% {box-shadow: 0 0 0px 0px rgba(37, 207, 34, 0.432)}
  100% {box-shadow: 0 0 0px 10px #09db0940}
}
@media only screen and (max-width: 992px) {

  .header_banner_lead_card{
    padding: 20px 8px;
  }
  .header_banner_title {
   
    font-size: 30px;
   

}
}
.progress-wrap.active-progress{
    display:none;
}


.bottle{
  position: absolute;
  top: 0px;
  left: 120px;
}
.bottle2{
  position: absolute;
  top: 0;

  left: 25.9%;
  max-width: 100%;
}
.bottle3{
  position: absolute;
  left: 14.7%;
top: 0;
}
.mob-only{
  display: none !important;
}
.desk-only{
  display: block !important;

}
@media only screen and (max-width: 782px) {
  .mob-only{
    display: block !important;
  }
  .desk-only{
    display: none !important;
  
  }
  .bottle{
    position: absolute;
    top: 0px;
    left: 60px;
  }
 
}
