@font-face {
  font-family: "AlternateGotNo1D";
  src: url("../fonts/AlternateGotNo1DRegular.woff2") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Brandon Grotesque";
  src: url("../fonts/brandon-regular-webfont.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-font: "AlternateGotNo1D", sans-serif;
  /* global scope */
  --body-font: "Brandon Grotesque", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* global scope */
  ;
  --tsw-gutter-x: 1.875rem;
  /* Color */
  --primary-color: #000000;
  --secondary-color: #e7247a;
  --dark-color: #28282B;
  --light-color: #FFFFFF;
  --warm-light-color: #EFEBD8;
  --success-color: #198754;
  --danger-color: #DC3545;
  --warning-color: #FFC107;
  --text-color: #4A4E56;
  --black: #000000;
  --gray-200: #F2F2F2;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-600: #6C757D;
  /* Button Color */
  --disabled: #E9ECEF;
  --primary-hover: #FAEA9F;
  --primary-focus: #FAEA9F;
  --primary-active: #EDD35B;
  --secondary-hover: #153803;
  --secondary-focus: #153803;
  --secondary-active: #123301;
  /* Screen constraints */
  --min-vw: 320px;
  --max-vw: 1920px;
  --fluid-calc: (100vw - var(--min-vw)) / (1920 - 320);
}

.mb-5 {
  margin-bottom: 5rem;
}

.display-xxl {
  font-size: calc(48px + (90 - 48) * var(--fluid-calc));
}

.display-lg {
  font-size: calc(36px + (64 - 36) * var(--fluid-calc));
}

.text-lg-regular,
p {
  color: inherit;
  font-style: normal;
  font-weight: inherit;
  line-height: 130%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bg--warm-light {
  background-color: var(--gray-200);
}

/*** breadcrum */
.theme-breadcrumb .breadcrumb-item a {
  color: var(--gray-600);
  text-decoration: underline;
}

.theme-breadcrumb .breadcrumb-item a:hover {
  text-decoration: none;
}

.highight---why_us {
  gap: 30px;
}

.highight---why_us>div {
  /* width: 100%;
     */
  text-align: center;
  padding-block: 10px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 calc(20% - 25px);
  max-width: calc(20% - 25px);
}

.highight---why_us>div i {
  font-size: 48px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.testimonial_section .slick-dots {
  position: relative;
  margin-bottom: 60px;
}

.testimonial_section .slick-dots li {
  margin: 0px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #999;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: #000;
}

.tsw-ellipsis-2,
.tsw-ellipsis-3,
.tsw-ellipsis-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tsw-ellipsis-2 {
  -webkit-line-clamp: 2;
}

.tsw-ellipsis-3 {
  -webkit-line-clamp: 3;
}

.tsw-ellipsis-4 {
  -webkit-line-clamp: 4;
}

.contact_section {
  background: var(--gray-200);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.contact-grid .contact-left>div:last-child {
  margin-bottom: 0px;
}

.contact-grid .contact-right>div {
  margin-bottom: 0px;
}

.contact-grid textarea.form-control {
  padding-top: 20px;
  height: 100%;
  min-height: 232px;
  resize: none;
}

@media (max-width:768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid textarea.form-control {
    min-height: 180px;
  }
}

.tsw-process {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tsw-process__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.tsw-process__item .icon {
  width: 60px;
  height: 60px;
  background: var(--black);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tsw-process__item .content p {
  color: var(--gray-600);
  font-family: var(--body-font);
}

/**** Travel card ****/
.travel-card {
  position: relative;
  height: 500px;
  border-radius: 25px;
  overflow: hidden;
  padding: 18px 20px;
  background-size: cover;
  background-position: center;
}

.travel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.travel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .1));
}

.travel-card .badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--light-color);
  color: var(--secondary-color);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  z-index: 2;
}

.travel-card .card-content h3 {
  color: var(--light-color);
  margin-bottom: 0px;
}

.travel-card .card-content p {
  color: var(--light-color);
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 5px;
}

.travel-card .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: 0.6s ease;
}

.travel-card:hover .card-bg {
  transform: scale(1.05);
}

