/* ==================================
   UNIVERSAL RESET & BASE STYLING
================================== */
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css");

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=PT+Sans+Narrow:wght@400;700&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

:root {
  --primary: #0a4e9d; /* Warm gold - nice for highlights or icons */
  --primary-dark: #e0b244; /* Slightly deeper gold for hover/shadows */
  --secondary: #293241; /* Deep blue/gray – calming, perfect contrast */
  --background: #ffffff; /* Soft light background - easy on eyes */
  --text-dark: #1e1e1e; /* Main content text */
  --text: #dcab28;
}

body {
  background: var(--background);
  scroll-behavior: smooth;
  font-family: "Roboto Serif", serif;
}

/* ==================================
   BUTTON STYLES
================================== */
.btn {
  background-color: var(--primary);
  color: #fff;
  border: 2px solid var(--secondary);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.btn:hover {
  background-color: #ffffff;
  color: var(--primary);
  border-color: var(--primary);
}

.btn1 {
  background-color: #ffffff;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.btn1:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: #fff;
}
.btn1 i {
  transition: inherit; /* Ensures icon transitions with the button */
  color: inherit; /* Inherits text color */
}
#submitButton1:hover {
  background-color: var(--secondary);
  color: #fff;
}
.btn3 {
  background-color: var(--primary);
  color: #fff;
  border: 2px solid var(--secondary);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}


/* ==================================
   NAVBAR 
================================== */
.custom-navbar {
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: background-color 0.3s ease;
}

.custom-navbar .nav-link {
  color: #fff;
}

.custom-navbar .nav-link:hover {
  color: var(--text);
  /* text-decoration: underline; */
}

.logo {
  height: 70px;
  width: auto;
}

/* ==================================
   HERO BANNER
================================== */
#banner {
  font-family: "Roboto Serif", serif;
}

#banner h1 {
  font-size: 38px;
  /* font-style: up\\; */
}

#banner h2,
h3 {
  font-size: 16px;
}
.hero-banner {
  height: 600px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.mobile-banner {
  height: 750px;
}
.hero-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero-banner .container {
  z-index: 2;
  position: relative;
}

.hero-banner h1 span {
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 2rem;
  }
  .hero-banner p {
    font-size: 1rem;
  }
}
/* ==================================
   Transformation Section
================================== */
#transform {
  margin-bottom: 0px;
}
/* ==================================
   SOP Section
================================== */
#sop .border:hover {
  /* background-color: var(--secondary);
  color: #fff; */
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

#sop .card {
  border: 1px solid var(--primary);
}
.step-icon {
  display: block;
  margin-bottom: 15px;
}
/* #sop img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(98%) saturate(1336%) hue-rotate(184deg) brightness(95%) contrast(95%);
  transition: all 0.3s ease;
} */


/* ==================================
   OUR SERVICES SECTION
================================== */
#service h2 {
  font-size: 2.25rem;
}
.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.service-card {
  background: var(--background);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin: 20px;
  padding: 15px 15px;
  max-width: 330px;
  width: 100%;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  animation: floatUp 1s ease forwards;
}
.service-card img {
  width: 100%;
  height: 200px; /* or 250px depending on layout preference */
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/*  */

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 42px;
  color: var(--primary-dark);
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  animation: bouncePop 0.6s ease;
}

.service-content h4 {
  color: var(--secondary);
}

/* Bounce animation */
@keyframes bouncePop {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Float-in animation */
@keyframes floatUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .service-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .service-card {
    margin: 15px auto; /* again, ensure it's centered */
    padding: 25px 20px;
  }
  .service-card img {
    height: 180px;
  }
}

/* ==================================
   BENIFITS SECTION
================================== */
#Benifits {
  margin-top: 20px;
}

#Benifits img {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, box-shadow;
  width: 400px;
}

#Benifits img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

#Benifits {
  font-size: 16px;
}

/* ==================================
   WHY US SECTION
================================== */
#about .about-box {
  border: 1px solid var(--primary);
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#about .about-box img {
  max-width: 60px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  filter: none;
}

#about .about-box h6 {
  margin: 5px 0 0;
  font-size: 14px;
  transition: color 0.3s ease;
}

/* Hover Effects */
#about .about-box:hover {
  background-color: var(--primary);
  transform: scale(1.05);
}

#about .about-box:hover img {
  filter: brightness(0) invert(1);
}

#about .about-box:hover h6 {
  color: #fff;
}

