/* =========================================================================
   VARIABLES & GLOBAL RESETS
   ========================================================================= */
@import url("fonts.css");

:root {
  --primary-color: #ff790b;
  /* Orange accent */
  --primary-hover: #e86b00;
  --text-dark: #58595b;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  /* Light gray background */
  --bg-white: #ffffff;
  --border-color: #e5e5e5;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
  --transition-speed: 0.3s;
  --radius-xs: 8px;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-reveal: all 1s cubic-bezier(0.19, 1, 0.22, 1);

  --font-heading: "Arimo", sans-serif;
  --font-body: "Poppins", sans-serif;
}

/* =========================================================================
   ANIMATIONS & REVEAL SYSTEM
   ========================================================================= */
.reveal.reveal-init {
  opacity: 0;
  transition: var(--transition-reveal);
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-down {
  transform: translateY(-40px);
}

.reveal-left {
  transform: translateX(40px);
}

.reveal-right {
  transform: translateX(-40px);
}

.reveal-scale {
  transform: scale(0.9);
}

.reveal.revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Staggered delays for children */
.reveal-stagger>*:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal-stagger>*:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal-stagger>*:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal-stagger>*:nth-child(4) {
  transition-delay: 0.4s;
}

.reveal-stagger>*:nth-child(5) {
  transition-delay: 0.5s;
}

.reveal-stagger>*:nth-child(6) {
  transition-delay: 0.6s;
}

/* Hero Specific Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content-animate {
  animation: fadeInUp 1s ease forwards;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed) ease;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* =========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  user-select: none;
  font-family: var(--font-heading);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: all 0.25s ease-in-out;
}

.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title:hover::after {
  width: 100%;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-weight: 600;
  border-radius: var(--radius-xs);
  border: none;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 121, 11, 0.3);
  color: var(--bg-white);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

/* =========================================================================
   HEADER & NAVIGATION
   ========================================================================= */
header {
  background-color: var(--bg-white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-speed);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.scrolled {
  padding: 0;
  box-shadow: var(--shadow-soft);
}

header.scrolled .nav-container {
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  height: auto;
}

.logo::after,
.footer-logo::after {
  content: "\2122";
  position: absolute;
  bottom: 10px;
  right: -12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.logo::after {
  color: var(--text-dark);
}

.footer-logo::after {
  color: #fff;
}

.brand-logo {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;
  margin-right: 30px;
}

.nav-menu>li {
  position: relative;
}

.nav-link {
  font-weight: 600;
  padding: 10px 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 220px;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-speed);
  padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  transition: background var(--transition-speed);
}

.dropdown-menu li a:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero-slider {
  width: 100%;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .hero-slider {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 500px;
  }
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .slide-inner .conatiner {
  position: relative;
}

.hero-slider .slide-inner .container .slide-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: transparent;
  background-image: none !important;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid #d4d3d3;
  border-radius: 55px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Force hide Swiper's default font icons in newer versions */
.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
  display: none !important;
  content: "" !important;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {

  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
  font-family: "Font Awesome 6 Free";
  content: "\f060";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: left;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 0.3;
  background: #fff;
  transition: all 0.2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
}

/* @media screen and (min-width: 992px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
  .hero-slider .swiper-pagination-custom,
  .hero-slider .swiper-pagination-fraction {
  }
} */

.swiper-pagination {
  text-align: left;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 50px;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 767px) {
  .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 30px;
  }
}

/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/
.hero-style {
  margin-top: 90px;
  height: calc(100vh - 90px);
  transition: all 0.4s ease;
}

.hero-style i.fa-chevron-circle-right {
  height: 22px;
  width: 22px;
}

@media (max-width: 991px) {
  .hero-style {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-style {
    height: 500px;
  }
}

@media screen and (min-width: 992px) {
  .hero-style .container {
    padding-top: 95px;
  }
}

/* .hero-style .slide-title,
.hero-style .slide-btns {
  max-width: 690px;
} */

.hero-style .slide-title h1,
.hero-style .slide-title h2 {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  text-transform: capitalize;
  transition: all 0.4s ease;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1199px) {

  .hero-style .slide-title h1,
  .hero-style .slide-title h2 {
    font-size: 50px;
  }
}

@media (max-width: 991px) {

  .hero-style .slide-title h1,
  .hero-style .slide-title h2 {
    font-size: 50px;
    margin: 0 0 35px;
  }
}

@media (max-width: 767px) {

  .hero-style .slide-title h1,
  .hero-style .slide-title h2 {
    font-size: 35px;
    margin: 0 0 20px;
  }
}

.hero-style .slide-text p {
  opacity: 1;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: normal;
  color: #ffffff;
  margin: 0 0 40px;
  transition: all 0.4s ease;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .hero-style .slide-text p {
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    margin: 0 0 20px;
  }
}

.hero-style .slide-btns>a:first-child {
  margin-right: 10px;
}

.hero-style .slide-btns>a {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
}

.hero {
  margin-top: 90px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.hero .container {
  padding: 60px 0;
}

.hero h1,
.hero p {
  color: var(--bg-light);
}

/* =========================================================================
   CRAFTING THE DYNAMIC CONCEPT SECTION
   ========================================================================= */
.crafting-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.crafting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.crafting-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 25px;
  letter-spacing: 1px;
  line-height: 1.3;
}

.crafting-text {
  padding-right: 80px;
  border-right: 1px solid #ddd;
}

.crafting-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: justify;
}

.crafting-stats {
  padding-left: 40px;
}

.crafting-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.crafting-stat-item {
  text-align: center;
  padding: 10px 0;
  width: max-content;
  margin: auto;
}

.crafting-stat-number {
  display: block;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 8px;
}

.crafting-stat-label {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
}

.crafting-cta {
  text-align: center;
  margin-top: 35px;
}

.crafting-btn {
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =========================================================================
   RECENT PROJECTS SECTORS SECTION
   ========================================================================= */
.sectors-section {
  background-color: var(--bg-white);
}

.sectors-header {
  margin-bottom: 50px;
}

.sectors-title::after {
  width: 100%;
  /* Full width orange line as per design */
  max-width: 300px;
  /* Optional cap */
}

.sectors-header .section-subtitle {
  color: #333;
  font-weight: 500;
  margin-top: 5px;
  font-size: 1.15rem;
}

.sectors-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 50px;
}

.sector-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sector-icon-box {
  width: 300px;
  height: 240px;
  border: 5px solid #7c675b;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  padding: 1rem;
  transition: all var(--transition-speed);
  position: relative;
}

.sector-icon-box img.sector-base-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.5s ease;
}

.sector-icon-box img.sector-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  /* Inner radius matching outer 20px - 5px border */
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.sector-item:hover .sector-icon-box img.sector-hover-img {
  opacity: 1;
}

.sector-icon-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  /* Removed immediate border-color change to allow animation to draw it */
}

