* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
:root {
  --primaryColor: #ff4500;
  --accentColor: #e35e35;
  --textColor: #353535;
  --heading-3: clamp(0.7rem, 2vw, 1rem);
  --white: #ffffff;
  --grey1: #dedddd;

  --primary: #ff4500;
  --primary-dark: #a32c00;
  --secondary: #7c3aed;
  --accent: #06d6a0;
  --light: #f8fafc;
  --dark: #1e293b;
  --text: #334155;
  --gray: #64748b;
  --light-gray: #e2e8f0;
  --shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius: 8px;
}
.text-white {
  color: white;
}
.primaryColor {
  color: #ff4500;
}
.whiteColor {
  color: white;
}
.light-background {
  --background-color: #f6f0f0;
  --surface-color: #ffffff;
}
.main-header {
  background-color: white;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  /* align-content: center; */
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 3rem;
  width: 3rem;
}
.logo-container {
  display: flex;
  flex-direction: column;

  /* margin-left: 2rem; */
}
.logo-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primaryColor);
}
/* .logo-container::before {
  content: url(./images/logo.png);

  margin-right: 0.5rem;
} */
.user-action {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.action-call {
  display: flex;
  /* align-content: center; */

  /* font-size: 1rem; */
  /* font-size: var(--heading-3); */
  font-size: clamp(0.5rem, 2vw, 0.9rem);
  font-weight: 600;
  transition: transform 0.3s ease;
}
.action-call:hover {
  transform: translateY(-5px);
  color: var(--primaryColor);
}

.action-call::before {
  content: url(./images/call.svg);
  margin-right: 0.5rem;

  margin-right: 0.5rem;
}
.action-mail::before {
  content: url(./images/mail.svg);
  margin-right: 0.5rem;
}
.action-mail {
  display: flex;

  /* align-content: center; */
  transition: transform 0.3s ease;
}

.mail-text {
  text-decoration: none;
  color: var(--textColor);
  font-size: var(--heading-3);
  font-weight: 600;
}
.mail-text:hover {
  color: var(--primaryColor);
}

.action-mail:hover {
  transform: translateY(-5px);
}

.req-btn {
  text-decoration: none;
  background-color: var(--primaryColor);
  font-size: clamp(0.5rem, 2vw, 0.9rem);
  font-weight: 600;
  color: var(--white);
  padding: 0.75rem 1.5rem;

  /* Apply min() for top and bottom padding */
  /* padding-block: min(3vh, 0.75rem);
  padding-left: min(2%, 1.5rem);
  padding-right: min(2%, 1.5rem); */

  /* Apply min() for left and right padding  */

  border-radius: 3px;
  cursor: pointer;
}

.req-btn:hover {
  background-color: var(--accentColor);
}

.main-nav {
  background-color: var(--primaryColor);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.nav-container {
  display: flex;
  justify-content: space-between;
}
.nav-item:first-child {
  display: none;
}
.nav-item {
  font-weight: 500;
  cursor: pointer;
  position: relative;
  padding: 1rem 1.2rem;
  transition: background 0.3s ease;
}
.nav-item a {
  text-decoration: none;
  color: var(--white);
}
.nav-item:hover {
  background: var(--accentColor);
}
.nav-item.has-dropdown::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 8px;
  font-size: 12px;
}
/* Dropdown menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  z-index: 1001;
  display: none;
  color: #333;
}
.dropdown-item {
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.3s;
}
.dropdown-item a {
  text-decoration: none;
  color: #333;
}

.dropdown-item:last-child {
  border-bottom: none;
}
.dropdown-item:hover {
  /* background: #636363; */
  background: rgba(255, 6, 22, 0.03);
  /* color: #f8f2f2; */
  color: #731d03;
}
.nav-item:hover .dropdown {
  display: block;
}

/* Mobile menu button */
#open-sidebar-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primaryColor);
  cursor: pointer;
}
#close-sidebar-btn {
  display: none;
  background: none;
  border: none;
  padding: 1em;
  cursor: pointer;
}
#overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
}

.banner-container {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}

