/* GoogleFonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* font-family: "Poppins", sans-serif; */

/* ======= Color Variables ======= */
:root {
  --primary-color: #6fbf52;
  --secondary-color: #4ba0e8;
  --accent-color: #ffc600;
  --bg-color: #f9f9fa;
  --section-heading-color: #4b5b68;
  --text-color: #677d8f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  /* outline: 1px solid rgba(255, 0, 0, 0.2); */
  /* overflow-x: hidden; */
}

.top-bar {
  display: flex;
  justify-content: space-around;
  background-color: #f9f9fa;
  align-items: center;
  padding: 8px 0;
}
.top-bar a:hover {
  color: var(--primary-color);
}
.leftTopBar {
  display: flex;
  gap: 20px;
}
.phone-number a {
  text-decoration: none;
  color: #899198;
}
.phone-number a i {
  color: var(--primary-color);
}
.email a {
  color: #899198;
  font-size: 15px;
  text-decoration: none;
}
.email a i {
  color: var(--primary-color);
}
.rightTopBar {
  display: flex;
  gap: 20px;
  align-items: center;
}
.rightTopBar .booking-time a i {
  color: var(--primary-color);
}
.rightTopBar a {
  text-decoration: none;
  color: #899198;
  transition-duration: 0.5s;
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}
/* Base Navbar Styling */
.navbar {
  background: rgba(
    255,
    255,
    255,
    1
  ) !important; /* Slightly translucent white */
  /* padding: 10px 20px; */
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  transition: background 0.3s ease;
  z-index: 1000;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15) !important;
}

/* Logo */
.navbar-brand img.logo {
  width: 200px;
  transition: transform 0.3s;
}
.navbar-brand img.logo:hover {
  transform: scale(1.05);
}

/* Toggle Button */
.navbar-toggler {
  border: none;
}
.navbar-toggler-icon {
  filter: invert(0.5);
}

/* Navbar Links */
.nav-link {
  color: var(--section-heading-color) !important;
  font-size: 16px;
  font-weight: 600 !important;
  padding: 8px 15px;
  transition: color 0.3s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important; /* Accent color on hover */
}

/* Dropdown Styling */
.dropdown-menu {
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
}
.dropdown-item {
  transition: background 0.3s;
  font-weight: 600 !important;
  color: var(--section-heading-color) !important;
}
.dropdown-item:hover {
  background-color: #0056b3;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #ffffff !important;
  background-color: var(--primary-color) !important;
}

/* Custom styles for the image section */

.image-section {
  /* display: flex; */
  align-items: center;
  /* justify-content: center; */
  padding: 5rem 7rem;
  background-color: #f9f9fa;
}

.image-section h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.image-section p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  padding: 0 10px;
}

.whatsapp-btn,
.call-btn,
.send-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 40px;
  border-radius: 28.5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition-duration: 0.5s;
  position: relative;
  background: var(--primary-color);
  color: white;
  border: none;
  overflow: hidden;
}

.whatsapp-btn,
.call-btn,
.send-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 40px;
  margin: 5px;
  border-radius: 28.5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition-duration: 0.5s;
}

.whatsapp-btn,
.call-btn,
.send-btn {
  position: relative;
  background: var(--primary-color);
  color: white;
  border: none;
  overflow: hidden;
}
.whatsapp-btn::after,
.call-btn::after,
.send-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(-100%);
  transition-duration: 0.5s;
}
.whatsapp-btn:hover::after,
.call-btn:hover::after,
.send-btn:hover::after {
  transform: translateX(100%);
}

.whatsapp-btn:hover {
  background-color: var(--secondary-color);
  color: #ffffff;
}