/* Border Animation Overlay */
.border-anim-wrap {
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 20px;
  pointer-events: none;
  z-index: 10;
}

.anim-svg-border {
  width: 100%;
  height: 100%;
  display: block;
}

.anim-path {
  stroke: var(--primary-color, #ff790b);
  /* Theme orange */
  stroke-dasharray: 1070;
  stroke-dashoffset: 1070;
  transition: stroke-dashoffset 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-item:hover .anim-path {
  stroke-dashoffset: 0;
}

.sector-icon-box i {
  font-size: 5rem;
  color: #555;
  transition: color var(--transition-speed);
}

.sector-icon-box:hover i {
  color: var(--primary-color);
}

.sector-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.5px;
}

.sectors-text {
  max-width: 1200px;
  margin: 0 auto;
}

.sectors-text p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 5px;
}

.sectors-cta-wrap {
  margin-top: 40px;
}

/* =========================================================================
   WHY PARTNER & OUR SERVICES DUAL SECTION
   ========================================================================= */
.partner-services-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  width: 100%;
}

.partner-col {
  padding-right: 30px;
  border-right: 1px solid #eee;
  min-width: 0;
  /* Prevents column expansion */
}

.services-col {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  /* Prevents column expansion */
}

.ps-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  text-align: center;
}

.ps-subtitle {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 40px;
  text-align: center;
}

.services-col .ps-title,
.services-col .ps-subtitle {
  text-align: center;
}

