body {
font-family: 'Inter';
 overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
  width: 100%;
  height: 80px; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
}
.bg {
  height: 80px;
}

/* Logo */
.navbar .logo {
  font-size: 36px;
  font-weight: bold;
  color: #328fdc;
  letter-spacing: 2px;
}

/* Navigation links */
.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #ff3100;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  transition: 0.3s;
}

/* Hover underline effect */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff4d4d;
  transition: 0.3s ease-in-out;
}

.nav-links a:hover {
  color: #ff9999;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Centered text (for later content) */
.center-text h1 {
 font-size: 32px;
    margin-bottom: 30px;
    color: #ff071c;
    text-shadow: 1px 1px 5px #000;
    font-family: blod;
}

.center-text p {
  font-size: 18px;
  color: #ffffff;
  text-shadow: 1px 1px 4px #000;
  margin-bottom: 60px;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 15px;
  }

  .nav-links {
    margin-top: 10px;
    flex-direction: column;
    gap: 15px;
  }
}
	/* ------- */
	.product h3{
	margin-top:3%;
	font-size:30px;
	font-weight: 700;
	text-align: center;
}

	.image-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: translateY(-5px);
}

.image-card .card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.overlay-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.overlay-text::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #ff3b30; /* red accent line like your image */
  border-radius: 2px;
}
/* ------------ Second Section ----------- */

/* ----- image */

.center-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 10px;
}

/* ------ */
/* <!-- ------------ Advantage --> */

    .advantages-section {
      padding-top: 60px;
      padding-bottom: 60px;
    }

    .advantages-title {
      text-align: center;
      font-size: 28px;
      font-weight: 600;
      color: #e60000; /* red title like in image */
      margin-bottom: 40px;
    }

    .adv-board {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background: #ccc;
    border-radius: 10px;
    height: 550px;
    }

   
    .center-circle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 130px;
      height: 130px;
      border-radius: 50%;
      background: #991c1c;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.7);
      z-index: 10;
    }
    .center-circle i {
      font-size: 40px;
      color: #fff;
    }

    /* card base style */
    .adv-card {
      position: absolute;
      width: 300px;
      background: #3f4346;
      border-radius: 8px;
      padding: 20px 20px 20px 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.6);
      color: #ccc;
    }
    .adv-card h5 {
      font-size: 18px;
      color: #f1f1f1;
      margin-bottom: 10px;
	  text-align:Center;
    }
    .adv-card p {
      font-size: 14px;
      line-height: 1.6;
      color: #aaa;
    }

    /* colored square icon in top-left of each card */
    .adv-card .icon-square {
      position: absolute;
      top: 16px;
      left: 16px;
      width: 40px;
      height: 40px;
      border-radius: 6px;
      background-color: #e74c3c; /* default color, overridden below */
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .icon-square i {
      color: #fff;
      font-size: 16px;
    }
    .icon-square.yellow { background: #f1c40f; }
    .icon-square.blue   { background: #3498db; }
    .icon-square.purple { background: #9b59b6; }

    /* exact positioning of cards */
    .card-top-left    { top: 40px;  left: 40px; }
    .card-top-right   { top: 40px;  right: 40px; }
    .card-bottom-left { bottom: 40px; left: 40px; }
    .card-bottom-right{ bottom: 40px; right: 40px; }

    /* responsive: stack cards under for small screens */
    @media (max-width: 992px) {
      .adv-board {
        height: auto;
        padding: 30px 20px;
      }
      .adv-card {
        position: static;
        margin: 20px auto;
        width: calc(100% - 40px);
      }
      .center-circle {
        position: static;
        transform: none;
        margin: 30px auto;
      }
    }
/* --------- Advantage --------- */

-----------------

/* ------------All product page css -------------- */

  .row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .column {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }
  .column img {
    width: 100%;
    height: 200px;
    border-radius: 11px;
}
  @media (max-width: 768px) {
    .column {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }
/* ---------- About ---------- */



/* ------------- Second section ----------------- */
.mission-section {
  background-color: #f8f9fa; /* light gray background */
  padding: 33px 
}

.mission-section h2 {
  font-size: 36px;
  color: #e60000; /* brand red */
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.mission-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  
  margin: 10px auto 0;
  border-radius: 2px;
}

.mission-section p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-family: sans-serif;
}


/* ----------- Third section ----------  */
.custom-heading {
	color:red;
}
.sans-serif{
	font-family:sans-serif;
	font-size:18px;
}