:root {
  /* Frame */
  --home-bg: #f8fafc;
  --max-w: 1440px;

  /* Welcome */
  --welcome-pad-y: 140px;
  --welcome-pad-x: 113px;
  --color-text: #000000;
  --font-title: "Poppins", sans-serif;
  --fs-hero: 52px;
  --fw-hero: 600;
  --font-desc: "Inter", sans-serif;
  --fs-desc: 16px;
  --welcome-actions-gap: 50px;
  --btn-secondary-bg: #f59e0b;
  --btn-secondary-radius: 10px;
  --btn-secondary-pad: 12px;
  --font-btn: "Roboto", sans-serif;
  --fs-btn: 18px;
  --fw-btn: 700;
  --btn-outline-color: rgb(13, 110, 253);
  --btn-outline-weight: 3px;
  --btn-outline-radius: 25px;

  /* Nav */
  --nav-h: 71px;
  --nav-bg: #ffffff;
  --nav-link-active: #0d6efd;
  --nav-contact-bg: #EA580C;
  --logo-blue: #246bb1;

  /* Products block */
  --products-pad-y: 60px;
  --products-pad-x: 130px;
  --products-gap: 60px;
  --products-title-fs: 40px;
  --products-title-fw: 600;

  /* Carousel card */
  --card-radius: 6px;
  --card-stroke: rgba(0, 0, 0, 0.2);
  --card-text-bg: #eaecec;
  --card-text-bg-feature: #f5f5f5;
  --carousel-h: 450px;

  /* Stats */
  --stats-bg: rgb(53, 179, 255);
  --stats-gap: 120px;
  --stats-pad-x: 112.5px;
  --stats-value-fs: 70px;
  --stats-value-fw: 800;
  --stats-label-fs: 24px;

  /* Expertise block */
  --expertise-pad-y: 44px;
  --expertise-pad-x: 112.5px;
  --expertise-block-gap: 40px;
  --expertise-inner-gap: 10px;
  --expertise-dim: rgba(0, 0, 0, 0.9);
  --expertise-overlay: rgba(0, 0, 0, 0.5);
  --font-expertise: "Times New Roman", Times, serif;

  /* Why */
  --why-pad-x: 113px;
  --why-gap-section: 29px;
  --why-title-fs: 48px;
  --why-title-fw: 300;
  --why-cols-gap: 98px;
  --why-col-inner-gap: 20px;
  --why-h-fs: 24px;
  --why-h-fw: 700;
  --why-p-fs: 16px;
  --why-foot-fs: 24px;
  --why-foot-fw: 300;

  /* Footer */
  --footer-bg: rgb(15, 23, 42);
  --footer-heading: #ffffff;
  --footer-link: #cbd5e1;
  --footer-muted: #9ca3af;
  --footer-legal: #64748b;
  --font-footer-h: "Roboto", sans-serif;
  --font-legal: "Roboto Mono", monospace;

  /* Vertical brand */
  --brand-fs: 90px;
  --brand-fw: bolder;


  --page-bg: #f8fafc;
  --page-bg-rgb: 248, 250, 252;
  --nav-active: #0d6efd;
  --nav-contact: #ea580c;
  --hero-scrim: rgba(0, 0, 0, 0.55);
  --btn-amber: #f59e0b;
  --btn-radius: 8px;
  --section-pad-x: 112.5px;
  --section-gap: 74px;
  --card-add-bg: #e1dfec;
  --process-bg: #111111;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", system-ui, sans-serif;
  background: var(--home-bg);
  color: var(--color-text);
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 2000;
  padding: 8px 16px;
  background: #fff;
  color: #000;
  border-radius: 4px;
}

.skip-link:focus {
  left: 12px;
}


/* --------------------Navbar-------------------- */
.navbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  background: var(--nav-bg);
  min-height: var(--nav-h);
  box-shadow: 0 3px 6px -2px rgba(0,0,0,0.2);
}

.navbar {
  width: 100%;
  max-width: 1280px;
}

.navbar-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  background: var(--nav-bg);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.navbar-logo img {
  width: 77px;
  height: 46px;
}