/* Left Column: Why Partner Steps */
.partner-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: auto;
  margin-bottom: 40px;
  max-width: 550px;
}

.p-step {
  display: flex;
  align-items: stretch;
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  min-height: 80px;
  position: relative;
  overflow: hidden;
  width: 90%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.p-step:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-left:hover {
  transform: translateX(10px);
}

.step-right:hover {
  transform: translateX(-10px);
}

/* Staggered layout */
.step-left {
  align-self: flex-start;
}

.step-right {
  align-self: flex-end;
}

.p-step-content {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  width: 100%;
  gap: 15px;
  z-index: 2;
  background: var(--bg-white);
}

.p-step-num {
  width: 35px;
  height: 35px;
  background-color: #555;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.p-step:hover .p-step-num {
  background-color: var(--primary-color);
  transform: scale(1.1);
}

.p-step-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: #444;
  line-height: 1.3;
}

/* Orange Accent Blocks */
.p-step-accent {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35px;
  background-color: var(--primary-color);
  z-index: 1;
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.p-step:hover .p-step-accent {
  width: 45px;
}

.step-left .p-step-accent {
  left: 0;
}

.step-left .p-step-content {
  margin-left: 25px;
  border-left: 1px solid #eee;
}

.step-right .p-step-accent {
  right: 0;
}

.step-right .p-step-content {
  margin-right: 25px;
  border-right: 1px solid #eee;
  justify-content: flex-end;
  text-align: right;
}

.partner-btn {
  margin-left: 40px;
}

/* Right Column: Switch Card */
.switch-card-wrapper {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.switch-track {
  width: 250px;
  height: 380px;
  border-radius: 50px;
  background: linear-gradient(to bottom, #58595b 40%, var(--primary-color) 60%);
  position: relative;
  display: block;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  background-size: 200% 200%;
  animation: gradientBG 6s ease infinite;
}

.switch-knob {
  width: 230px;
  height: 330px;
  border-radius: 40px;
  background-color: transparent;
  position: absolute;
  left: 10px;
  bottom: 10px;
  /* Resting state: starts at bottom (off) */
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.switch-track.animate-switch .switch-knob {
  transform: translateY(-30px);
  /* Slides up to 'on' position */
}

/* Knob Top */
.switch-knob-top {
  height: 190px;
  background-color: #6d6d6d;
  display: flex;
  justify-content: center;
  padding-top: 40px;
  position: absolute;
  top: 0;
  width: 100%;
}

.icon-composition {
  position: relative;
  width: 100px;
  height: 80px;
  color: white;
}

.comp-clock {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 1.2rem;
  animation: clockRotate 4s linear infinite;
  transform-origin: center;
}

.comp-desk {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: #fff;
  animation: deskFloat 2s ease-in-out infinite;
}

.comp-chair-left {
  position: absolute;
  bottom: 0;
  left: -10px;
  font-size: 1.8rem;
  transform: scaleX(-1);
  color: #eee;
  animation: chairPulse 2.5s ease-in-out infinite;
}

.comp-chair-right {
  position: absolute;
  bottom: 0;
  right: -10px;
  font-size: 1.8rem;
  color: #eee;
  animation: chairPulse 2.5s ease-in-out infinite 0.5s;
  /* Staggered */
}

@keyframes clockRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes deskFloat {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes chairPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1) scaleX(-1);
  }

  /* Special handling for left chair scaleX(-1) */
  50% {
    opacity: 1;
    transform: scale(1.1) scaleX(-1);
  }
}

.comp-chair-right {
  animation-name: chairPulseRight;
}

@keyframes chairPulseRight {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Knob Bottom */
.switch-knob-bottom {
  flex-grow: 1;
  background-color: #dfdfdf;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px 20px;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 180px;
  z-index: 2;
}

.switch-knob-bottom h3 {
  font-size: 1.15rem;
  color: #444;
  margin: 0;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

/* Response for Dual Section */
@media (max-width: 992px) {
  .partner-services-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .partner-col {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 50px;
  }

  .services-col {
    padding-left: 0;
  }
}

/* =========================================================================
   SERVICES SECTION
   ========================================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform var(--transition-speed);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
}

/* =========================================================================
   WHY CHOOSE US / USP SECTION
   ========================================================================= */
.usp-section {
  background-color: var(--bg-white);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.usp-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.usp-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 121, 11, 0.2);
  line-height: 1;
}

.usp-content h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* =========================================================================
   ABOUT PREVIEW & STATS
   ========================================================================= */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
}

.about-img {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: fit-content;
}

.leadership-content {
  position: sticky;
  top: 60px;
  height: fit-content;
}

.about-img img {
  transition: transform 0.5s;
  width: 100%;
}

.about-img:hover img {
  transform: scale(1.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.stat-item {
  background: var(--bg-white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  border-bottom: 3px solid var(--primary-color);
}

.stat-number {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

/* =========================================================================
   RECENT PROJECTS
   ========================================================================= */
.projects-section {
  background-color: var(--bg-white);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 450px));
  justify-content: center;
  gap: 30px;
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.project-img {
  height: 250px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img {
  transform: scale(1.1);
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--bg-white);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-speed);
}

.project-card:hover .project-info {
  transform: translateY(0);
  opacity: 1;
}

.project-info h3 {
  margin-bottom: 5px;
  color: var(--bg-white);
}

.project-category {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
}

/* =========================================================================
   TESTIMONIALS SLIDER
   ========================================================================= */
.testimonials-section {
  background-color: #0f0600;
  color: var(--bg-white);
  padding: 100px 0;
}

.testimonials-section .section-title::after {
  background-color: var(--primary-color);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px;
  text-align: center;
}

.quote-icon {
  font-size: 3rem;
  color: rgba(255, 121, 11, 0.5);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 30px;
  color: #ddd;
}

.client-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--bg-white);
}

.client-designation {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #999999;
  cursor: pointer;
  transition: background var(--transition-speed);
}

.dot.active {
  background-color: var(--primary-color);
}

/* =========================================================================
   CLIENT LOGOS
   ========================================================================= */
.client-logos {
  padding: 100px 0;
  background-color: #f0f0f0;
}

.logo-grid {
  width: 100%;
  overflow: hidden;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.client-logo img {
  max-width: 100%;
  height: auto;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
}

.client-logo:hover img {
  opacity: 1;
  filter: grayscale(0);
}


.client-logo {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 120px;
  transition: all var(--transition-speed);
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(1);
  transition: all var(--transition-speed);
}

.client-logo:hover img {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.1);
}


/* =========================================================================
   BLOG SECTION
   ========================================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-speed);
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.blog-content {
  padding: 25px;
}

.blog-date {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 15px;
  transition: color var(--transition-speed);
}

.blog-title:hover {
  color: var(--primary-color);
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more:hover {
  color: var(--primary-hover);
}

/* =========================================================================
   CTA SECTION
   ========================================================================= */
.cta-section {
  background-color: var(--primary-color);
  padding: 80px 0;
  text-align: center;
  color: var(--bg-white);
}

.cta-section h2 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.cta-section .btn {
  background-color: var(--bg-white);
  color: var(--primary-color);
}

.cta-section .btn:hover {
  background-color: var(--text-dark);
  color: var(--bg-white);
  box-shadow: none;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
footer {
  background-color: #0f0600;
  color: #e0e0e0;
  padding: 80px 0 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.footer-logo .brand-logo {
  max-height: 75px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #58595b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed);
  color: var(--bg-white);
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--bg-white);
  font-size: 1.2rem;
  font-family: var(--font-heading);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  user-select: none;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.25s ease-in-out;
}

.footer-title:hover::after {
  width: 100%;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.contact-info i {
  color: var(--primary-color);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #58595b;
  font-size: 0.9rem;
}

.footer-bottom p {
  color: inherit;
}

.footer-bottom p a {
  color: var(--primary-color);
}

.footer-bottom p a:hover {
  color: var(--primary-hover);
}

/* =========================================================================
   BLOGS SECTION
   ========================================================================= */
.blogs-section {
  background-color: var(--bg-light);
}

.blogs-header {
  margin-bottom: 50px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition:
    transform var(--transition-speed),
    box-shadow var(--transition-speed);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color var(--transition-speed);
}

.blog-card:hover .blog-title {
  color: var(--primary-color);
}

.blog-excerpt {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more {
  font-size: 0.95rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-speed);
  margin-top: auto;
}

.blog-read-more:hover {
  gap: 12px;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */
@media (max-width: 992px) {
  .about-preview {
    grid-template-columns: 1fr;
  }

  .crafting-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blogs-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    flex-direction: column;
    background-color: var(--bg-white);
    width: 100%;
    height: calc(100vh - 90px);
    padding: 40px;
    transition: 0.4s;
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: block;
  }

  .nav-actions {
    display: none;
    /* Hide CTA in mobile menu top bar */
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .crafting-stat-number {
    font-size: 2.4rem;
  }

  .crafting-title {
    font-size: 1.5rem;
  }

  .crafting-text {
    padding-right: 0;
    border-right: none;
    margin-bottom: 20px;
  }

  .crafting-stats {
    padding-left: 0;
  }

  .crafting-stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .crafting-cta {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .usp-grid {
    grid-template-columns: 1fr;
  }

  .blogs-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .partner-col {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
  }

  .services-col {
    padding-left: 0;
  }

  .p-step {
    width: 100%;
  }

  .step-left {
    align-self: center;
  }

  .step-right {
    align-self: center;
  }

  .partner-btn {
    margin-left: 0;
    display: block;
    text-align: center;
  }
}

/* =========================================================================
   DETAILED USP / PROCESS BLOCKS (Global)
   ========================================================================= */
.detailed-usp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.detailed-usp-block {
  background: var(--bg-white);
  padding: 30px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.detailed-usp-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.detailed-usp-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 15px;
}

.detailed-usp-content h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.detailed-usp-content p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.usp-more-content {
  display: none;
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.usp-more-content.active {
  display: block;
  animation: fadeInUSP 0.3s ease-in-out;
}

.usp-more-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.usp-more-content ul li {
  margin-bottom: 8px;
  padding-left: 5px;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: auto;
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

.read-more-btn:hover {
  text-decoration: underline;
}

@keyframes fadeInUSP {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .detailed-usp-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 900px) {
  .detailed-usp-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .detailed-usp-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================================
   SERVICES — TAB NAVIGATION + CONTENT PANELS
   ========================================================================= */
.services-tabs-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

/* --- Tab Nav Row --- */
.services-tabs-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-tab-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 20px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  font-family: inherit;
  outline: none;
}

.service-tab-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: rgba(255, 121, 11, 0.4);
  border-bottom: 4px solid var(--primary-color);
}

.service-tab-card.active {
  border-bottom: 4px solid var(--primary-color);
  background: linear-gradient(180deg,
      rgba(255, 121, 11, 0.06) 0%,
      rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 8px 30px rgba(255, 121, 11, 0.12);
  transform: translateY(-4px);
}

.stc-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff790b 0%, #ffad5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s ease;
}

.service-tab-card.active .stc-icon-wrap {
  transform: scale(1.1);
}

.service-tab-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.3;
}

.service-tab-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.4;
}

.service-tab-card.active h3 {
  color: var(--primary-color);
}

/* --- Tab Content Panels --- */
.service-tab-panels {
  position: relative;
  min-height: 400px;
}

.service-tab-panel {
  display: none;
  animation: stpFadeIn 0.4s ease-in-out;
}

.service-tab-panel.active {
  display: block;
}

@keyframes stpFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  padding: 50px;
  border: 1px solid var(--border-color);
}

/* Badge */
.stp-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff790b 0%, #ffad5c 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.stp-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.stp-tagline {
  font-size: 1.1rem;
  color: var(--primary-color) !important;
  font-weight: 600;
  margin-bottom: 18px !important;
}

.stp-text>p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* Features Title */
.stp-features-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  margin-top: 5px;
  position: relative;
  padding-left: 14px;
}

.stp-features-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  border-radius: 2px;
  background: var(--primary-color);
}

/* Features List */
.stp-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 30px;
}