.travel-card .card-content {
  position: absolute;
  bottom: 15px;
  left: 20px;
  right: 20px;
  z-index: 2;
  transition: 0.1s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(60px);
}

.travel-card:hover .card-content {
  transform: translateY(0);
  opacity: 1;
  padding-bottom: 0px;
}

.travel-card:hover p {
  margin-bottom: 0px;
}

.travel-card:hover img {
  transform: scale(1.05);
  transition: 0.6s ease;
}

/**** Travel card ****/
/***********************/
.world-map svg {
  width: 100%;
  height: auto;
  margin-top: 100px;
}

.world-map-2 svg {
  width: 100vw;
  height: auto;
  height: calc(100vh - 150px);
  margin: 100px auto 0;
  background: none;
}

.destination path {
  fill: var(--black);
  cursor: pointer;
  transition: 0.3s ease;
}

.map-heading {
  font-size: 30px;
  fill: var(--secondary-color);
  pointer-events: none;
  font-family: var(--primary-font);
}

.map-label,
.map-label-2 {
  font-size: 12px;
  pointer-events: none;
}

.map-label {
  fill: var(--light-color);
}

.map-label-2,
.map-label-3 {
  fill: var(--black);
}

.map-label-3 {
  font-size: calc(8px + (17 - 8) * var(--fluid-calc));
  position: absolute;
  margin: auto;
  left: 0px;
  right: 0px;
  top: 75px;
  z-index: 99999;
  cursor: pointer;
  color: var(--black);
}

.map-label-3:hover {
  color: var(--primary-active);
}

.destination:hover path {
  fill: #c49a6c;
  cursor: pointer;
  stroke-width: 0;
}

.slick-slider .slick-slide {
  width: 300px;
}

.tour-card {
  background-position: 50%;
  background-size: cover;
  height: 500px;
  line-height: 1.15em;
  overflow: hidden;
  position: relative;
  border-radius: 25px;
}

.card__inner {
  height: 100%;
}

.card__image {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.card__content {
  align-items: flex-start;
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.search-overlay {
  height: 100%;
  width: 100%;
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 9999;
  /* Stay on top */
  top: 0;
  left: 0;
  background: rgb(255 255 255 / 90%);
}

.overlay-content {
  position: relative;
  top: 10%;
  width: 80%;
  margin: auto;
  text-align: center;
  left: auto;
  height: auto;
  box-shadow: none;
}

.overlay-content .search-form {
  /* margin-top: 50px;
     */
}

.overlay-content .search-bar {
  display: block;
  padding: 0px;
  border: 0px;
}

.overlay-content .search-bar input {
  border: solid 1px #ced4da;
  background-color: var(--light-color);
}

.overlay-content .search-bar .search-button {
  left: 8px;
}

.close-overlay {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  color: var(--black);
  cursor: pointer;
}

@media (max-width:767px) {
  .close-overlay {
    top: 10px;
    right: 10px;
    line-height: 60px;
    font-size: 45px;
  }

  .highight---why_us {
    flex-wrap: wrap;
    justify-content: center;
  }

  .highight---why_us>div {
    flex: 0 0 calc(50% - 25px);
    max-width: calc(50% - 25px);
  }
}

.results-container {
  max-height: calc(100vh - 155px);
  overflow: auto;
  text-align: left;
  border: solid 1px #ced4da;
}

.results-group-title {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  border-bottom: 1px solid #eee;
  padding: 15px 10px 10px;
  background-color: var(--gray-200);
}

.result-item {
  display: block;
  padding: 10px;
  color: var(--gray-600);
  text-decoration: none;
  text-transform: capitalize;
}

.result-item:hover {
  color: var(--black);
  background: #fbfbfb;
}

/****/
#toc-container {
  border: 1px solid #ddd;
  padding: 15px;
  background: #f9f9f9;
  margin: 20px 0;
  display: inline-block;
}

ul#toc {
  margin-top: 10px;
  padding-left: 25px;
}

#toc li {
  list-style: decimal;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-size: 1.25rem;
  display: list-item;
  list-style-type: auto;
}