.desktop-view .col {
  height: 700px;
}
/* Custom styles for service cards */
.service-card {
  text-align: center;
  height: 200px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card .card-img-top {
  height: 60%;
  object-fit: cover;
  display: block;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card .card-body {
  padding: 20px;
}

.service-card h3 {
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.service-card p {
  font-size: 1rem;
  color: var(--text-color);
}

/* Custom carousel styles */
.carousel {
  position: relative; /* Ensures positioning is relative to the carousel */
}
.carousel-inner {
  padding: 20px 0;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  width: 5%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  top: 50% !important;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: -90px !important;
}
.carousel-control-next {
  right: -90px !important;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* Desktop View */
.desktop-view {
  display: block;
}

.mobile-view {
  display: none;
}

/* image section of working */
.modern-carousel {
  position: relative;
  max-width: 1400px;
  margin: 4rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.modern-carousel-slides {
  position: relative;
  height: 600px;
}

.modern-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.modern-slide.active {
  opacity: 1;
  transform: scale(1.02);
  z-index: 1;
}

.modern-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.modern-slide-content {
  position: absolute;
  bottom: 8%;
  left: 5%;
  color: white;
  max-width: 600px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.modern-slide-content h3 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modern-slide-content p {
  color: var(--text-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.modern-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

.modern-carousel-control:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.modern-carousel-control.prev {
  left: 2rem;
}
.modern-carousel-control.next {
  right: 2rem;
}

.modern-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.modern-indicators .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease, transform 0.2s ease;
}

.modern-indicators .dot.active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .modern-carousel {
    margin: 2rem auto;
    border-radius: 10px;
  }

  .modern-carousel-slides {
    height: 400px;
  }

  .modern-slide-content {
    padding: 1rem;
    bottom: 5%;
  }

  .modern-slide-content h3 {
    font-size: 1.8rem;
  }

  .modern-slide-content p {
    font-size: 1rem;
  }

  .modern-carousel-control {
    font-size: 1.5rem;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
  }

  .image-section {
    padding: 3rem 0;
  }
  .image-section p {
    padding: 0 10px;
    font-size: 14px;
  }
}

/* review section */

.title-container {
  /* background: linear-gradient(135deg, #080f6f 0%, #3498db 100%); */
  padding: 4rem 1rem;
  /* margin: 0 0 3rem 0; */
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  color: var(--primary-color);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.title-text {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.title-subtext {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  margin-top: 0.8rem;
  opacity: 0.9;
}

/* Decorative elements */
.service .title-container:before {
  content: "";
}
.service .title-container {
  /* background: linear-gradient(0deg, #080f6f 0%, #3498db 100%); */
  padding: 3rem 0 1rem;
}
.title-container:before {
  content: "❝";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15rem;
  opacity: 0.08;
  color: white;
}

/* Animated background elements */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

.title-container .decorative-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 12s infinite linear;
}

.title-container .circle1 {
  top: 20%;
  left: 15%;
}

.title-container .circle2 {
  bottom: 30%;
  right: 10%;
  width: 120px;
  height: 120px;
  animation-duration: 15s;
}

@media (max-width: 768px) {
  .title-text {
    font-size: 2rem;
  }

  .title-subtext {
    font-size: 1rem;
  }

  .title-container:before {
    font-size: 8rem;
  }

  .title-container {
    padding: 3rem 1rem;
    margin-bottom: 0;
  }

  .service .title-container {
    background: linear-gradient(0deg, #080f6f 0%, #3498db 100%);
    padding: 3rem 0;
  }
}
.reviews-section {
  padding: 10px 0 60px;
}
.review-container {
  display: grid;
  gap: 2rem;
  padding: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.review-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 2px solid var(--primary-color);
}

.review-card:hover {
  transform: translateY(-5px);
}

.profile-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.client-name {
  margin: 0;
  color: var(--section-heading-color);
  font-size: 1.2rem;
  font-weight: 600;
}

.client-role {
  margin: 0;
  color: #636e72;
  font-size: 0.9rem;
}

.stars {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-text {
  color: var(--text-color);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3.5rem;
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .review-container {
    margin-top: 0px;
    grid-template-columns: 1fr;
  }

  .review-card {
    margin-bottom: 5px;
  }
}

.about-us {
  padding: 50px 0;
  /* background-color: #f9f9f9; */
  position: relative;
  overflow: hidden; /* Ensures the stripe doesn't overflow */
  margin-top: 0px;
}

.container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative; /* Ensure content is above stripe */
  z-index: 2;
}

.about-image {
  flex: 1;
  margin-right: 30px;
  animation: fadeInUp 1s ease-out;
}

.about-image img {
  width: 75%;
  height: auto;
  border-radius: 10px;
  box-shadow: -6px -3px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-text {
  flex: 1;
  animation: fadeInRight 1s ease-out;
  background-color: #f9f9fa;
  padding: 35px;
  border-radius: 20px;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color); /* Darker, professional color */
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.about-text p {
  font-size: 1.15em;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: justify;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: justify;
}

.about-text ul li {
  font-size: 1.15em;
  color: var(--text-color);
  margin-bottom: 12px;
  padding-left: 1.8em;
  position: relative;
}

.about-text ul li:before {
  content: "✓";
  color: #3498db; /* A brighter, more engaging color */
  position: absolute;
  left: 0;
  font-size: 1.2em;
}

.highlight-stripe {
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  /* background: linear-gradient(
    to right,
    rgba(52, 152, 219, 0.1),
    rgba(41, 128, 185, 0.2)
  ); */
  /* transform: rotate(-5deg); */
  z-index: 1;
  display: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* brand details  */
.brand-contact {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.brand-logo {
  width: 50%;
}
.brand-details {
  text-align: center;
}
.brand-details h1 {
  color: var(--primary-color);
  font-weight: 900;
}

/* WhatsApp Button */
.business-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
/* Call Button */
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 28.5px;
  transition: background-color 0.3s ease;
  margin: 5px;
  background-color: var(--secondary-color);
  color: #fff;
}
.call-btn:hover {
  background-color: var(--primary-color);
}

@media (max-width: 768px) {
  .call-btn {
    font-size: 18px;
    padding: 6px 20px;
  }
  .brand-contact {
    display: grid;
  }
  .brand-logo {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* sticky bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #4ba0e8 0%, #6fbf52 100%);
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  z-index: 1000;
}

@media (min-width: 768px) {
  .sticky-bar {
    display: none;
  }
}
@media (max-width: 768px) {
  body {
    padding-bottom: 50px;
  }
}

/* ----------------------
FORM SECTION 
---------------------- */
#registration-form {
  background: url(../images/section-bg.webp) center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  margin-top: 60px;
  padding: 0 !important;
}

.ss-tile-logo img {
  width: 150px;
}
.ss-content h2,
.right-col h2 {
  color: var(--secondary-color);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}
.ss-content p {
  color: var(--text-color);
  font-weight: 400;
}
.right-col {
  background-color: #ffffff;
  border-radius: 7px;
  box-shadow: 0 8px 28px 2px rgba(61, 61, 61, 0.3);
}
form input,
.form-select {
  border-radius: 7px !important;
}

.form-select {
  font-family: "Open Sans", sans-serif;
  padding: 15px 10px !important;
}

.form-floating > label {
  padding: 15px 20px !important;
}

.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-select ~ label::after {
  background: transparent !important;
}

.send-btn {
  padding: 10px 30px !important;
  border-radius: 7px !important;
  background-color: var(--secondary-color) !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  transition-duration: 0.3s !important;
  margin-top: 25px;
}

.send-btn:hover {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
}

/* Footer Styles */
footer {
  /* background-color: var(--bg-color); */
  padding: 20px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content a {
  color: #711515;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: var(--primary-color); /* Gold Accent on Hover */
}

.social-icons a {
  margin: 0 5px;
  font-size: 20px;
  color: #899198;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 10px;
  font-size: 12px;
  color: rgb(126, 126, 131);
}

.footer-bottom a {
  color: #ffd700; /* Gold Accent */
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.mail-container a {
  font-size: 12px;
  color: rgb(48, 123, 157);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .social-icons a {
    font-size: 18px; /* Smaller icons for mobile */
    margin: 0 8px;
  }

  .footer-bottom {
    font-size: 10px; /* Smaller footer text for mobile */
  }
}

@media (max-width: 480px) {
  .footer-content p {
    font-size: 11px; /* Even smaller text for very small screens */
  }

  .social-icons a {
    font-size: 16px; /* Even smaller icons for very small screens */
    margin: 0 5px;
  }

  .footer-bottom {
    font-size: 9px; /* Even smaller footer text for very small screens */
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  /* Hide desktop & carousel elements on mobile */
  .desktop-view,
  .carousel,
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }

  .mobile-view {
    margin-top: 10px;
    display: block;
    padding: 1rem;
    background-color: #ffffff; /* Light neutral background */
    border-radius: 10px;
  }

  /* Use Flexbox for grid layout with 3 columns */
  .mobile-view .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -8px;
  }

  .mobile-view .col {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 2px;
    margin-top: 10px;
  }

  /* Service Card Styling */
  .service-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
    /* overflow: hidden; */
    /* Remove fixed height so the card sizes to its content */
    height: 140px;
    font-size: 0.7rem;
    margin-bottom: 0;
  }

  /* Icon Container (replaces image section) */
  .icon-container {
    background-color: var(--bg-color); /* Primary blue */
    padding-top: 1rem;
    padding-bottom: 0.4rem;
    text-align: center;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
  }

  .icon-container i {
    font-size: 2.5rem;
    color: var(--primary-color);
  }

  /* Card Body for Title */
  .service-card .card-body {
    padding: 10px 5px;
    text-align: center;
  }

  .service-card h3 {
    align-items: center;
    font-size: 0.6rem;
    color: var(--section-heading-color);
    font-weight: 700;
    /* margin: 0 0 0.5rem; */
    /* text-transform: uppercase;        Makes text appear bold and impactful */
    letter-spacing: 0.05rem; /* Adds slight spacing for improved readability */
    line-height: 1.2; /* Ensures a comfortable vertical rhythm */
    text-align: center; /* Centers the heading within the card */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Adds subtle depth for a polished look */
  }

  .flat-icon .card-body {
    margin-top: -15px !important;
  }
  /* Other sections (if needed) */
  .image-section h1 {
    font-size: 2rem;
  }
  .about-text h2 {
    font-size: 2rem;
  }
  .about-text {
    text-align: left;
    margin-bottom: 40px;
    padding-top: 30px;
  }
  .about-text p {
    font-size: 14px;
    text-align: left;
  }
  .about-text ul li {
    color: var(--text-color);
    font-size: 14px;
  }

  .whatsapp-btn,
  .call-btn {
    padding: 6px 30px;
    font-size: 16px;
  }

  .whatsapp-btn img {
    height: 18px;
    width: 18px;
  }

  /* Footer & About Section adjustments */
  .about-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-image {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links ul {
    flex-direction: column;
    align-items: center;
  }

  .footer-links li {
    margin: 10px 0;
  }

  .footer-copyright {
    margin-top: 30px;
  }
}

/* for service page design */

.ecs-dc-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 3rem 2rem;
}
.ecs-dc-hero-content {
  flex: 1;
  padding-right: 2rem;
}

.ecs-dc-hero-image {
  /* flex: 1; */
  /* text-align: center; */
  display: flex;
  justify-content: center;
  width: 50%;
}

.ecs-dc-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.ecs-dc-main-heading {
  color: var(--primary-color);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

.ecs-dc-intro-text {
  font-size: 1.15rem;
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  text-align: justify;
  color: var(--text-color);
}

.ecs-dc-details-section {
  padding: 1rem 0;
}
.ecs-dc-hero-container {
  display: flex;
}
.ecs-dc-service-block {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06); */
  text-align: justify;
  color: var(--text-color);
}

.ecs-dc-subheading {
  color: var(--primary-color);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #25d366;
  text-align: left;
}

.ecs-dc-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-color);
}

.ecs-dc-feature-item {
  padding: 1rem 0;
  align-items: center;
  text-align: justify;
}

.ecs-dc-feature-icon {
  color: #25d366;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.ecs-dc-cta-section {
  text-align: center;
  padding: 4rem 0;
  background: #fff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .ecs-dc-hero-container {
    display: grid;
    text-align: center;
    padding: 1rem;
  }
  .ecs-dc-service-container {
    display: grid;
    text-align: center;
    /* padding: 0 1rem; */
  }

  .ecs-dc-hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .ecs-dc-hero-image {
    width: 100%;
    text-align: center;
  }

  .ecs-dc-hero-image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .ecs-dc-hero-section {
    padding: 0;
  }

  .ecs-dc-main-heading {
    font-size: 2rem;
  }
  .ecs-dc-service-block {
    width: fit-content;
    padding: 1.5rem;
    text-align: left;
  }

  .ecs-dc-subheading {
    font-size: 1.5rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .ecs-dc-main-heading {
    font-size: 1.75rem;
  }

  .ecs-dc-intro-text {
    font-size: 1rem;
    text-align: center;
  }

  .ecs-dc-hero-image img {
    max-width: 90%;
  }
}

/* typewriter effect */
.typewriter h1 {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid var(--primary-color); /* The typwriter cursor */
  /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.15em; /* Adjust as needed */
  animation: typing 3s steps(40, end);
  margin-bottom: 20px;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.highlighted-services a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.highlighted-services {
  --color: rgba(30, 30, 30);
  --bgColor: rgba(245, 245, 245);
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 2rem;
  padding: 2rem;
  font-family: "Exo 2", sans-serif;
  color: var(--color);
  background: var(--bgColor);
}
@media (max-width: 768px) {
  .round-cards {
    display: none;
  }
  .service .title-container {
    background: transparent;
    padding-bottom: 15px;
  }
}

ol {
  width: min(60rem, 90%);
  margin-inline: auto;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
}

li:nth-child(6n + 1) {
  --accent-color: #b8df4e;
}
li:nth-child(6n + 2) {
  --accent-color: #4cbccb;
}
li:nth-child(6n + 3) {
  --accent-color: #7197d3;
}
li:nth-child(6n + 4) {
  --accent-color: #ae78cb;
}
li:nth-child(6n + 5) {
  --accent-color: #7dc7a4;
}
li:nth-child(6n + 6) {
  --accent-color: #f078c2;
}

ol li {
  width: 18rem;
  --borderS: 2rem;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: calc(var(--borderS) + 3rem);
  position: relative;
}
ol li::before,
ol li::after {
  inset: 0;
  position: absolute;
  border-radius: 50%;
  border: var(--borderS) solid var(--bgColor);
  line-height: 1.1;
}
ol li::before {
  /* content: counter(stepnr); */
  color: var(--accent-color);
  padding-left: 10rem;
  font-size: 12rem;
  font-weight: 700;
  overflow: hidden;
}

ol li::after {
  content: "";
  filter: drop-shadow(-0.25rem 0.25rem 0.0675rem rgba(0, 0, 0, 0.75)) blur(5px);
}

ol li > * {
  width: 7.5rem;
}
ol li .icon {
  font-size: 2rem;
  color: var(--accent-color);
  text-align: center;
}
ol li .title {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}
strong {
  color: var(--secondary-color);
}

.technical-services .service-card {
  padding: 40px 20px 20px;
  height: 270px;
}
.service-card-header {
  display: flex;
  gap: 15px;
}
.service-card-img {
  border-radius: 50%;
}
.service-card-img img {
  width: 310px;
  height: 90px;
  border-radius: 50%;
}
.service-card-content h3 {
  color: var(--primary-color);
  text-align: left;
  font-size: 16px;
}
.service-card-content p {
  font-size: 13px;
  text-align: left;
  margin: 0;
}
.service-card-footer {
  padding-top: 15px;
}
.service-card-footer-btn {
  padding: 8px 48px;
}
.technical-services .title-container {
  padding: 0 0 35px;
}
.offerSection {
  padding: 50px 0 0;
}
.offerSection .content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  padding-right: 20%;
  padding-bottom: 15px;
}
.offerSection .content p {
  color: var(--text-color);
  text-align: justify;
  padding-right: 15%;
}
.offerSection .icon {
  text-align: center;
  padding: 30px;
}
.offerSection .icon i {
  font-size: 40px;
  color: var(--primary-color);
}
.offerSection .icon h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 10px;
  color: var(--section-heading-color);
}
.serviceShowcase {
  padding: 100px 0;
  background-color: var(--bg-color);
}
.serviceShowcase i {
  color: var(--primary-color);
  font-size: 70px;
  border-bottom: 5px dashed;
  padding-bottom: 15px;
}
.serviceShowcase span {
  color: var(--primary-color);
}
.serviceShowcase h4 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  color: var(--section-heading-color);
  padding-top: 15px;
}
.service-showcase-slider {
  padding: 40px 0;
  background-color: var(--bg-color);
}
.faq-section {
  padding: 5px 0 40px;
  background-color: var(--bg-color);
}

.accordion-body {
  color: var(--text-color) !important;
  font-weight: 500;
}
.ecs-dc-hero-section,
.service-about {
  background-color: var(--bg-color);
}

@media (max-width: 768px) {
  .service-card-img img {
    width: 200px;
    height: 200px;
  }
  .service-card-content h3 {
    text-align: center;
  }
  .service-card-content p {
    text-align: center;
  }
  .technical-services .service-card {
    height: 450px;
  }
  .service-card-header {
    flex-direction: column;
  }
  .offerSection .icon h4 {
    font-size: 12px;
    font-weight: 800;
    color: var(--section-heading-color);
  }
  .offerSection .content {
    text-align: center;
  }
  .offerSection .content h3 {
    padding-right: 0;
    padding: 0 20px 10px;
  }
  .offerSection .content p {
    color: var(--text-color);
    padding-bottom: 10px;
    padding-right: 0;
    padding: 0 20px;
  }
  .serviceShowcase {
    padding: 50px 0;
  }
  .ecs-dc-feature-item {
    text-align: left;
    font-size: 14px;
  }
  .highlight-stripe {
    display: none;
  }
  .form-select {
    font-size: 14px !important;
  }
  textarea .form-control {
    height: 200px !important;
  }
  .send-btn {
    font-size: 14px !important;
  }
}

.service-link-section {
  background-color: #f9f9fa;
  font-style: var(--primary-color);
}
.service-link-section h5 {
  color: var(--primary-color);
}
.service-link-section .text-decoration-none {
  color: var(--secondary-color);
  font-weight: 600;
}
.service-link-section li {
  margin-bottom: 1vh;
}
#registration-form {
  padding: 263px 15px 477px;
}
.form-floating > label {
  width: 100% !important;
  font-size: 14px;
}