.stp-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.stp-features li i {
  color: var(--primary-color);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Standard Lists in Panels (with dots) */
.stp-text ul:not(.stp-features) {
  list-style: disc;
  margin-left: 20px;
  margin-top: 15px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.stp-text ul:not(.stp-features) li {
  margin-bottom: 8px;
  padding-left: 5px;
  display: list-item;
  /* Ensure it displays as a list item for the dot to show */
}

/* CTA Button */
.stp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.stp-cta-btn i {
  transition: transform 0.3s ease;
}

.stp-cta-btn:hover i {
  transform: translateX(4px);
}

/* Visual / Image */
.stp-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
  /* Offset for header */
  align-self: start;
}

@media (max-width: 992px) {
  .stp-visual {
    position: relative;
    top: 0;
  }
}

.stp-visual img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.stp-visual:hover img {
  transform: scale(1.04);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .services-tabs-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .stp-inner {
    grid-template-columns: 1fr;
    padding: 35px;
    gap: 35px;
  }

  .stp-features {
    grid-template-columns: 1fr;
  }

  .stp-visual img {
    min-height: 280px;
  }
}

@media (max-width: 600px) {
  .services-tabs-nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-tab-card {
    flex-direction: row;
    text-align: left;
    padding: 18px 20px;
    gap: 16px;
  }

  .stc-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .stp-inner {
    padding: 25px 20px;
  }

  .stp-text h2 {
    font-size: 1.5rem;
  }
}

/* =========================================================================
   CUSTOM TESTIMONIALS SECTION
   ========================================================================= */
.custom-testimonials {
  background-color: #fff;
  overflow: hidden;
}

.testi-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media (min-width: 992px) {
  .testi-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
  }
}