#toc a {
  text-decoration: none;
  color: #333;
}

#toc a:hover {
  text-decoration: underline;
}

/****/
.author-box {
  display: flex;
  gap: 20px;
  border: 1px solid #ddd;
  padding: 20px;
  background: #f8f8f8;
  margin-top: 30px;
}

.author-image img {
  border-radius: 4px;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.author-content h3 {
  margin: 0 0 10px;
}

.author-content p {
  font-size: 14px;
  line-height: 1.6;
}

.author-links a {
  margin-right: 10px;
  font-size: 13px;
  text-decoration: underline;
  color: #000;
}

.comment-success-msg {
  background: #e6ffed;
  color: #2e7d32;
  padding: 12px 15px;
  margin-bottom: 20px;
  border-left: 4px solid #2e7d32;
}

.comment-section {
  margin-top: 30px;
}

/* Wrapper fix */
.wpcf7-form select {
  width: 100%;
}

/* Main Select Styling */
.select2-container--default .select2-selection--multiple {
  width: 100%;
  padding: 14px 45px 14px 16px;
  font-size: 16px;
  color: #333;
  border: 1px solid #dcdcdc;
  border-radius: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.select2-results__option {
  width: 100%;
  display: block;
}

.select2-container--default .select2-search--inline .select2-search__field {
  font-family: var(--body-font);
  height: 22px;
}

.select2-dropdown {
  border: 1px solid #dcdcdc;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #dcdcdc;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: var(--secondary-color);
  border: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  color: var(--light-color);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: var(--secondary-color);
}

/***/
.wp-block-buttons .wp-block-button__link:hover {
  color: var(--secondary-color);
}

.wp-block-list {
  margin-bottom: 10px;
}

.wp-block-list li {
  display: list-item;
  /* margin-bottom: 10px;
     */
  margin-left: 20px;
  font-size: 17px;
}

/**/
.home {
  position: relative;
}

/* Overlay (dark tint like your image) */
/* .home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 70, 0.45);
  z-index: 1;
} */

/* Right side container */
.banner-content {
  position: absolute;
  top: 50%;
  right: 13%;
  transform: translateY(-50%);
  z-index: 2;
}

/* Main box */
.content-box {
  max-width: 640px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: end;
  text-align: right;
  gap: 40px;
  margin: auto;
}

.banner-content .content-box .title-1 {
  margin: inherit;
}

/* Heading */
.content-box h2 {
  color: var(--light-color);
}

.no-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

/** Right side follow icon **/
.social-icon-bar {
  position: fixed;
  top: 50%;
  right: 0;
  /* Aligns the bar to the right side */
  transform: translateY(-50%);
  /* Centers the bar vertically */
  z-index: 1000;
  /* Ensures it stays on top of other content */
}

.social-icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.social-icon-bar a:hover {
  background-color: #000;
  padding-right: 25px;
  /* Slight expansion on hover */
}

.social-icon-bar .facebook {
  background: #3B5998;
}

.social-icon-bar .twitter {
  background: #55ACEE;
}

.social-icon-bar .youtube {
  background: #bb0000;
}

.social-icon-bar .instagram {
  background: #e1306c;
}

.social-icon-bar .pinterest {
  background: #cb2027;
}

.social-icon-bar .linkedin {
  background: #007bb5;
}

.ads .menu-part {
  background-color: var(--secondary-color) !important;
}

.ads h3,
.ads h5 {
  color: var(--light-color);
}

.ads {
  background: var(--secondary-color);
  padding: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ads .heading {
  font-size: calc(24px + (32 - 24) * var(--fluid-calc));
  font-weight: bold;
  color: var(--light-color);
}

.ads p {
  color: var(--light-color);
}

@media (max-width: 991px) {
  .banner-content {
    left: 24px;
    right: 24px;
  }

  .banner-content .content-box {
    align-items: center;
    max-width: 500px;
  }

  .banner-content .content-box .title-1 {
    text-align: center;
  }

  .banner-content .content-box .title-1.text-right h2:before {
    left: 0px;
    right: 0px;
    margin: auto;
  }
}

@media (max-width: 1199px) {
  .ads {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .ads .ads-logo {
    width: 80%;
  }
}

/* PULL QUOTE SECTION */
.pull-quote {
  padding: 100px 40px;
  background: var(--text-white);
  text-align: center;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.pull-quote p {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  font-style: italic;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.pull-quote p::before {
  content: '"';
  font-size: 4rem;
  color: var(--secondary-color);
  line-height: 0;
  display: block;
  margin-bottom: -20px;
  opacity: 0.6;
}

/* NARRATIVE SECTION */
.narrative {
  padding: 120px 60px;
  background: var(--text-white);
  max-width: 1400px;
  margin: 0 auto;
}

.narrative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.narrative-image {
  position: sticky;
  top: 100px;
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #e8d4b8 0%, #d4af37 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* BEYOND TRAVEL SECTION */
.gray_section {
  background: var(--gray-200);
}

.beyond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.candyshop-highlight {
  background: var(--light-color);
  padding: 40px;
  border-left: 4px solid var(--secondary-color);
  border-radius: 2px;
}

/* VALUES SECTION */
.values {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.value-card {
  padding: 60px;
  border-left: 6px solid var(--secondary-color);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
  opacity: 0.05;
  border-radius: 50%;
  pointer-events: none;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(15px);
  border-left-width: 8px;
}

.value-icon {
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--secondary-color);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.value-content {
  position: relative;
  z-index: 2;
}

.value-card h3 {
  margin-bottom: 18px;
  color: var(--light-color);
}

.value-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

/* STATS SECTION */
.stats {
  background: linear-gradient(135deg, #f9f7f4 0%, #efe9e0 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  text-align: center;
}

.stat-item {
  padding: 30px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  font-weight: 500;
}

/* RECOGNITION & PRESS SECTION */
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.recognition-card {
  padding: 50px 40px;
  background: var(--gray-200);
  border: 2px solid var(--gray-400);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.recognition-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.recognition-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
  transform: translateY(-10px);
}

.recognition-card:hover::before {
  left: 100%;
}

.recognition-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.recognition-card h3 {
  margin-bottom: 16px;
}

.recognition-card h3,
.recognition-card p {
  color: var(--primary-color);
}

.recognition-arrow {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 700;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.recognition-card:hover .recognition-arrow {
  transform: translateX(8px);
  color: var(--text-color);
}

/* SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.service-card {
  padding: 50px 40px;
  background: var(--gray-200);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--secondary-color);
  opacity: 0.15;
  line-height: 1;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

.service-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.service-link:hover {
  gap: 15px;
  color: var(--text-color);
}

/* CLOSING STATEMENT */
.closing {
  text-align: center;
}

.closing-content {
  max-width: 900px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: calc(24px + (40 - 24) * var(--fluid-calc));
  margin-bottom: 20px;
}

.closing h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: calc(16px + (20 - 16) * var(--fluid-calc));
  margin-bottom: 10px;
}

/* COLLAB SECTION */
.collab-tag {
  display: inline-block;
  margin-bottom: 25px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
  font-weight: 600;
}

.social-item {
  border-bottom: 1px solid var(--gray-300);
}

.social-item span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0;
}

.social-item a {
  font-size: 1.2rem;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  transition: color 0.3s ease;
}

.social-item a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .narrative-grid,
  .beyond-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pull-quote {
    padding: 60px 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item {
    padding: 20px;
  }

  .service-card {
    padding: 40px 30px;
  }

  .service-number {
    font-size: 3rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .social-item a {
    font-size: 1rem;
  }
}

/* STATS ANIMATION DELAY */
.stat-item:nth-child(1) {
  animation-delay: 0s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.4s;
}

.stat-item:nth-child(4) {
  animation-delay: 0.6s;
}

.stat-item:nth-child(5) {
  animation-delay: 0.8s;
}

.stat-item:nth-child(6) {
  animation-delay: 1s;
}

.stat-item:nth-child(7) {
  animation-delay: 1.2s;
}

.stat-item:nth-child(8) {
  animation-delay: 1.4s;
}