.banner {
  position: relative;
  transition: all 0.4s ease;
  /* margin-top: 0.5rem; */
}

/*//////////////////////// Hero Section////////////////////////// */
.hero-section {
  background: linear-gradient(
    135deg,
    rgba(255, 1, 1, 0.099),
    rgba(246, 209, 209, 0.035)
      /* 
     rgba(255, 105, 105, 0.035),
    rgba(255, 1, 1, 0.099) */
  );
  /* height: 600px; */
}
.hero-container {
  max-width: 1280px;
  margin: 0 auto;

  padding: 3rem 1rem;

  display: flex;
  align-items: center;
  gap: 2rem;
}
.left-content {
  display: flex;
  flex-direction: column;
  max-width: 50%;
  padding: min(0.7rem, 3%);
  animation: slidefromleft 1s ease forwards;
}

@keyframes slidefromleft {
  0% {
    opacity: 0%;
    transform: translateX(-100%);
  }

  100% {
    opacity: 100%;
    transform: translateX(0%);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 350;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.hero-title span {
  color: var(--primary);
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--textColor);
}
.button-group {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.start-btn {
  text-decoration: none;
  background-color: var(--primaryColor);
  font-size: clamp(0.7rem, 4vw, 1rem);
  font-weight: 500;
  color: var(--white);
  padding: 0.9rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.start-btn:hover {
  transform: translateY(-5px);
  background-color: var(--accentColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.play-btn {
  display: flex;
  justify-items: center;
  align-items: center;
  text-decoration: none;
  color: var(--textColor);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}
.play-icon {
  width: 30px;
  height: 30px;
}
.play-btn-txt {
  line-height: 1.7;
}
.play-btn:hover {
  transform: translatex(+5px);
  color: var(--primaryColor);
  font-weight: 450;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stats-info {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.stats-number {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.7;
  font-weight: 400;
  color: var(--primaryColor);
}
.stats-details {
  font-size: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.right-content {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slidefromlright 1s ease forwards;
}

@keyframes slidefromlright {
  0% {
    opacity: 0%;
    transform: translateX(+100%);
  }

  100% {
    opacity: 100%;
    transform: translateX(0%);
  }
}

.image-container {
  overflow: hidden;
  height: 100%;
  position: relative;
  border-radius: 12px;
}
.hero-image {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.floating-element {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.floating-card {
  position: absolute;
  padding: 16px 20px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 8px 32px
    color-mix(in srgb, var(--primaryColor), transparent 75%);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floating 3s ease-in-out infinite;
}
.floating-icon {
  fill: var(--primaryColor);
}
.floating-card.card-1 {
  top: 10px;
  left: 40%;
  animation-delay: 0s;
}
.floating-card.card-2 {
  top: 50%;
  right: 15px;
  animation-delay: -1s;
}
.floating-card.card-3 {
  bottom: 25px;
  left: 15px;
  animation-delay: -2s;
}
@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}
/*////////////////////// about section ////////////// */
.about-section {
  background-color: #ffffff;
}
.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;

  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.about-left-content {
  display: flex;
  flex-direction: column;
  /* max-width: 50%; */
}
.about-section-header {
  margin-bottom: 2rem;
}
.badge {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 1, 1, 0.099));
  color: var(--primaryColor);
}
.lead-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.description-text {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--textColor);
}
.about-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.about-stats-card {
  padding: min(2rem, 5%);
  background-color: white;
  border: 1px solid rgba(210, 209, 209, 0.5);
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: border 0.3s ease;
}

.about-stats-card:hover {
  border: 1px solid red;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.about-stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primaryColor);
}
.about-stats-desc {
  font-size: 1rem;
  font-weight: 400;
  color: var(--textColor);
}

.about-image-section {
  display: flex;
  flex-direction: column;
  position: relative;
}
.about-main-image-box {
  /* object-fit: cover; */
  margin-bottom: 2rem;
}
.about-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: rgba(94, 117, 141, 0.3) 0px 8px 24px;
}

.overlay-card {
  position: absolute;
  bottom: 250px;
  left: -20px;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  max-width: 280px;
  border: 1px solid gainsboro;
  box-shadow: rgba(94, 117, 141, 0.3) 0px 8px 24px;
}
.card-content {
  position: relative;
}
.card-icon {
  position: absolute;
  right: -6px;
  top: -6px;
  background-color: rgba(255, 0, 0, 0.2);
  border-radius: 50%;
  height: 40px;
  width: 40px;

  display: flex;
  justify-content: center;
  align-items: center;
}
.card-text {
  line-height: 1.6;
  margin-top: 0.75rem;
  color: var(--textColor);
}

.about-secondary-container {
  /* position: relative; */
  display: flex;
  gap: 1rem;
}
.about-secondary-img-box {
  /* object-fit: cover; */
  margin-bottom: 2rem;
}

.about-secondary-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.about-secondary-img:hover {
  transform: scale(1.05);
}

/*////////////////////////////// Feature Section//////////////////// */
.feature-section {
  background-color: #ffffff;
}
.feature-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;

  /* display: flex;
  align-items: flex-start;
  gap: 2rem; */
}
.feature-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}
.feature-header .description-title {
  position: absolute;
  top: -1.8rem;
  color: color-mix(in srgb, var(--textColor), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}
.feature-header h2 {
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.8);
}
.feature-header p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
.tab-wrapper {
  margin-top: 4rem;
  background: var(--white);
  border-radius: 20px;
  /* border: 1px solid gainsboro; */
  box-shadow: 0px 20px 60px rgba(94, 117, 141, 0.3);
  padding: 3rem;
}

.feature-nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  list-style: none;
}
.feature-nav-item {
  flex: 1;
  min-width: 0;
}
.nav-link {
  background: color-mix(in srgb, #f1f1f1, #dedede 3%);
  border: 1px solid color-mix(in srgb, #595959, transparent 85%);
  border-radius: 1rem;
  padding: 1.5rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 80px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
  );
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.nav-link-icon {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  background-color: #ec0404;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-link-icon img {
  font-size: 24px;
  color: var(--accentColor);
}
.nav-content {
  position: relative;
  z-index: 2;
  flex: 1;
}
.nav-content h5 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--textColor);
  transition: color 0.4s ease;
}
/* active class for Nav link */
.nav-link.active {
  /* border-color: var(--accentColor); */

  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--accent-color), transparent 70%);
  background-color: #f3d5d5;
}

