/* Custom styles */
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

:root {
  --red-color: #ff0000;
}

/* =================================================== Home page Css =============================================================== */

.hero-overlay {
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  inset: 0;
}

.Herosection {
  min-height: 516px;
  /* height: 100vh; */
  height: calc(100vh - 78px);
}

.Herosection .carousel-item {
  min-height: 516px;
  height: calc(100vh - 78px);
  position: relative;
}

.Herosection .carousel-item .carousel-caption {
  bottom: 30%;
  transform: translateY(20%);
}

.section-title {
  margin-bottom: 1.5rem;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.gallery-img {
  height: 220px;
  object-fit: cover;
}

footer a {
  text-decoration: none;
}

.card-img-top {
  image-rendering: crisp-edges;
  width: 100px;
}



/* ========================= Navbar ========================== */

.custom-nav .nav-link {
  font-weight: 600;
  color: #000 !important;
  padding: 10px 18px !important;
  position: relative;
  transition: 0.3s ease;
}

.custom-nav .nav-link:hover {
  color: var(--red-color) !important;
}

.custom-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: var(--red-color);
  transition: width 0.3s ease;
}

.custom-nav .nav-link:hover::after {
  width: 100%;
}

.custom-nav .nav-link.active {
  color: var(--red-color) !important;
  font-weight: 700;
}

.custom-nav .nav-link.active::after {
  width: 100%;
}

.dropdown-toggle::after {
  border: none !important;
}

/* Hover dropdown — only for larger screens (desktop) */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
  }

  .navbar-nav .dropdown .dropdown-menu {
    margin-top: 0;
    border: none !important;
    width: 230px;
  }

  .navbar-nav .dropdown .dropdown-menu .nav-link {
    font-size: 14px;
  }
}

/* Hover dropdown (Desktop) */
@media (max-width: 992px) {
  .navbar-nav .dropdown .dropdown-menu {
    display: block;
    margin-top: 0;
    border: none;
    background: transparent;
    overflow: scroll;
    margin-left: 20px;
    padding: 0;
  }

  .navbar-nav .dropdown .dropdown-menu .nav-link {
    font-size: 14px;
  }
}


/* ====================== Hero section ============================= */
/* ----- HERO TEXT CONTENT STYLING ----- */

.carousel-caption {
  text-align: left;
  max-width: 650px;
  padding: 20px 0;
}

.carousel-caption h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.carousel-caption p.lead {
  font-size: clamp(1rem, 2vw, 1.35rem);
  margin-bottom: 10px;
  opacity: 0.92;
}

.carousel-caption p strong {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  display: inline-block;
  margin-bottom: 18px;
  opacity: 0.9;
}

/* ----- BUTTON STYLING ----- */

.carousel-caption .btn-lg {
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: 0.3s;
}

/* Primary Button */
.carousel-caption .btn-primary {
  background-color: #FF0000;
  border-color: #FF0000;
}

.carousel-caption .btn-primary:hover {
  background-color: #cc0000;
  border-color: #cc0000;
  transform: translateY(-3px);
}

/* Outline Light Button */
.carousel-caption .btn-outline-light:hover {
  background-color: #ffffff;
  color: #000;
  transform: translateY(-3px);
}

/* Animation Fade-In */
.carousel-caption>* {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.carousel-caption h1 {
  animation-delay: 0.2s;
}

.carousel-caption .lead {
  animation-delay: 0.35s;
}

.carousel-caption strong {
  animation-delay: 0.5s;
}

.carousel-caption .btn-lg {
  animation-delay: 0.65s;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    display: none !important;
  }
}

/* ====================== About section ============================= */

.about {
  padding: 4rem 0;
  background: #f8f8f8;
  font-family: "Open Sans", sans-serif;
}

.about .container {
  width: min(1200px, 90%);
  margin: auto;
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}

.about-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red-color);
  margin-bottom: 1rem;
}

.about-text {
  color: #333;
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.about-btn {
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  border: none;
  background: var(--red-color);
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #a00000;
}

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

/* ------- Responsive -------- */
@media (min-width: 768px) {
  .about .container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ====================== CERTIFIED SECTION ============================= */

.certified .cert-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}

/* Track */
.certified .cert-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: scroll 18s linear infinite;
}

/* Card */
.certified .cert-card {
  flex: 0 0 auto;
  width: 220px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s ease;
}

.certified .cert-card img {
  height: 70px;
  width: auto;
  margin-bottom: 10px;
}

.certified .cert-card span {
  font-weight: 600;
  font-size: 14px;
}

.certified .cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--red-color);
}

