/**
 * Theme Name:     Social-Hustle
 * Author:         Social Hustle Team
 * Template:       twentytwenty
 * Text Domain:	   social-hustle
 * Description:    Transformative marketing for powerhouse brands.
 */
/*
CTC Separate Stylesheet
Updated: 2025-07-18 05:37:24
*/

@font-face {
  font-family: 'Almarena';
  src: url('/wp-content/themes/social-hustle/assets/fonts/Almarena/AlmarenaBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Almarena';
  src: url('/wp-content/themes/social-hustle/assets/fonts/Almarena/AlmarenaRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Almarena';
  src: url('/wp-content/themes/social-hustle/assets/fonts/Almarena/AlmarenaLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Larken';
  src: url('/wp-content/themes/social-hustle/assets/fonts/Almarena/Larken Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Larken';
  src: url('/wp-content/themes/social-hustle/assets/fonts/Almarena/Larken Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}


/* Optional: Apply globally to body */
*,
p {
  margin: 0;
  padding: 0;
  font-family: 'Almarena', sans-serif;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Almarena, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: normal;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
}

h2 {
  font-size: clamp(30px, 2.6vw, 48px);
}

h3 {
  font-size: clamp(24px, 3vw, 36px);
}

h4 {
  font-size: clamp(20px, 2.5vw, 30px);
}

h5 {
  font-size: clamp(18px, 2vw, 24px);
}

h6 {
  font-size: clamp(16px, 1.5vw, 20px);
}

p {
  font-size: clamp(16px, 1.5vw, 18px);
}

.section-heading-h2 {
  color: #fff;
  max-width: clamp(300px, 90vw, 1024px);
  margin: 0 auto;
  font-size: clamp(24px, 2.6vw, 36px);
}


/* Paragraphs */
p {
  font-family: Almarena, sans-serif;
  line-height: 1.6;
  color: var(--Secondary-Light-Grey, #606060);
  margin-bottom: 1.5rem;
  letter-spacing: 0;
}

/* Links */
a {
  color: var(--Primary-White, #FFF);
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0;
}

a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

button:focus {
  outline: none;
  text-decoration: none;
  box-shadow: none;
}

/* ========== CONTAINER & SECTIONS ========== */
section {
  padding-top: clamp(80px, 5vw, 96px);
  padding-bottom: clamp(80px, 5vw, 96px);
  position: relative;
}

.m-container {
  width: 100%;
  max-width: clamp(1vw, 97vw, 1920px);
  /* responsive between 320px and 1920px */
  padding-left: clamp(20px, 4vw, 80px);
  /* responsive horizontal padding */
  padding-right: clamp(20px, 4vw, 80px);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* ========== BUTTONS ========== */


.btn-black {
  background-color: var(--Primary-Black, #000);
  color: var(--Primary-White, #FFF);
  border-color: var(--Primary-White, #FFF);
}

.btn-black:hover {
  background-color: #1a1a1a;
  color: var(--Primary-White, #FFF);
}

.btn-white {
  background-color: var(--Primary-White, #FFF);
  color: var(--Primary-Black, #000);
  border-color: var(--Primary-White, #FFF);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--Primary-White, #FFF);
  border-color: var(--Primary-White, #FFF);
}

.loader {
  width: 16px;
  height: 16px;
  position: relative;
  left: -32px;
  border-radius: 50%;
  color: var(--Secondary-Light-Grey, #606060);
  background: currentColor;
  box-shadow: 32px 0, -32px 0, 64px 0;
}

.loader::after {
  content: '';
  position: absolute;
  left: -32px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background: var(--Primary-Red, #CE2121);
  animation: move 3s linear infinite alternate;
}

@keyframes move {

  0%,
  5% {
    left: -32px;
    width: 16px;
  }

  15%,
  20% {
    left: -32px;
    width: 48px;
  }

  30%,
  35% {
    left: 0px;
    width: 16px;
  }

  45%,
  50% {
    left: 0px;
    width: 48px;
  }

  60%,
  65% {
    left: 32px;
    width: 16px;
  }

  75%,
  80% {
    left: 32px;
    width: 48px;
  }

  95%,
  100% {
    left: 64px;
    width: 16px;
  }
}

/* ========== IMAGES ========== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========== LAYOUT HELPERS ========== */
.m-hero-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 6rem;
}

.hero-content {
  flex: 1 1 50%;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.m-hero-image-wrapper {
  flex: 1 1 40%;
}
.home-hero-banner-video video {
    width: 100% !important;
    max-width: 650px;
}
.m-hero-image-wrapper .m-hero-image {
  animation: bounceInfinite 2s ease-in-out infinite !important;
}

@keyframes bounceInfinite {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px); /* adjust height of bounce */
  }
}

/* Responsive Hero Content */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }

  .m-hero-image-wrapper {
    display: none;
  }

  .hero-text,
  .hero-image {
    flex: 1 1 100%;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* SECTION global spacing */
#site-header {
  position: sticky;
  top: 40px;
  /* stick to top of viewport */
  width: 100%;
  margin: 0 auto;
  max-width: clamp(1vw, 98vw, 1920px);
  padding-left: clamp(10px, 4.2vw, 80px);
  padding-right: clamp(10px, 4.2vw, 80px);
  background: none;
  box-shadow: none;
  border: none;
  border-radius: unset;
  backdrop-filter: none;
  z-index: 9;
  height: 0;
  background: #000; /* adjust to your design */
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Hidden (scrolling down) */
#site-header.hide {
  transform: translateY(-100%);
  opacity: 0;
}

/* Visible (scrolling up) */
#site-header.show {
  transform: translateY(0);
  opacity: 1;
}




#site-header .header-inner .toggle {
  height: 4.2rem;
  padding: 0 1.8rem;
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  top: auto;
  width: auto;
}

#site-header .header-inner.section-inner {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.80);
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 0 -2px 16px 0 rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(10px);
  display: flex;
  height: 80px;
  padding: clamp(12px, 1.2vw, 16px) clamp(16px, 2.5vw, 40px);
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

/* section {
  padding-top: clamp(40px, 5vw, 96px);
  padding-bottom: clamp(40px, 5vw, 96px);
}

/* CONTAINER inside section */
/* section>.container {
  width: 100%;
  max-width: 90vw;

  margin-left: auto;
  margin-right: auto;
  padding-left: max(5vw, 20px);
  padding-right: max(5vw, 20px);
  box-sizing: border-box;
} */




/* RESPONSIVE: Extra small devices (480px and below) */
/* @media (max-width: 480px) {
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  section>.container {
    padding-left: 20px;
    padding-right: 20px;
  }
} */

/* Header CSS */
.header-inner .btn-menu-header {
  border-radius: 100px;
  border: 1px solid #000;
  background: var(--Primary-Black, #000);
  height: auto;
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.header-inner .btn-menu-header .toggle-inner {
  padding: 0;
  align-items: center;
  gap: 8px;
}

.header-inner .btn-menu-header .toggle-inner .toggle-text {
  position: unset;
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  /* 120% */
  padding-top: 3px;
  text-decoration: none;
}

.header-inner .btn-menu-header .toggle-inner .toggle-icon {
  width: 20px;
  height: 20px;
  display: flex;
}

.header-inner .btn-menu-header .toggle-inner .toggle-icon svg {
  width: 20px;
  height: 20px;
  aspect-ratio: 1 / 1;
}

.main-menu-modal {
  background: rgba(0, 0, 0, 0.60);
  backdrop-filter: blur(10px);
}

.main-menu-modal .menu-modal-inner {
  background: var(--Primary-Black, #000);
}

.main-menu-modal .menu-modal-inner .menu-wrapper .menu-item {
  border: 0;
  width: fit-content;
}

.main-menu-modal .menu-modal-inner .menu-wrapper .menu-item a {
  padding: 0;
  padding-bottom: 8px;
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 39px;
  /* 121.875% */
  border-bottom: 2px solid rgb(0 0 0 / 0%);
  transition: color 0.3s ease, letter-spacing 0.3s ease;

}

.main-menu-modal .menu-modal-inner .menu-wrapper .modal-menu .current-menu-item {
  display: inline-flex;
}

.main-menu-modal .menu-modal-inner .menu-wrapper .modal-menu .current-menu-item a {
  color: var(--Primary-Red, #CE2121);
  font-family: Almarena;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 39px;
  /* 121.875% */
  text-decoration: none;
  border-bottom: 2px solid;
}

.main-menu-modal .menu-modal-inner .menu-wrapper .menu-item:hover a {
  text-decoration: none;
  border-bottom: 2px solid;
}

.main-menu-modal .menu-modal-inner .menu-wrapper .modal-menu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.main-menu-modal .menu-modal-inner .menu-bottom {
  padding: 0;
  padding-bottom: 5rem;
}

.get-in-touch-email a,
.menu-contact-us-number a {
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 125% */
  text-decoration: none;
}

.menu-contact-us-title,
.get-in-touch-title {
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  /* 121.429% */
}

.menu-get-in-touch,
.menu-contact-us {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expand-menu-header-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 5rem;
  padding-bottom: 4.5rem;
  border-bottom: 1px solid #303030;
  margin-bottom: 4.5rem;
}

.expand-menu-header-wrapper .close-nav-toggle {
  padding: 0;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expand-menu-header-wrapper button.close-nav-toggle svg {
  width: 100%;
  height: 100%;
}

.expand-menu-header-wrapper .site-logo .custom-logo {
  max-height: 3.6rem;
}

/* Hover effect for menu button */
.header-inner .btn-menu-header {
  transition: all 0.3s ease;
  text-decoration: none;
}

.header-inner .btn-menu-header:hover {
  background-color: #CE2121;
  transform: translateY(-2px);
  border-color: #CE2121;
  box-shadow: 0 6px 12px rgb(206 33 33 / 30%);

}

/* Text and icon hover effect */
.header-inner .btn-menu-header .toggle-inner .toggle-text,
.header-inner .btn-menu-header .toggle-inner .toggle-icon svg {
  transition: color 0.3s ease, transform 0.3s ease;
}

.header-inner .btn-menu-header:hover .toggle-text {
  color: var(--Primary-White, #FFF);
}

.header-inner .btn-menu-header:hover .toggle-icon svg {
  transform: scale(1.1) rotate(5deg);
  fill: var(--Primary-White, #FFF);
}

/* Menu item hover animation */


.main-menu-modal .menu-modal-inner .menu-wrapper .menu-item a:hover {
  color: var(--Primary-Red, #CE2121);
  letter-spacing: 1px;
}

/* Contact links hover */
.get-in-touch-email a:hover,
.menu-contact-us-number a:hover {
  color: var(--Primary-Red, #CE2121);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Close icon hover */
.expand-menu-header-wrapper .close-nav-toggle {
  transition: transform 0.3s ease;
}

.expand-menu-header-wrapper .close-nav-toggle:hover {
  transform: rotate(90deg) scale(1.1);
}

/* Header CSS END */

/* Section Layout */
.m-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.m-hero-text {
  max-width: 55%;
}

.m-hero-heading {
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: clamp(40px, 5.57vw, 90px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  max-width: clamp(250px, 76vw, 760px);
  margin-bottom: 40px;
}

.m-hero-button-group {
  display: flex;
  gap: 1rem;
}

.hero-text .highlight {
  color: #e53935;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.m-hero-btn,
.btn {
  font-size: clamp(15px, 2.1vw, 18px);
  padding: 12px clamp(16px, 2.5vw, 40px);
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  font-family: 'Almarena';
  letter-spacing: 0;
  line-height: 155%;
  cursor: pointer;
  height: clamp(42px, 4.65vw, 57px);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.m-hero-btn:hover,
.btn:hover {
  transform: translateY(-4px);
  /* Slide up effect */
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.m-hero-btn-black,
.btn-black {
  background-color: #000;
  color: #fff;
}

.m-hero-btn-black:hover,
.btn-black:hover {
  opacity: 0.85;
}

.m-hero-btn-white,
.btn-white {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

.m-hero-btn-white:hover,
.btn-white:hover {
  background-color: #000;
  color: #fff;
}

.hero-image {
  max-width: 40%;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Video Section */
.section-video {
  padding: 0;
}

@media screen and (max-width: 991px) {
  video.scroll-effect-video {
    transform: scale(1) !important;
    max-width: 100%;
    width: 100% !important;
  }

}

@media screen and (max-width: 767px) {
#site-header {
    top: 24px;	
}
}
/* Client Section */

.client-section {
  background-color: #000;
  text-align: center;
}



.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18%, 1fr));
  gap: 1.5rem;
  max-width: clamp(230px, 79vw, 1200px);
  margin: 0 auto;
  margin-top: 40px;
  justify-items: center;
  align-items: center;
}
.page-builder-logos .client-logos {
    max-width: 100%;
}
.page-builder-logos .section-heading-h2 {
    font-size: clamp(40px, 3.6vw, 72px);
    margin: unset;
    max-width: 100%;
    text-align: left;
}
.logo-box {
  border:none;
}

.logo-box img {
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.logo-box:hover {
  background-color: #111;
  border-color: #555;
}

.WorkHome_Section {
  padding-bottom: clamp(40px, 10vw, 130px);
}

.work-heading {
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.work-heading span {
  color: var(--Primary-Red, #CE2121);
}

.work-description {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 130%;
}

.work-content-wrapper {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 56px;
}

.WorkItem_Image {
  transition: background-color 0.4s ease, filter 0.4s ease;
  will-change: filter, background-color;
  backface-visibility: hidden;
}
.WorkItem_Image img{
  width: 100%;
}
.WorkItem_Article:hover .WorkItem_Image {
  background-color: rgba(0, 0, 0, 0.3);
  filter: blur(8px);
}


.WorkItem_Media {
  overflow: hidden;
}

.WorkItem_Article:hover .WorkItem_Label lottie-player {
  width: 70% !important;
  height: 70% !important;
}


.WorkItem_Label_visible {
  display: flex;
}

.WorkItem_Label .WorkItem_Label__icon {
  width: 35px;
  height: 35px;
}

.WorkList_List {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  gap: 10rem;
}

.WorkItem_Wrapper {
  width: calc(50% - 5rem);
  list-style: none;
  margin: 0;
  transition: transform 0.4s ease, background-color 0.4s ease;
  will-change: transform;
  backface-visibility: hidden;
}
.no-more-case-study-found {
    position: relative;
    padding-top: 170px;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    max-width: 340px;
    margin: 0 auto;
    line-height: 140%;
}

.no-more-case-study-found::before {
  content: "";
  position: absolute;
     left: 30%;
    top: 15%;
  transform: translateY(-50%) translateX(-50%);
  width: 124px;
  height: 124px;
  background: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23BA1F31' stroke-width='2' viewBox='0 0 24 24'> <circle cx='11' cy='11' r='8'/> <line x1='21' y1='21' x2='16.65' y2='16.65'/> <line x1='8' y1='8' x2='14' y2='14'/> </svg> ") no-repeat center;
  background-size:  contain;
  animation: zoom 4s infinite ease-in-out;
}


@keyframes zoom {
  0%, 100% {transform: scale(0.6);}
  50% {transform: scale(0.8);} 
}
/* Odd items */
.WorkItem_Wrapper:nth-child(odd) {
  transform: translateY(-10px);
}

/* Even items */
.WorkItem_Wrapper:nth-child(even) {
  transform: translateY(60px);
}

/* Hover for odd items: keep original translateY */
.WorkItem_Wrapper:nth-child(odd):hover {
  transform: translateY(-10px) scale(1.02);
}

/* Hover for even items: keep original translateY */
.WorkItem_Wrapper:nth-child(even):hover {
  transform: translateY(60px) scale(1.02);
}


a.LinkSanity_Link {
  display: block;
  color: var(--color-black);
  will-change: transform;
  position: relative;
  text-decoration: none;
  opacity: 1;
}

.WorkItem_Video {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.WorkItem_Article {
  position: relative;
}

.WorkItem_Label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.WorkTags_Wrapper {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  gap: 20px;
}

.WorkItem_Article:hover .WorkItem_Label {
  opacity: 1;
  visibility: visible;
}

.WorkTags_Wrapper li {
  margin: 0;
}

.WorkItem_TextBlock {
  margin-top: 2rem;
}

.WorkItem_Title {
  margin-bottom: 4px;
}

.TextArea_Paragraph {
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: clamp(18px, 1.9vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 0;
}

.load-more-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 130px;
}

@media screen and (max-width: 900px) {
  .WorkList_List {
    flex-direction: column;
    gap: 3.5rem;
  }

  .WorkItem_Wrapper {
    width: 100%;
  }

  .WorkItem_Wrapper:nth-child(odd),
  .WorkItem_Wrapper:nth-child(even) {
    transform: translateY(0);
  }

  /* Hover for odd items: keep original translateY */
  .WorkItem_Wrapper:nth-child(even):hover {
    transform: translateY(-10px) scale(1.02);
  }

  .WorkItem_Article:hover .WorkItem_Label lottie-player {
    width: 70% !important;
    height: 70% !important;
  }

  .WorkItem_Label_visible {
    display: flex;
  }

  .WorkItem_Label .WorkItem_Label__icon {
    width: 35px;
    height: 35px;
  }

  .WorkItem_Article {
    position: relative;
  }


  .load-more-wrap {
    margin-top: 3.5rem;
  }

  .WorkItem_TextBlock {
    margin-top: 1.2rem;
  }

  .client-logos {
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
  }

  .main-menu-modal .menu-modal-inner .menu-wrapper .modal-menu {
    position: relative;
    left: 0;
    gap: 1.6rem;
    width: 100%;
  }

  .expand-menu-header-wrapper {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .main-menu-modal .menu-modal-inner .menu-wrapper .menu-item a {
    font-size: 30px;
    line-height: 100%;
    border-bottom: 2px solid rgb(0 0 0 / 0%);
  }

  .main-menu-modal .menu-modal-inner .menu-bottom {
    padding: 0;
    padding-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: baseline;
  }

}

@media screen and (max-width: 767px) {
  .work-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {

  .WorkItem_Label {
    top: 35%;
  }

  .main-menu-modal .menu-modal-inner .menu-wrapper .menu-item a {
    font-size: 24px;
  }

  #site-header .header-inner.section-inner {
    height: 56px;
  }

  .header-inner .btn-menu-header .toggle-inner .toggle-icon {
    width: 18px;
    height: 18px;
    display: flex;
  }

  .header-inner .btn-menu-header .toggle-inner .toggle-text {
    font-size: 16px;
    line-height: 18px;
    padding-top: 3px;
  }

  #site-header .header-inner .toggle {
    height: 3.4rem;
    padding: 4px 10px 6px;
  }

  .site-logo img {
    max-height: 2.5rem;
  }

  .work-content-wrapper {
    flex-direction: column;
  }

  .work-button {
    font-size: clamp(16px, 2.75vw, 18px);
    width: 100%;
    text-align: center;
    line-height: 130%;
  }

  #site-header {
    top: 20px;
  }

}


/* Landscape mode (phone sideways) */
@media screen and (max-width: 1024px) and (orientation: landscape) {
  #site-header {
    top: 10px;
    /* or adjust differently, e.g., top: 10px */
  }

  #site-header .header-inner.section-inner {
    height: 60px;
    padding: 6px 10px;
  }

  .site-logo img {
    max-height: 3rem;
  }

  #site-header .header-inner .toggle {
    height: 3.5rem;
    padding: 0 1rem;
  }

  .header-inner .btn-menu-header .toggle-inner .toggle-text {
    font-size: 16px;
    padding-top: 2px;
  }
}

@media screen and (max-width: 480px) {
  .client-logos .logo-box:last-child {
    grid-column: 3 / -3;
    /* Make it span full row */
    justify-self: center;
    /* Center the last child horizontally */
  }
}

/* Awards Section */
.awards-section-block {
  background: #F9F9F9;
}

.awards-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: auto;
  gap: 60px;
}

.awards-text-column {
  display: flex;
  flex-direction: column;
  /*   justify-content: center; */
}

.awards-heading {
  margin-bottom: 16px;
  font-family: Almarena;
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.awards-highlight {
  color: var(--Primary-Red, #CE2121);
}

.awards-description {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 130%;
  margin: 0;
}

.awards-description-wrapper {
  margin-top: 20px;
}


.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  gap: 20px;
}

.awards-grid> :last-child {
  grid-column: 1 / -1;
}

.award-card {
  background-color: #fff;
  padding: clamp(24px, 3.2vw, 50px);
  text-align: center;
}

.award-type {
  margin-bottom: 12px;
  color: var(--SH-Red, #CE2121);
  text-align: center;
  font-family: Almarena;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.award-logo {
  margin-bottom: 12px;
  text-align: center;
  justify-content: center;
  display: flex;
}

.award-logo-img {
  max-height: clamp(36px, 7.2vw, 56px);
  max-width: 100%;
}



@media (max-width: 900px) {
  .awards-section {
    grid-template-columns: 1fr;
  }

}

@media screen and (max-width: 400px) {
  .awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  }
}

.about-section {

  background-color: #ffffff;
}

.about-container {
  margin: 0 auto;
}

.about-content-wrapper {
  text-align: left;
  margin-bottom: 56px;
}

.about-heading {
  margin-bottom: 16px;
  font-family: Almarena;
  font-size: clamp(48px, 4.76vw, 86px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.about-heading span,
.about-highlight {
  color: var(--Primary-Red, #CE2121);
}

.about-title {
  color: #000000;
}

.about-description {
  margin-bottom: 40px;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 130%;
  max-width: 800px;
}



.about-images-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-image {
  width: 100%;
}

.about-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cta-section {
  background-color: var(--Primary-Red, #CE2121);
  position: relative;
  padding: 0;
  overflow: hidden;
}

.cta-container {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}

.cta-text-wrapper {
  flex: 1 1 50%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(80px, 5vw, 96px);
  padding-bottom: clamp(80px, 5vw, 96px);
  padding-right: clamp(5px, 9vw, 15rem);
}

.cta-heading {
  margin-bottom: 16px;
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.cta-description {
  margin-bottom: 40px;
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-style: normal;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 130%;
}

.cta-button {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 50px;
  border: 1px solid var(--Primary-White, #FFF);
  background: var(--Primary-White, #FFF);
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: clamp(16px, 1.2vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  padding: clamp(14px, 1.6vw, 18px) clamp(24px, 2.5vw, 40px);
}

.cta-button:hover {
  background-color: var(--Primary-Red, #CE2121);
  color: var(--Primary-White, #FFF);
  border-color: var(--Primary-White, #FFF);
  transform: translateY(-2px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-image-wrapper {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  position: relative;
}

.cta-image-wrapper:before {
  content: '';
  background: #ffffff;
  width: 100vw;
  height: 100%;
  right: 4px;
  position: absolute;
  z-index: 0;
  transform: translateX(100%);
}

.cta-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Testimonail Section Start */

.testimonial-section {
  background-color: #000;
}

.testimonial-container {
  display: flex;
  gap: 5rem;
  min-height: 300px;
  align-items: stretch;
}

.testimonial-heading-wrapper {
  flex: 1 0 0;
  width: 100%;
}

.testimonial-title {
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
  max-width: clamp(350px, 35.6vw, 680px);
}

.highlight {
  color: var(--Primary-Red, #CE2121);
  font-weight: 500;
}

.testimonial-content-wrapper {
  flex: 1 0 0;
  position: relative;
  max-width: 50%;
  border-left: 1px solid #333;
  padding-left: 40px;
}


.testimonial-brand-logo {
  margin-bottom: 20px;
}

.logo-image {
  height: 40px;
}

.testimonial-text {
  margin-bottom: 30px;
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: clamp(18px, 1.5vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: clamp(18px, 1.5vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  display: block;
  padding-bottom: 2px;
}

.author-position {
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.testimonial-navigation {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* Responive  */
@media screen and (max-width: 900px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-content-wrapper {
    max-width: 100%;
    border-left: none;
    padding-left: 0;
  }

  .testimonial-heading-wrapper {
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
  }

  .testimonial-title {
    max-width: 100%;
  }

  .cta-text-wrapper {
    padding-right: 0;
  }

  .cta-image-wrapper {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .cta-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .about-images-wrapper {
    grid-template-columns: 1fr;
  }

}

.slide-count {
  color: #FFF;
  font-family: 'Almarena';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  padding-top: 2px;
}

/* Blog Page CSS */
.recent-blog-posts {
  overflow: hidden;
  background: var(--Primary-Black, #000);
}

.single-blog-post-more-posts {
  background: #F9F9F9;
}

.recent-blog-posts .case-slider-heading {
  color: #ffff;
}

.recent-blog-posts .slider-arrow-case svg path {
  fill: #ffffff;
}

.recent-blog-posts .titleslider-case {
  color: #ffffff;
}

.blog-info .post-meta,
.recent-blog-posts .post-meta {
  margin: 0;
  display: flex;
  gap: 8px;
  margin-top: 24px;
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.single-blog-post-more-posts .case-slider-heading,
.single-blog-post-more-posts .titleslider-case {
  color: var(--Primary-Black, #000);
}

.single-blog-post-more-posts .post-meta {
  color: #606060;
}

.blog-info .post-meta {
  margin-top: 0;
  margin-bottom: 16px;
  color: #606060;
}
.single-blog-post-more-posts .slider-arrow-case svg path {
    fill: #000;
}
/* Blog Section */
/* Filter Buttons */
.filter-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.filter-tags li {
  margin: 0;
}

.filter-tags {
  scrollbar-width: none;
}

.tag-btn {
  flex: 0 0 auto;
  padding: 8px 16px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  text-decoration: none;
  text-transform: unset;
}

.tag-btn.active,
.tag-btn:hover {
  background: var(--Primary-Red, #CE2121);
  color: #fff;
  border-color: var(--Primary-Red, #CE2121);
  text-decoration: none;
  outline: none;
}

.blog-section a:hover {
  opacity: 1;
  text-decoration: none;
}

/* Title */
.blog-title {
  margin-bottom: 64px;
  margin-top: 64px;
  font-size: clamp(40px, 4.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  color: var(--Primary-Black, #000);
  font-family: Almarena;
}

.blog-title span {
  color: var(--Primary-Red, #CE2121);
}

.blog-post-banner {
  padding-top: clamp(50px, 9vw, 150px);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  row-gap: 64px;
}

/* Make first two cards span 1 column each on top */
.blog-card.wide {
  grid-column: span 2;
  min-height: 100%;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card:hover h3 {
  color: var(--Primary-Red, #CE2121);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card img {
  width: 100%;
  height: clamp(242px, 28vw, 490px);
  display: block;
  align-self: stretch;
  object-fit: cover;
}

.blog-info {
  padding: 24px 0 0;
}

.blog-info .meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.blog-info h3 {
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 0;
}

.blog-post-banner .single-case-study-title {
  font-size: clamp(42px, 4vw, 72px);
  max-width: clamp(200px, 50vw, 875px);
  font-weight: 500;
}



/* Load More Button */
.load-more {
  text-align: center;
  margin: 0 auto;
  margin-top: 64px;

}




/* Responsive Layout */
@media (max-width: 992px) {
  .blog-title {
    margin-bottom: 50px;
    margin-top: 50px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .blog-card.wide {
    grid-column: span 2;
    /* make first two posts full width on tablet */
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.wide {
    grid-column: span 1;
    /* stack on mobile */
  }

}

/* ---------------- Single Blog Page Existing CSS (kept intact) ---------------- */
.blog-post-banner .post-thumbnail {
  width: 100%;

}

.blog-post-banner .post-thumbnail .wp-post-image {
  width: 100%;
}

.content-inner-blog-post {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: clamp(80px, 5vw, 96px);
  padding-bottom: clamp(80px, 5vw, 96px);
}

.the-content-blog {
  flex: 1 0 0;
  max-width: 70%;
  padding-right: 150px;
  border-right: 1px solid rgb(96 96 96 / 10%);
}

aside.single-sidebar {
  flex: 1 0 0;
  max-width: 30%;
  position: sticky;
  top: 180px;
  align-self: flex-start;
}

.table-of-content {
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-left: 20px;
}

.table-of-content li {
  margin: 0;
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: clamp(16px, 1.5vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  position: relative;
  cursor: pointer;
}

.table-of-content li.active:before {
  content: '';
  position: absolute;
  background: #CE2121;
  width: 6px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  left: -18px;
  border-radius: 50px;
  margin-top: -1px;
  transition: all 0.3s ease;
}
.table-of-content li.active {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.the-content-blog p {
  color: var(--Secondary-Dark-Grey, #303030);
  font-family: Almarena;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 120% */
}

.the-content-blog h1,
.the-content-blog h2,
.the-content-blog h3,
.the-content-blog h4,
.the-content-blog h5,
.the-content-blog h6 {
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 120% */
  margin-bottom: 24px;
  margin-top: 40px;
}

/* ---------------- Added Enhancements ---------------- */

/* Make all blog content fully responsive and nicely styled */
.the-content-blog img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    border-radius: 6px;
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.the-content-blog a {
  color: #CE2121;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.the-content-blog a:hover {
  color: #a81818;
}

/* Lists */
.the-content-blog ul,
.the-content-blog ol {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.the-content-blog li {
position: relative;
    padding-left: 24px;
    margin: 0 0 10px 0;
    list-style: none;
    color: var(--Secondary-Dark-Grey, #303030);
    font-family: Almarena;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}


/* Blockquotes */
.the-content-blog blockquote {
  border-left: 4px solid #CE2121;
  padding-left: 16px;
  margin: 30px 0;
  font-style: italic;
  color: #444;
}



.the-content-blog li:before {
    content: '';
    position: absolute;
    background-image: url(/wp-content/uploads/2025/09/arrow-icon-red.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    top: 13px;
    transform: translateY(-50%);
    left: 0;
}

/* Code & Preformatted */
.the-content-blog code {
  background: #f5f5f5;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 16px;
  font-family: monospace;
}

.the-content-blog pre {
  background: #f5f5f5;
  padding: 16px;
  border-radius: 6px;
  overflow-x: auto;
  font-size: 16px;
  font-family: monospace;
  margin: 24px 0;
}

/* Tables */
.the-content-blog table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.the-content-blog th,
.the-content-blog td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  font-size: 18px;
}

.the-content-blog th {
  background: #f8f8f8;
  font-weight: 700;
}

/* Figures and captions */
.the-content-blog figure {
  margin: 24px 0;
  text-align: center;
}

.the-content-blog figcaption {
  font-size: 16px;
  color: #666;
  margin-top: 8px;
}

.share-buttons {
  display: flex;
  gap: 10px;
  margin-top: 50px;
}

.share-btn {
  width: 52px;
  height: 52px;
  padding: 10px;
  gap: 8px;
  cursor: pointer;
  color: #606060;
  display: flex;
  align-items: center;
  border-radius: 4px;
  background: var(--Primary-Red, #CE2121);
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.share-btn:hover {
  background: #606060;
  color: #fff;
}

.share-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.share-btn.facebook:hover {
  background: #CE2121;
  color: #fff;
}

.share-btn.linkedin:hover {
  background: #CE2121;
  color: #fff;
}

/* ---------------- Responsive Design ---------------- */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .content-inner-blog-post {
    flex-direction: column;
  }

  .the-content-blog {
    padding-right: 0;
    border-right: none;
    max-width: 100%;
  }

  aside.single-sidebar {
    /* max-width: 100%;
        margin-top: 40px; */
    display: none;
    /* Hide sidebar on tablets for better readability */
  }

  .blog-post-banner .single-case-study-title {
    max-width: 100%;
  }

  .blog-post-banner .post-thumbnail {
    width: 100%;
    margin-bottom: 0;
  }
}

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
  .the-content-blog p {
    font-size: 18px;
    line-height: 150%;
  }

  .the-content-blog h1,
  .the-content-blog h2,
  .the-content-blog h3,
  .the-content-blog h4,
  .the-content-blog h5,
  .the-content-blog h6 {
    margin-top: 32px;
    margin-bottom: 16px;
  }

  .table-of-content {
    gap: 14px;
    padding-left: 10px;
  }

}


/* .section-blog-hero {
  background-color: #fff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Helvetica Neue', sans-serif;
}

.section-blog-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-blog-hero__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.section-blog-hero__text {
  flex: 1 1 50%;
  padding-right: 40px;
}

.section-blog-hero__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-blog-hero__title-main {
  color: #000;
}

.section-blog-hero__title-highlight {
  color: #e03131;
}

.section-blog-hero__subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.section-blog-hero__button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 32px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.section-blog-hero__button:hover {
  opacity: 0.8;
}

.section-blog-hero__image-wrapper {
  flex: 1 1 40%;
  text-align: center;
}

.section-blog-hero__image {
  max-width: 100%;
  height: auto;
} */




/* .section-blog-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 1440 320'%3E%3Cpath fill='%23000' fill-opacity='1' d='M0,320L80,277.3C160,235,320,149,480,128C640,107,800,149,960,186.7C1120,224,1280,256,1360,272L1440,288L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
} */
.section-service {
  position: relative;
}

.section-grey {
  background: #F9F9F9;
  z-index: 0;
}

.section-service__container {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 6.6vw, 10rem);
  align-items: center;
  justify-content: space-between;
}

.back-section-service__icon {
  position: absolute;
  bottom: -20px;
  z-index: -1;
}

.bottom-left-icon {
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: -1;
}

.bottom-right-icon {
  position: absolute;
  bottom: -20px;
  right: 0;
  z-index: -1;
}

.section-service {
  position: relative;
}

.icon-svg-section-service {
  display: flex;
}

.section-service__image-block {
  flex: 1 1 35%;
}

.section-service__text-block {
  flex: 1 1 48%;
}

.section-service__image {
  width: 100%;
}

.section-service__title {
  margin-bottom: 20px;
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.section-service__title span {
  color: var(--Primary-Red, #CE2121);
}

.section-service__title--highlight {
  color: var(--Primary-Red, #CE2121);
}

.section-service__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  /* space between icon and text */
}

.icon-svg {
  flex-shrink: 0;
}

.section-service__description {
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: clamp(22px, 1.6vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 0;
}

.section-service__features {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;

}

.section-service__feature {
  color: #000;
  margin-bottom: 10px;
  font-family: Almarena;
  font-size: clamp(22px, 1.6vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;

}

.icon-svg {
  flex-shrink: 0;
  transform: translateY(-3px);
}

.section-service__button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.section-service__button:hover {
  background-color: #e63131;
}

.section-service__buttons .btn {
  display: inline-flex;
}

/* COLUMN REVERSE SUPPORT */
.column-reverse {
  flex-direction: row-reverse;
}


/* Service Section Home Page */
.service-section-block {
  background: #F9F9F9;
}

.service-heading-block {
  width: 100%;
}

.services-section {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  justify-content: space-between;
  align-items: flex-start;
}

.services-left {
  flex: 1 1 50%;
}

.accordion-block {
  max-width: 90%;
}

.services-title {
  margin-bottom: 16px;
  font-family: Almarena;
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  max-width: clamp(200px, 70.6vw, 920px);
  line-height: 120%;
}

.services-title span {
  color: var(--Primary-Red, #CE2121);
}

.services-subtext {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 130%;
  margin: 0;
  max-width: 600px;
}

.accordion-item {
  margin-bottom: 2rem;
  cursor: pointer;
  border-bottom: 2px solid rgb(96 96 96 / 10%);
  transition: background-color 0.3s ease;
}

/* .accordion-item.active .accordion-line {
      animation: expandLine 1.2s forwards;
    } */

@keyframes expandLine {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 130%;
}

.accordion-title span {
  opacity: 1;
  visibility: visible;
  display: flex;
  width: 30px;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
  font-family: 'Almarena';
}

.accordion-item.active .accordion-title span {
  opacity: 0;
  visibility: hidden;
}

.accordion-sub {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  margin-bottom: 0;
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease,
    padding-top 0.3s ease,
    margin-bottom 0.3s ease;

}

.accordion-item.active .accordion-sub {
  opacity: 1;
  padding-top: 3px;
  margin-bottom: -3px;
  max-height: fit-content;
}

.accordion-line {
  height: 2px;
  margin-top: 6px;
  transition: width 0.3s ease;
  margin-top: 20px;
  margin-bottom: -2px;
}


.accordion-item.active .accordion-line {
  background-color: var(--Primary-Red, #CE2121);

}


.services-buttons {
  margin-top: 3.5rem;
  display: flex;
  gap: 1rem;
}

.services-buttons button {
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid #000;
  background: #000;
  color: #fff;
  transition: all 0.3s ease;
}

.services-buttons button.outlined {
  background: #fff;
  color: #000;
}

.services-right {
  flex: 1 1 30%;
}

.service-image {
  width: 100%;
  overflow: hidden;
  transition: opacity 0.6s ease;
}

.service-image img {
  width: 100%;
  display: block;
}

.hide-on-desktop {
  display: none;
}

@media (max-width: 768px) {
  .services-section {
    flex-direction: column;
  }

  .services-left,
  .services-right {
    width: 100%;
    flex: 1 1 100%;
  }

  .accordion-block {
    max-width: 100%;
  }

  .services-right {
    display: none;
  }

  .section-service__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .accordion-item.active .service-image {
    display: block;
    margin-top: 2.5rem;
  }

}

/* Service Section Home Page END */


/* RESPONSIVE */
@media (max-width: 768px) {
  .section-service__container {
    flex-direction: column;
  }

  .section-service__image-block,
  .section-service__text-block {
    flex: 1 1 100%;
  }


}


.stats-block {
  display: flex;
  margin: 0 auto;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}



.stat-card {
  flex: 1;
  min-width: 280px;
  padding: clamp(20px, 3vw, 60px);
  /* Responsive padding: max 60px */
  border: 1px solid #F3F3F3;
  background: #FFF;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  gap: 8rem;
  min-height: clamp(280px, 26.5vw, 420px);
  will-change: transform, opacity;
  backface-visibility: hidden;

}

/* Smooth transition added */
.stat-value,
.stat-label {
  transition: all 0.3s ease-in-out;
  will-change: font-size, color;
}

.stat-value {
  font-size: clamp(48px, 3.5vw, 72px);
  font-weight: 700;
  line-height: 1.2;
}

.stat-label {
  margin-top: 8px;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 500;
  color: #606060;
  line-height: 1.2;
}

.stat-card.active .stat-value {
  font-size: clamp(56px, 6.5vw, 100px);
}

.stat-card.active .stat-label {
  color: #fff;
  font-size: clamp(16px, 1.5vw, 20px);
}



.stat-card.active {
  flex: 2;
  background-color: var(--Primary-Red, #CE2121);
  color: #fff;
  border-color: var(--Primary-Red, #CE2121);
}

.stat-icon {
  width: 56px;
  height: 56px;
}

.icon-black,
.icon-white,
.stats-lottie-player {
  transition: opacity 0.4s ease, height 0.4s ease;
  opacity: 1;
  visibility: visible;
  height: 56px;
  /* Or your actual size */
  overflow: hidden;
}

/* ICON VISIBILITY - WHITE/BLACK */
.stat-card.active .icon-black {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.stat-card.active .icon-white {
  opacity: 1;
  visibility: visible;
  height: 56px;
}

.icon-white {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

/* LOTTIE PLAYER VISIBILITY */
.stats-lottie-player {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.stat-card.active .stats-lottie-player {
  opacity: 1;
  visibility: visible;
  height: 56px;
}

.stats-lottie-player lottie-player {
  width: 100% !important;
  height: 100% !important;
}

.stats-lottie-player {
  width: 56px;
  height: 56px;
}

@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    background: #F9F9F9;
  }

  .stat-card {
    flex: unset;
    width: 100%;
    gap: 4rem;
  }

  .stat-card.active {
    flex: unset;
    width: 100%;
  }
}

/* Page Builder Hero Section */
.builder-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0;
}

.builder-hero-layout {
  width: 100%;
  height: 100%;
  position: relative;
}

.builder-hero-content-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.builder-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.builder-hero-heading {
  position: absolute;
  bottom: 80px;
  left: 80px;
  font-size: clamp(28px, 14vw, 120px);
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  z-index: 2;
  max-width: 90%;
  margin: 0;
}

.builder-work-section {
  margin-bottom: 3.5rem;
  position: relative;
}

.builder-work-content {
  margin-bottom: 6rem;
}

.builder-work-heading-wrap {
  display: inline-block;
}

.builder-work-heading {
  font-size: clamp(28px, 5vw, 48px);
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  max-width: clamp(250px, 64vw, 850px);
}

.builder-heading-svg-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(70px, 13vw, 128px);
  height: auto;
  z-index: 0;
  pointer-events: none;
  /* Optional, so it doesn't block hover */
}

.builder-heading-svg-wrap svg {
  width: 100%;
  height: auto;
}

.builder-work-categories {
  margin-bottom: 8rem;
}


.builder-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  width: 100%;
  padding-right: 20px;
  overflow: auto;
  /* or 'scroll' if needed */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
}

/* Chrome, Safari, Opera */
.builder-category-list::-webkit-scrollbar {
  display: none;
}

.builder-category-item {
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
  min-width: max-content;
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid #D7D7D7;
  background: var(--Primary-White, #FFF);
  text-align: center;
  display: flex;
  align-items: center;
  height: 36px;
}

.builder-category-item:hover {
  background-color: #eee;
}

.builder-category-item.is-active {
  border: 1px solid var(--Primary-Red, #CE2121);
  background: var(--Primary-Red, #CE2121);
  color: var(--Primary-White, #FFF);
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-wrapper {
  background: #f6f6f6;

}

.faq-header-wrap {
  margin-bottom: 40px;
}

.faq-title {
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 10px;
}

.faq-title span {
  color: var(--Primary-Red, #CE2121);
}

.faq-subtitle {
  font-size: clamp(18px, 1.9vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--Secondary-Light-Grey, #606060);
}

.faq-list {
  max-width: 100%;
  margin: auto;
}

.faq-item {
  background: #ffffff;
  margin-bottom: 10px;
  border-radius: 2px;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease, min-height 0.3s ease;
}

.faq-item.active {
  background: #000;
  color: #fff;
}

.faq-question {
  width: 100%;
  padding: 24px 20px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  text-align: left;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  text-transform: unset;
}

.faq-question-text {
  flex: 1;
  text-align: left;
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  padding-right: 34px;
}

.faq-item.active .faq-question-text {
  color: #fff;
}

.faq-icon {
  width: 30px;
  transition: transform 0.3s ease;
  display: flex;
  height: 30px;
  align-items: center;
  color: #000;
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item .minus {
  opacity: 0;
}

button.faq-question:hover,
button.faq-question:focus {
  text-decoration: none !important;
  outline: none !important;
}

.faq-item:hover button.faq-question {
  text-decoration: none !important;
}

.faq-item.active span.faq-icon {
  opacity: 1;
  visibility: visible;
}

.faq-item:hover .faq-icon {
  transform: rotate(180deg);

}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 15px;
  color: #666;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 24px;
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
  .builder-work-content {
    margin-bottom: 4.5rem;
  }

  .builder-hero-heading {
    bottom: 60px;
    left: 60px;
  }
}

@media (max-width: 768px) {

  .builder-hero-heading {
    left: 40px;
    font-size: clamp(36px, 12vw, 64px);
  }

  .builder-work-categories {
    margin-bottom: 3.5rem;
  }
	.faq-item.active .faq-answer {
  max-height: 300px;
}
}

@media (max-width: 600px) {

	.faq-item.active .faq-answer {
  min-height: 500px;
		height:100vw;
		
}
}

/* About Page Banner Section */

.block-bann-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-top: 10rem;
}

/* .about-heading {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: bold;
  margin-top:0;
} */

.highlight-text {
  color: #e00000;
}

/* .about-description {
  max-width: 700px;
  font-size: 1rem;
  color: #333;
} */

.about-button-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}


.about-image-wrapper {
  max-width: 100%;
  overflow: hidden;
  margin-top: 8rem;
}

.about-image {
  width: 100%;
  display: block;
  height: auto;
}

.about-button {
  text-align: center;
  width: fit-content;
}

/* Story Section */


.story-container {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.story-content {
  flex: 2 0 0;
}

.abt-ambition-title,
.abt-heading,
.team-heading,

.story-heading {
  font-family: Almarena;
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 3.5rem;
}


.abt-ambition-title span,
.abt-heading span,
.team-heading span,
.section-heading-h2 span,
.story-heading span {
  color: var(--Primary-Red, #CE2121);
}

.timeline {
  position: relative;
  padding-left: 0;
  margin-left: 30px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-left: -27px;
  padding-bottom: 4.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2.5px;
  background-image: repeating-linear-gradient(to bottom, #606060 0 7px, transparent 4px 12px);
  opacity: 0.15;
  z-index: -1;
}

.timeline-item:last-child::before {
  content: none;
}

.timeline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2.5rem;
  overflow: hidden;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  background: var(--Primary-Red, #CE2121);
}

.timeline-icon lottie-player {
  width: 48px !important;
  height: 48px !important;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}

.timeline-text {
  flex: 1;
}

.timeline-title {
  margin-bottom: 0.5rem;
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: clamp(28px, 2.6vw, 40px);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.timeline-description {
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: clamp(16px, 1.6vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.story-section {
  background: #F9F9F9;
}

.story-image {
  flex: 1 0 0;
  display: flex;
  justify-content: flex-end;
}

.story-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .story-container {
    flex-direction: column;
  }

  .side-heading-svg-wrap {
    display: none;
  }

  .about-image-wrapper {
    max-width: calc(100% + 80px);
    overflow: hidden;
    margin-top: 5rem;
    margin-left: -40px;
    margin-right: -40px;
  }

  .about-section {
    padding-bottom: 0;
    overflow: hidden;
  }

  .certification-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-image {
    display: none;
  }

}


/*  Team Section */



.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
  gap: 2rem;
  row-gap: 4rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.team-image{
  overflow: hidden;
}
.team-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  /* grey by default */
  /* transition: filter 0.4s ease; */
   transition: transform 0.4s ease, filter 0.4s ease;
    transform: scale(1);
}

.team-card:hover .team-image img {
     filter: grayscale(0%);
    transform: scale(1.05); /* slightly zoom in */
  /* color on hover */
}

.team-name {
  margin-top: 1.5rem;
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 0;
}

.team-role {
  margin-top: 0.3rem;
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: clamp(16px, 1.5vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 0;
}

.load-more-teams {
  text-align: center;
}

.team-info {
  text-align: left;
}

@media (max-width: 768px) {
  .about-button {
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));

    gap: 3rem;
  }
}

/* Award Section */


.certifications {
  border-top: 1px solid hsl(0deg 0% 38% / 10%);
  padding-top: 5.6rem;
  margin-top: 5.6rem;
  border-bottom: 1px solid hsl(0deg 0% 38% / 10%);
  padding-bottom: 5.6rem;
  margin-bottom: 5.6rem;
}

.certification-section {
  background: #F9F9F9;
}

.certification-heading {
  margin-bottom: 16px;
  font-family: Almarena;
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  max-width: clamp(200px, 70.6vw, 920px);
  line-height: 120%;
}

.certification-heading span {
  color: var(--Primary-Red, #CE2121);
}

.sub-heading {
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: clamp(30px, 2.6vw, 48px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
  gap: 1.5rem;
  margin-top: 5.6rem;
}

.awards .awards-grid {
  margin-top: 5.6rem;
}

.cert-card,
.award-card {
  text-align: center;
  border: 1px solid #F3F3F3;
  background: var(--Primary-White, #FFF);
  display: flex;
  padding: clamp(24px, 3.2vw, 50px);
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cert-card img,
.award-card img {
  max-height: clamp(36px, 7.2vw, 56px);
  max-width: 100%;
  margin: 0 auto;
}

.cert-type,
.award-title {
  color: var(--SH-Red, #CE2121);
  text-align: center;
  font-family: Almarena;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.cert-since,
.award-year {
  color: var(--Black, #000);
  text-align: center;
  font-family: Almarena;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1.6px;
}

/* Container */
.abt-services-section {
  background-color: #fdfdfd;

}

.abt-container {

  margin: 0 auto;
}

.abt-service-item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: center;
  padding: 24px 4px;
  /* fixed padding */
  border-bottom: 1px solid #E2E2E2;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.abt-service-item:hover {
  background: var(--Primary-Red, #CE2121);
  color: #fff;
  padding: 24px;
  border-color: var(--Primary-Red, #CE2121);
  transform: translateY(-2px);
  /* hover lift instead of padding */
}



.abt-service-item:hover .abt-disc {
  color: #ffff;
}

.abt-service-item:hover .abt-service-number,
.abt-service-item:hover .abt-service-title {
  color: #ffffff;
}


/* Service list */
.abt-service-list {
  display: flex;
  flex-direction: column;
}



.abt-service-number {

  font-family: Almarena;
  font-size: clamp(28px, 2.6vw, 40px);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: #606060;
}

.abt-service-title {
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: clamp(28px, 2.6vw, 40px);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.abt-service-desc {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.abt-disc {
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: clamp(16px, 1.5vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}


.team-grid>*:last-child.load-more-teams {
  grid-column: 1 / -1;
}

.certification-section .awards-grid> :last-child {
  grid-column: auto;
}

/* Responsive: Small devices */
@media screen and (min-width: 767px) {
  .abt-service-image {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
    width: 200px;
  }

  .abt-service-item:hover .abt-service-desc .abt-disc {
    opacity: 0;
    visibility: hidden;
    height: 0;
  }

  .abt-service-item:hover .abt-service-image {
    opacity: 1;
    visibility: visible;
    height: auto;
  }

  .abt-service-list:has(.abt-service-item:hover) .abt-disc {
    opacity: 0;
    visibility: hidden;
    height: 0;
  }

}


@media (max-width: 768px) {
  .abt-service-item {
    grid-template-columns: 50px 1fr;
    /* Remove image column */
  }

  .abt-service-desc {
    grid-column: span 2;
    /* Full width */
  }

  .abt-service-image {
    display: none !important;
    /* Hide image on small screens */
  }

  .certification-grid {
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    gap: 1.5rem;
    margin-top: 3.6rem;
  }

  .certification-section .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* Section ambition Container */
.abt-ambition-section {
  background-color: #000;
  color: #fff;
  overflow: hidden;
}




.abt-ambition-item img {
  width: 100%;
}


/* Heading */
.abt-ambition-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.abt-buttons {
  margin-top: 40px;
  display: flex;
  gap: 16px;
}

/* Decorative element */
.abt-ambition-decor {
  display: flex;
  flex-direction: column;
  align-items: center;
}




/* Grid Layout */
/* .abt-ambition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
} */
.abt-ambition-grid.slick-slider {
  padding: 50px 0 0;
}

.abt-ambition-item {
  overflow: hidden;
}

.abt-ambition-title {
  max-width: 825px;
  padding-right: 50px;
}

.abt-ambition-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.abt-ambition-grid .slick-slide {
  opacity: 1;
  transition: all 0.3s ease;
  transform: scale(1.2);
}

.abt-ambition-grid .slick-list {
  overflow: visible;
}

.abt-ambition-grid .slick-center {
  opacity: 1;
  transform: scale(0.9);
}

.abt-ambition-item img {
  width: 100%;
}

.abt-ambition-grid .slick-center:last-child {
  transform: scale(0.8) translateX(100px) translateY(-40px);

}

.abt-ambition-grid .slick-center:first-child {
  transform: scale(0.8) translateX(-100px) translateY(-40px);
}

/* Contact Page */
.hit-us-up-section {
  padding: 0;
  overflow: hidden;
}

.hit-us-up-section .block-bann-grid {
  padding: 0;
  margin: 0;
  height: fit-content;
  justify-content: stretch;
  align-items: stretch;
  gap: 0;
}

.contact-section .block-bann-grid {
  align-items: center;
  margin-bottom: 0;
  padding-top: clamp(80px, 5vw, 96px);
}

.contact-section .m-container {
  z-index: 1;
  position: relative;
}

.contact-section {
  background: #F9F9F9;
  overflow: hidden;
  position: relative;
}

.webhosting-section:before {
  content: '';
  position: absolute;
  width: 502px;
  height: 1000px;
  background: linear-gradient(180deg, #C1121F 1.92%, #669bbc00 100.72%), #242727;
  mix-blend-mode: hard-light;
  filter: blur(64px);
  top: 0;
}

.contact-info-section {
  padding: 40px 20px;
}
.contact-us-form .hs-form-frame {
    margin: 0 0 0 -40px;
}
.contact-us-form-container {
  max-width: 700px;
  padding: clamp(80px, 5vw, 120px) 0;
  padding-right: 10px;
}

.background-black .m-hero-btn-black {
  border: 1px solid var(--Primary-White, #FFF);
  background: var(--Primary-White, #FFF);
  color: #000000;
}

.background-black .about-description {
  color: #ffffff;
}

.contact-us-grid {
  flex: 1 0 0;
  height: auto;
}

.contact-info-container {
  background: var(--Primary-Red, #CE2121);
  padding: clamp(80px, 5vw, 120px) clamp(40px, 5vw, 80px);
  position: relative;
  height: 100%;
  padding-right: 32px;
}

.contact-info-container:before {
  content: '';
  background: #ce2122;
  width: 100vw;
  height: 100%;
  right: 4px;
  position: absolute;
  z-index: 0;
  transform: translateX(100%);
  top: 0;
}

.Contact-form-heading {
  font-family: Almarena;
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #000;
  margin-bottom: 0;
}

.Contact-form-heading span {
  color: var(--Primary-Red, #CE2121);
}

/* .contact-info-block {
  margin-bottom: 30px;
} */

.contact-info-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-icon {
  display: flex;
}

.contact-info-title {
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin: 0;
}

.contact-info-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  margin-top: 16px;
  gap: 20px;
}



.contact-info-office {
  margin: 0 0 5px 0;
  color: var(--Primary-White, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.32px;
}

.contact-info-address {
  color: var(--Primary-White, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.32px;
  margin: 0;
}

.contact-info-phone,
.contact-info-email {
  margin: 16px 0 0 0;
  color: var(--Primary-White, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.32px;
}

.contact-info-phone a,
.contact-info-email a {
  color: var(--Primary-White, #FFF);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin: 48px 0;
}

/* Responsive adjustments */

@media (max-width: 991px) {
  .contact-info-locations {
    grid-template-columns: repeat(auto-fit, minmax(90%, 1fr));
    gap: 16px;
  }

  .contact-section .content-grid {
    width: 100%;
  }
  .contact-us-form-container {
    max-width: 100%;
    padding-right: 0;
            padding-bottom: 20px;
}

.Contact-form-heading {
    padding: 0 40px;
}
.contact-us-form .hs-form-frame {
    margin: 0 auto;
}
}




@media (max-width: 767px) {
  .contact-section .block-bann-grid {
    flex-direction: column;
  }

  .hit-us-up-section .block-bann-grid {
    flex-direction: column;
  }

  .hit-us-up-section .contact-info-container {
    margin-left: -60px;
    margin-right: -60px;
    padding-left: clamp(60px, 4vw, 80px);
    padding-right: clamp(60px, 4vw, 80px);
    padding-top: 80px;
    padding-bottom: 80px;
  }
}



.background-white {
  background: #F9F9F9;
}

.background-black {
  background: var(--Primary-Black, #000);
  color: var(--Primary-White, #FFF);
}

/* Layout */
.abt-wave-wrap {
  position: absolute;
  width: 100%;
  overflow: hidden;
  background: transparent;
  bottom: 0;
  max-height: 440px;
  opacity: 0.7;
}

.abt-wave-bg {
  display: block;
  width: 100%;
  pointer-events: none;
  /* purely decorative */
}

.abt-wave-bg svg {
  display: block;
  width: 140%;
  /* a bit wider so motion doesn’t clip */
  max-width: none;
  transform: translateX(-10%);
}

/* Core wave animation: gentle vertical bob + tiny horizontal drift */
@keyframes abt-wave-bob {
  0% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-6px) translateX(6px);
  }

  100% {
    transform: translateY(0) translateX(0);
  }
}

/* Apply to all paths */
.abt-wave-bg svg path {
  animation: abt-wave-bob 8s ease-in-out infinite;
  will-change: transform;
}

/* Staggered phases for parallax feel */
.abt-wave-bg svg path:nth-child(odd) {
  animation-duration: 9s;
  animation-delay: -1.2s;
}

.abt-wave-bg svg path:nth-child(3n) {
  animation-duration: 10s;
  animation-delay: -2.0s;
}

.abt-wave-bg svg path:nth-child(4n) {
  animation-duration: 7.5s;
  animation-delay: -0.8s;
}

.abt-wave-bg svg path:nth-child(5n) {
  animation-duration: 11s;
  animation-delay: -1.6s;
}

/* Optional: subtle overall float of the whole SVG */
@keyframes abt-wave-float {
  0% {
    transform: translateX(-10%) translateY(0);
  }

  50% {
    transform: translateX(-8%) translateY(-4px);
  }

  100% {
    transform: translateX(-10%) translateY(0);
  }
}

.abt-wave-bg svg {
  animation: abt-wave-float 14s ease-in-out infinite;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  .abt-wave-bg svg,
  .abt-wave-bg svg path {
    animation: none !important;
    transform: none !important;
  }
}

/* Agency Calcultor */

.roi-calculator {
  background: #F9F9F9;
  overflow: hidden;
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.calc-block-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.calc-header-col {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 48px;
  position: relative;
}

.calc-toggle-buttons {
  display: flex;
  gap: 2rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgb(96 96 96 / 10%);
  max-width: 600px;
  width: 70vw;
}

.calc-toggle-buttons button {
  border: 1px solid #D7D7D7;
  background: var(--Primary-White, #FFF);
  text-transform: inherit;
}

.story-heading.calc-heading {
  margin-bottom: 0;
}

.btn.active {
  border: 1px solid var(--Primary-Red, #CE2121);
  background: var(--Primary-Red, #CE2121);
  color: #ffff;
}

.calc-field__label {
  position: relative;
  margin: 0;
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  /* 121.429% */
}

/* For Chrome, Safari, Edge */
.calc-field__label .calc-field__input::-webkit-outer-spin-button,
.calc-field__label .calc-field__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
.calc-field__label .calc-field__input[type=number] {
  -moz-appearance: textfield;
}

.calc-field__label .calc-field__suffix {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: #AEAEAE;
  font-family: Almarena;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.calc-field__label .calc-field__input {
  border: 1px solid #F0F0F0;
  background: var(--Primary-White, #FFF);
  display: flex;
  padding: 16px 30px 16px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  appearance: none;
  margin-top: 6px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.calculator-result {
  display: flex;
  justify-content: center;
  align-items: center;
}

.roi-panel {
  border: 1px solid #F0F0F0;
  background: var(--Primary-White, #FFF);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(44%, 1fr));
  gap: 2rem;
  row-gap: 2rem;
  width: 100%;
  max-width: clamp(450px, 39.65vw, 560px);
  height: 94%;
  align-items: stretch;
}

.roi-title {
  grid-column: 1 / -1;
}

.roi-title__heading {
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-style: normal;
  line-height: 48px;
  /* 120% */
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 50px;
}

.calculator-result {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.roi-panel__item {
  display: flex;
  flex-direction: column-reverse;
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: clamp(16px, 1.65vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  gap: 4px;
  justify-content: flex-end;
}

.roi-panel__value {
  color: var(--Primary-Red, #CE2121);
  font-family: Almarena;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  /* 120.833% */
}

.roi-panel .roi-panel__item:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(100% + 80px);
  text-align: center;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 0.9rem;
  padding: 20px 40px;
  background: var(--Primary-Black, #000);
  color: #ffff;
  margin: 120px -40px -40px;
}

.roi-panel .roi-panel__item:last-child {
  font-size: 24px;
}

.roi-panel .roi-panel__item:last-child #lg_netProfit {
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

.mob-li {
  display: none;
}

.desk-li,
.mob-li {
  grid-column: 1 / -1;
  opacity: 0.1;
  background: #606060;
  width: 100%;
  height: 1px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .abt-ambition-grid {
    grid-template-columns: 1fr;
    display: grid;
    row-gap: 8px;
    padding-left: clamp(20px, 4vw, 80px);
    padding-right: clamp(20px, 4vw, 80px);
  }

  .calc-wrapper {
    grid-template-columns: 1fr;
  }

  .roi-panel {
    padding: 40px 24px;
    grid-template-columns: 1fr;
    gap: 16px;
    row-gap: 24px;
    width: 100%;
    max-width: 100%;
  }

  .calc-header-svg {
    position: absolute;
    right: -80px;
    display: block;
  }

  .calc-toggle-buttons button {
    padding: 5px 10px;
  }

  .mob-li {
    display: block;
  }

  .desk-li {
    display: none;
  }

  .roi-panel .roi-panel__item:last-child {
    width: calc(100% + 50px);
    padding: 20px 24px;
    margin-top: 24px;

  }

  .abt-ambition-circle-svg {
    position: absolute;
    top: 40px;
    right: -45px;
    width: 122.463px;
  }

  .roi-title__heading {
    margin-bottom: 36px;
  }
}

@media (max-width: 600px) {
  .abt-ambition-header {
    flex-direction: column;
    align-items: flex-start;
  }


  .abt-ambition-grid {
    grid-template-columns: 1fr;
  }

  .calc-toggle-buttons {
    width: 100%;
  }

  .calc-header-svg svg {
    width: 80%;
    margin-right: -20px;
  }

  .calc-toggle-buttons {
    gap: 8px;
    padding-bottom: 3rem;
  }

  .calc-block-grid {
    gap: 2rem;
  }
}

@media (max-width: 490px) {
  .calc-block-grid {
    max-width: 390px;
  }
}


/* Single Case Study Page */
.case-study-banner-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 90px;
  padding-bottom: 50px;
}

.case-study-banner {
  padding-top: 150px;
}

.case-study-banner-content {
  flex: 1 0 0;
}

.case-study-banner-meta {
  display: flex;
}

.caseside-image {
  display: flex;
}

.caseside-image svg {
  width: 100%;
}

.case-study-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case-study-banner-inner .post-meta {
  margin: 0;
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  gap: 6px;
  margin-top: 16px;
}

.case-study-banner-inner .post-meta svg {
  display: flex;
  margin-right: -5px;
}

.case-study-categories li {
  margin: 0;
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  margin-bottom: 16px;
}

.single-case-study-title {
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: clamp(48px, 6vw, 94px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 120% */
}

.single-case-discription>* {
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: clamp(20px, 1.5vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 120.833% */
  margin: 0;
}

.single-case-discription {
  margin-top: 8px;
}

.case-study-banner .post-thumbnail {
  width: 100%;
}

.case-study-banner .post-thumbnail img {
  width: 100%;
}

.media-and-text-section {
  padding-bottom: 0;
}

.media-and-text-section:last-child {
  padding-bottom: clamp(80px, 5vw, 96px);
}

.media-and-text-heading {
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: clamp(32px, 3vw, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.media-and-text {
  color: var(--Secondary-Dark-Grey, #303030);
  font-family: Almarena;
  font-size: clamp(16px, 1.8vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 0;
}
.media-and-text-wrapper p,
.media-and-text-wrapper p *,
.media-and-text-wrapper li,
.media-and-text-wrapper li * {
  color: var(--Secondary-Dark-Grey, #303030);
  font-family: Almarena, sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

/* Paragraphs → no extra bottom space */
.media-and-text-wrapper p {
  margin-bottom: 0;
}

/* Lists → no extra space after the whole list */
.media-and-text-wrapper ul,
.media-and-text-wrapper ol {
  margin-bottom: 1.25rem;
  padding-left: 1.25rem; /* indentation for bullets/numbers */
  margin-left: 1.25rem;
}

/* List items → spacing between them */
.media-and-text-wrapper li {
  margin-bottom: 8px;
}

/* Last list item → no extra gap */
.media-and-text-wrapper li:last-child {
  margin-bottom: 0;
}

.media-and-text-wrapper {
  max-width: 777px;
  margin-bottom: 40px;
}

.media-and-text-image img {
  margin: 0 auto;
}

.media-and-text-image-wrapper {
  background: #F9F9F9;
  padding: 70px;
  min-height: 45vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-study-heading {
  display: flex;
  align-items: self-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 56px;
}

.slider-arrow-case {
  display: flex;
  align-items: center;
  gap: 10px;
}

.next-case-study,
.previous-case-study {
  opacity: 1;
  cursor: pointer;
}

.previous-case-study.disabled,
.next-case-study.disabled {
  opacity: 0.3;
  cursor: default;
}

.case-slider-heading {
  margin-bottom: 16px;
  font-family: Almarena;
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 0;
}

.case-slider-heading span {
  color: var(--Primary-Red, #CE2121);
}

.case-slide {
  padding: 0 20px 0 0;
}

.case-slide img {
    width: 100%;
    height: 100%;
    min-height: 309px;
    object-fit: cover;
}

.titleslider-case {
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: clamp(20px, 1.5vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 120.833%;
  margin: 24px 0 0;
  text-decoration: none;
}

.slider-discr-case {
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  display: block;
  margin-top: 8px;
}

.recent-case-studies {
  background: #F9F9F9;
  overflow: hidden;
}

.case-slide a {
  text-decoration: none;
}


.case-studies-slider .slick-list {
  overflow: visible;
}

.mobile-only {
  display: none;
}

@media(min-width: 991.99px) {
	
.case-slide img { 
    min-height: 424px;
}
}
@media(max-width: 991px) {
	
.case-slide img { 
    min-height: 335px;
}
}

@media(max-width: 768px) {
  .media-and-text-image-wrapper {
    padding: 40px 16px;
    min-height: 75vw;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
.media-and-text-image{
  width: 100%;
}
  .media-and-text-image img {
    margin: 0 auto;
    width: 100%;
  }

  .case-study-banner-meta {
    display: none;
  }

  .case-study-banner {
    padding-top: 80px;
  }

  .slider-arrow-case {
    display: none;
  }
	.case-slide img {
    min-height: 250px;
}
}
@media (max-width: 600px) {
    .case-slide img {
        min-height: 380px;
    }
}

/*=========
 Web Hosting Page CSS  Start
 ========*/

.host-section {
  margin: auto;
  background: #0F1010;
}

.host-heading {
  margin-bottom: 40px;
  font-family: Almarena;
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  background: linear-gradient(89deg, #FFF 0.94%, rgba(153, 153, 153, 0.64) 69.54%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 39%;
}

.icon-plus-crt {
  display: flex;
  position: absolute;
  left: 37px;
  top: 57.563px;
}

.icon-plus-brt {
  position: absolute;
  right: 36px;
  bottom: 50px;
}

/* --- Card container --- */
.host-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(24%, 1fr));
  gap: 0px;
  background-color: #222;
}

.webhosting-section .about-heading {
  background: linear-gradient(89deg, #FFF 0.92%, rgba(153, 153, 153, 0.64) 122.41%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 777px;
  margin-bottom: 40px;
}

.webhosting-section .side-heading-image-wrap {
  flex: 1 0 0;
  max-width: 650px;
}

.content-grid {
  flex: 1 0 0;
}

.webhosting-section .about-heading span {
  background: linear-gradient(89deg, #ce2121 0.92%, #ce2121 122.41%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Individual card --- */
.host-card {
  background-color: #0f0f0f;
  justify-content: flex-start;
  transition: background-color 0.3s ease;
  margin: 1px;
  margin-right: 0;
  display: flex;
  padding: 56px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.host-card:hover {
  background-color: #111;
}

.host-card-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.host-card-title {
  margin-bottom: 16px;
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
}

.host-card-text {
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* --- Active card (last card) --- */
.host-card-active {
  background-color: #c41515 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.host-card-active a {
  color: #fff;
  text-decoration: none;
}

.host-card a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 120% */
  text-decoration: none;
  transition: color 0.3s ease;
}

.host--arrow {
  display: flex;
  transition: transform 0.3s ease;
}

/* Hover effect */
.host-card a:hover {
  color: #f5f5f5;
  /* slightly brighter white */
}

.host-card a:hover .host--arrow {
  transform: translateX(4px);
  /* arrow slides right */
}

.host-card-active:hover {
  background-color: #a91212 !important;
}

/* Responsive text */
@media (max-width: 991px) {
  .host-card-container {
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  }

  .host-card {
    padding: 40px 24px;
    align-self: stretch;
    min-height: 310px;
    margin-right: 1px;
  }

  .host-heading {
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .host-heading {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .host-card-container {
    grid-template-columns: 1fr;
  }
}

/* Section Headings */
.host-fet-heading {
  text-align: center;
  font-family: Almarena;
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  background: linear-gradient(89deg, #FFF 0.94%, rgba(153, 153, 153, 0.64) 69.54%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}

.host-fet-light {
  color: #ccc;
}

/* Clients Section */

.host-fet--section {
  background: var(--Primary-Black, #000);
}

.host-fet-features-bg {
  width: 100%;
  min-height: 40px;
  max-height: 320px;
}

.host-fet-features-section,
.host-fet-clients-section .m-container {
  z-index: 1;
  position: relative;
}

.svgbgdark {
  width: 100%;
  transform: translateY(-30px);
  z-index: 1;
  position: relative;
}

.host-fet-clients-grid {
  display: grid;
     grid-template-columns: repeat(auto-fit, minmax(18%, 1fr));
    gap: 1.5rem;
    justify-items: center;
    max-width: 100%;
  margin: auto;
}

.host-fet-client-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.host-fet-client-box img {
  filter: brightness(0) invert(1);
}

/* Features Section */


.host-fet-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.host-fet-feature-card {
  transition: background 0.3s ease;
  display: flex;
  padding: 40px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  background: #0F1010;
}

.host-fet-feature-card:hover {
  background: #1a1a1a;
}

.features-title {
  display: inline-flex;
  text-align: left;
}

.host-fet-icon {
  justify-content: center;
  border-radius: 50%;
  display: flex;
  width: 61px;
  height: 61px;
  padding: 1px;
  align-items: center;
  gap: 8px;
  background: var(--Primary-Red, #CE2121);
}

.host-fet-title {
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  margin: 0;
}

.host-fet-desc {
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .host-fet-features-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media screen and (max-width: 600px) {
  .host-fet-features-grid {
    grid-template-columns: 1fr;
  }

}



.about-his-section {
  background: #F9F9F9;
}

.about-his-title {
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 50px;
}

.about-his-title span {
  color: var(--Primary-Red, #CE2121);
}

.about-his-desc {
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: clamp(28px, 2.2vw, 36px);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 121.875% */
  margin: 0;
}

.about-his-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
}

.about-his-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.about-his-author-info h4 {
  margin: 0;
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 120% */
}

.about-his-author-info p {
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  margin: 0;
}

/* Responsive */


/* Hero section */
.site-man-hero {
  background: #0F1010;
  overflow: hidden;
}

.site-man-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.site-man-content {
  flex: 1 0 0;
  max-width: 520px;
  z-index: 1;
}

.site-man-heading {
  margin-bottom: 40px;
  font-family: Almarena;
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  background: linear-gradient(89deg, #FFF 0.94%, rgba(153, 153, 153, 0.64) 69.54%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-man-heading span {
  color: var(--Primary-Red, #CE2121);
  background: linear-gradient(89deg, #ce2121 0.94%, #ce2121 69.54%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ce2121;
}

/* Accordion */
.site-man-accordion {
  margin-bottom: 20px;
}

.site-man-item {
  border-bottom: 1px solid #444;
}

.site-man-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--Primary-White, #FFF);
  text-align: center;
  font-family: Almarena;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  position: relative;
  padding: 32px 0;
}

.site-man-icon {
  font-size: 40px;
  font-weight: 300;
  position: absolute;
  transition: transform 0.3s ease;
  /* adds smooth movement if needed */
}

.grid-accordion-image {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.accordian-icon {
  position: relative;
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* Plus/Minus icon animation */
.site-man-item .minus-icon,
.site-man-item .plus-icon {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-man-item .minus-icon {
  opacity: 0;
  visibility: hidden;
}

.site-man-item.active .plus-icon {
  opacity: 0;
  visibility: hidden;
}

.site-man-item.active .minus-icon {
  opacity: 1;
  visibility: visible;
}

.site-man-item.active .site-man-title {
  padding-bottom: 0;
}

/* Optional: rotate icon when active */
.site-man-item.active .accordian-icon {
  transform: rotate(180deg);
}

.site-man-desc {
  max-height: 0;
  /* start collapsed */
  overflow: hidden;
  /* hide content while collapsed */
  opacity: 0;
  /* make invisible initially */
  margin-top: 0;
  /* will animate this too */
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease,
    margin-top 0.4s ease;
}

.site-man-item.active .site-man-desc {
  max-height: 300px;
  /* big enough to fit the content */
  opacity: 1;
  margin-top: 16px;
  /* space after the content */
  margin-bottom: 32px;
  /* space after the content */
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease,
    margin-top 0.4s ease,
    margin-bottom 0.4s ease;
}

.site-man-item:last-child {
  border-bottom: none;
}

/* Button */
.site-man-btn {
  cursor: pointer;
  justify-content: center;
  width: 100%;
}

/* Right image */
.site-man-image {
  flex: 1 0 0;
  display: flex;
  justify-content: center;
  max-width: 800px;
}

.site-man-image:before {
  content: '';
  background: linear-gradient(127deg, #c1121fb3 19.18%, #669BBC 122.41%);
  mix-blend-mode: hard-light;
  filter: blur(100px);
  border-radius: 29px 29px 0 0;
  width: 100%;
  height: 100%;
  max-width: 860px;
  max-height: 100%;
  flex-shrink: 0;
  top: 100px;
  right: 0;
  position: absolute;
}

.site-man-image img {
  position: absolute;
  max-width: clamp(400px, 48vw, 780px);
  height: auto;
  right: -4px;
  bottom: -4px;
  border-radius: 29px 0 0 0;
  box-shadow: 0 0 4px 0.5px #AAA inset;
  padding: 4px;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .site-man-container {
    flex-direction: column;
    text-align: center;
  }

  .site-man-content {
    max-width: 100%;
    margin-bottom: 30px;
  }


  .host-fet-clients-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-accordion-image {
    flex-direction: column;
  }

  .site-man-image img {
    right: -35px;
    bottom: -5px;
    width: calc(100% + 50px);
    position: relative;
    max-width: calc(100% + 50px);
    z-index: 2;
    object-fit: contain;
    border-radius: 20px 0 0 0;
    box-shadow: 0 0 1px 0.5px #AAA inset;
    padding: 1px;
  }

  .site-man-hero {
    padding-bottom: 0;
  }

  .site-man-image:before {
    height: 500px;
    top: unset;
    bottom: 0;
    z-index: 0;
  }
}




.quet-header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}



.plans-heaidng {
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: clamp(40px, 3.6vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 0;
}

.plans-heaidng span {
  color: var(--Primary-Red, #CE2121);
}

.plans-disc {
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: clamp(16px, 1.6vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.content-hosting-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Toggle Switch */
.quet-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.quet-toggle span {
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.quet-switch {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 36px;
  margin-bottom: 0;
}

.quet-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.quet-slider {
  position: absolute;
  cursor: pointer;
  background-color: #F1F1F1;
  border-radius: 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
}

.quet-slider:before {
  content: "";
  position: absolute;
  height: 31px;
  width: 31px;
  left: 4px;
  bottom: 2px;
  background-color: var(--Primary-Red, #CE2121);
  border-radius: 50%;
  transition: 0.4s;
}

.quet-switch input:checked+.quet-slider {
  background-color: var(--Secondary-Dark-Grey, #303030);
}

.quet-switch input:checked+.quet-slider:before {
  transform: translateX(32px);
}


/* ===== Desktop Layout ===== */
.quet-desktop {
  display: block;
}

.quet-pricing-desktop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #EAEAEA;
  border-left: 1px solid #EAEAEA;
  border-right: 1px solid #EAEAEA;
  border-bottom: 0;
}

.quet-plan {
  padding: 34px;
  border-left: 1px solid #EAEAEA;
}

.quet-plan:first-child {
  border-left: 0;
}

.quet-plan:last-child {
  border-right: 0;
}

.quet-price {
  color: var(--Primary-Red, #CE2121);
  font-family: Almarena;
  font-size: clamp(32px, 1.8vw, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 24px;
  text-align: left;
}

.quet-price span {
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: clamp(16px, 1.7vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.price-plane-heading {
  color: var(--Secondary-Light-Grey, #606060);
  font-family: Almarena;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 12px;
}

.quet-features-desktop {
  border: 1px solid #EAEAEA;
  border-top: none;
}

.quet-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid #EAEAEA;
  align-items: center;
  text-align: center;
}

.quet-row-head>div {
  font-weight: 700 !important;
}

.quet-check {
  color: #0a0;
  font-weight: bold;
	min-width: 25px;
}

.quet-col-feature {
  text-align: left;
}

.quet-col-feature,
.quet-col-standard,
.quet-col-premium {
  color: var(--Primary-Black, #000);
  font-family: Almarena;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 120% */
  display: flex;
  padding: 15px 24px;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.quet-col-standard {
  border-right: 1px solid #EAEAEA;
  border-left: 1px solid #EAEAEA;
}

.quet-row {
  background: #fbfbfb;
  /* default background */
}

.quet-row:nth-child(odd) {
  background: #FFFFFF;
  /* white for odd rows */
}

.quet-row-head .quet-col-standard:last-child {
  border-left: 0;
  border-right: 0;
}

.quet-row:nth-child(even) {
  background: #fbfbfb;
  /* light gray for even rows */
}

/* ===== Mobile Layout ===== */
.quet-mobile {
  display: none;
}

.quet-pricing-mobile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #ebebeb;
  margin-bottom: 24px;
}

.quet-features-mobile {
  margin-top: 36px;
}

.quet-features-mobile .quet-row-head h3 {
  font-weight: 600;
  font-size: clamp(16px, 4.1vw, 20px);
}

.quet-feature-item {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ebebeb;
  padding: 10px 20px 10px 0;
  font-size: 16px;
  align-items: center;
  line-height: 120%;
}

.quet-pricing-mobile .quet-plan-standard {
  padding: 16px;
  position: relative;
}

.quet-pricing-mobile .quet-plan-standard.active {
  border: 1px solid #CE2121;
  background: var(--Primary-Red, #CE2121);
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  position: relative;

}


.quet-pricing-mobile .quet-plan-standard.active .quet-price {
  color: var(--Primary-White, #FFF);
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}


.quet-pricing-mobile .quet-plan-standard.active .price-suffix {
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: 16px;
  line-height: 110%;
}

.quet-plan.quet-plan-standard.active:before {
  content: '';
  border-top: 15px solid #ce2122;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  bottom: -15px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.quet-mobile .quet-btn {
  width: 100%;
  justify-content: center;
}

/* ===== Responsive Visibility ===== */
@media(min-width: 769px) {
  .quet-desktop {
    display: block;
  }

  .quet-mobile {
    display: none;
  }
}

@media(max-width: 768px) {
  .quet-desktop {
    display: none;
  }

  .quet-mobile {
    display: block;
  }

  .quet-header {
    gap: 24px;
    margin-bottom: 56px;
    flex-direction: column;
  }
}



/* Section Layout */
.money-back-wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.money-back-section {
  position: relative;
  background-color: #0F1010;
  /* Section background */
  z-index: 0;
}

.money-back-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* Vertical lines (4) */
    linear-gradient(to right, #303030 1px, transparent 1px) 5% 0,
    linear-gradient(to right, #303030 1px, transparent 1px) 27.5% 0,
    linear-gradient(to right, #303030 1px, transparent 1px) 50% 0,
    linear-gradient(to right, #303030 1px, transparent 1px) 72.5% 0,
    linear-gradient(to right, #303030 1px, transparent 1px) 95% 0,
    /* Horizontal lines (2) */
    linear-gradient(to bottom, #303030 1px, transparent 1px) 0 52.5%,
    linear-gradient(to bottom, #303030 1px, transparent 1px) 0 71.2%;
  background-repeat: no-repeat;
  background-size:
    1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%,
    /* vertical */
    100% 1px, 100% 1px;
  /* horizontal */
  z-index: -1;
}


/* Left Content */
.money-back-content {
  display: flex;
  justify-content: space-between;
}

.money-back-title {
  color: #FFF;
  font-family: Almarena;
  font-size: clamp(40px, 6vw, 80px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 0;
}

.money-back-title span {
  color: var(--Primary-Red, #CE2121);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.feature {
  color: var(--base-white, #FFF);
  font-family: Almarena;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  align-self: stretch;
  min-height: 120px;
}

.View-Hosting-Plans {
  border-radius: 999px;
  border: 1px solid var(--Primary-White, #FFF);
  background: var(--Primary-White, #FFF);
  color: var(--Primary-Black, #000);
  display: inline-flex;
}

/* Right Graphic */
.money-back-graphic {
  flex: 0 1 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.red-circle {
  width: 100px;
  height: 100px;
  background: #d92121;
  border-radius: 50%;
}

.arrows {
  position: absolute;
  top: 10%;
  right: 0;
  font-size: 20px;
  line-height: 24px;
}

.plus-signs {
  position: absolute;
  bottom: 10%;
  right: 30%;
  font-size: 18px;
  line-height: 20px;
}

/* Responsive Typography */
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .money-back-section::before {
    background: none;

  }

  .feature {
    min-height: 60px;
    border: 1px solid #303030;
    border-bottom: 1px solid #303030;
  }

  .feature:last-child {
    border-bottom: 1px solid #303030;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .View-Hosting-Plans {
    justify-content: center;
    width: 100%;
  }


  .money-back-wrapper {
    gap: 56px;
  }


}





/* Web Hosting Page End */
/* Footer CSS  */
footer#site-footer {
  background: var(--Primary-Black, #000);
  padding-top: clamp(40px, 5vw, 96px);
  padding-bottom: 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-logo img {
  max-width: 160px;
  width: 100%;
  height: auto;
}

.footer-logo-wrap {
  width: 100%;
  display: inline-block;
}

.footer-links {
  display: flex;
  gap: clamp(40px, 6.5vw, 80px);
  flex-wrap: wrap;
  flex: 1 0 0;
  max-width: 530px;
}

.footer-links .link-block {
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 110%;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-flex;
  width: fit-content;
  border-bottom: 2px solid transparent;
}

.footer-links a:hover {
  color: var(--Primary-Red, #CE2121);
  text-decoration: none !important;
  border-color: var(--Primary-Red, #CE2121);
}

.footer-contact {
  max-width: 500px;
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-contact address a,
.footer-contact address {
  color: var(--Primary-White, #FFF);
  font-family: 'Almarena';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.4px;
  margin-bottom: 0;
}

.footer-contact .footer-email {
  color: var(--Primary-Red, #CE2121);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 400;
  display: inline-block;
  margin-bottom: 10px;
  text-decoration: underline;
  transition: color 0.3s ease;
  margin-bottom: 0;
}

.footer-contact .email:hover {
  color: #fff;
}

.footer-contact p {
  margin: 10px 0;
  line-height: 1.5;
  font-size: 16px;
}

#site-footer .social-icons {
  display: flex;
  gap: 0;
  margin-top: 0;
}

#site-footer .social-icons a {
  color: #fff;
  font-size: 24px;
  transition: transform 0.3s ease, color 0.3s ease;
  background-color: transparent;
}

#site-footer .social-icons a:hover {
  transform: scale(1.2);
  color: #e53935;
}

.footer-bottom {
  border-top: 1px solid #333;
  font-size: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  padding: 6rem 0;
}

.footer-bottom a {
  transition: color 0.3s ease;
  border-left: 1.5px solid var(--Secondary-Dark-Grey, #303030);
  padding-left: 8px;
  padding-right: 8px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: var(--Primary-White, #FFF);
  font-family: Almarena;
  font-size: clamp(14px, 1.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 19.6px */
}

.footer-logo-mask {
  padding: 0 20px 1px 20px;
}

.footer-bottom p {
  padding-right: 8px;
}

.footer-bottom a:hover {
  color: #e53935;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-links {
    gap: 40px;
  }

  .footer-bottom p {
    padding-right: 0;
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 6px;
  }

  .footer-bottom {
    padding: 2rem 0;
    justify-content: flex-start;
  }

  .footer-bottom a:nth-of-type(1) {
    border-left: 0;
    width: fit-content;
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

}