.nav-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--accentColor), transparent 70%);
  background: var(--primaryColor);
}

.nav-link:hover .nav-link-icon {
  background: #595959;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accentColor), transparent 80%);
}

/* Tab Content Tab-pane */

.tab-content .tab-pane {
  padding: 1rem 0;
  display: none;
}
/* active class for tab-pane link */

.tab-content .tab-pane.active {
  display: block;
}

.tab-content-box {
  display: flex;
}
.feature-content-left {
  width: 40%;
  margin-bottom: 2rem;
}

.feature-content-right {
  width: 60%;
  margin-bottom: 2rem;
}

.content-wrapper {
  padding-right: 2.2rem;
}
.content-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}
.content-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--textColor), transparent 20%);
  margin-bottom: 30px;
}
.icon-badge {
  background-color: #ec0404;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
}
.icon-badge-img {
  width: 40px;
  height: 40px;
}

.content-wrapper .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}
.content-wrapper .feature-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.content-wrapper .feature-grid .feature-item span {
  font-size: 14px;
  /* color: var(--default-color); */
  color: color-mix(in srgb, var(--textColor), transparent 20%);
  line-height: 1.4;
}
.check {
  background-color: #ec0404;
  border-radius: 50%;
  width: 17px;
  height: 17px;
}

.content-wrapper .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}
.content-wrapper .stats-row .stat-item {
  text-align: center;
}