.navbar-logo-text {
  margin: 0;
  font-family: "Rockwell Extra Bold", "Rockwell", serif;
  font-weight: 800;
  line-height: 1;
  font-size: clamp(32px, 2.5vw, 2rem);
  color: var(--logo-blue);
  letter-spacing: 0.02em;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.navbar-toggle-bar {
  display: block;
  height: 2px;
  width: 22px;
  background: #000;
  border-radius: 1px;
}

.navbar-panel {
  display: flex;
  align-items: center;
  gap: 69px;
}

.navbar-links {
  display: flex;
  gap: 30px;
}

.navbar-link {
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
  padding: 8px 6px;
  color: #000;
  text-decoration: none;
  margin: 0;
}

.navbar-link:hover {
  color: #0d6efd;
}

.navbar-link-active {
  color: var(--nav-link-active);
}

.dropdown {
  position: relative;
  list-style: none;
  padding: 8px 0;
}

.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 19px;
  cursor: pointer;
}

.mega-menu {
  position: absolute;
  top: 146%;
  left: 50%;
  width: 304px;
  padding: 22px;
  display: flex;
  gap: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0, 0, 0, 0.103);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(0px) scale(1);
  transition: opacity 0.1s ease,
              visibility 0.1s,
              transform 0.1s cubic-beizer(0.22, 1, 0.36, 1);
}

.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px) scale(1);
}

.column a {
  padding: 6px 0;
  color: #00000098;
  text-decoration: none;
  font-size: 14px;
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.column a:hover {
  color: #0d6efd;
}

.btn-wrapper {
  display: inline-block;
  background: #000;
  border-radius: 11px;
  width: 82px;
  height: 34px;
}

.navbar-link-contact {
  color: #fff;
  border-radius: 10px;
  background: var(--nav-contact-bg);
  border: 3px solid black;
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
  padding: 5px 9px;
  text-decoration: none;
  margin: 0;
  position: relative;
  top: 5px;
}

.navbar-link-contact:hover {
  color: #000000;
  filter: brightness(1.05);
}

.navbar-link-contact-active {
  color: #000000;
  filter: brightness(1.05);
}

.nav-accordion-item {
  display: none;
}

/* Small Screen */
@media (max-width: 768px) {

  .navbar-bar {
    position: relative;
    padding: 0 15px;
    /* background-color: pink; */
  }

  .navbar-logo-text {
    margin: 0;
    font-family: "Rockwell Extra Bold", "Rockwell", serif;
    font-weight: bold;
    line-height: 1;
    color: var(--logo-blue);
    letter-spacing: 0.02em;
  }

  .navbar-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
  }

  .navbar-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: none;
    /* background-color: pink; */
  }

  .navbar-panel.active {
    display: flex;
  }

  .navbar-links {
    flex-direction: column;
    gap: 4px;
    /* background-color: blue; */
  }

  .navbar-link {
    font-size: 14px; 
    padding: 4px 0;
    /* background-color: red; */
  }

  .dropdown {
    display: none;
  }

  .nav-accordion-item {
    width: 330px;
    display: block;
    margin-top: 8px;
    /* background-color: blue; */
  }

  .nav-accordion-content {
    max-height: 0;
    padding: 8px 4px 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-accordion-item.active .nav-accordion-content {
    max-height: 500px;
    padding: 8px 4px 0;
    /* background-color: red; */
  }

  .accordion-icon {
    font-size: 22px;
    font-weight: 400;
    transition: transform 0.3s ease;
  }

  .nav-accordion-item.active .accordion-icon {
    transform: rotate(45deg);
  }

  .nav-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    /* background-color: blue; */
  }

  .nav-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* background-color: red; */
  }

  .nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-list li {
    margin-bottom: 10px;
    /* background-color:red; */
  }

  .nav-list a {
    color: black;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
  }

  .nav-list a:hover {
    text-decoration: underline;
  }
}


/* --------------------Hero Section-------------------- */
.srv-hero {
  min-height: 650px;
  background-color: #000002;
}

.srv-hero-content {
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px var(--section-pad-x) 48px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  /* background-color:pink; */
  align-items: center;
}

.srv-hero-head {
  width: 924px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  /* background-color: red; */
}