/* Infinite scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .certified .cert-card {
    width: 160px;
    padding: 15px;
  }

  .certified .cert-card img {
    height: 55px;
  }

  .certified .cert-track {
    animation-duration: 14s;
  }
}

@media (max-width: 480px) {
  .certified .cert-card {
    width: 140px;
  }

  .certified .cert-card span {
    font-size: 13px;
  }

  .certified .cert-track {
    gap: 15px;
  }
}


/* ======================= categories css ============================ */

.categories {
  padding: 4rem 0;
  background: #fff;
  font-family: "Open Sans", sans-serif;
}

.section-title {
  text-align: center;
  font-size: 25px;
  margin-bottom: 3rem;
  font-weight: 700;
  color: var(--red-color);
}

.categories .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.categories .cat-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  text-align: center;
  padding-bottom: 1.5rem;
  transition: 0.35s ease;
}

.categories .cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.20);
}

.categories .cat-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.categories .cat-card h3 {
  font-size: 1.4rem;
  margin: 1rem 0;
  font-weight: 700;
  color: var(--red-color);
}

.categories .cat-card p {
  font-size: 1rem;
  padding: 0 1rem;
  color: #444;
  margin-bottom: 1rem;
}

.categories .cat-btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  background: var(--red-color);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.categories .cat-btn:hover {
  background: #cc0000;
}

/* ======================= testimonial css ============================ */

.testimonial-section {
  padding: 4rem 0;
  background: #fafafa;
  font-family: "Open Sans", sans-serif;
}

.testi-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red-color);
  margin-bottom: 0.8rem;
}

.testi-desc {
  text-align: center;
  /* max-width: 800px; */
  margin: 0 auto 3rem auto;
  /* font-size: 1.15rem; */
  color: #444;
  line-height: 1.7;
}

.testimonial-wrapper {
  overflow: hidden;
  cursor: grab;
}

.testimonial-track {
  display: flex;
  gap: 25px;
  transition: transform 0.4s ease;
}

.testi-card {
  min-width: calc(50% - 12.5px);
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testi-card::before {
  content: "“";
  position: absolute;
  font-size: 80px;
  top: -20px;
  right: 20px;
  color: #ff0000;
  opacity: 0.15;
}

.testi-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testi-author img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 3px solid #ff0000;
  object-fit: cover;
}

.testi-author span {
  color: #ff0000;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .testi-card {
    min-width: 100%;
  }
}


/* ======================= Difference css ============================ */


.difference-section {
  background: #f8f9fa;
}

.difference-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  border-top: 4px solid var(--red-color);
}

.difference-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--red-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 50%;
}

.icon-wrap i {
  color: #fff;
  font-size: 28px;
}


/* ======================= LOcation css ============================ */

.location-section {
  padding: 4rem 0;
  background: #f8f8f8;
  font-family: "Open Sans", sans-serif;
}

.location-section .container {
  text-align: center;
}

.loc-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--red-color);
  /* Red title like your other sections */
}

.loc-text {
  max-width: 780px;
  margin: 0 auto 2.5rem auto;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.map-box {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ======================= FAQ SECTION css ============================ */
.accordion-button {
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: #FF0000;
  color: #fff;
}

.accordion-button:focus {
  border-color: #FF0000;
  box-shadow: none;
}

/* ======================= Footer css ============================ */

/* Footer Style */
.footer-section {
  background: #0d0d0d;
  position: relative;
}

/* Quick Links */
.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  /* opacity: 0.8; */
  position: relative;
  transition: 0.3s;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--red-color);
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--red-color);
}

.footer-links a:hover::after {
  width: 100%;
}

/* Social Icons */
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--red-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--red-color);
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--red-color);
  color: #fff;
  transform: translateY(-4px);
}

/* =================================================== About Page Css ============================================================== */

/* =======================HERO SECTION============================ */

.about-hero {
  min-height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.65)),
    url("../img/17964.jpg") center/cover no-repeat;
  padding: 90px 0;
}

.about-hero h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}

.about-hero p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ====================ABOUT COMPANY SECTION=============================== */

.about-company {
  background: #fafafa;
}

.about-img img {
  transition: 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.07);
}

.about-btn {
  background: var(--red-color);
  color: #fff;
  border-radius: 6px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #cc0000;
}


/* ===================== MISSION & VISION SECTION ============================== */

.mv-card {
  transition: 0.35s ease;
  border: 1px solid #eee;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--red-color);
}

.mv-icon {
  width: 55px;
  height: 55px;
  background: var(--red-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 24px;
}

.mv-list li {
  margin-bottom: 6px;
}

/* ====================== OUR STRENGTHS SECTION ============================= */

.strength-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: .3s;
}