/* Left Side (Image) */
.testi-visual {
  width: 100%;
}

@media (min-width: 992px) {
  .testi-visual {
    width: 50%;
    position: relative;
    z-index: 1;
  }
}

.testi-img-wrap {
  width: 100%;
  height: 400px;
}

@media (min-width: 992px) {
  .testi-img-wrap {
    height: 550px;
  }
}

.testi-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-controls {
  display: flex;
  margin-top: 20px;
  gap: 15px;
}

.testi-arrow {
  width: 50px;
  height: 50px;
  background-color: #f0f0f0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testi-arrow:hover {
  background-color: #e0e0e0;
}

.testi-arrow i {
  color: #333;
  font-size: 1.2rem;
}

/* Right Side (Content) */
.testi-content {
  width: 100%;
}

@media (min-width: 992px) {
  .testi-content {
    width: 50%;
    padding-left: 0;
  }
}

.testi-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .testi-heading {
    padding-left: 30px;
    font-size: 3rem;
  }
}

.testi-cards-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  background-color: #fff;
  padding: 20px 20px 0 20px;
}

.testi-slider {
  width: 100%;
}

@media (min-width: 992px) {
  .testi-cards-wrapper {
    flex-direction: row;
    align-items: stretch;
    z-index: 2;
  }
}