.content-wrapper .stats-row .stat-item .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}
.content-wrapper .stats-row .stat-item .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-wrapper .btn-primary {
  background: linear-gradient(
    135deg,
    var(--primaryColor),
    color-mix(in srgb, var(--primaryColor), var(--white) 20%)
  );
  color: var(--white);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.content-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px
    color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.content-wrapper .btn-primary:hover i {
  transform: translateX(5px);
}

.content-wrapper .btn-primary i {
  transition: transform 0.3s ease;
}

.visual-content {
  position: relative;
}

.visual-content .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.visual-content .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.visual-content .main-image:hover img {
  transform: scale(1.05);
}

.visual-content .floating-card1 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--white);
  padding: 20px 25px;

  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 8px 32px
    color-mix(in srgb, var(--primaryColor), transparent 75%);

  display: flex;
  align-items: center;
  gap: 12px;

  animation: floating 3s ease-in-out infinite;
}
.visual-content .floating-card1 svg {
  fill: #ec0404;
  stroke-width: 2px;
  width: 50px;
  height: 50px;
}

.visual-content .floating-card1 .card-content span {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--textColor), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.visual-content .floating-card1 .card-content strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--textColor);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* //////////////////////// SERVICES SECTION ///////////////// */

.services-section {
  background-color: var(--white);
  margin-top: 1rem;
}
.services-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.services-main-header {
  text-align: center;
  position: relative;

  display: flex;
  flex-direction: column;
}
.services-main-header .header-fade-bk {
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  font-size: 3.5rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--textColor), transparent 95%);
  z-index: 1;
  line-height: 1;
}
.services-main-header h2 {
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.8);
}
.services-main-header p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
.services-hero {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 4rem;
}
.services-content {
  flex: 1;
  padding-right: 40px;
  margin-bottom: 2rem;
}

.services-section-header {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--textColor);
}
.services-section-header .services-badge {
  padding: 0.75rem 1.5rem;
  color: var(--primaryColor);
  background-color: rgba(253, 145, 145, 0.2);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;

  border-radius: 1.2rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.services-section-header .services-badge::before {
  font-family: "Font Awesome 5 Free";
  content: "\f005";
  font-weight: 900;
  display: inline-block;
  padding-right: 8px;
}
.services-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--textColor);
}
.cta-btn {
  text-decoration: none;
  background-color: var(--primaryColor);
  font-size: clamp(0.7rem, 4vw, 1rem);
  font-weight: 500;
  color: var(--white);
  padding: 0.9rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  /* transition: transform 0.3s ease; */
  transition: transform 0.3s ease-in-out;
}
.cta-btn:hover {
  transform: translateY(-5px);
  background-color: #ec0404;
  box-shadow: rgba(149, 157, 165, 0.3) 0px 18px 24px;
}
.services-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
.services-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-grid {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);

  gap: 1.5rem;
}

.services-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  padding: 2.5rem 1.5rem;
  background-color: var(--white);

  border: 1px solid rgba(179, 179, 179, 0.3);
  border-radius: 1rem;

  height: 100%;
  transition: transform 0.3s ease;
}

