/* ---------------- GENERAL RESET & FONTS ----------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Use Montserrat as set in index.html */
  body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #444;
  }
  
  /* ---------------- HEADER & NAVIGATION ----------------- */
  .header-fixed {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
  }
  
  .logo {
    color: #3bb8b9;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  /* Menu styles */
  .menu {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .menu > li {
    position: relative;
  }
  
  .menu a {
    text-decoration: none;
    padding: 8px 12px;
    color: #0b1010;
    font-weight: bold;
    transition: color 0.3s ease, border-bottom 0.3s ease;
  }
  
  .menu a:hover {
    color: #3bb8b9;
  }
  
  
  /* ---------------- HERO SECTION ----------------- */
  .hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Optional dark overlay on the hero image */
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(56, 56, 56, 0.4);
    z-index: 1;
  }
  
  .hero-text {
    position: absolute;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 600px;
    padding: 0 1rem;
    animation: fadeInUp 1.2s ease-in-out;
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    letter-spacing: 1px;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  /* Call to Action Button in Hero */
  .btn-cta {
    display: inline-block;
    background-color: #6760cf;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  .btn-cta:hover {
    background-color: #3bb8b9;
  }
  
  /* ---------------- MAIN CONTAINER ----------------- */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
  }
  
  /* ---------------- SECTION TITLES ----------------- */
  .section-title {
    font-size: 2rem;
    text-align: center;
    color: #3bb8b9;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 70%;
    height: 3px;
    /*background: #c8102e;*/
  }
  
  /* ---------------- ABOUT SECTION ----------------- */
  .about-section {
    margin-bottom: 3rem;
  }
  
  .about-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .about-row.reverse {
    flex-direction: row-reverse;
  }
  
  .about-text {
    flex: 1;
    line-height: 1.8;
    font-size: 1rem;
    color: #444;
  }
  
  .about-text p {
    margin-bottom: 1rem;
  }
  
  .about-image {
    flex: 0 0 180px;
    text-align: center;
  }
  
  .about-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .about-highlight {
    text-align: center;
    color: #c8102e;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
  }
  
  /* ---------------- SPECIAL SECTION (Angled Background) ----------------- */
  .special-section {
    position: relative; /* for the angled bg pseudo-element */
    padding: 3rem 1rem;
    margin-bottom: 3rem;
    overflow: hidden;
    z-index: 1;
  }
  
  /* Angled background effect using ::before pseudo-element */
  .special-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    width: 200%;
    height: 150%;
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    transform: skewY(-4deg);
    transform-origin: top left;
    z-index: -1; /* behind your content */
  }
  
  /* Heading inside special-section */
  .special-heading {
    color: #4cbebf;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    position: relative;
  }
  .special-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 60px;
    height: 3px;
    /*background: #3bb8b9;*/
  }
  
  /* Inner container for the two-column layout */
  .special-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
  }
  
  /* The image wrapper (left column) */
  .special-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
  }
  .hover-scale {
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  }
  
  /* The bullet points (right column) */
  .special-points {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }
  
  /* Bullet list items styling */
  .special-points li {
    background: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #c8102e;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* fade-in animation on page load or scroll */
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 0.6s forwards ease;
    /* We'll use --i for a staggered effect (set via nth-child in CSS or inline style) */
    animation-delay: calc(var(--i, 1) * 0.2s);
  }
  
  /* For staggered delay using nth-child */
  .special-points li:nth-child(1) { --i: 1; }
  .special-points li:nth-child(2) { --i: 2; }
  .special-points li:nth-child(3) { --i: 3; }
  .special-points li:nth-child(4) { --i: 4; }
  .special-points li:nth-child(5) { --i: 5; }
  
  /* Hover effect on each bullet */
  .special-points li:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  }
  
  /* Keyframe for fadeUp animation */
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ---------------- CONTACT SECTION ----------------- */
  #contact {
    margin-bottom: 3rem;
  }
  
  .contact-details p {
    font-size: 1rem;
    margin: 0.5rem 0;
    color: #333;
  }
  
  .contact-details a {
    color: #c8102e;
    text-decoration: none;
    font-weight: bold;
  }
  .contact-details a:hover {
    text-decoration: underline;
  }
  
  /* ---------------- FOOTER ----------------- */
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    font-size: 0.9rem;
  }
  footer p {
    margin: 0;
  }
  
  /* ------------- SCROLL REVEAL ANIMATION (Intersection Observer) ------------- */
  /* This ensures sections are hidden initially and reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* --- 1) Grid for the entire special section content (image + points) --- */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns: left=img, right=points */
    gap: 2rem;
    align-items: center; /* Vertically center the image and the points */
  }
  
  /* --- 2) A grid for the "cards" that hold each point --- */
  .special-points-grid {
    display: grid;
    grid-template-columns: 1fr;  /* One column on mobile */
    gap: 1rem; /* Spacing between cards */
  }
  
  /* --- Make it two columns on bigger screens --- */
  @media (min-width: 768px) {
    .special-points-grid {
      grid-template-columns: 1fr 1fr; /* 2 columns for tablets, desktops */
    }
  }
  
  /* --- 3) Styles for each "card" (the bullet points) --- */
  .special-point {
    background: #fff;
    border-left: 4px solid #6760cf;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    /* If you want the fade-up reveal, you can keep the existing fadeUp animation too */
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 0.6s forwards ease;
    /* Stagger delay: if you like that effect, reuse the nth-child or --i variable approach */
  }
  
  /* Hover effect on each card (optional) */
  .special-point:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  }
  
  /* Titles inside each card */
  .special-point h3 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #4cbebf;
  }
  
  .special-point p {
    margin: 0;
    color: #555;
  }
  
  .application-section {
    padding: 3rem 0;
    text-align: center;
  }
  
  .section-heading {
    font-size: 1.8rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .section-heading span {
    font-size: 2.2rem;
    font-weight: bold;
    color: #1c1c50;
    display: block;
    margin-top: 0.3rem;
  }
  
  .application-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .application-item {
    width: 300px;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .application-item:hover {
    transform: translateY(-5px);
  }
  
  .application-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
  
  .application-item h3 {
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .application-item p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  
  .read-more-btn {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid #1c1c50;
    color: #1c1c50;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 3px;
    transition: 0.3s;
  }
  
  .read-more-btn:hover {
    background-color: #1c1c50;
    color: #fff;
  }
  

  /* limit the float’s container if you like */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  z-index: 1000;
  /* optionally center the <img> inside */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* then force the SVG to scale to fit */
.whatsapp-float img {
  max-width: 100%;
  max-height: 100%;
  /* or, if you want an explicit size: */
  /* width: 40px; height: 40px; */
}

/* Logo styling */
.logo {
  display: inline-block;
  margin-right: 2rem; /* space between logo and nav */
}
.logo img {
  max-height: 100px; /* adjust as needed */
  width: 90%;
  vertical-align: middle;
}


/* Ensure the static label lines up nicely: */
.static-product {
  display: block;
  padding: 0.5rem;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-weight: 500;
}

<!-- Updated styles.css -->
/* Responsive Header & Cool Effects */
.header-fixed {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 9999;
  transition: background 0.3s ease;
}

/* Change background on scroll */
.header-fixed.scrolled {
  background: #ffffff;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0.75rem 1rem;
}

.logo img {
  max-height: 100px;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

/* Hamburger Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 10001;
}
.hamburger,
.hamburger::before,
.hamburger::after { 
  content: '';
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}
.hamburger::before {
  position: relative;
  top: -8px;
}
.hamburger::after {
  position: relative;
  top: 5px;
}

/* Toggle animation */
.nav-toggle.active .hamburger {
  background: transparent;
}
.nav-toggle.active .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
  top: 0;
}
.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
  bottom: 0;
}

/* Desktop Menu */
.menu {
  display: flex;
  gap: 1.5rem;
}
.menu a {
  position: relative;
  font-weight: 600;
  color: #333;
  padding: 0.5rem;
  transition: color 0.3s ease;
}
.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #3bb8b9;
  transition: width 0.3s ease;
}
.menu a:hover {
  color: #3bb8b9;
}
.menu a:hover::after {
  width: 100%;
}





/*------------------------------------------------------------------------------------------------*/

/* About Section Mobile Fixes */
.about-section {
  padding: 60px 20px;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.about-image {
  flex: 0 0 300px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Special Section - Clean & Modern Redesign */
.special-section {
  background: #ffffff;
  padding: 80px 20px;
  margin: 60px 0;
  position: relative;
}

.special-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  z-index: -1;
}

.special-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #2d3436;
  position: relative;
}

.special-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #0984e3;
  margin: 20px auto 0;
  border-radius: 2px;
}