.srv-hero-line1 {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.title-container {
  position: relative;
  width: fit-content;
  overflow: hidden;
  height: 64px;
  /* background-color: red; */
}

.srv-hero-line2 {
  color: black;
  -webkit-text-stroke: 2px #00aaff;
  font-size: clamp(36px, 6vw, 52px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

.curtain {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: black;
  z-index: 2;
  transition: transform 0.8s ease;
}

.left {
  left: 0;
  transform: translateX(-100%);

}

.right {
  right: 0;
  transform: translateX(100%);
}

.closed.left {
  transform: translateX(0);
}

.closed.right {
  transform: translateX(0);
}

.srv-hero-body {
  max-width: 1140px;
  display: flex;
  /* background-color:red; */
  align-items: center;
  gap: 100px;
}

.body-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.srv-hero-body p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

.srv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 40px;
  padding: 8px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
  text-decoration: none;
  background: var(--btn-amber);
  border-radius: var(--btn-radius);
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.srv-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Small Screen */
@media (max-width: 768px) {

  .srv-hero {
    min-height: 535px;
    max-width: 100%;
    background-color: #000002;
  }

  .srv-hero-content {
    max-width: 100%;
    padding: 24px 0 0;
    gap: 24px;
    /* background-color:pink; */
  }

  .srv-hero-head {
    width: 100%;
    gap: 16px;
    /* background-color: red; */
  }

  .srv-hero-line1 {
    margin: 0;
    font-size: clamp(18px, 4vw, 40px);
  }

  .title-container {
    height: 28px;
    /* background-color: red; */
  }

  .srv-hero-line2 {
    -webkit-text-stroke: 1px #00aaff;
    font-size: clamp(22px, 6vw, 52px);
    /* background-color: red; */
  }

  .srv-hero-body {
    position: relative;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 24px 16px;
    overflow: hidden;
    gap: 0;
    /* background-color: red; */
  }

  .srv-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .srv-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
  }

  .body-content {
    position: relative;
    z-index: 2;
    text-align: center;
    align-items: center;
    max-width: 100%;
  }

  .body-content p {
    font-size: 13px;
  }

  .srv-btn {
    align-self: center;
  }
}


/* --------------------Clients-------------------- */
.srv-clients {
  padding: 16px 0 24px;
}

.srv-clients-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.srv-clients-title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: #000;
}

.srv-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  /* background-color: red; */
}

.srv-marquee-track {
  display: flex;
  flex-direction: row;
  width: max-content;
  gap: 40px;
  align-items: center;
  animation: srv-marquee 40s linear infinite;
}

.srv-marquee:hover .srv-marquee-track,
.srv-marquee:focus-within .srv-marquee-track {
  animation-play-state: paused;
}

.srv-marquee-set {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.srv-marquee-set img {
  object-fit: contain;
  display: block;
}

@keyframes srv-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Small Screen */
@media (max-width: 768px) {

  .srv-clients {
    padding: 24px 0;
    /* background-color: red; */
  }

  .srv-clients-inner {
    max-width: 100%;
    padding: 0;
    gap: 20px;
  }

  .srv-clients-title {
    line-height: 28px;
    /* background-color:pink; */
  }

  .srv-marquee-track {
    gap: 32px;
  }
}


/* --------------------Service rows-------------------- */
.srv-row {
  padding: 48px var(--section-pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.srv-row-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--section-gap);
}

.srv-row-inner .srv-row-copy,
.srv-row-inner .srv-row-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 790px;
}

.srv-row-media-wide {
  flex: 0 1 452px;
  max-width: 452px;
}

.srv-row-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

.service-heading {
  display: flex;
  gap: 30px;
  /* background-color:red; */
}

.srv-row-title {
  margin: auto 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  color: #000;
  /* background-color:yellow; */
}

.srv-row-text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: #000;
  /* background-color:pink; */
}

/* Small Screen */
@media (max-width: 768px) {

  .srv-row {
    padding: 16px 12px;
    /* background-color: red; */
  }

  .srv-row-inner {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    border-radius: 16px;
  }

  .srv-row-media {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .srv-row-media img {
    height: 100%;
  }

  .srv-row-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
  }

  .srv-row-copy {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 24px 16px;
    color: #fff;
  }

  .service-heading {
    gap: 12px;
    align-items: center;
  }

  .service-heading img {
    width: 36px;
    height: 36px;
  }

  .srv-row-title,
  .srv-row-text {
    color: #fff;
  }

  .srv-row-title {
    font-size: 20px;
    /* background-color: pink; */
  }

  .srv-row-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .srv-btn {
    align-self: flex-end;
  }
}