.services-card-icon {
  height: 5rem;
  width: 5rem;
  background-color: rgba(246, 116, 116, 0.1);
  color: #ef1c27;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.services-card h3,
p {
  margin-bottom: 1rem;
}
.services-card .service-link {
  text-decoration: none;
  color: var(--primaryColor);
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.services-card .service-link i {
  margin-left: 10px;
}

.services-card:hover {
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.services-card:hover .services-card-icon {
  background-color: var(--primaryColor);
  color: var(--white);
}

.services-card:hover .service-link {
  font-weight: 700;
  transform: translateY(-2px);
}

.services-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0; /* Starts hidden at the bottom */
  background-color: rgba(224, 100, 100, 0.1); /* Color on hover */
  transition: height 0.5s ease-in-out; /* Smooth transition */
  z-index: 0; /* Ensure it's behind the content */
  border-radius: 1rem;
}

.services-card:hover::before {
  height: 100%; /* Expands to fill the card on hover */
  border-radius: 1rem;
}

/* ///////////////////////////// Testimonials Section //////////////////// */

.testimonials-section {
  background-color: var(--white);
  margin-top: 1rem;
}
.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.testimonials-main-header {
  text-align: center;
  position: relative;

  display: flex;
  flex-direction: column;
}
.testimonials-main-header .header-fade-bk {
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  font-size: 3.5rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--textColor), transparent 95%);
  z-index: 1;
  line-height: 1;
}
.testimonials-main-header h2 {
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.8);
}
.testimonials-main-header p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
.testimonials-wrapper {
  margin-top: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.testimonials-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(
    -135deg,
    var(--white) 0%,
    color-mix(in srgb, var(--white), var(--primaryColor) 2%) 100%
  );

  /* padding: 1.25rem 2.5rem; */
  padding: min(2.5rem, 5%);
  border: 1px solid rgba(179, 179, 179, 0.3);
  border-radius: 1rem;
  height: 100%;
  transition: transform 0.3s ease;
}
.testimonials-image-box {
  height: 5rem;
  width: 5rem;
  border: 4px solid rgba(255, 113, 113, 0.424);
  box-shadow: 0px 10px 40px rgba(94, 117, 141, 0.2);
  border-radius: 50%;
  overflow: hidden;
}
.testimonials-image {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.testimonials-rating {
  margin-top: 1rem;
  color: #ffd700;
  margin-bottom: 1rem;
}
.testimonials-desc {
  text-align: center;
}
.testimonials-author-info {
  text-align: center;
}
.testimonials-author-info .author-name {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--textColor);
  display: block;
  line-height: 1.7;
}
.testimonials-author-info .author-designation {
  text-align: center;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(112, 112, 112, 0.7);
  text-transform: uppercase;
}
.testimonials-card:hover {
  border: 1px solid red;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transform: translateY(-5px);
}

/* /////////////////////////////////////Contact US/////////////////////// */

.contact-section {
  background-color: var(--white);
  margin-top: 1rem;
  margin-top: 4rem;
}
.main-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.main-container-header {
  text-align: center;
  position: relative;

  display: flex;
  flex-direction: column;
}
.main-container-header .header-fade-bk {
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  font-size: 3.5rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--textColor), transparent 95%);
  z-index: 1;
  line-height: 1;
}
.main-container-header h2 {
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.8);
}
.main-container-main-header p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
.contact-form-container {
  display: flex;
  padding: 2rem;
  gap: 2rem;
}
.contact-form {
  flex: 1.3;

  margin-bottom: 2rem;
}
.form-intro {
  margin-bottom: 4rem;
}
.form-intro h2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}
.form-intro p {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: -0.5px;
}
.form-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.form-item {
  flex: 1;
  padding-right: 1rem;
}
.form-field {
  position: relative;
  margin-bottom: 2rem;
}
.field-lable {
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.8;
}
.form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d8d8d8;
  background: transparent;
  padding: 20px 0 15px 0;
  font-size: 1rem;
  color: var(--default-color);
  transition: all 0.3s ease;
}
.form-input:focus {
  outline: none;
  border-bottom: 1px solid #343434;
  background: transparent;
}
.message-field {
  margin-bottom: 2rem;
  position: relative;
}
.message-field .field-label {
  position: absolute;
  left: 0;
  top: -25px;
}

.loading {
  display: none;
  background: #ffffff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accentColor);
  border-top-color: #ffffff;
  animation: form-loading 1s linear infinite;
}