.strength-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--red-color);
}

.strength-card .icon i {
  font-size: 40px;
  color: var(--red-color);
}

/* ======================= CORE VALUES SECTION ============================ */

.core-values-section .value-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-color), #ff4d4d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 5px 18px rgba(255, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

.core-values-section .value-line {
  padding: 15px;
  border-left: 4px solid var(--red-color);
  background: #fff;
  border-radius: 6px;
  transition: 0.3s ease;
}

.core-values-section .value-line:hover {
  background: #ffeaea;
  transform: translateX(6px);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ====================== WHY CHOOSE US / USP ============================= */

.why-us {
  background: #fafafa;
}

.usp-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #eee;
  position: relative;
}

.usp-box:hover {
  transform: translateY(-8px);
  border-color: var(--red-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.usp-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--red-color);
  margin-bottom: 15px;
}

/* ================================================================= Contact page css ====================================================== */
/* ======================== Hero Section =========================== */
.contact-hero {
  min-height: 45vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/19154.jpg") center / cover;
  padding: 90px 0px;
}

/* ======================= CONTACT INFO ============================ */

.info-box {
  padding: 25px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: 0.3s;
  height: 100%;
}

.info-box a {
  text-decoration: none;
}

.info-box:hover {
  transform: translateY(-6px);
  border-color: var(--red-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.info-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.12);
  color: var(--red-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 15px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ======================== SOCIAL LINKS =========================== */

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--red-color);
  transition: .3s;
  border: 1px solid #ddd;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--red-color);
  color: #fff;
  transform: translateY(-5px);
}

/* ======================================================= Product page css ======================================================= */

/* ====================== product-hero css ============================= */
.product-hero {
  min-height: 75vh;
  /* min-height: 320px; */
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7)),
    url("../img/productbanner.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 90px 0;
  border-bottom: 4px solid var(--red-color);
}

.product-hero h1 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.2rem);
  letter-spacing: 1px;
}

.product-hero .hero-text {
  max-width: 750px;
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* =================================================== */

/* Heading Style */
.product-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: #111;
  position: relative;
}

.product-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--red-color);
  position: absolute;
  bottom: -6px;
  left: 0;
  border-radius: 10px;
}

/* Search Input */
.search-input {
  max-width: 420px;
  border-radius: 50px;
  padding: 10px 20px;
  border: 2px solid #ddd;
  transition: 0.3s ease;
  box-shadow: 0 0 0 rgba(255, 0, 0, 0);
}

/* Focus Animation */
.search-input:focus {
  border-color: var(--red-color);
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.35);
}

/* Placeholder Style */
.search-input::placeholder {
  color: #777;
  font-size: 14px;
}

.category-badge {
  cursor: pointer;
}

#categoryWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-btn {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--red-color);
  background: transparent;
  color: var(--red-color);
  font-size: 14px;
  letter-spacing: .4px;
  cursor: pointer;
  transition: all .25s ease;
}

@media (max-width:575px) {
  #categoryWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .category-btn {
    padding: 2px 4px;
    border-radius: 20px;
    font-size: 10px;
    margin: 0 !important;
  }
}

/* Hover */
.category-btn:hover {
  background: var(--red-color);
  color: #fff;
  transform: translateY(-2px);
}

/* Active Selected Category */
.category-btn.active {
  background: var(--red-color);
  color: #fff;
  box-shadow: 0 3px 10px rgba(255, 0, 0, .3);
}

/* On Click Animation */
.category-btn:active {
  transform: scale(0.92);
}


/* PRODUCT CARD STYLE */
.card-product {
  border: none;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.08);
  transition: all .25s ease;
  overflow: hidden;
}

.card-product:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(255, 0, 0, 0.15);
}

/* PRODUCT IMAGE */
.product-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  transition: transform .3s ease;
  border-top-left-radius: 0.7rem;
  border-top-right-radius: 0.7rem;
}

.card-product:hover .product-img {
  transform: scale(1.04);
}

/* TITLE */
.card-product .card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red-color);
}

/* PRICE/TEXT */
.price-link {
  color: var(--red-color);
  cursor: pointer;
  font-size: 0.95rem;
  transition: 0.25s;
}

.price-link:hover {
  color: #b80000;
}

/* BUTTON */
.btn-view {
  border: 1px solid var(--red-color);
  color: var(--red-color);
  padding: 3px 10px;
  border-radius: 0.4rem;
  transition: 0.25s;
  font-size: 0.8rem;
}

.btn-view:hover {
  background: var(--red-color);
  color: #fff;
}

