 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        

         
    }

    /* === 🌐 HEADER === */
.main-header {
  width: 100%;
  height: 100px;
  background: linear-gradient(90deg, #0077b6, #2e3a59);
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.logo-image {
  width: 80px;
  height: 80px;
}

.logo {
  width: 100%;
  object-fit: contain;
  margin-left: 160px;
}

.navlinks {
  list-style: none;
  display: flex;
  margin-left: 400px;
}

.link {
  text-decoration: none;
  font-weight: bold;
  font-size: larger;
  color: rgb(252, 251, 250);
}
.link:hover {
  color: #ec904a;
  text-decoration: underline;
}

li {
  padding: 26px;
}

.callnow {
  color: #ec904a;
  background-color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  margin: 20px;
  padding: 10px 8px;
}
.callnow:hover {
  text-decoration: underline;
  color: #ec904a;
}

/* === 🎥 HERO SECTION (VIDEO) === */
.section1 {
  background: #4074a6;
  color: white;
  text-align: center;
  padding-bottom: 50px;
  position: relative;
  height: ;
  min height: 100vh;
  
}
.section1 span {
  color: white;
  font-size: large;
}
.section1 h1 {
  padding-bottom: 20px;
}
.section1 video {
  width: 100%;
  height: auto;
  display: block;
  border-bottom-left-radius: 50% 40%;
  border-bottom-right-radius: 50% 40%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* === 🌀 UNIVERSAL SECTION STYLE === */
.section {
  background: url("./images/bg.png") center/cover no-repeat;
  background-color: #0073e6;
  width: 100%;
  min-height: 600px;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* === ✨ ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadePopUp 1s ease forwards;
}

@keyframes fadePopUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expand {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 70px;
    opacity: 1;
  }
}

/* === 🧿 REVEAL ON SCROLL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === 🔵 ABOUT US SECTION === */
.about-us-section {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 115, 230, 0.7)),
              url("./images/bg.png") center/cover no-repeat;
  background-blend-mode: overlay;
  color: #fff;
  width: 100%;
  height: 550px;
  text-align: center;
  padding: 80px 60px;
}
.about-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 20px;
}
.about-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}
.about-text {
  max-width: 850px;
  margin: 0 auto 20px;
  line-height: 1.8;
  font-size: 5.1rem;
  font-weight: normal;
}

/* === 🟦 PRODUCTS SECTION === */
.products-section {
  background: url("./images/bg.png") center/cover no-repeat;
  background-color: #0073e6;
  color: #fff;
  width: 100%;
  padding: 80px 50px;
  text-align: center;
}
.products-title {
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 16px;
}
.products-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

/* === 🧩 VIEW MORE BUTTON === */
.view-more {
  background: #fff;
  color: #0073e6;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.view-more:hover {
  background: #2a4062;
  color: #fff;
  transform: translateY(-3px);
}

/* === 🃏 PRODUCT CARDS === */
.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border-radius: 20px;
  width: 280px;
  min-height: 450px;
  padding: 20px;
  text-align: center;
  color: #333;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  /* ✨ Added shadow for depth */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15),
              0 4px 15px rgba(0, 0, 0, 0.1);
}

.card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* 💡 Hover shadow — stronger glow */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(42, 64, 98, 0.35),
              0 0 50px rgba(0, 115, 230, 0.25);
}


.card-img {
  width: 100%;
  height: 200px;
  background: #f4f4f4;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  flex-grow: 1;
}

.info-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.info-tags span {
  background: #eee;
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 13px;
}

.card-text {
  font-size: 15px;
  color: #333;
  line-height: 1.4;
}

.cta-btn {
  background: #0077ff;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: auto;
}
.cta-btn:hover {
  background: #005ecc;
}

/* === NAVBAR CORE === */
.main-header {
 display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px; /* space between hamburger and logo */
  padding: 10px 20px;
  background-color: #005b8f; /* your theme blue */
  position: sticky;
  top: 0;
  z-index: 1000;}

.logo {
  height: 80px;
}

/* Navigation links */
.navlinks {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
 transition: all 0.3s ease;
}
.navlinks {
  margin-left: auto;
}

.navlinks li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navlinks li a:hover {
  color: #007bff;
}

/* Call-to-action link */
.callnow {
  background-color: #007bff;
  color: white !important;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.callnow:hover {
  background-color: #0056b3;
}
.callnow {
  background-color: white;
  color: #ec904a !important;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.callnow:hover {
  background-color: #ec904a;
  color: white !important;
}
/* === HAMBURGER MENU === */

 /* Hide hamburger by default on large screens */
/* === 🌐 HEADER === */
.main-header {
  width: 100%;
  height: 80px;
  background: linear-gradient(90deg, #0077b6, #2e3a59);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* === HAMBURGER MENU (Hidden on Desktop) === */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* === LOGO === */
.logo {
  height: 55px; /* increase for mobile visibility */
  width: auto;
  object-fit: contain;
  display: block;
}

/* center vertically inside header */
.logo-image {
  display: flex;
  align-items: center;
}


/* === NAVIGATION LINKS === */
.navlinks {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
}

.navlinks li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navlinks li a:hover {
  color: #ec904a;
}

/* === CTA LINK === */

/* === LOGO === */
.logo-image {
  display: flex;
  align-items: center;
}

.logo {
  height: 80px; /* bigger, more professional size */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* === Mobile Adjustment === */
@media (max-width: 768px) {
  .logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-left: 10px; /* smaller but still visible on phones */
  }
}

/* === MOBILE VIEW === */
@media (max-width: 768px) {
  .main-header {
    justify-content: flex-start;
    display: flex;
    align-items: center;
    padding: 0 10px;
  }

  /* Show hamburger */
  .menu-toggle {
    display: flex;
    margin-right: 5px;

  }

  /* Logo beside hamburger */
  .logo-image {
    margin-left: 10px;
  }

  /* Hide nav links initially */
  .navlinks {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    transform: translateY(-200%);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  /* Show when active */
  .navlinks.active {
    transform: translateY(0);
    opacity: 1;
  }

  /* Animate hamburger into an X */
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile link styling */
  .navlinks li a {
    color: #333;
    font-size: 18px;
  }
}


 



