.hero-section img, nav img {
  max-width: 100%;
  height: auto;
}
body {

  line-height: 1.6; 
  background-color: #f9f9f9;
  color: #333; 
  }
/* Nav (desktop only) */
nav {
  display: flex;
  justify-content: space-between;
  padding: 5px;
  background: #f8f9fa;
  height: 60px;
  align-items: center;
 

}

nav img {
  height: 150px;
  margin-left: 40px;
  object-fit: contain;
  
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
 
  
}

nav ul li a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: color 1.5s ease;
 
}

nav ul li a:hover { 
 color: #007bff; 
}

/* Hide hamburger by default (desktop) */
.menu-toggle {
   display: none; 
  }


/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #fff;
  margin-top: 20px;
}


div.logo
{
    font-size: 16px; /* company logo */
    font-weight: bold;
    color: #fff;
}


/* Main Heading */
h1 { 
    font-size: 40px; 
    text-align: center; 
    margin-top: 30px; 
    background: linear-gradient(90deg, #ff6a00, #ee0979); 
    background-clip: text; /* Standard property */ 
    -webkit-background-clip: text; /* WebKit browsers */ 
    -webkit-text-fill-color: transparent;
     color: transparent; /* Fallback for other browsers */ 
     color: #a61919;
     animation: glow 3s ease-in-out infinite alternate, fadeInUp 4.5s ease-out;
    transition: all 0.5s ease; 
}
h1:hover {
    background: linear-gradient(90deg, #ffd700, #ff6a00); /* gold → orange */
    background-clip: text;
    -webkit-background-clip: text;  
    -webkit-text-fill-color: transparent;
    transform: scale(1.05);
}
/* Subheading */
h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    text-align: center;
    color: #007bff;
    position: relative;
    animation:  fadeInDown 4.5s ease-out;
    transition: color 0.5s ease;
}

h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #007bff;
    margin: 8px auto 0;
    border-radius: 2px;
    animation: underlineGrow 1s ease-out;
}
h2:hover {
    color: #a523c2
; /* orange highlight on hover */
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 106, 0, 0.6),
                     0 0 20px rgba(238, 9, 121, 0.6);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 106, 0, 0.9),
                     0 0 40px rgba(238, 9, 121, 0.9);
    }
}

@keyframes underlineGrow {
    from { width: 0; opacity: 0; }
    to { width: 60px; opacity: 1; }
}

/* General heading style */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', sans-serif;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    background: #f8f8f8
}

.hero-section:nth-child(even) {
    background: #ffffff
}

.hero-text {
    max-width: 45%;
}

.hero-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555
}

.hero-btn {
    display: inline-block;
    padding: 10px 26px;
    background: #1f4e79;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
}

.hero-btn:hover {
    background: #163b5c;
}

.hero-image {
    max-width: 50%;
}

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

.hero-section.reverse {
    flex-direction: row-reverse;
}

.hero {
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 60px;
    margin-bottom: 60px;
}

.hero-content {
    padding: 35px;
     width: 420px;
}

.hero-right {
    justify-content: flex-start;
}

.hero-left {
    justify-content: flex-end;
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #050505;
}

.hero-content p-pw {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #f5f1f1;
}


.hero-video {
  position: relative;
  height: 75vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-cool {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  top: 40%;
}

.hero-dual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background-color: #ffffffa9;
}

.dual-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}

.dual-left, .dual-right {
  flex: 1;
  text-align: center;
}

.dual-left img, .dual-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}



.features-logos {
  padding: 50px 20px;
  background-color: #f9f9f9;
}


.features-heading {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 30px; /* equal spacing between images */
  text-align: center;
}

.logo-grid img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-grid img:hover {
  transform: scale(1.20);
}

.product-card .reviews {
    color: goldenrod;   /* or #FFD700 for pure gold */
    font-weight: bold;  /* optional: makes stars stand out */
  }
.nav-text {
   display: none; /* hide in desktop */
}