/* =========================================
   STATIC SITE BASE CSS
   Cleaned from the original construction template
   ========================================= */

@import url("http://fonts.googleapis.com/css?family=Lato:400,400i|Montserrat:300,400,500,600,700&amp;subset=latin");

/* @import "./bootstrap.min.css"; */
@import "./animsition.css";
@import "./animate.css";
@import "./fontello.css";
@import "./font-awesome.min.css";
/* @import "./cubeportfolio.min.css";
@import "./magnific-popup.css";
@import "./flexslider.css";
@import "./vegas.css";
@import "./owl.carousel.css";
@import "/includes/rev-slider/css/layers.css";
@import "/includes/rev-slider/css/settings.css";
@import "/includes/rev-slider/css/navigation.css";
@import "./shortcodes.css"; */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background: #fff;
  color: #333;
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

iframe {
  border: 0;
  max-width: 100%;
}

/* :focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
} */

/* ---------- Typography ---------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  color: #252525;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.25;
  text-rendering: optimizeLegibility;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1rem;
}

strong,
b {
  font-weight: 700;
}

small {
  font-size: 0.875rem;
}

code,
pre,
kbd,
samp {
  font-family: Consolas, Monaco, "Courier New", monospace;
}

code {
  padding: 0.15em 0.35em;
  border-radius: 3px;
  background: #f5f5f5;
}

pre {
  max-width: 100%;
  margin: 0 0 1.5rem;
  padding: 1rem;
  overflow-x: auto;
  background: #f5f5f5;
}

/* ---------- Forms ---------- */
input,
select,
textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #333;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #999;
}

/* input:focus,
select:focus,
textarea:focus {
  border-color: #999;
  outline: none;
} */

/* ---------- Buttons ---------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  background: #252525;
  color: #fff;
  line-height: 1.2;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background: #fff;
}

/* ---------- Common Media ---------- */
hr {
  height: 1px;
  margin: 2rem 0;
  border: 0;
  background: #eaeaea;
}

figure {
  margin: 0;
}

/* ---------- Accessibility ---------- */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

/* ---------- Utility ---------- */
.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 1.5rem, 1200px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================
   NEUMORPHIC HEADER
========================================= */

.site-header {
  position: relative;
  top: 10px;
  left: 50%;
  z-index: 1000;
  width: min(94%, 1400px);
  transform: translateX(-50%);
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  border-radius: 50px;
  /* Neumorphism */
  box-shadow:
    12px 12px 28px rgba(163, 177, 198, 0.45),
    -12px -12px 80px rgba(255, 255, 255, 1);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* ---------- Inner ---------- */

.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 8px 28px;
}

/* ---------- Logo ---------- */

.site-logo {
  flex: 0 0 auto;
}

.site-logo__link {
  display: inline-flex;
  align-items: center;
}

.site-logo__image {
  display: block;
  width: 230px;
  height: auto;
}

/* =========================================
   NAVIGATION
========================================= */

.main-navigation {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;

  margin: 0;
  padding: 0;
}

.nav-menu__item {
  position: relative;
  margin: 0;
  padding: 0;
}

.nav-menu__link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  color: #012e73;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* ---------- Active / Hover ---------- */

/* .nav-menu__link:hover,
.nav-menu__item.is-active .nav-menu__link {
  color: #012e73;
  background: #eef2f7;
  box-shadow:
    inset 4px 4px 8px rgba(163, 177, 198, 0.35),
    inset -4px -4px 8px rgba(255, 255, 255, 0.9);
} */

/* .nav-menu__link:active {
  transform: scale(0.97);
  box-shadow:
    inset 5px 5px 10px rgba(163, 177, 198, 0.4),
    inset -5px -5px 10px rgba(255, 255, 255, 0.9);
} */

/* =========================================
   MOBILE BUTTON
========================================= */

.menu-toggle {
  display: none;

  position: relative;

  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  padding: 0;

  border-radius: 14px;

  background: #eef2f7;

  box-shadow:
    5px 5px 10px rgba(163, 177, 198, 0.4),
    -5px -5px 10px rgba(255, 255, 255, 0.9);

  transition: box-shadow 0.25s ease;
}

