* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #fe972a;
  --secondary: #4ecdc4;
  --accent: #ffd93d;
  --dark: #2c3e50;
  --light: #f8f9fa;
  --text: #000000;
  --text-light: #fe972a;
  --white: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.cursor-dot,
.cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 10000;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--white);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}


/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
}

/* ===== CONTAINER ===== */
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== LOGO ===== */
.logo-box {
  display: flex;
  align-items: center;
}

.logo-box a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 60px;
  height: auto;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  margin-left: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== NAV MENU ===== */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

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

/* ===== CONTACT BUTTON ===== */
.contact-btn {
  padding: 0.7rem 1.8rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn::after {
  display: none;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  color: var(--white);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
  .nav-container {
    padding: 0.8rem 1.5rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: rgba(235, 177, 5, 0.98);
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    gap: 1.5rem;
    transition: right 0.4s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .contact-btn {
    display: inline-block;
  }
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 10%;
  padding-bottom: 5%;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 8%;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
    background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.7),
    rgba(78, 205, 196, 0.7)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 1200px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line {
  display: block;
}

.gradient-text {
  background: linear-gradient(90deg, #ffd93d, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  flex-wrap: wrap;
}

.btn {
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.hero-features {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 2rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-icon {
  width: 25px;
  height: 25px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* .slider-controls {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 2;
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 0.8rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--white);
  transform: scale(1.3);
} */

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

.stats-section {
  padding: 0rem 0;
  /* background: linear-gradient(135deg, #ff6b6b, #4ecdc4); */
  background-color: var(--light);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.container-fluid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  position: relative;
  bottom: 1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 4px 4px 15px rgba(235, 178, 5, 0.495);
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-icon {
  font-size: 3rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 141, 26, 0.9);
  font-size: 1rem;
}

.services {
  padding: 8rem 0;
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  margin-top:-3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.7rem 2rem;
  /*background: linear-gradient(*/
  /*  135deg,*/
  /*  rgba(255, 107, 107, 0.5),*/
  /*  rgba(78, 205, 196, 0.5)*/
  /*);*/
  background: linear-gradient(135deg, rgb(255 177 107 / 50%), rgb(222 219 7 / 50%));
  border-radius: 50px;
  color: var(--white);
  /*color:black;*/
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  /* margin-bottom: -4rem; */
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 900;
  /*color: var(--light);*/
  /* margin-bottom: 1.5rem; */
}

.section-subtitle {
  font-size: 1.25rem;
  color: black;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  transform: scaleX(0);
  transition: transform 0.5s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.service-content {
  padding: 2.5rem;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.service-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  margin-bottom: 2rem;
}

.service-list li {
  padding: 0.5rem 0;
  color: var(--text);
  position: relative;
  padding-left: 2rem;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.service-link {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.service-link:hover {
  transform: translateX(10px);
}

.gallery {
  padding: 8rem 0;
  background: rgb(255 175 0);
  color: var(--white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-color: transparent;
  transform: translateY(-3px);
}
/** /////////////////////////////////////// */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  transition: transform 0.5s;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.2);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 2.5rem;
  transform: translateY(100%);
  transition: transform 0.5s;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-category {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.gallery-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery-description {
  opacity: 0.9;
}

/* /////////////////////////////////////// */

/* .about {
  width: 100%;
  height: auto;
  margin-top: 6%;
} 

.aboutmain {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
}

.aboutmain h2 {
  text-align: center;
  font-size: 2.5rem;
}

.abcontent {
  width: 100%;
  height: 250px;
  padding: 2rem 10rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.5rem;
  letter-spacing: 0.1rem;
  margin-top: 3%;
  margin-bottom: 8%;
}*/

/* ===== ABOUT SECTION STYLING ===== */
.about {
  /* width: 100%; */
  /* background: #d70f0f;  */
  font-family: "Poppins", sans-serif;
  /* color: #333;  */
  text-align: center;
  margin-top: 6%;
}

.aboutmain {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(235, 177, 5, 0.98);
}

.aboutmain h2 {
  font-size: 2.2rem;
  /* color: #222; */
  margin-bottom: 30px;
  letter-spacing: 5px;
  position: relative;
  display: inline-block;
}

/* Optional underline effect under "ABOUT US" */
.aboutmain h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: rgba(21, 21, 20, 0.796);
  border-radius: 2px;
}

.abcontent {
  /* max-width: 900px; */
  width: 100%;
  height: 300px;
  /* margin: 0 auto; */
  line-height: 1.8;
  font-size: 1.1rem;
  color: #555;
  /* background: #f8f8f8; */
  background: rgba(235, 177, 5, 0.98);
  padding: 0px 16rem;
  padding-top: 4rem;
  border-radius: 12px;
  margin-top: 6rem;
  margin-bottom: 6rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets (width ≤ 768px) */
@media (max-width: 768px) {
  .about {
    padding: 60px 15px;
  }

  .aboutmain h2 {
    font-size: 1.8rem;
  }

  .abcontent {
    font-size: 1rem;
    padding: 25px 20px;
  }
}

/* Mobile (width ≤ 480px) */
@media (max-width: 480px) {
  .about {
    padding: 50px 10px;
  }

  .aboutmain h2 {
    font-size: 1.5rem;
  }

  .abcontent {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 20px 15px;
  }
}

/* ------------------------------------- */

/* .jcb {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
}

.jcb-badge {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.1),
    rgba(78, 205, 196, 0.1)
  );
  border-radius: 50px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.product-con {
  width: 100%;
  height: auto;
  padding-bottom: 4rem;
}

.product-con p {
  margin-left: 2rem;
  padding: 3rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
}

.crd-box {
  width: 100%;
  height: auto;
  background-color: #ffd93d;
  margin-bottom: 5%;
}

.crd {
  width: 100%;
  height: 300px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-radius: 30px;
  background-color: #4ecdc4;
}

.crd img {
  border-radius: 50%;
  width: 280px;
  height: 280px;
}
*/

/* ===== PRODUCT SECTION STYLING ===== */
.product {
  font-family: "Poppins", sans-serif;
  width: 100%;
  height: auto;
  /* background-color: #34495e; */
  margin-top: 6%;
}

.product h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  /* color: #333; */
  letter-spacing: 5px;
}

.jcb-badge {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.1),
    rgba(78, 205, 196, 0.1)
  );
  border-radius: 50px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.jcb {
  text-align: center;
  padding: 3rem 10px;
}

.product-con {
  padding: 0 0 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  /* background-color: #34495e; */
  /* background-color: rgba(235, 177, 5, 0.98); */
}

/* * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f5f5f5;
} */

/* Container */
.crd-box {
  /* text-align: center; */
  padding: 30px 25px;
}

.title p {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}

/* Card container */
.crd {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem;
  justify-content: center;
}

/* Individual card */
.card {
  position: relative;
  width: 250px;
  aspect-ratio: 1/1;
  overflow: hidden;
  box-shadow: 4px 4px 20px black;
  transition: transform 0.3s ease;
  background: #fff;
  border-radius: 50%;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.card:hover {
  transform: scale(1.05);
}

.product-con .crd-box:nth-child(even) {
  width: 100%;
  background-color: rgba(235, 177, 5, 0.98);
}

.product-con .crd-box:nth-child(odd) .card {
  box-shadow: 2px 4px 10px rgba(235, 177, 5, 0.98);
}

/* Overlay text */
.overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 12px;
  font-size: 20px;
  text-align: center;
  transition: bottom 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.card:hover .overlay {
  bottom: 0;
  opacity: 1;
}

/* 🔸 Responsive Text & Layout Tweaks */
@media (max-width: 768px) {
  .title p {
    font-size: 20px;
  }

  .overlay {
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .title p {
    font-size: 18px;
  }

  .crd {
    gap: 15px;
  }

  .overlay {
    font-size: 13px;
  }
}

.process {
  padding: 8rem 0;
  /* background: var(--white); */
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  /* background: linear-gradient(to bottom, #ff6b6b, #4ecdc4); */
  background-color: rgba(235, 177, 5, 0.98);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
}

.process-step:nth-child(even) {
  direction: rtl;
}

.process-step:nth-child(even) .step-content {
  direction: ltr;
}

.step-number {
  width: 100px;
  height: 100px;
  background-color: rgba(235, 177, 5, 0.98);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-left: auto;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  position: relative;
  z-index: 1;
}

.step-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* background: var(--light); */
  /* background: var(--secondary); */
  padding: 2.5rem;
  border-radius: 20px;
  transition: transform 0.3s;
}

.step-content:hover {
  transform: translateX(-10px);
}

.process-step:nth-child(even) .step-content:hover {
  transform: translateX(10px);
}

.step-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.step-description {
  color: var(--text-light);
  line-height: 1.7;
}

.testimonials {
  padding: 8rem 0;
  background: var(--light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.testimonial-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 10rem;
  font-family: serif;
  color: rgba(255, 107, 107, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.client-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.client-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.rating {
  color: #ffd93d;
  font-size: 1.2rem;
}

.testimonial-text {
  color: var(--text);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.testimonial-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact {
  padding: 8rem 0;
  /* background: linear-gradient(135deg, #ff6b6b, #4ecdc4); */
  background-color: rgba(235, 177, 5, 0.98);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-info .section-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.contact-info .section-title {
  color: var(--white);
}

.contact-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-methods {
  display: grid;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.method-icon {
  font-size: 2rem;
}

.method-content h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.method-content a,
.method-content p {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s;
}

.method-content a:hover {
  color: var(--white);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.5rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.footer {
  background: var(--light);
  color: var(--dark);
  padding: 0.5rem 0 0rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-description {
  color: rgba(9, 9, 9, 0.467);
  margin: 1.5rem 0;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: rgb(234 178 9 / 21%);
  border-radius: 50px;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.social-link:hover {
  /* background: linear-gradient(135deg, #ff6b6b, #4ecdc4); */
  background-color: rgba(235, 177, 5, 0.98);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(9, 9, 9, 0.467);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: rgba(235, 177, 5);
}

.footer-links button {
  padding: 0.8rem 2rem;
  background: rgba(235, 177, 5, 0.98);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.footer-links button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(235, 177, 5, 0.98);
}

.footer-newsletter h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-newsletter p {
  color: rgba(49, 49, 49, 0.7);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--dark);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  padding: 0.8rem 2rem;
  background: var(--white);
  color: var(--primary);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgb(234 178 9);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
 color: rgb(234 178 9);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--white);
}

@media (max-width: 1024px) {
  .nav-container {
    padding: 1rem 2rem;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: left 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    gap: 0;
  }

  .nav-menu li {
    padding: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .process-timeline::before {
    left: 50px;
  }

  .process-step {
    grid-template-columns: 100px 1fr;
    gap: 2rem;
  }

  .process-step:nth-child(even) {
    direction: ltr;
  }

  .step-number {
    margin-left: 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .services-grid,
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .slider-controls {
    bottom: 1.5rem;
  }

  .container,
  .container-fluid {
    padding: 0 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================= */
/* RESPONSIVE OVERRIDE - ADD TO BOTTOM OF CSS    */
/* ============================================= */

/*
 * Remove horizontal overflow blocking to see layout issues
 * and ensure containers take full available width.
 */
body {
  overflow-x: auto !important; /* Changed from hidden to auto */
}

/*
 * Force containers to be 100% width with reasonable padding
 * on all screen sizes.
 */
.container,
.container-fluid {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important; /* Ensures padding is included in the width */
}

/*
 * Drastically reduce padding on the .abcontent section
 * which is a primary cause of overflow.
 */
.abcontent {
  padding: 4rem 1rem !important; /* Reduced horizontal padding */
  box-sizing: border-box !important;
}

/*
 * Adjust grid layout for product cards at different breakpoints
 * to prevent them from overflowing.
 */
@media (max-width: 1200px) {
  .crd {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 992px) {
  .crd {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .abcontent {
    padding: 2rem 1rem !important;
  }
}

@media (max-width: 576px) {
  .crd {
    grid-template-columns: 1fr !important;
  }
  .abcontent {
    padding: 1rem !important;
    font-size: 0.95rem !important;
  }
}

/* Your existing media query for the hamburger menu */
@media (max-width: 1024px) {
  .nav-container {
    padding: 1rem 2rem;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0; /* Align to the top */
    flex-direction: column;
    background: rgba(235, 177, 5, 0.98);
    width: 100%;
    height: 100vh; /* Make it full height */
    text-align: center;
    transition: left 0.3s ease-in-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding-top: 5rem; /* Add padding to push items down */
    gap: 1.5rem; /* Adjust gap */
  }

  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    padding: 0; /* Remove padding from list items */
  }

  .nav-link {
    font-size: 1.5rem; /* Increase font size for better readability */
    padding: 1rem 0;
  }

  .hamburger {
    display: flex;
    position: relative; /* Ensure it stays in place */
    z-index: 1001;
  }
}
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem; /* Reduces padding for mobile screens */
  }
}
/* ============================================= */
/* RESPONSIVE FIX FOR PROCESS/TIMELINE SECTION   */
/* ============================================= */

@media (max-width: 768px) {

  /*
   * Removes the timeline's central line on mobile and adjusts padding.
   */
  .process-timeline::before {
    display: none;
  }

  .process-timeline {
    padding: 0 1rem;
  }

  /*
   * Stacks the process steps vertically instead of in a grid.
   * Removes direction-specific styling.
   */
  .process-step {
    grid-template-columns: 1fr; /* Single column layout */
    direction: ltr !important; /* Reset text direction */
    margin-bottom: 3rem;
  }

  /*
   * Centers the step number and content.
   */
  .step-number {
    margin: 0 auto 1rem auto; /* Center the number */
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .step-content {
    text-align: center; /* Center the text content */
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /*
   * Removes the hover effect that shifts content horizontally.
   */
  .step-content:hover,
  .process-step:nth-child(even) .step-content:hover {
    transform: none; /* Disable horizontal shift on hover */
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

}
/* ===== Contact Page ===== */
.contact-hero {
  background: linear-gradient(135deg, #1a5490, #0f1419);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.contact-section {
  padding: 60px 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: start;
}
.contact-form h2, .contact-info h2 {
  margin-bottom: 20px;
  color: #1a5490;
}

.contact-form
{
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
  padding: 3rem;
  border-radius: 15px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}
.btn {
  background: #1a5490;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.btn:hover {
  background: #0f1419;
}

.contact-info
{
  margin: auto;
}
.contact-info p {
  margin: 10px 0;
}
.contact-info i {
  color: #1a5490;
  margin-right: 10px;
}
.social-links a {
  display: inline-block;
  margin-right: 10px;
  color: #1a5490;
  font-size: 20px;
}
.social-links a:hover {
  color: #0f1419;
}

/*#services .process {*/
/*    padding: 80px 0;*/
/*    background: #f8f9fb;*/
/*}*/

/*#services .section-header {*/
/*    text-align: center;*/
/*    margin-bottom: 50px;*/
/*}*/

/*#services .section-badge {*/
/*    display: inline-block;*/
/*    background: #ff6600;*/
/*    color: #fff;*/
/*    padding: 5px 15px;*/
/*    border-radius: 20px;*/
/*    font-size: 13px;*/
/*    letter-spacing: 1px;*/
/*}*/

/*#services .section-title {*/
/*    font-size: 32px;*/
/*    color: #222;*/
/*    margin-top: 15px;*/
/*}*/

/*#services .section-subtitle {*/
/*    color: #666;*/
/*    font-size: 16px;*/
/*    margin-top: 10px;*/
/*}*/

/*#services .process-timeline {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: center;*/
/*    gap: 30px;*/
/*}*/

/*#services .process-step {*/
/*    background: #fff;*/
/*    padding: 25px;*/
/*    border-radius: 10px;*/
/*    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);*/
/*    width: 280px;*/
/*    text-align: center;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*#services .process-step:hover {*/
/*    transform: translateY(-8px);*/
/*    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);*/
/*}*/

/*#services .step-number {*/
/*    font-size: 20px;*/
/*    font-weight: bold;*/
/*    color: #ff6600;*/
/*    margin-bottom: 10px;*/
/*}*/

/*#services .step-title {*/
/*    font-size: 18px;*/
/*    font-weight: 600;*/
/*    color: #222;*/
/*    margin-bottom: 10px;*/
/*}*/

/*#services .step-description {*/
/*    font-size: 15px;*/
/*    color: #555;*/
/*    line-height: 1.6;*/
/*}*/