@keyframes form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/* PHP Email Form Messages
------------------------------*/
.error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.send-button {
  background: transparent;
  border: 1px solid var(--accentColor);
  color: var(--accentColor);
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.send-button:hover {
  background: var(--accentColor);
  color: #ffffff;
}

.send-button .button-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.send-button:hover .button-arrow {
  transform: translateX(5px);
}

.contact-info {
  flex: 1;
  margin-bottom: 2rem;
  background-color: rgba(246, 116, 116, 0.1);
  padding: 1.5rem 2rem;
  color: var(--textColor);
}
.contact-info h2 {
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.contact-info h3 {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 2;
  color: var(--primaryColor);
  text-transform: uppercase;
}
.contact-header p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 3rem;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
.contact-info .info-item i {
  font-size: 1.3rem;
  color: var(--accentColor);
}

.connect-section {
  border-top: 1px solid color-mix(in srgb, #343434, transparent 90%);
  padding-top: 40px;
  margin-bottom: 2rem;
}
.connect-section .connect-label {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 2;
  text-transform: uppercase;
  color: var(--primaryColor);
}
.connect-section .social-links {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
}
.connect-section .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--textColor);
  text-decoration: none;
  transition: all 0.3s ease;
}

.connect-section .social-links .social-link i {
  font-size: 1.2rem;
}
.connect-section .social-links .social-link:hover {
  color: var(--accentColor);
  transform: translateY(-2px);
}

.footer {
  color: var(--textColor);
  background-color: var(--primaryColor);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* **********Footer ************* */
/*--------------------------------------------------------------
# FOOTER SECTION
--------------------------------------------------------------*/

.footer-items {
  flex: 1;
}
.footer-about {
  width: 40%;
}
.footer-about .sitename {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
}
.footer-about a {
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-about p {
  color: var(--white);
  line-height: 1.7;
}
.footer h4 {
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: var(--white);
}
.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.footer .footer-links ul li a {
  text-decoration: none;
}

.footer .footer-links ul li:first-child {
  padding-top: 10px;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--white), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}
.footer-contact {
  color: var(--white);
}
.footer-contact p {
  margin-bottom: 5px;
  font-weight: 600;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--textColor), transparent 90%);
  color: var(--white);
  justify-content: center;
}

.footer .copyright p {
  margin-bottom: 0;
  margin: auto 0;
}

.footer .social-section {
  border-top: 1px solid color-mix(in srgb, #343434, transparent 90%);
  padding-top: 40px;
  margin-bottom: 2rem;
}
.footer .social-section.label2 {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 2;
  text-transform: uppercase;
  color: var(--primaryColor);
}
.footer .social-links-group {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
}
.footer .social-link {
  width: 40px;
  height: 40px;
  color: var(--textColor);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .social-link i {
  font-size: 1.5rem;
}
.footer .social-link:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.main {
  margin: 0 auto;
}

/* ===== MEDIA QUERIES */

/* Large devices (desktops, less than 1200px) */
@media screen and (max-width: 1199.98px) {
  .container,
  .hero-container,
  .about-container,
  .feature-container,
  .services-container,
  .testimonials-container,
  .main-container,
  .footer-container {
    max-width: 1140px;
    padding: 2 2rem;
  }
}

/* @media screen and (max-width: 768px) { */
@media screen and (max-width: 996px), (max-width: 768px), (max-width: 576px) {
  .nav-item:first-child {
    display: block;
  }
  .user-action {
    display: none;
  }

  #close-sidebar-btn,
  #open-sidebar-btn {
    display: block;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    /* width: min(12rem, 100%); */
    width: min(75%, 300px);
    z-index: 10;
    border-left: 1px solid var(--hover-color);
    transition: right 300ms ease-out;
  }
  nav.show {
    right: 0;
  }
  nav.show ~ #overlay {
    display: block;
  }
  .nav-container {
    width: 100%;
    flex-direction: column;
  }
  nav a {
    width: 100%;
    padding-left: 1rem;
  }
  nav a.active-link {
    border-bottom: none;
  }
  nav :first-child {
    margin-right: unset;
  }
  .dropdown {
    width: 230px;
    position: relative;
  }

  .nav-item.has-dropdown {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 5px;
    flex-wrap: wrap;
  }

  .nav-item.has-dropdown::after {
    /* position: static; */
    margin-left: auto;
    padding-left: 10px;
    /* order: 1; */
  }

  .hero-container {
    flex-direction: column-reverse;
  }

  /* .right-content {
    flex-direction: column-reverse;
  } */
  .left-content {
    max-width: 100%;
  }
  .about-container {
    flex-direction: column-reverse;
  }
  .overlay-card {
    position: static;

    margin-bottom: 2rem;

    max-width: none;
  }
  .feature-nav-tabs {
    flex-direction: column;
  }
  .tab-content-box {
    flex-direction: column;
  }
  .feature-content-left {
    width: 100%;
  }
  .feature-content-right {
    width: 100%;
  }
  .services-hero {
    flex-direction: column;
  }
  .services-grid {
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact-form-container {
    flex-direction: column-reverse;
  }
  .form-group {
    flex-direction: column;
  }
  .footer-container {
    flex-direction: column;
  }
  .footer-about {
    width: 100%;
  }
}

/* ===== Form Second Page onwardrs===== */

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
/* Breadcrumb Styles */

.breadcrumb {
  background: var(--light);
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--gray);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .separator {
  color: var(--gray);
}

.breadcrumb .current {
  color: var(--primary);
  font-weight: 500;
}
/* Hero Section */
/*--------------------------------------------------------------
# Global Page HERO SECTION
--------------------------------------------------------------*/

.hero {
  padding: 80px 0;
  /* background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); */
  background: var(--light);
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-text h1 span {
  color: var(--primary);
}

.hero-text p {
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  max-width: 100%;
  border-radius: 12px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}
.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--light-gray);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--gray);
  font-size: 0.9rem;
}
/* Trust Signals */
/*--------------------------------------------------------------
# Global Page TRUST SIGNALS
--------------------------------------------------------------*/