/* Mobile View */
@media (max-width: 767px) {
  #about .about-box {
    padding: 18px 12px;
  }

  #about .about-box img {
    max-width: 50px;
  }

  #about .about-box h6 {
    font-size: 13px;
  }
}
/* ==================================
   SERVICES SECTION
================================== */

/* footer */

.footer-custom {
  background-color: var(--primary); /* dark navy/blue-gray */
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.social-icon {
  color: #ffffff;
  font-size: 1.2rem;
}

/* CTA */
.cta-parallax {
  position: relative;
  background: url("images/bg.jpeg") center center no-repeat;
  background-size: cover;
  background-attachment: fixed; /* This enables the parallax scroll effect */
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-parallax .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.cta-parallax .container {
  z-index: 1;
}

/* Card style */
.feature-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.15);
  border-color: transparent;
}

/* Customer Review Card Style */
.Customer-review {
  background-color: #f4f4f4;
  border-radius: 15px;
  margin: 10px;
  padding: 10px 15px;
  height: 100%;
  min-height: 160px;
  text-align: left;
  box-shadow: 5px 4px 10px rgb(114, 114, 114);
  transition: transform 0.3s ease;
}

.Customer-review img {
  width: 20px !important;
}

.review-head {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.review-logo {
  display: flex;
  justify-content: space-between;
}

.review-logo h6 {
  /* font-style:bold; */
  font-size: 14px;
}

.bi {
  color: white;
}
.Customer-review:hover {
  transform: scale(1.05);
}

/* Service section */
.service-card {
  min-height: 445px;
}

#our-services {
  min-height: 500px;
}

.service-carousel.owl-stage {
  margin-top: 20px;
  height: 450px;
  width: 100vw;
}

.service-content img {
  height: 200px;
}
.service-content h4 {
  margin-top: 15px;
  color: var(--primary);
}

.service-content p {
  font-size: 15px;
  margin-bottom: 15px;
}

/* sop */
#sop .card h4 {
  margin-top: 10px;
}

#sop .card {
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sop .card img {
  /* background-color: wheat; */
  /* min-height: 250px; */
  height: 120px;
  width: 120px;
  border: 1px solid black;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
}

/* #sop .card img:hover {
  transform: rotate(360deg);
  transition: transform 0.6s ease; 
}
 */

#sop .card img:hover {
  animation: bounce 0.6s ease;
}

/* ✅ Bounce Animation Keyframes */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(0);
  }
}

/* #sop .card img:hover{
  transform: rotateX('360deg');
} */
#sop .card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 16px;
  font-weight: bold;
  color: white;
}
/* ==================================
   BANNER CAROUSEL
/* banner owl carousal */
#banner .owl-carousel {
  max-height: 250px !important;
  min-width: 300px !important;
  background-color: #bad4f9;
}

#before .owl-carousel {
  background-color: #ffa500;
}

.pulse-btn1 {
  -webkit-animation: pulse2 1.5s infinite ease-in-out;
  animation: pulse2 1.5s infinite ease-in-out;
}

@keyframes pulse2 {
  0% {
    box-shadow: 0 0 0 0 #fff;
  }

  70% {
    box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}
.transform-img {
  border: 2px solid var(--primary);
  border-radius: 15px; /* optional */
}
/********* trusted by  *******/
.info-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 15px 40px;
  box-shadow: 5px 5px 10px var(--primary);
  border: 1px solid var(--primary);
  position: relative;
  min-height: 175px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content {
  flex-grow: 1;
}

.info-card h2 {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--primary);
  transition: color 0.3s;
}

.info-card p {
  font-size: 1rem;
  color: #444;
  font-weight: 500;
  transition: color 0.3s;
}

.info-card .underline {
  height: 4px;
  width: 60px;
  background-color: var(--primary);
  border-radius: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: background-color 0.3s;
}

.number {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  transition: color 0.3s;
}

.unit {
  font-size: 1rem;
  color: #444;
}

.info-card:hover {
  background-color: var(--primary);
}

.info-card:hover h2,
.info-card:hover p,
.info-card:hover .number,
.info-card:hover .unit {
  color: #fff !important;
}

.info-card:hover .underline {
  background-color: #fff !important;
}

/* Responsive */
@media (max-width: 575.98px) {
  .info-card {
    padding: 20px 10px 35px;
  }
  .info-card h2 {
    font-size: 1.5rem;
  }
  .info-card p {
    font-size: 0.9rem;
  }
}
/* ==================================
   call button sticky STYLES
================================== */

  .mobile-call-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: var(--primary);
    text-align: center;
    padding: 12px 0;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
  }

  .call-now-button {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .call-now-button i {
    font-size: 1.2rem;
  }