.special-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.special-image {
  position: relative;
}

.special-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.special-image img:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.special-points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.special-point {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #0984e3;
}

.special-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-left-color: #74b9ff;
}

.special-point h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2d3436;
  line-height: 1.3;
}

.special-point p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #636e72;
  margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* About Section Mobile */
  .about-row {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .about-row.reverse {
    flex-direction: column;
  }
  
  .about-text {
    order: 2;
    font-size: 15px;
    line-height: 1.7;
    max-width: none;
  }
  
  .about-image {
    order: 1;
    flex: none;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  /* Special Section Mobile */
  .special-section {
    padding: 60px 15px;
    margin: 30px 0;
  }
  
  .special-heading {
    font-size: 2rem;
    margin-bottom: 40px;
    line-height: 1.2;
  }
  
  .special-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .special-image {
    order: 1;
  }
  
  .special-points-grid {
    order: 2;
    gap: 15px;
  }
  
  .special-point {
    padding: 20px;
    margin: 0;
  }
  
  .special-point h3 {
    font-size: 1.1rem;
  }
  
  .special-point p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* About Section Extra Small Mobile */
  .about-section {
    padding: 40px 15px;
  }
  
  .about-text {
    font-size: 14px;
    line-height: 1.8;
  }
  
  .about-image {
    max-width: 250px;
  }

  /* Special Section Extra Small Mobile */
  .special-section {
    padding: 40px 15px;
  }
  
  .special-heading {
    font-size: 1.7rem;
    line-height: 1.3;
  }
  
  .special-inner {
    gap: 30px;
  }
  
  .special-point {
    padding: 18px;
  }
  
  .special-point h3 {
    font-size: 1rem;
  }
  
  .special-point p {
    font-size: 0.85rem;
  }
}


.nav-toggle {
  display: none;
}

/* … all your desktop / global nav styles here … */

/* ---------------- GENERAL RESET & FONTS ---------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #444;
}

/* ---------------- HEADER & NAVIGATION ---------------- */
.header-fixed {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 9999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 1rem 0;
}

/* Logo */
.logo img {
  max-height: 60px;
  width: auto;
  display: block;
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10001;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: transform 0.3s ease;
}
.hamburger::before {
  transform: translateY(-8px);
}
.hamburger::after {
  transform: translateY(5px);
}

/* Animate to “X” */
.nav-toggle.active .hamburger {
  background: transparent;
}
.nav-toggle.active .hamburger::before {
  transform: rotate(45deg) translate(5px,5px);
}
.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg) translate(5px,-5px);
}