.menu-toggle:active {
  box-shadow:
    inset 4px 4px 8px rgba(163, 177, 198, 0.4),
    inset -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.menu-toggle span {
  position: absolute;
  left: 9px;

  width: 24px;
  height: 2px;

  border-radius: 10px;

  background: #012e73;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 12px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

/* ---------- Hamburger Active ---------- */

.menu-toggle.is-active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* =========================================
   STICKY HEADER
========================================= */

.site-header.is-sticky {
  position: fixed;

  background: #eef2f7;

  box-shadow:
    10px 10px 25px rgba(163, 177, 198, 0.45),
    -10px -10px 25px rgba(255, 255, 255, 0.95);

  backdrop-filter: none;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {
  .site-header {
    top: 15px;
    width: 94%;

    border-radius: 22px;
  }

  .site-header__inner {
    min-height: 70px;
    padding: 8px 18px;
  }

  .site-logo__image {
    width: 180px;
  }

  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: absolute;

    top: calc(100% + 14px);
    left: 0;

    width: 100%;

    max-height: 0;

    overflow: hidden;

    border-radius: 22px;

    background: #eef2f7;

    box-shadow:
      10px 10px 25px rgba(163, 177, 198, 0.45),
      -10px -10px 25px rgba(255, 255, 255, 0.95);

    transition:
      max-height 0.35s ease,
      padding 0.35s ease;
  }

  .main-navigation.is-open {
    max-height: 500px;
    padding: 10px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-menu__link {
    display: flex;
    width: 100%;

    min-height: 50px;

    padding: 0 18px;

    border-radius: 14px;
  }

  .nav-menu__link:hover,
  .nav-menu__item.is-active .nav-menu__link {
    box-shadow:
      inset 5px 5px 10px rgba(163, 177, 198, 0.35),
      inset -5px -5px 10px rgba(255, 255, 255, 0.9);
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {
  .site-header {
    top: 12px;
    width: 94%;

    border-radius: 20px;
  }

  .site-header__inner {
    min-height: 64px;
    padding: 7px 14px;
  }

  .site-logo__image {
    width: 145px;
  }
}

/* =========================================
   HERO SLIDER
========================================= */

.hero-slider {
  position: relative;
  width: 100%;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background: #fff;
  overflow: hidden;
}

/* =========================================
   NEUMORPHIC SLIDER
========================================= */

.hero-slider__card {
  position: relative;
  width: 100%;
  max-width: 1350px;
  height: 100%;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  box-shadow:
    22px 22px 45px rgba(137, 157, 184, 0.45),
    -22px -22px 45px rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

/* =========================================
   SLIDE
========================================= */

.hero-slide {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;

  z-index: 2;
}

/* =========================================
   IMAGE
========================================= */

.hero-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero-slide.is-active .hero-slide__image {
  transform: scale(1);
}

/* =========================================
   IMAGE OVERLAY
========================================= */

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(0, 0, 0, 0.58),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.08)
  );

  z-index: 1;
}

/* =========================================
   CONTENT
========================================= */

.hero-slide__content {
  position: absolute;

  z-index: 3;

  top: 50%;
  left: 8%;

  width: 520px;

  transform: translateY(-50%) translateX(-40px);

  opacity: 0;

  transition:
    opacity 0.8s ease 0.25s,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.hero-slide.is-active .hero-slide__content {
  opacity: 1;

  transform: translateY(-50%) translateX(0);
}

/* =========================================
   SUBTITLE
========================================= */

.hero-slide__subtitle {
  display: inline-block;

  margin-bottom: 15px;

  color: #fff;

  font-family: "Montserrat", Arial, sans-serif;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}

/* =========================================
   TITLE
========================================= */

.hero-slide__title {
  margin: 0 0 18px;

  color: #fff;

  font-family: "Montserrat", Arial, sans-serif;

  font-size: clamp(42px, 5vw, 68px);

  font-weight: 700;

  line-height: 1.05;
}

/* =========================================
   TEXT
========================================= */

.hero-slide__text {
  max-width: 480px;

  margin: 0 0 30px;

  color: rgba(255, 255, 255, 0.9);

  font-family: "Montserrat", Arial, sans-serif;

  font-size: 15px;

  line-height: 1.8;
}

/* =========================================
   BUTTON
========================================= */

.hero-slide__button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  min-width: 165px;
  min-height: 52px;

  padding: 12px 25px;

  border-radius: 15px;

  color: #012e73;

  background: linear-gradient(145deg, #e5eaf0, #c7dcf8);

  box-shadow:
    8px 8px 18px rgba(0, 0, 0, 0.28),
    -8px -8px 18px rgba(255, 255, 255, 0.8);

  font-family: "Montserrat", Arial, sans-serif;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-slide__button:hover {
  color: #012e73;

  transform: translateY(-3px);

  box-shadow:
    10px 10px 22px rgba(0, 0, 0, 0.3),
    -10px -10px 22px rgba(255, 255, 255, 0.85);
}

/* =========================================
   ARROWS
========================================= */

.hero-slider__arrow {
  position: absolute;

  top: 50%;

  z-index: 10;

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  color: #012e73;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  box-shadow:
    8px 8px 18px rgba(137, 157, 184, 0.45),
    -8px -8px 18px rgba(255, 255, 255, 0.95);

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-slider__arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.hero-slider__arrow:active {
  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.4),
    inset -5px -5px 10px rgba(255, 255, 255, 0.8);
}

.hero-slider__arrow--prev {
  left: 20px;
}

.hero-slider__arrow--next {
  right: 20px;
}

/* =========================================
   DOTS
========================================= */

.hero-slider__dots {
  position: absolute;

  left: 50%;
  bottom: 25px;

  z-index: 10;

  display: flex;

  gap: 10px;

  transform: translateX(-50%);
}

.hero-slider__dot {
  width: 10px;
  height: 10px;

  padding: 0;

  border: none;
  border-radius: 50%;

  background: rgba(181, 214, 255, 0.863);

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.hero-slider__dot.is-active {
  width: 30px;
  border-radius: 10px;
  background: #8bcfff;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .hero-slider {
    height: 650px;

    padding: 35px;
  }

  .hero-slider__card {
    border-radius: 32px;
  }

  .hero-slide__content {
    left: 8%;

    width: 470px;
  }

  .hero-slide__title {
    font-size: 48px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {
  .hero-slider {
    height: 620px;

    padding: 20px;
  }

  .hero-slider__card {
    border-radius: 25px;
  }

  .hero-slide__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.65)
    );
  }

  .hero-slide__content {
    left: 25px;
    right: 25px;
    bottom: 65px;
    top: auto;

    width: auto;

    transform: translateY(30px);
  }

  .hero-slide.is-active .hero-slide__content {
    transform: translateY(0);
  }

  .hero-slide__subtitle {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .hero-slide__title {
    font-size: 32px;
  }

  .hero-slide__text {
    font-size: 13px;
  }

  .hero-slide__button {
    min-height: 45px;

    min-width: 140px;

    font-size: 10px;
  }

  .hero-slider__arrow {
    width: 40px;
    height: 40px;
  }

  .hero-slider__arrow--prev {
    left: 8px;
  }

  .hero-slider__arrow--next {
    right: 8px;
  }
}

/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
  padding: 60px 0;
  background: #fff;
}

/* ---------- Layout ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

/* =========================================
   LEFT CONTENT
========================================= */

.about-content {
  padding: 45px;
  border-radius: 30px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  box-shadow:
    14px 14px 30px rgba(137, 157, 184, 0.35),
    -14px -14px 30px rgba(255, 255, 255, 0.95);
}

/* ---------- Subtitle ---------- */

.about-sub-title {
  display: inline-block;
  margin-bottom: 12px;
  color: #012e73;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* ---------- Title ---------- */

.about-title {
  max-width: 600px;
  margin: 0 0 22px;
  color: #012e73;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
}

.about-title span {
  display: block;
  color: #1d5ca8;
}

/* ---------- Description ---------- */

.about-description {
  max-width: 620px;
  margin: 0 0 28px;
  color: #53657b;
  font-family: "Lato", Arial, sans-serif;
  font-size: 14px;
  line-height: 24px;
}

/* =========================================
   ABOUT LIST
========================================= */

.about-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #344b65;
  font-size: 14px;
  line-height: 24px;
}

/* ---------- List Icon ---------- */

.about-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  color: #012e73;
  font-size: 14px;
  font-weight: 700;
  box-shadow:
    4px 4px 8px rgba(137, 157, 184, 0.4),
    -4px -4px 8px rgba(255, 255, 255, 0.9);
}

/* =========================================
   CONTACT BUTTON
========================================= */

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 50px;
  padding: 0 25px;
  border-radius: 50px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  color: #012e73;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    7px 7px 14px rgba(137, 157, 184, 0.4),
    -7px -7px 14px rgba(255, 255, 255, 0.9);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-button:hover {
  color: #012e73;

  transform: translateY(-2px);

  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.35),
    inset -5px -5px 10px rgba(255, 255, 255, 0.9);
}

.about-button:active {
  transform: translateY(0);

  box-shadow:
    inset 6px 6px 12px rgba(137, 157, 184, 0.4),
    inset -6px -6px 12px rgba(255, 255, 255, 0.9);
}

/* =========================================
   RIGHT IMAGE
========================================= */

.about-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-card {
  width: 100%;
  padding: 16px;

  border-radius: 35px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  box-shadow:
    18px 18px 35px rgba(137, 157, 184, 0.4),
    -18px -18px 35px rgba(255, 255, 255, 0.95);
}

.about-image {
  display: block;

  width: 100%;
  height: 520px;

  object-fit: cover;

  border-radius: 25px;

  box-shadow:
    inset 5px 5px 12px rgba(137, 157, 184, 0.25),
    inset -5px -5px 12px rgba(255, 255, 255, 0.8);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .about-section {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-content {
    padding: 40px;
  }

  .about-image-card {
    max-width: 700px;
    width: 100%;
  }

  .about-image {
    height: 450px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .about-section {
    padding: 60px 0;
  }

  .about-grid {
    gap: 35px;
  }

  .about-content {
    padding: 30px 25px;
    border-radius: 24px;
  }

  .about-sub-title {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-image-card {
    padding: 10px;
    border-radius: 25px;
  }

  .about-image {
    height: 350px;
    border-radius: 18px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .about-section {
    padding: 50px 0;
  }

  .about-content {
    padding: 25px 20px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-list li {
    align-items: flex-start;
    font-size: 14px;
  }

  .about-image {
    height: 300px;
  }
}

/* =========================================
   SERVICES SECTION
========================================= */

.services-section {
  padding: 60px 0;
  background: #fff;
}

/* =========================================
   SERVICES HEADING
========================================= */

.services-contents {
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
}

/* ---------- Subtitle ---------- */

.services-sub-title {
  display: inline-block;

  margin-bottom: 10px;

  color: #012e73;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;

  text-transform: uppercase;
}

/* ---------- Main Title ---------- */

.services-title {
  margin: 0;

  color: #012e73;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;

  text-align: center;
}

/* ---------- Decorative Line ---------- */

.services-title::after {
  content: "";

  display: block;

  width: 55px;
  height: 4px;

  margin: 16px auto 0;

  border-radius: 10px;

  background: #012e73;

  box-shadow:
    3px 3px 6px rgba(137, 157, 184, 0.4),
    -3px -3px 6px rgba(255, 255, 255, 0.8);
}

/* ---------- Mobile ---------- */

@media (max-width: 767px) {
  .services-contents {
    margin-bottom: 35px;
  }

  .services-sub-title {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .services-title {
    font-size: 32px;
  }
}

/* ---------- Grid ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* =========================================
   SERVICE CARD
========================================= */

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  box-shadow:
    14px 14px 28px rgba(137, 157, 184, 0.45),
    -14px -14px 28px rgba(255, 255, 255, 0.9);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* ---------- Card Hover ---------- */

.service-card:hover {
  transform: translateY(-8px);

  box-shadow:
    18px 18px 35px rgba(137, 157, 184, 0.5),
    -18px -18px 35px rgba(255, 255, 255, 0.95);
}

/* =========================================
   IMAGE
========================================= */

.service-card__image {
  position: relative;
  margin: 14px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.25),
    inset -5px -5px 10px rgba(255, 255, 255, 0.75);
}

.service-card__image img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

/* =========================================
   CONTENT
========================================= */

.service-card__content {
  padding: 25px 28px 30px;
  text-align: center;
}

/* ---------- Title ---------- */

.service-card__title {
  margin: 0 0 14px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

.service-card__title a {
  color: #012e73;
  text-decoration: none;
  transition: color 0.25s ease;
}

.service-card__title a:hover {
  color: #1d5ca8;
}

/* ---------- Description ---------- */

.service-card__description {
  margin: 0 auto 24px;

  max-width: 340px;

  color: #53657b;

  font-family: "Lato", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================
   BUTTON
========================================= */

.service-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 50px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  color: #012e73;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    6px 6px 12px rgba(137, 157, 184, 0.4),
    -6px -6px 12px rgba(255, 255, 255, 0.85);

  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

/* ---------- Button Hover ---------- */

.service-card__button:hover {
  color: #012e73;

  transform: translateY(-2px);

  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.35),
    inset -5px -5px 10px rgba(255, 255, 255, 0.85);
}

/* ---------- Button Active ---------- */

.service-card__button:active {
  transform: translateY(0);

  box-shadow:
    inset 6px 6px 12px rgba(137, 157, 184, 0.4),
    inset -6px -6px 12px rgba(255, 255, 255, 0.9);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .services-section {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }

  .service-card__image img {
    height: 230px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .services-section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .service-card__image img {
    height: 220px;
  }

  .service-card__content {
    padding: 22px 22px 28px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .services-section {
    padding: 50px 0;
  }

  .service-card {
    border-radius: 22px;
  }

  .service-card__image {
    margin: 10px;
    border-radius: 17px;
  }

  .service-card__image img {
    height: 200px;
    border-radius: 17px;
  }

  .service-card__content {
    padding: 20px 18px 25px;
  }

  .service-card__title {
    font-size: 19px;
  }

  .service-card__description {
    font-size: 14px;
  }
}

/* =========================================
   WHY CHOOSE US
========================================= */

.why-choose-us-section {
  padding: 60px 0;
  background: #fff;
}

/* =========================================
   MAIN LAYOUT
========================================= */

.why-choose-us-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

/* =========================================
   LEFT IMAGE AREA
========================================= */

.why-choose-us-images {
  position: relative;
  min-height: 350px;
}

/* ---------- Image Base ---------- */

.why-image {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  padding: 14px;
  box-shadow:
    16px 16px 32px rgba(137, 157, 184, 0.4),
    -16px -16px 32px rgba(255, 255, 255, 0.95);
}

.why-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* ---------- Back Image ---------- */

.why-image--back {
  top: 20px;
  left: 20px;
  width: 72%;
  height: 420px;
  transform: rotate(-7deg);
}

/* ---------- Front Image ---------- */

.why-image--front {
  right: 10px;
  bottom: 20px;
  width: 65%;
  height: 390px;
  transform: rotate(7deg);
  z-index: 2;
}

/* =========================================
   RIGHT CONTENT
========================================= */

.why-choose-us-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* =========================================
   CONTENT BOX
========================================= */

.why-content-box {
  padding: 40px;
  border-radius: 30px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  box-shadow:
    14px 14px 30px rgba(137, 157, 184, 0.35),
    -14px -14px 30px rgba(255, 255, 255, 0.95);
}

/* ---------- Subtitle ---------- */

.why-sub-title {
  display: inline-block;
  margin-bottom: 12px;
  color: #012e73;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 20px;

  text-transform: uppercase;
}

/* ---------- Title ---------- */

.why-title {
  margin: 0 0 20px;
  color: #012e73;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
}

.why-title span {
  display: block;
  color: #1d5ca8;
}

/* ---------- Paragraph ---------- */

.why-description {
  max-width: 650px;
  margin: 0;
  color: #53657b;
  font-family: "Lato", Arial, sans-serif;
  font-size: 14px;
  line-height: 24px;
}

/* =========================================
   COUNTERS
========================================= */

.why-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---------- Counter Card ---------- */

.why-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  text-align: center;
  box-shadow:
    10px 10px 22px rgba(137, 157, 184, 0.4),
    -10px -10px 22px rgba(255, 255, 255, 0.9);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* ---------- Counter Hover ---------- */

.why-counter:hover {
  transform: translateY(-6px);
  box-shadow:
    14px 14px 28px rgba(137, 157, 184, 0.45),
    -14px -14px 28px rgba(255, 255, 255, 0.95);
}

/* ---------- Number ---------- */

.why-counter__number {
  display: block;
  margin-bottom: 8px;
  color: #012e73;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

/* ---------- Counter Title ---------- */

.why-counter__title {
  color: #53657b;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.5px;
  line-height: 1.4;

  text-transform: uppercase;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .why-choose-us-section {
    padding: 80px 0;
  }

  .why-choose-us-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .why-choose-us-images {
    width: 100%;
    max-width: 650px;

    margin: 0 auto;
  }

  .why-choose-us-content {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .why-choose-us-section {
    padding: 60px 0;
  }

  .why-choose-us-grid {
    gap: 50px;
  }

  .why-choose-us-images {
    min-height: 450px;
  }

  .why-image {
    padding: 10px;
    border-radius: 22px;
  }

  .why-image img {
    border-radius: 15px;
  }

  .why-image--back {
    width: 72%;
    height: 320px;
  }

  .why-image--front {
    width: 65%;
    height: 290px;
  }

  .why-content-box {
    padding: 30px 25px;
    border-radius: 24px;
  }

  .why-title {
    font-size: 32px;
  }

  .why-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .why-counters {
    gap: 14px;
  }

  .why-counter {
    min-height: 125px;
    padding: 15px 10px;
    border-radius: 18px;
  }

  .why-counter__number {
    font-size: 27px;
  }

  .why-counter__title {
    font-size: 10px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .why-choose-us-images {
    min-height: 390px;
  }

  .why-image--back {
    top: 15px;
    left: 5px;

    width: 75%;
    height: 280px;
  }

  .why-image--front {
    right: 0;
    bottom: 10px;

    width: 68%;
    height: 250px;
  }

  .why-content-box {
    padding: 25px 20px;
  }

  .why-counters {
    gap: 10px;
  }

  .why-counter {
    min-height: 110px;
    padding: 12px 6px;
  }

  .why-counter__number {
    font-size: 23px;
  }

  .why-counter__title {
    font-size: 9px;
  }
}

/* =========================================
   WHAT WE OFFER
========================================= */

.offer-section {
  padding: 60px 0;
  background: #fff;
}

/* =========================================
   SECTION HEADING
========================================= */

.offer-heading {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.offer-sub-title {
  display: inline-block;

  margin-bottom: 10px;

  color: #012e73;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;

  letter-spacing: 2px;
  line-height: 1.4;

  text-transform: uppercase;
}

.offer-title {
  margin: 0;

  color: #012e73;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 700;

  line-height: 1.15;

  text-transform: uppercase;
}

/* ---------- Heading Line ---------- */

.offer-heading-line {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  margin: 15px 0 20px;
}

.offer-heading-line::before,
.offer-heading-line::after {
  content: "";

  width: 35px;
  height: 2px;

  border-radius: 10px;

  background: #012e73;
}

.offer-heading-line span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #012e73;

  box-shadow:
    2px 2px 5px rgba(137, 157, 184, 0.4),
    -2px -2px 5px rgba(255, 255, 255, 0.8);
}

.offer-description {
  max-width: 700px;

  margin: 0 auto;

  color: #53657b;

  font-family: "Lato", Arial, sans-serif;
  font-size: 15px;

  line-height: 1.8;
}

/* =========================================
   TOP SERVICES
========================================= */

.offer-services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 55px;
}

/* ---------- Service Card ---------- */

.offer-service {
  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  min-height: 170px;

  padding: 20px 10px;

  border-radius: 25px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  color: #012e73;

  text-align: center;

  text-decoration: none;

  box-shadow:
    10px 10px 22px rgba(137, 157, 184, 0.4),
    -10px -10px 22px rgba(255, 255, 255, 0.95);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.offer-service:hover {
  color: #012e73;

  transform: translateY(-7px);

  box-shadow:
    15px 15px 28px rgba(137, 157, 184, 0.45),
    -15px -15px 28px rgba(255, 255, 255, 0.98);
}

/* ---------- Service Icon ---------- */

.offer-service__icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 75px;
  height: 75px;

  margin-bottom: 18px;

  border-radius: 50%;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  color: #012e73;

  font-size: 30px;

  box-shadow:
    6px 6px 12px rgba(137, 157, 184, 0.4),
    -6px -6px 12px rgba(255, 255, 255, 0.9);
}

.offer-service__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.5px;

  text-transform: uppercase;
}

/* =========================================
   DETAILED SERVICES
========================================= */

.offer-details {
  display: grid;

  grid-template-columns:
    1fr
    1fr
    1fr;

  gap: 30px;
}

/* ---------- Detail Columns ---------- */

.offer-details__column {
  display: flex;

  flex-direction: column;

  gap: 30px;
}

/* =========================================
   DETAIL CARD
========================================= */

.offer-detail-card {
  display: flex;

  align-items: center;

  gap: 22px;

  min-height: 210px;

  padding: 28px;

  border-radius: 28px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  box-shadow:
    12px 12px 25px rgba(137, 157, 184, 0.4),
    -12px -12px 25px rgba(255, 255, 255, 0.95);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.offer-detail-card:hover {
  transform: translateY(-5px);

  box-shadow:
    16px 16px 30px rgba(137, 157, 184, 0.45),
    -16px -16px 30px rgba(255, 255, 255, 0.98);
}

/* =========================================
   DETAIL ICON
========================================= */

.offer-detail-card__icon {
  display: flex;

  align-items: center;
  justify-content: center;

  flex: 0 0 80px;

  width: 80px;
  height: 80px;

  border-radius: 50%;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  color: #012e73;

  font-size: 30px;

  box-shadow:
    7px 7px 14px rgba(137, 157, 184, 0.4),
    -7px -7px 14px rgba(255, 255, 255, 0.9);
}

/* =========================================
   DETAIL CONTENT
========================================= */

.offer-detail-card__content {
  flex: 1;
}

.offer-detail-card__content h3 {
  margin: 0 0 12px;

  color: #012e73;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;

  line-height: 1.3;
}

.offer-detail-card__content h3 a {
  color: inherit;

  text-decoration: none;
}

.offer-detail-card__content h3::after {
  content: "";

  display: block;

  width: 30px;
  height: 2px;

  margin-top: 8px;

  border-radius: 10px;

  background: #012e73;
}

.offer-detail-card__content p {
  margin: 0;

  color: #53657b;

  font-family: "Lato", Arial, sans-serif;
  font-size: 13px;

  line-height: 1.7;
}

/* =========================================
   WORKER IMAGE
========================================= */

.offer-worker {
  height: 100%;

  min-height: 450px;

  padding: 15px;

  border-radius: 30px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  box-shadow:
    15px 15px 30px rgba(137, 157, 184, 0.4),
    -15px -15px 30px rgba(255, 255, 255, 0.95);
}

.offer-worker__inner {
  position: relative;
  width: 100%;
  height: 100%;

  min-height: 420px;

  overflow: hidden;

  border-radius: 22px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4),
    rgba(199, 220, 248, 0.3)
  );

  box-shadow:
    inset 5px 5px 12px rgba(137, 157, 184, 0.2),
    inset -5px -5px 12px rgba(255, 255, 255, 0.8);
}

.offer-worker__inner img {
  position: absolute;

  bottom: 0;
  left: 50%;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  transform: translateX(-50%);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
  .offer-services {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-details {
    grid-template-columns: 1fr 1fr;
  }

  .offer-worker {
    grid-column: 1 / -1;
    min-height: 500px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }

  .offer-worker__inner {
    min-height: 470px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .offer-section {
    padding: 70px 0;
  }

  .offer-heading {
    margin-bottom: 40px;
  }

  .offer-title {
    font-size: 32px;
  }

  .offer-description {
    font-size: 14px;
  }

  /* Top Services */

  .offer-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
  }

  .offer-service {
    min-height: 145px;

    border-radius: 20px;
  }

  .offer-service__icon {
    width: 62px;
    height: 62px;

    margin-bottom: 14px;

    font-size: 24px;
  }

  .offer-service__title {
    font-size: 10px;
  }

  /* Detailed Services */

  .offer-details {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .offer-details__column {
    gap: 20px;
  }

  .offer-detail-card {
    min-height: 180px;

    padding: 22px;

    border-radius: 22px;
  }

  .offer-detail-card__icon {
    flex-basis: 65px;

    width: 65px;
    height: 65px;

    font-size: 24px;
  }

  /* Worker */

  .offer-worker {
    min-height: 400px;

    padding: 10px;

    border-radius: 24px;
  }

  .offer-worker__inner {
    min-height: 380px;

    border-radius: 17px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .offer-section {
    padding: 55px 0;
  }

  .offer-services {
    grid-template-columns: 1fr 1fr;
  }

  .offer-service {
    min-height: 135px;

    padding: 15px 8px;
  }

  .offer-service__icon {
    width: 55px;
    height: 55px;

    font-size: 21px;
  }

  .offer-detail-card {
    align-items: flex-start;

    gap: 15px;

    padding: 20px;
  }

  .offer-detail-card__icon {
    flex-basis: 58px;

    width: 58px;
    height: 58px;

    font-size: 21px;
  }

  .offer-detail-card__content h3 {
    font-size: 16px;
  }

  .offer-detail-card__content p {
    font-size: 12px;
  }

  .offer-worker {
    min-height: 350px;
  }

  .offer-worker__inner {
    min-height: 330px;
  }
}

/* =========================================
   TESTIMONIALS
========================================= */

.testimonials-section {
  padding: 60px 0;
  background: #fff;
}

/* =========================================
   SECTION HEADING
========================================= */

.testimonials-heading {
  max-width: 750px;
  margin: 0 auto 55px;
  text-align: center;
}

.testimonials-sub-title {
  display: inline-block;
  margin-bottom: 10px;
  color: #012e73;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.testimonials-title {
  margin: 0 0 16px;
  color: #012e73;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 48px;
}

.testimonials-intro {
  max-width: 600px;
  margin: 0 auto;
  color: #53657b;
  font-size: 14px;
  line-height: 20px;
}

/* =========================================
   CAROUSEL
========================================= */

.testimonials-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 25px 15px 35px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc((100% - 60px) / 3);
  scroll-snap-align: start;
}

/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 60px) / 3);
  min-height: 300px;
  padding: 45px 30px 25px;
  border-radius: 30px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  scroll-snap-align: start;
  box-shadow: 14px 14px 30px rgba(137, 157, 184, 0.38);
  /* -14px -14px 30px rgba(255, 255, 255, 0.95); */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-7px);

  box-shadow:
    18px 18px 35px rgba(137, 157, 184, 0.45),
    18px 18px 35px rgba(255, 255, 255, 0.98);
}

/* =========================================
   QUOTATION
========================================= */

.testimonial-quote {
  position: absolute;

  top: 20px;
  right: 28px;

  color: #012e73;

  font-family: Georgia, serif;
  font-size: 75px;
  font-weight: 700;

  line-height: 0.8;

  opacity: 0.18;
}

/* =========================================
   TESTIMONIAL TEXT
========================================= */

.testimonial-text {
  margin: 0 0 30px;

  color: #40566f;

  font-family: "Lato", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

/* =========================================
   PROFILE CARD
========================================= */

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 10px 16px 10px 10px;
  border-radius: 18px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.28),
    inset -5px -5px 10px rgba(255, 255, 255, 0.85);
}

/* =========================================
   PROFILE IMAGE
========================================= */

.testimonial-profile__image {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  box-shadow:
    4px 4px 8px rgba(137, 157, 184, 0.35),
    -4px -4px 8px rgba(255, 255, 255, 0.85);
}

.testimonial-profile__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* =========================================
   PROFILE CONTENT
========================================= */

.testimonial-profile__content {
  min-width: 0;
}

.testimonial-profile__name {
  margin: 0 0 4px;
  color: #012e73;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

.testimonial-profile__role {
  display: block;
  color: #64778d;
  font-size: 14px;
  line-height: 18px;
}

/* =========================================
   CONTROLS
========================================= */

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}

/* ---------- Arrow ---------- */

.testimonial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  padding: 0;

  border-radius: 50%;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  color: #012e73;

  font-size: 18px;

  box-shadow:
    6px 6px 12px rgba(137, 157, 184, 0.4),
    -6px -6px 12px rgba(255, 255, 255, 0.9);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.testimonial-arrow:hover {
  transform: translateY(-2px);
}

.testimonial-arrow:active {
  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.35),
    inset 5px 5px 10px rgba(255, 255, 255, 0.85);
}

/* =========================================
   DOTS
========================================= */

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;

  padding: 0;

  border-radius: 50%;

  background: #c7d1de;

  box-shadow: none;

  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.testimonial-dot.is-active {
  width: 25px;

  border-radius: 10px;

  background: #012e73;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-heading {
    margin-bottom: 25px;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .testimonials-intro {
    font-size: 15px;
  }

  .testimonials-carousel {
    gap: 20px;
    padding-inline: 10px;
  }

  .testimonial-card {
    flex: 0 0 88%;

    min-height: 360px;

    padding: 40px 22px 22px;

    border-radius: 24px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .testimonial-card {
    flex-basis: 92%;
  }

  .testimonial-profile {
    padding-right: 12px;
  }

  .testimonial-profile__image {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .testimonial-arrow {
    width: 42px;
    height: 42px;
  }
}

/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
  padding: 60px 0;
  background: #fff;
}

/* =========================================
   SECTION HEADING
========================================= */

.contact-heading {
  max-width: 800px;
  margin: 0 auto 55px;
  text-align: center;
}

.contact-sub-title {
  display: inline-block;
  margin-bottom: 10px;
  color: #012e73;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-title {
  margin: 0 0 16px;

  color: #012e73;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
}

.contact-description {
  max-width: 650px;

  margin: 0 auto;

  color: #53657b;

  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

/* =========================================
   CONTACT GRID
========================================= */

.contact-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 45px;

  align-items: stretch;
}

/* =========================================
   NEUMORPHIC BASE
========================================= */

.contact-map-card,
.contact-form-card {
  padding: 15px;

  border-radius: 30px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  box-shadow:
    15px 15px 32px rgba(137, 157, 184, 0.4),
    -15px -15px 32px rgba(255, 255, 255, 0.95);
}

/* =========================================
   MAP
========================================= */

.contact-map-card {
  min-height: 560px;
}

.contact-map-card iframe {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 530px;

  border: 0;

  border-radius: 22px;

  box-shadow:
    inset 5px 5px 12px rgba(137, 157, 184, 0.25),
    inset -5px -5px 12px rgba(255, 255, 255, 0.8);
}

/* =========================================
   FORM
========================================= */

.contact-form-card {
  display: flex;
  align-items: center;

  padding: 40px;
}

.contact-form {
  width: 100%;
}

/* ---------- Form Group ---------- */

.contact-form__group {
  margin-bottom: 20px;
}

.contact-form__group label {
  display: block;

  margin-bottom: 8px;

  color: #012e73;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.contact-form__group input,
.contact-form__group textarea {
  display: block;

  width: 100%;

  border: 0;
  outline: 0;

  border-radius: 15px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  color: #344b65;

  font-family: "Lato", Arial, sans-serif;
  font-size: 15px;

  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.3),
    inset -5px -5px 10px rgba(255, 255, 255, 0.85);

  transition: box-shadow 0.25s ease;
}

.contact-form__group input {
  height: 52px;

  padding: 0 17px;
}

.contact-form__group textarea {
  min-height: 140px;

  padding: 15px 17px;

  resize: vertical;
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
  color: #7d8da0;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
  box-shadow:
    inset 6px 6px 12px rgba(137, 157, 184, 0.35),
    inset -6px -6px 12px rgba(255, 255, 255, 0.9);
}

/* =========================================
   SEND BUTTON
========================================= */

.contact-form__button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 52px;

  margin-top: 5px;

  border: 0;
  border-radius: 15px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  color: #012e73;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.7px;

  text-transform: uppercase;

  cursor: pointer;

  box-shadow:
    7px 7px 14px rgba(137, 157, 184, 0.4),
    -7px -7px 14px rgba(255, 255, 255, 0.9);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-form__button:hover {
  transform: translateY(-2px);

  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.35),
    inset -5px -5px 10px rgba(255, 255, 255, 0.9);
}

.contact-form__button:active {
  transform: translateY(0);

  box-shadow:
    inset 6px 6px 12px rgba(137, 157, 184, 0.4),
    inset -6px -6px 12px rgba(255, 255, 255, 0.9);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .contact-map-card {
    min-height: 450px;
  }

  .contact-map-card iframe {
    min-height: 420px;
  }

  .contact-form-card {
    padding: 35px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-heading {
    margin-bottom: 35px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-map-card,
  .contact-form-card {
    border-radius: 24px;
  }

  .contact-map-card {
    padding: 10px;
    min-height: 350px;
  }

  .contact-map-card iframe {
    min-height: 330px;
    border-radius: 17px;
  }

  .contact-form-card {
    padding: 25px 20px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-map-card {
    min-height: 300px;
  }

  .contact-map-card iframe {
    min-height: 280px;
  }

  .contact-form__group input {
    height: 50px;
  }
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  padding: 60px 0 0;
  background: #fff;
}

/* =========================================
   FOOTER MAIN
========================================= */

.footer-main {
  display: grid;

  grid-template-columns:
    1.4fr
    0.8fr
    1fr
    1.3fr;

  gap: 35px;

  padding: 45px;

  border-radius: 35px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  box-shadow:
    16px 16px 35px rgba(137, 157, 184, 0.4),
    -16px -16px 35px rgba(255, 255, 255, 0.95);
}

/* =========================================
   BRAND
========================================= */

.footer-brand {
  padding-right: 20px;
}

.footer-logo {
  display: inline-flex;

  align-items: center;

  margin-bottom: 20px;
}

.footer-logo img {
  display: block;

  width: 220px;
  height: auto;
}

.footer-about {
  max-width: 330px;

  margin: 0 0 25px;

  color: #53657b;

  font-family: "Lato", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {
  display: flex;

  align-items: center;

  gap: 12px;
}

.footer-social__link {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 13px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  color: #012e73;

  font-size: 15px;

  text-decoration: none;

  box-shadow:
    6px 6px 12px rgba(137, 157, 184, 0.4),
    -6px -6px 12px rgba(255, 255, 255, 0.9);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.footer-social__link:hover {
  color: #012e73;

  transform: translateY(-3px);

  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.35),
    inset -5px -5px 10px rgba(255, 255, 255, 0.9);
}

/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {
  padding: 5px 10px;
}

.footer-title {
  position: relative;

  margin: 0 0 25px;

  padding-bottom: 12px;

  color: #012e73;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;

  line-height: 1.3;
}

.footer-title::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 35px;
  height: 3px;

  border-radius: 10px;

  background: #012e73;
}

/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
  display: flex;

  flex-direction: column;

  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: inline-block;

  color: #53657b;

  font-family: "Lato", Arial, sans-serif;
  font-size: 14px;

  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover {
  color: #012e73;

  transform: translateX(5px);
}

/* =========================================
   CONTACT DETAILS
========================================= */

.footer-contact {
  display: flex;

  flex-direction: column;

  gap: 14px;
}

.footer-contact .footer-title {
  margin-bottom: 8px;
}

.footer-contact__item {
  display: flex;

  align-items: center;

  gap: 13px;

  color: inherit;

  text-decoration: none;
}

/* ---------- Contact Icon ---------- */

.footer-contact__icon {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  border-radius: 13px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  color: #012e73;

  font-size: 14px;

  box-shadow:
    5px 5px 10px rgba(137, 157, 184, 0.35),
    -5px -5px 10px rgba(255, 255, 255, 0.85);
}

/* ---------- Contact Text ---------- */

.footer-contact__content {
  display: flex;

  flex-direction: column;

  gap: 3px;

  min-width: 0;
}

.footer-contact__content small {
  color: #718196;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.5px;

  text-transform: uppercase;
}

.footer-contact__content strong {
  color: #344b65;

  font-family: "Lato", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;

  line-height: 1.4;
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  margin-top: 35px;
  padding: 22px 5px;

  border-top: 1px solid rgba(1, 46, 115, 0.1);
}

.footer-copyright,
.footer-credit {
  margin: 0;
  color: #718196;
  font-family: "Lato", Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.footer-copyright span {
  color: #012e73;
  font-weight: 700;
  text-decoration: none;
}

.footer-credit {
  text-align: right;
}

.footer-credit a {
  color: #012e73;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-credit a:hover {
  color: #1d5ca8;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .site-footer {
    padding-top: 80px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

    padding: 40px;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .site-footer {
    padding-top: 60px;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 35px;

    padding: 30px 25px;

    border-radius: 25px;
  }

  .footer-brand,
  .footer-column {
    padding: 0;
  }

  .footer-logo img {
    width: 190px;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: center;

    gap: 10px;

    padding: 20px 5px;

    text-align: center;
  }

  .footer-credit {
    text-align: center;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .footer-main {
    padding: 25px 20px;
  }

  .footer-social__link {
    width: 40px;
    height: 40px;
  }

  .footer-contact__icon {
    flex-basis: 40px;

    width: 40px;
    height: 40px;
  }

  .footer-contact__content strong {
    font-size: 12px;
  }
}

/* WhatsApp chat-btn */

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 34px;
  z-index: 9999;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
  animation: whatsappPulse 2s infinite;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  color: #fff;
  transform: scale(1.08);
  text-decoration: none;
}

.whatsapp-left {
  left: 25px;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .whatsapp-btn {
    width: 55px;
    height: 55px;
    font-size: 30px;
    bottom: 18px;
  }

  .whatsapp-left {
    left: 18px;
  }
}