/* Individual Cards */
.testi-card {
  background-color: #222;
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  height: auto;
}

@media (min-width: 992px) {
  .overlap-card {
    margin-left: -80px;
    /* This pulls it over the image */
    margin-top: 50px;
    /* Staggers it lower than the heading */
  }
}

.testi-quote-icon {
  margin-bottom: 25px;
}

.testi-quote-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.testi-card p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testi-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.author-info span {
  font-size: 0.85rem;
  color: #aaa;
}

@media (max-width: 767px) {
  .testi-grid {
    gap: 0;
  }

  .testi-cards-wrapper {
    position: relative;
    width: 100%;
    padding: 0;
    order: 2;
  }

  .testi-img-wrap {
    display: none;
  }

  .testi-heading {
    order: 1;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .testi-visual {
    order: 3;
  }

  .overlap-card {
    margin-left: 0;
    margin-top: 0;
  }
}

@media (max-width: 767px) {

  .about-img,
  .leadership-content {
    position: relative;
    top: 0;
  }
}

/* =========================================================================
   PROCESS MODAL STYLES
   ========================================================================= */
.process-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.process-modal.active {
  display: flex;
}

.process-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.process-modal-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  z-index: 1;
  animation: modalAppear 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

@keyframes modalAppear {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.process-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: var(--bg-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed);
  z-index: 10;
}

.process-modal-close:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: rotate(90deg);
}

.process-modal-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  height: 100%;
  min-height: 500px;
}

.process-modal-image {
  width: 100%;
  height: 100%;
  background-color: var(--bg-light);
  overflow: hidden;
}