/* Main Menu */
.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.menu a {
  display: block;
  padding: 8px 12px;
  color: #0b1010;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.menu a:hover {
  color: #3bb8b9;
}

/* Dropdown wrapper */
.dropdown {
  position: relative;
  /* allow focus-within on mobile */
  outline: none;
}
.dropdown[tabindex] {
  cursor: pointer;
}

/* Submenu (hidden by default) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #fff;
  min-width: 160px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border: 1px solid #f0f0f0;
  list-style: none;
  z-index: 100;
}
.dropdown-menu li {
  border-bottom: 1px solid #ddd;
}
.dropdown-menu li:last-child {
  border-bottom: none;
}
.dropdown-menu li a {
  display: block;
  padding: 10px;
  color: #444;
  font-weight: normal;
  transition: background 0.3s ease, color 0.3s ease;
}
.dropdown-menu li a:hover {
  background: #3bb8b9;
  color: #fff;
}

/* Show on desktop hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Show on mobile tap/focus */
.dropdown:focus-within .dropdown-menu {
  display: block;
}


/* ---------------- MOBILE NAV STYLES ---------------- */
@media (max-width: 768px) {
  /* Show burger */
  .nav-toggle {
    display: block;
  }

  /* Slide‐in panel */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
  }
  .nav-menu.open {
    right: 0;
  }

  /* Stack links vertically */
  .menu {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
}

.brands-section {
  padding: 60px 20px;
  text-align: center;
}

.brands-section .section-title {
  font-size: 2em;
  margin-bottom: 10px;
}

.brands-subtext {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.brands-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
  padding: 0 20px;
}

.brands-logos-grid img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
}