/* ====================== CATEGORIES OVERVIEW ============================= */
.category-overview h2 {
  color: var(--red-color);
}

.cat-box {
  background: #fff;
  padding: 28px 22px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #e8e8e8;
  height: 100%;
  transition: all 0.25s ease;
  cursor: pointer;
}

.cat-box i {
  font-size: 40px;
  color: var(--red-color);
  margin-bottom: 12px;
  display: block;
}

.cat-box h6 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cat-box p {
  font-size: 0.9rem;
  color: #666;
}

/* Hover Effects */
.cat-box:hover {
  transform: translateY(-6px);
  border-color: var(--red-color);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.15);
}

/* =================================================== */

@media screen and (min-device-width: 768px) and (max-device-width: 2000px) {
  .card-image-crop {
    height: 500px;
    overflow: hidden;
  }

  .card-image-crop img {
    transform: scale(1.1) translate(0%, -125px);
  }
}

@media (max-width:575px) {
  .hero {
    padding: 40px 0;
    text-align: center
  }

  .product-img {
    height: 160px
  }
}

/* =================================================== Services Page CSS ============================================================== */

/* ======================= Hero Section ============================ */
.service-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url("../img/servicebanner.jpg") center/cover no-repeat;
  padding: 120px 0;
}

/* ======================== MAIN SERVICES =========================== */

.service-card {
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  transition: .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--red-color);
}

.service-card .icon i {
  font-size: 40px;
  color: var(--red-color);
}

/* ======================== HOW WE WORK =========================== */

/* Timeline Container */
.timeline {
  position: relative;
  margin: 0 auto;
  padding-left: 40px;
  border-left: 3px solid var(--red-color);
}

/* Step Container */
.timeline-step {
  margin-bottom: 40px;
  padding-left: 30px;
}

/* Icon Circle */
.timeline-step .icon-wrap {
  background: var(--red-color);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
  transition: 0.3s;
  margin: 0 !important;
  margin-bottom: 8px !important;
}

/* Content Box */
.timeline-step .content {
  background: #fff;
  border-radius: 10px;
  padding: 16px 30px !important;
  border-left: 3px solid var(--red-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

/* Hover Effects */
.timeline-step:hover .icon-wrap {
  transform: scale(1.15);
  background: #cc0000;
}

.timeline-step:hover .content {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive */
@media (max-width: 576px) {
  .timeline {
    padding-left: 20px;
    border-left-width: 2px;
  }

  .timeline-step .icon-wrap {
    width: 36px;
    height: 36px;
    left: -10px;
  }
}

/* ==================================================== Pcd Page css ============================================= */

.pcd-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0), rgba(0, 0, 0, 0.5)), url("../img/2147983156.jpg") center/cover no-repeat;
  padding: 80px 0;
}

.pcd-head .section-title {
  text-align: left;
}

.pcd-hero .badge-usp {
  background: rgba(255, 0, 0, 0.95);
  color: #fff;
  margin-bottom: 10px;
  border-radius: 50px;
  padding: 6px 14px;
  font-weight: 700;
}

.pcd-hero .feature-icon {
  font-size: 28px;
  color: var(--red-color);
}

.pcd-hero .cta-btn {
  background: var(--red-color);
  color: #fff;
  border-radius: 8px;
  padding: 12px 22px;
  font-weight: 700;
}

.contact-card {
  border-left: 4px solid var(--red-color);
}

/* ============================================= Export page css ====================================================== */
.export-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)),
    url("../img/export.jpg") center/cover no-repeat;
}

.export-head .section-title {
  text-align: left;
}

.feature-icon {
  font-size: 30px;
  color: var(--red-color);
}

/* ============================================== TPM Page css =================================================== */
.tpm-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/tpm.jpg") center/cover no-repeat;
}

.tpm-head .section-title {
  text-align: start;
}

.feature-icon {
  font-size: 30px;
  color: var(--red-color);
}

/* ============================================= Tender Page css ===================================================== */
.gov-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/tender.jpg") center/cover no-repeat;
}

.gov-head .section-title {
  text-align: left;
}

.feature-icon {
  font-size: 30px;
  color: var(--red-color);
}

/* =================================================== */

/* side icon fixed  */
.social-fixed {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-fixed a {
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.social-fixed a:hover {
  transform: scale(1.1);
}

.whatsapp {
  background: #25D366;
}

.facebook {
  background: #1877F2;
}

.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.youtube {
  background: #FF0000;
}

@media (max-width: 576px) {
  .social-fixed a {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .social-fixed {
    right: 10px;
  }
}