/* --------------------Additional Services Marquee-------------------- */
.srv-additional {
  padding: 40px 0 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  /* background-color: red; */
}

.srv-additional-inner {
  padding: 0 var(--section-pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.srv-additional-title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 3.5vw, 41px);
  font-weight: 600;
  color: #000;
}

.srv-additional-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.srv-additional-track {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: max-content;
  animation: srv-add-scroll 55s linear infinite;
}

.srv-additional-track:hover {
  animation-play-state: paused;
}

.srv-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 320px;
  height: 320px;
  padding: 50px 10px 70px;
  background: var(--card-add-bg);
  border-radius: 50px;
}

.srv-card-h {
  margin: 0 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  color: #000;
}

.srv-card-p {
  margin: 0;
  padding: 0 6px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  color: #000;
}

@keyframes srv-add-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Small Screen */
@media (max-width: 768px) {

  .srv-additional {
    padding: 24px 0;
    max-width: 100%;
    /* background-color: red; */
  }

  .srv-additional-inner {
    padding: 0;
    gap: 24px;
  }

  .srv-additional-title {
    line-height: 1;
    /* background-color: pink; */
  }

  .srv-additional-track {
    gap: 20px;
  }

  .srv-additional-track:hover {
    animation-play-state: paused;
  }

  .srv-card {
    width: 280px;
    height: 280px;
  }

  .srv-card-h {
    font-size: 26px;
  }
 
  .srv-card-p {
    font-size: 14px;
  }
}

 
/* --------------------Process We Follow-------------------- */
.interested {
  display: flex;
  flex-direction: column;
  gap: 50px;
  background-color: #111111;
  padding: 50px 0;
}

.interested-header {
  width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: red; */
  margin: 0 auto;
}

.interested-header h3 {
  margin: 0;
  font-family: "poppins", Times, serif;
  font-size: clamp(36px, 5vw, 43px);
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.steps {
  display: flex;
  gap: 10px;
  margin: 0 auto;
}

.step-wrapper {
  position: relative;
  width: 255px;
  padding-top: 25px;
  padding-left: 25px;
  /* background-color: pink; */
}

.step-badge {
  position: absolute;
  top: 10px;
  left: 26px;
  z-index: 3;
  /* border: 1px solid black; */
}

.step-badge span {
  display: inline-block;
  background: #F2C525;
  color: #000000;
  font-weight: 400;
  padding: 4px 28px;
  border-radius: 0 20px 20px 0;
  font-size: 17px;
  font-family: "times new roman", times, serif;
  /* border: 1px solid black; */
}

.icon-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 10px solid #F2C525;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow:
    2px 2px 2px rgba(0, 0, 0, 0.25),
    -1px -1px 2px rgba(0, 0, 0, 0.25);
}

.card {
  background: #ffffff;
  border-radius: 10px;
  width: 230px;
  height: 197px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  padding: 25px 0;
  text-align: center;
  color: #000000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card h4 {
  font-family: "Roboto Condensed", times, serif;
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  /* background-color: red; */
}

/* Small Screen */
@media (max-width: 768px) {

  .interested {
    gap: 32px;
    padding: 24px 16px;
  }

  .interested-header {
    width: 100%;
  }

  .interested-header h3 {
    font-size: clamp(28px, 5vw, 43px);
    font-weight: 600;
  }

  .steps {
    flex-direction: column;
    gap: 10px;
  }

  .step-badge{
    top: 11px;
    /* border: 1px solid black; */
  }

  .step-badge span {
    font-size: 15px;
    /* border: 1px solid black; */
  }

  .card {
    border-radius: 20px;
    width: 200px;
    height: 180px;
    gap: 16px;
    padding: 26px 0;
  }

  .card img {
    width: 50px;
    height: 50px;
  }

  .card h4 {
    font-size: 20px;
  }
}