.process-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-modal-text {
  padding: 50px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal-header-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.modal-step-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  opacity: 0.3;
  line-height: 1;
}

.modal-header-strip h2 {
  font-size: 2.2rem;
  margin-bottom: 0;
  color: var(--text-dark);
}

.modal-step-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 30px;
  font-style: italic;
}

.modal-step-body {
  color: var(--text-dark);
  line-height: 1.8;
}

.modal-step-body p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.modal-step-body ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.modal-step-body ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.modal-step-body ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Modal Responsive */
@media (max-width: 992px) {
  .process-modal-content {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 1fr;
  }

  .process-modal-text {
    padding: 30px;
  }

  .modal-header-strip h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .process-modal-content {
    grid-template-rows: 200px 1fr;
  }

  .process-modal-text {
    padding: 20px;
  }

  .modal-step-number {
    font-size: 2rem;
  }

  .modal-header-strip h2 {
    font-size: 1.5rem;
  }
}

/* =========================================================================
   ASSISTANCE SECTION & CONTACT MODAL
   ========================================================================= */

.assistance-section {
  background-color: var(--bg-white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.assistance-section h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.assistance-section p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
}

.assistance-btn-container {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: -23px;
  left: 0;
  right: 0;
  z-index: 20;
}

.assistance-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 35px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
}

.assistance-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* Contact Modal Styles */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.contact-modal.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.contact-modal-container {
  position: relative;
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px;
  transform: scale(0.85) translateY(40px);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.contact-modal.active .contact-modal-container {
  transform: scale(1) translateY(0);
}

.contact-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f1f1;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s;
}

.contact-modal-close:hover {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(90deg);
}

.contact-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-modal-header h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.contact-modal-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-modal-form .form-group {
  margin-bottom: 18px;
}

.contact-modal-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-modal-form input,
.contact-modal-form select,
.contact-modal-form textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
  background: #fafafa;
}

.contact-modal-form input:focus,
.contact-modal-form select:focus,
.contact-modal-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 121, 11, 0.1);
}

.contact-modal-form .submit-btn {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .assistance-section {
    padding: 60px 0 50px;
  }

  .assistance-section h2 {
    font-size: 1.8rem;
  }

  .assistance-section p {
    font-size: 0.9rem;
  }

  .contact-modal-container {
    padding: 30px 20px;
  }
}

/* ==========================================
   7. CLIENT LOGOS SECTION
   ========================================== */
.client-logos {
  padding: 80px 0;
  background-color: #fff;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
  margin-top: 50px;
}

.client-logo {
  width: 100%;
  max-width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-color);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (min-width: 576px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}


/* =========================================================================
   SERVICE CARD BASE STYLES
   ========================================================================= */
.service-card-modern {
  background: var(--bg-white);
  padding: 30px 25px;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  border-top: 4px solid transparent;
  height: 100%;
  cursor: pointer;
}

.service-card-modern:hover {
  border-top-color: var(--primary-color);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 121, 11, 0.12);
}

.scm-icon {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}

.service-card-modern:hover .scm-icon {
  transform: scale(1.15);
}

.scm-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.scm-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.scm-link {
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.scm-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.service-card-modern:hover .scm-link i {
  transform: translateX(5px);
}

/* =========================================================================
   INDEX SERVICES SWIPER (DEPTH EFFECT - NO ROTATION)
   ========================================================================= */
.index-services-swiper {
  width: 100%;
  padding: 20px 10px 60px;
  margin-top: 20px;
  overflow: hidden;
}

.index-services-swiper .swiper-slide {
  width: 260px;
  height: auto;
  /* opacity and transform controlled dynamically by JS */
  will-change: transform, opacity;
}

/* Active card gets a highlighted top border */
.index-services-swiper .swiper-slide-active .service-card-modern {
  border-top-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(255, 121, 11, 0.15);
}

.services-pagination {
  bottom: 10px !important;
  text-align: center;
}

.services-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  opacity: 0.25;
  transition: all 0.3s ease;
}

.services-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 26px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .index-services-swiper {
    padding: 20px 5px 50px;
  }

  .index-services-swiper .swiper-slide {
    width: 260px;
  }
}