.trust-signals {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.signals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.signal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.signal-icon {
  font-size: 1.5rem;
  color: var(--primaryColor);
}
.signal-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Optional: Different background colors for each icon */
.signals-grid .signal-item:nth-child(1) .signal-icon-circle {
  background: #4a6cf7; /* Primary blue */
}
.signals-grid .signal-item:nth-child(2) .signal-icon-circle {
  background: #6c5ffc; /* Purple */
}
.signals-grid .signal-item:nth-child(3) .signal-icon-circle {
  background: #05c3fb; /* Light blue */
}
.signals-grid .signal-item:nth-child(4) .signal-icon-circle {
  background: #f6416c; /* Pink/red */
}

.signal-text {
  font-weight: 600;
  color: var(--textColor);
  font-size: 1.1rem;
  margin-top: 0; /* Remove the previous margin-top */
  margin-bottom: 0.25rem; /* Add a small bottom margin to separate from label */
}
.signal-label {
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.3;
}

/*--------------------------------------------------------------
# Global Page PROBLEM & SOLUITONS
--------------------------------------------------------------*/

/* Problem & Solution Sections */

.problem-section,
.solution-section,
.why-choose-section {
  padding: 5rem 1rem;
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-title .highlight-text {
  color: var(--primaryColor);

  text-underline-offset: 8px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
}

/* Problem Cards */

.problem-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.problem-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  text-align: center;
}

.problem-card:hover {
  transform: translateY(-10px);
  border-color: var(--primaryColor);
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
}

.problem-icon {
  width: 60px;
  height: 60px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--primaryColor);
}

.problem-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}

.problem-card p {
  color: var(--text);
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Global Page SOLUIONTS SECTION
--------------------------------------------------------------*/

/* Solution Cards */

.solution-section {
  background: var(--white);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.solution-card {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Circular icon background */
.solution-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

/* Optional: Different background colors for each icon */
.solution-grid .solution-card:nth-child(1) .solution-icon-circle {
  background: #4a6cf7; /* Primary blue for WhatsApp */
}
.solution-grid .solution-card:nth-child(2) .solution-icon-circle {
  background: #6c5ffc; /* Purple */
}
.solution-grid .solution-card:nth-child(3) .solution-icon-circle {
  background: #05c3fb; /* Light blue */
}
.solution-grid .solution-card:nth-child(4) .solution-icon-circle {
  background: #f6416c; /* Pink/red */
}
.solution-grid .solution-card:nth-child(5) .solution-icon-circle {
  background: #0b9f52; /* Pink/red */
}
.solution-grid .solution-card:nth-child(6) .solution-icon-circle {
  background: #440b9f; /* Pink/red */
}

/* Icon color inside circle - ensure they're white */
.solution-icon-circle i {
  color: white;
}

.solution-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}

/* Service features list */
.service-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  text-align: left;
  width: 100%;
}

.service-features li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--textColor);
}