/* --------------------Why choose-------------------- */
.srv-why {
  margin: 0 auto;
  padding: 70px var(--section-pad-x) 70px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.srv-why-title {
  margin: 0 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(36px, 5vw, 50px);
  font-weight: 700;
  color: #000;
  text-align: center;
}

.srv-why-lead {
  margin: 0 auto ;
  max-width: 900px;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  text-align: center;
}

.srv-why-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.srv-why-card {
  width: 300px;
  height: 346px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 8px;
  background: #fff;
  border-radius: 10px;
  box-shadow:
    4px 4px 4px rgba(0, 0, 0, 0.25),
    -1px -1px 4px rgba(0, 0, 0, 0.25);
}

.srv-why-card-icon {
  display: block;
  margin: 0 auto;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.srv-why-card-h {
  margin: 0 ;
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #000;
}

.srv-why-card-p {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  color: #000;
}

/* Small Screen */
@media (max-width: 768px) {

  .srv-why {
    padding: 24px 16px;
    gap:24px;
    /* background-color: red; */
  }

  .srv-why-title {
    font-size: clamp(28px, 5vw, 50px);
    font-weight: 600;
  }

  .srv-why-lead {
    max-width: 100%;
    font-size: 14px;
    font-weight: 400;
  }

  .srv-why-grid {
    gap: 20px;
  }

  .srv-why-card {
    width: 300px;
    height: 306px;
    gap: 8px;
    padding: 16px 8px;
    border-radius: 20px;
  }

  .srv-why-card-icon {
    width: 50px;
    height: 50px;
  }

  .srv-why-card-h {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
  }

  .srv-why-card-p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
  }
}


/* --------------------Footer-------------------- */

.footer {
  background: var(--footer-bg);
  color: var(--footer-link);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-row {
  display: flex;
  flex-direction: row;
  padding: 50px 80px 0;
  gap: 200px ;
  justify-content: space-between;
}

.footer-col {
  display: flex;
  flex-direction: column;
  /* background-color:red; */
}

#footer-services {
  width: 280px ;
} 

.footer-col-contact {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 420px;
}

.footer-nav-links {
  display: flex;
  gap: 50px;
}

.footer-accordion-header {
  display: none;
}

.footer-h {
  margin: 0 0 12px;
  font-family: var(--font-footer-h);
  font-size: 16px;
  font-weight: 600;
  color: var(--footer-heading);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  margin-bottom: 10px;
  /* background-color:red; */
}

.footer-list a {
  color: var(--footer-link);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
}

.footer-list-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--footer-muted);
  line-height: 1.45;
  /* background-color:red; */
}

.footer-list-contact p {
  margin: 0;
}

.footer-list-contact a {
  color: var(--footer-muted);
}

.sm-logos {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 12px;
}

.footer-rule {
  width: 500px;
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  margin: 0;
}

.footer-legal {
  margin-bottom: 5px;
  font-family: var(--font-legal);
  font-size: 12px;
  font-weight: 400;
  color: var(--footer-legal);
  text-align: center;
}

.footer-brand {
  display: flex;
  gap: 7px;
  text-decoration: none;
}

.footer-brand img {
  width: 67px;
  height: 40px;  
}

.footer-brand-mark {
  margin: 0;
  font-family: "Rockwell Extra Bold", "Rockwell", serif;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

/* Small Screen */
@media (max-width: 768px) {

  .footer {
    padding: 8px 8px 0;
  }

  .footer-inner {
    padding: 0;
    gap: 8px;
    /* background-color: pink; */
  }

  .footer-row {
    flex-direction: column;
    gap: 30px;
    padding: 0;
    /* background-color: red; */
  }

  .footer-logo {
    display: none;
  }

  .footer-nav-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-col {
    width: 100%;
  }

  .footer-accordion-item {
    width: 340px;
    /* background-color: blue; */
  }

  .footer-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    /* background-color: blue; */
  }

  .accordion-icon {
    font-size: 22px;
    font-weight: 400;
    transition: transform 0.3s ease;
  }

  .footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 4px 12px 0;
    transition: max-height 0.35s ease;
  }

  .footer-accordion-item.active .footer-accordion-content {
    max-height: 500px;
    padding: 4px 12px 0;
    /* background-color: red; */
  }

  .footer-accordion-item.active .accordion-icon {
    transform: rotate(45deg);
  }

  .footer-col .footer-h {
    display: none;
  }

  .footer-rule {
    width: 60%;
  }

  .footer-legal {
    text-align: center;
    margin-top: 0;
    font-size: 11px;
  }
}


@media (prefers-reduced-motion: reduce) {
  
  html {
    scroll-behavior: auto;
  }

  .carousel-track {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}