.service-features li i {
  color: var(--primaryColor);
  margin-right: 0.75rem;
}

/*--------------------------------------------------------------
# Global Page WHY CHOOSE SECTION
--------------------------------------------------------------*/

/* Why Choose Section */

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.why-point {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.point-icon {
  width: 50px;
  height: 50px;
  background: var(--primaryColor);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.point-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.point-content p {
  color: var(--text);
  line-height: 1.6;
}

/* Testimonial Box */
.testimonial-box {
  background: var(--primaryColor);
  color: white;
  padding: 3rem;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Process Section */
/*--------------------------------------------------------------
# Global Page PROCESS SECTION
--------------------------------------------------------------*/

.process-section {
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);*/
  background: var(--light);

  padding: 1rem 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  color: var(--primary-blue);
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accentColor);
  margin: 15px auto;
  border-radius: 2px;
}

.service-Process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.process-step {
  text-align: center;
  padding: 1.5rem;
}
.process-step h4 {
  font-size: 1.3rem;
}
.process-step p {
  margin-top: 0.75rem;
  font-size: 1rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primaryColor);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  font-size: 1.2rem;
}
/*--------------------------------------------------------------
# Global Page AUDIT SECTION
--------------------------------------------------------------*/
/* Audit Section */

.audit-section {
  padding: 2rem 1rem;
  background: var(--light);
}

.audit-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: var(--white);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.audit-left {
  background: var(--primaryColor);
  color: white;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audit-left h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.audit-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.audit-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audit-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.audit-benefits li i {
  color: #ffd700;
}

.audit-right {
  padding: 3rem;
}

.audit-form .form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.audit-form .form-input:focus {
  border-color: var(--primaryColor);
  outline: none;
}

.audit-form textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.audit-form .field-label {
  position: static;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
}

.audit-form .send-button {
  background: var(--primaryColor);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.audit-form .send-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* CTA Section */
/*--------------------------------------------------------------
# Global Page CTA SECTION
--------------------------------------------------------------*/

.cta-section {
  padding: 100px 0;
  /* background: linear-gradient(135deg, var(--gray) 0%, var(--gray) 100%); */
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);

  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.btn-action {
  display: flex;
  margin: 2rem;
  gap: 1rem;
  justify-content: center;
}

.btn-primary-custom {
  background-color: var(--dark);
  color: var(--white);
  text-decoration: none;
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: transform 0.3s ease;
}

.btn-primary-custom:hover {
  transform: translateY(-5px);
  background-color: var(--white);
  border-color: var(--accentColor);
  color: var(--text);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.btn-outline-light {
  border: 1px solid var(--accentColor);
  color: var(--text);
  text-decoration: none;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.btn-outline-light:hover {
  border: 2px solid var(--white);
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 10px;
  transform: translateY(-5px);
}

/* Results Dashboard Style */
/*--------------------------------------------------------------
# Global Page DIGITAL MARKETING RESULT SECTION
--------------------------------------------------------------*/

.dm-results-section {
  background: white;
  padding: 5rem 0;
}

.dm-results-dashboard {
  background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
  border-radius: 20px;
  padding: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.dm-dashboard-header {
  text-align: center;
  margin-bottom: 3rem;
}

.dm-dashboard-header h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.dm-dashboard-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.dm-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.dm-result-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dm-result-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--grey1);
  margin-bottom: 0.5rem;
}

.dm-result-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Trust Badges */
.dm-trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.dm-trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  min-width: 200px;
}

.dm-trust-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(246, 116, 116, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.dm-trust-text {
  font-weight: 600;
  color: var(--dark);
}

/* Mobile Responsiveness */
@media screen and (max-width: 996px) {
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .audit-wrapper {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .signals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .signals-grid {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .solution-card {
    padding: 1.5rem;
  }

  .audit-left,
  .audit-right {
    padding: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
  .service-Process-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Styles HERO */
@media (max-width: 992px) {
  .hero-content1 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .steps::before {
    display: none;
  }

  .step-content {
    margin-top: 15px;
  }
}
