/* =============================================
   EXPERT DESIGN HUB — STYLE.CSS
   Colors: #D93E2A (red/orange), #080832 (dark blue)
   ============================================= */

:root {
  --red: #D93E2A;
  --gradient: linear-gradient(90deg, rgba(237, 145, 50, 1) 0%, rgba(218, 72, 43, 1) 100%);
  --dark: #080832;
  --dark2: #0d0f3a;
  --white: #ffffff;
  --light: #f8f8f8;
  --gray: #666;
  --font-main: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========== UTILITY ========== */
.red-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  display: inline-block;
}

.red-italic {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  font-style: italic;
  display: inline-block;
  padding-right: 8px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 40px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s;
}

.btn-dark:hover {
  background: var(--gradient);
}

.btn-dark .btn-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.3s;
}

.btn-dark:hover .btn-arrow {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--white);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--gradient);
  border-color: transparent;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--white);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-light:hover {
  background: var(--gradient);
  border-color: transparent;
}

.btn-arrow-sm {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.red-divider {
  width: 100%;
  height: 2px;
  background: var(--gradient);
  margin: 20px 0;
}

.red-divider.short {
  width: 80px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
  margin: 0 3px;
}

.dot.active {
  background: var(--gradient);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  max-width: 1200px;
  z-index: 1000;

  /* Glass Effect */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  /* Border for glass edge */
  border: 1px solid rgba(255, 255, 255, 0.25);

  /* Rounded look */
  border-radius: 50px;
  padding: 12px 28px;

  /* Shadow for floating feel */
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);

  transition: background 0.3s, top 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}



.logo-icon {
  width: 180px;
  height: 45px;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
}

.logo-sub {
  font-size: 9px;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  letter-spacing: 1px;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 36px;
}

@media (max-width: 1024px) {
  #locnav .nav-links {
    display: none !important;
  }

  #locnav {
    width: 90% !important;
    left: 5% !important;
    right: auto !important;
    top: 15px !important;
    transform: none !important;
    padding: 10px 18px !important;
    border-radius: 50px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    transition: background 0.3s, box-shadow 0.3s, border-color 0.3s !important;
  }

  #locnav.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
  }

  #locnav .logo-icon {
    width: 110px !important;
    height: auto !important;
  }

  .mobile-toggle {
    display: block !important;
    font-size: 24px;
    color: #ed9132;
    cursor: pointer;
  }
}

.mobile-toggle {
  display: none;
}

/* ========== MOBILE SIDEBAR ========== */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.active {
  right: 0;
}

.sidebar-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

.sidebar-logo {
  margin-bottom: 40px;
}

.sidebar-logo img {
  width: 140px;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.sidebar-links a {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.3s;
}

.sidebar-links a:hover {
  color: #ed9132;
}

.sidebar-footer {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.sidebar-contact {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  color: #ed9132;
}

.nav-links a {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s;
}

.navbar.scrolled .nav-links a {
  color: #000000;
}

.nav-links a.active {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.nav-links a:hover {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.nav-icons {
  display: flex;
  gap: 18px;
  font-size: 18px;
  color: #ed9132;
}

.nav-icons i {
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080820;
  padding: 140px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(15, 16, 58, 0.65) 0%, rgba(8, 8, 30, 0.88) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1500px;
  padding: 0 24px;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(50px, 5.2vw, 75px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 28px;
  display: block;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.outline-text {
  display: inline;
  color: transparent;
  -webkit-text-stroke: 2px #ed9132;
  filter: drop-shadow(0 0 1px rgba(237, 145, 50, 0.3));
}

.solid-text {
  display: inline;
  color: #fff;
}

.circle-dark {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  margin: 0 8px;
}

.circle-red {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 25px rgba(217, 62, 42, 0.5);
  margin: 0 8px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.8vw, 17px);
  max-width: 1200px;
  margin: 0 auto 36px;
  line-height: 1.8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient);
  color: #fff;
  padding: 16px 36px;
  border-radius: 40px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s;
}

.hero-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}

.hero-btn.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.hero-btn.btn-outline:hover {
  background: #fff;
  color: #080820 !important;
}

.hero-btn .btn-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #ed9132;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.3s, background-color 0.3s, color 0.3s;
}

.hero-btn.btn-outline:hover .btn-arrow {
  background: var(--gradient);
  color: #fff;
}

.hero-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ========== ABOUT ========== */

:root {
  --red: #D93E2A;
  --dark: #0f0f1e;
  --gray: #6b7280;
}

.about {
  padding: 100px 0;
  background: #fff;
}

.about .container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Column */
.about-left h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 24px;
  font-family: "Poppins", sans-serif;
}

.red-italic {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  font-style: italic;
  display: inline-block;
}

.about-desc {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 100%;
  /* Wider text for better flow */
}

.about-stat {
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.stat-num {
  font-size: 52px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  display: inline-block;
}

.stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.4;
  font-weight: 600;
}

.avatar-row {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.avatar-row img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-right: -10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.avatar-more {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 3px solid #fff;
  margin-left: -2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Center Column */
.about-center {
  position: relative;
}

.about-main-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-main-img:hover {
  transform: translateY(-4px);
}

.about-main-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-quote-box {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.quote-mark {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  font-size: 64px;
  font-weight: 900;
  line-height: 0.3;
  display: block;
  margin-bottom: 8px;
  font-family: "Poppins", serif;
}

.about-quote-box p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  font-weight: 500;
}

/* Right Column */
.about-right {
  position: relative;
}

.about-top-img {
  position: absolute;
  top: -45px;
  right: 0;
  width: 240px;
  height: 150px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-top-img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.about-top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-wrapper {
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 20px;
  background: #fafafc;
  border: 1px solid #f0f0f5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-feature:hover {
  background: #fff;
  border-color: rgba(237, 145, 50, 0.4);
  box-shadow: 0 20px 40px rgba(8, 8, 32, 0.05);
  transform: translateY(-3px);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  /* Squircle Shape */
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(217, 62, 42, 0.2);
  transition: transform 0.3s ease;
}

.about-feature:hover .feature-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.about-feature h3 {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.about-feature p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .about .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-left h2 {
    text-align: left;
    font-size: 32px;
    line-height: 1.3;
  }

  .about-left h2 .red-italic {
    display: inline;
  }

  .about-top-img {
    position: relative;
    top: 0;
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .features-wrapper {
    margin-top: 0;
  }

  .about-center {
    margin-top: 0;
  }
}

/* ========== SERVICES ========== */
.services {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
  min-height: 650px;
}

.services-bg {
  position: absolute;
  inset: 0;
}

.services-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.services-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.services-header h3 {
  font-family: var(--font-main);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.services-header h2 {
  font-family: var(--font-main);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.services-nav-btns {
  display: flex;
  gap: 10px;
}

.svc-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #ed9132;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.svc-btn.active,
.svc-btn:hover {
  background: var(--gradient);
  color: #fff;
}

.services-accordion {
  display: flex;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  height: 540px;
  /* Increased from 520px */
  overflow: hidden;
}

.svc-item-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.svc-item-wrap:last-child {
  border-right: none;
}

.svc-collapsed {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 10px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.svc-expanded {
  width: 380px;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.85);
}

.svc-expanded img {
  width: 100%;
  height: 220px;
  /* Reduced from 240px for more content space */
  object-fit: cover;
}

.svc-expanded-content {
  padding: 20px;
  /* Reduced from 24px */
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.svc-title-red {
  font-family: var(--font-main);
  font-size: 22px;
  /* Reduced from 28px */
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  margin-bottom: 12px;
  /* Reduced from 15px */
  display: inline-block;
  line-height: 1.25;
}

.svc-expanded-content p {
  font-size: 14.5px;
  /* Reduced from 15px */
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
  /* Reduced from 20px */
}

.btn-pill-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  padding: 8px 18px;
  /* Slightly reduced padding */
  border-radius: 30px;
  font-size: 14px;
  /* Reduced from 15px */
  font-weight: 700;
  width: fit-content;
  transition: all 0.3s ease;
}

.btn-pill-white:hover {
  background: var(--gradient);
  color: #fff;
}

.btn-pill-white .btn-arrow-sm {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  transition: all 0.3s ease;
}

.btn-pill-white:hover .btn-arrow-sm {
  background: #fff;
  color: #da482b;
}

.svc-num {
  font-family: var(--font-main);
  font-size: 64px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  line-height: 1;
  margin-bottom: 20px;
  display: inline-block;
}

.svc-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 30px;
}

/* Hover Logic */
.services-accordion:not(:hover) .svc-item-wrap.active {
  flex: 0 0 380px;
}

.services-accordion:not(:hover) .svc-item-wrap.active .svc-collapsed {
  opacity: 0;
  pointer-events: none;
}

.services-accordion:not(:hover) .svc-item-wrap.active .svc-expanded {
  opacity: 1;
  pointer-events: auto;
}

.services-accordion:hover .svc-item-wrap {
  flex: 1;
}

.services-accordion:hover .svc-item-wrap .svc-collapsed {
  opacity: 1;
  pointer-events: auto;
}

.services-accordion:hover .svc-item-wrap .svc-expanded {
  opacity: 0;
  pointer-events: none;
}

.services-accordion .svc-item-wrap:hover {
  flex: 0 0 380px;
}

.services-accordion .svc-item-wrap:hover .svc-collapsed {
  opacity: 0;
  pointer-events: none;
}

.services-accordion .svc-item-wrap:hover .svc-expanded {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0.1s;
}

@media (max-width: 992px) {
  .services-accordion {
    flex-direction: column;
    height: auto;
  }

  .svc-item-wrap {
    flex: none !important;
    width: 100% !important;
    height: 80px !important;
    min-height: 50px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
  }

  .svc-collapsed {
    position: relative !important;
    flex-direction: row;
    justify-content: flex-start;
    padding: 20px !important;
    align-items: center;
    gap: 20px;
    height: auto !important;
    opacity: 1;
    pointer-events: auto;
  }

  .svc-num {
    margin-bottom: 0;
    font-size: 32px;
  }

  .svc-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 18px !important;
    line-height: 1.3;
    padding-top: 0 !important;
  }

  .services-accordion:not(:hover) .svc-item-wrap.active,
  .services-accordion .svc-item-wrap:hover {
    height: 580px !important;
  }

  .services-accordion:not(:hover) .svc-item-wrap.active .svc-collapsed,
  .services-accordion .svc-item-wrap:hover .svc-collapsed {
    display: none !important;
    opacity: 0;
    pointer-events: none;
  }

  .services-accordion:not(:hover) .svc-item-wrap.active .svc-expanded,
  .services-accordion .svc-item-wrap:hover .svc-expanded {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .svc-expanded {
    width: 100%;
    height: 100%;
  }
}

/* ========== PARTNERS ========== */
.partners {
  background: #080832;
  padding: 80px 0;
}

.partners .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.partners-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.partners-title {
  flex: 1;
}

.partners-title h2 {
  font-family: var(--font-main);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.partners-top p {
  flex: 1;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 500px;
}

.partners-logos {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.partners-logos-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: slideLogos 20s linear infinite;
}

.partners-logos-track:hover {
  animation-play-state: paused;
}

@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

.logo-item {
  width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border: 1px solid #ed9132;
  padding: 10px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.logo-item:hover {
  transform: translateY(-5px);
}

.logo-item span {
  line-height: 1.2;
}

.logo-flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.logo-flex-row {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.logo-icon-lg {
  font-size: 24px;
}

.logo-item.border-red {
  background: transparent;
  color: #fff;
}

.logo-item.filled-red {
  background: var(--gradient);
  color: #fff;
}

/* ========== PORTFOLIO ========== */
.portfolio {
  position: relative;
  height: 250vh;
}

.portfolio-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.portfolio-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.portfolio-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 240, 230, 0.85);
}

.portfolio-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.portfolio-left h4 {
  font-family: var(--font-main);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 18px;
}

.portfolio-left p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 34px;
}

.btn-circle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient);
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.btn-circle:hover {
  transform: translateY(-2px);
  color: #fff;
}

.btn-circle .btn-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #ed9132;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.3s;
}

.btn-circle:hover .btn-arrow {
  transform: translateX(4px);
}

.portfolio-right {
  position: relative;
  display: flex;
  align-items: center;
}

.portfolio-cards-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
}

.portfolio-card {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.portfolio-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-tags {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.portfolio-tags span {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.portfolio-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-family: var(--font-main);
  font-weight: 700;
  z-index: 2;
}

.portfolio-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-left: 30px;
  padding: 16px 8px;
  background: rgba(8, 8, 50, 0.06);
  border-radius: 30px;
}

.portfolio-dots .dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #080832;
  opacity: 0.2;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.portfolio-dots .dot:hover {
  opacity: 0.5;
  transform: scale(1.2);
}

.portfolio-dots .dot.active {
  opacity: 1;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #ed9132, #da482b);
  border: 2px solid rgba(237, 145, 50, 0.3);
  box-shadow: 0 0 10px rgba(218, 72, 43, 0.45), 0 0 20px rgba(237, 145, 50, 0.2);
  transform: scale(1.15);
}

/* ========== WEB DEV ========== */
.webdev {
  position: relative;
  padding: 100px 0;
  background: var(--dark2);
  overflow: hidden;
}

.webdev-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  /* subtle dark waves */
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
    radial-gradient(circle at bottom right, rgba(217, 62, 42, 0.05) 0%, transparent 40%);
}

.webdev-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.webdev-img-wrap {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.webdev-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.webdev-bottom h2 {
  font-family: var(--font-main);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 18px;
}

.webdev-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-pill-white {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--dark);
  padding: 8px 8px 8px 24px;
  border-radius: 40px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-pill-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-pill-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
  padding: 8px 8px 8px 24px;
  border-radius: 40px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-pill-outline:hover {
  background: #fff;
  color: var(--dark);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-pill-outline .btn-arrow-sm {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s ease;
}

.btn-pill-outline:hover .btn-arrow-sm {
  background: var(--gradient);
  color: #fff;
}


.webdev-right h2 {
  font-family: var(--font-main);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 18px;
}

.webdev-right>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

.webdev-features {
  position: relative;
  padding-right: 30px;
}

.webdev-features-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.line-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: var(--gradient);
}

.wd-feature-list {
  height: 380px;
  overflow-y: auto;
  padding-right: 20px;
  /* Hide scrollbar for clean look */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.wd-feature-list::-webkit-scrollbar {
  display: none;
}

.wd-feature {
  margin-bottom: 36px;
}

.wd-feature:last-child {
  margin-bottom: 0;
}

.wd-feature h3 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}

.wd-feature p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

/* ========== AWARDS & RECOGNITIONS ========== */
.awards {
  position: relative;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.awards-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

.awards-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.3;
}

.awards-inner {
  position: relative;
  z-index: 2;
}

.awards-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 70px;
}

.ah-left h2 {
  font-family: var(--font-main);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.ah-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.clutch-text {
  font-size: 14px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  margin-bottom: -5px;
  display: inline-block;
}

.clutch-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-num {
  font-family: var(--font-main);
  font-size: 84px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.rating-stars {
  display: flex;
  color: #f59e0b;
  font-size: 16px;
  gap: 6px;
  margin-top: 5px;
}

.awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 40px;
  column-gap: 80px;
}

.award-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(237, 145, 50, 0.4);
  padding-bottom: 30px;
}

.aw-info h4 {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.aw-info p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.aw-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s;
}

.aw-btn:hover {
  transform: scale(1.1) rotate(15deg);
}

.award-text-item {
  padding-top: 20px;
  border-bottom: 1px solid transparent;
  /* Keeps height consistent */
}

.award-text-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

/* ========== TECH STACK ========== */
.tech-stack {
  position: relative;
  padding: 100px 0;
  background: url('assets/images/orange-bg.jpg') no-repeat center center / cover;
  overflow: hidden;
  text-align: center;
}

.tech-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(237, 145, 50, 0.15);
  /* Glass tint matching gradient */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.tech-stack::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  right: -10%;
  bottom: -20%;
  background:
    radial-gradient(ellipse at top right, rgba(0, 0, 0, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.tech-stack-inner {
  position: relative;
  z-index: 2;
}

.tech-stack-header {
  margin-bottom: 50px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.tech-stack-header h2 {
  font-family: var(--font-main);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.dark-italic {
  color: var(--dark);
  font-style: italic;
}

.tech-stack-header p {
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
}

.tech-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.tech-tabs {
  display: inline-flex;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 8px;
  gap: 12px;
}

.tech-tab {
  background: #fff;
  color: #ed9132;
  border: none;
  border-radius: 6px;
  padding: 14px 35px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tech-tab:hover {
  background: rgba(255, 255, 255, 0.9);
}

.tech-tab.active {
  background: var(--dark);
  color: #fff;
}

.tech-content-wrapper {
  position: relative;
  min-height: 120px;
}

.tech-content {
  display: none;
  animation: fadeInTech 0.4s ease forwards;
}

.tech-content.active {
  display: block;
}

@keyframes fadeInTech {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tech-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.tech-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.tech-item span {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

/* ========== DOMAIN DIVERSITY ========== */
.domain {
  padding: 100px 0;
  background: #fff;
}

.domain-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.dh-left h4 {
  font-family: var(--font-main);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
}

.dh-right p {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
}

.domain-slider-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

.domain-nav {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  border: none;
  background: var(--gradient);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 15px rgba(217, 62, 42, 0.3);
  transition: all 0.3s ease;
}

.domain-nav:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(217, 62, 42, 0.45);
}

.domain-cards {
  display: flex;
  gap: 20px;
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  padding: 5px 0;
}

.domain-cards::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.domain-card {
  min-width: calc(25% - 18px);
  /* Assuming 4 items visible */
  flex-shrink: 0;
  border: 1px solid #ed9132;
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  background: #fafafc;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.domain-card:hover {
  transform: translateY(-6px);
  background: #fff;
  border-color: #ed9132;
  box-shadow: 0 20px 40px rgba(8, 8, 32, 0.06);
}

.domain-card i {
  font-size: 30px;
  width: 76px;
  height: 76px;
  background: rgba(237, 145, 50, 0.08);
  color: #ed9132;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.domain-card:hover i {
  background: var(--gradient);
  color: #fff;
  transform: scale(1.08);
}

.domain-divider {
  width: 40px;
  height: 2px;
  background: var(--gradient);
  margin: 15px auto;
  opacity: 1;
}

.domain-card span {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
  transition: color 0.3s;
}

.domain-card:hover span {
  color: #ed9132;
}

/* ========== WHY TRUST US ========== */
.trust {
  padding: 100px 0;
  background: #fff;
}

.trust-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust-header h2 {
  font-family: var(--font-main);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--dark);
}

.trust-header p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

.trust-features-box {
  background: var(--dark);
  border: 2px solid #ed9132;
  /* Red border */
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trust-feature {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 15px 0;
}

.trust-icon {
  font-size: 34px;
  color: transparent;
  -webkit-text-stroke: 1.5px #ed9132;
  /* Outline effect matching design */
  margin-top: 5px;
}

.trust-f-content {
  flex: 1;
}

.trust-f-content h3 {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.trust-arrow {
  font-size: 16px;
  color: #ed9132;
  transition: transform 0.3s ease;
}

.trust-feature.active .trust-arrow {
  transform: rotate(180deg);
}

.trust-f-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0;
}

.trust-feature.active .trust-f-body {
  max-height: 350px;
  opacity: 1;
}

.trust-f-content p {
  font-family: var(--font-main);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

.trust-divider {
  height: 1.5px;
  background: #fff;
  margin: 15px 0;
}

.trust-right {
  display: flex;
  justify-content: center;
  position: relative;
}

.trust-img-pill {
  position: relative;
  width: 100%;
  /* max-width: 600px; */
  height: auto;
  /* border-radius: 250px; */
  overflow: hidden;
  /* border: 2px solid #ed9132; */
  border-radius: 50px;
  /* box-shadow: 0 30px 60px rgba(217, 62, 42, 0.15); */
}

.trust-img {
  width: 600px;
  height: 780px;
  object-fit: cover;
  display: block;
}

/* ========== TESTIMONIALS ========== */
.testi {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.testi-inner {
  position: relative;
  z-index: 2;
}

.testi-box {
  background: #080832;
  /* Matching dark theme */
  border: 2px solid #ed9132;
  border-radius: 40px;
  border-bottom-left-radius: 140px;
  position: relative;
  padding: 80px 60px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.testi-box-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
  border-radius: 40px;
  border-bottom-left-radius: 140px;
  overflow: hidden;
}

.testi-box-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-quote-icon {
  width: 60px;
  height: 60px;
  background: #7a281d;
  /* Darker red for top */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  position: absolute;
  z-index: 5;
}

.top-quote {
  top: 0;
  right: 15%;
  transform: translateY(-50%);
}

.bottom-quote {
  background: var(--gradient);
  bottom: 0;
  right: 0;
  transform: translate(35%, 35%);
  width: 70px;
  height: 70px;
}

.testi-content-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.testi-left {
  flex: 0 0 45%;
}

.testi-left h2 {
  font-family: var(--font-main);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 25px;
}

.testi-line {
  width: 80px;
  height: 2px;
  background: var(--gradient);
  margin-bottom: 30px;
}

.testi-left p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

.btn-red-pill {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--gradient);
  color: #fff;
  padding: 10px 10px 10px 28px;
  border-radius: 40px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
}

.btn-red-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(217, 62, 42, 0.4);
}

.circle-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #ed9132;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

.testi-right {
  flex: 0 0 50%;
  position: relative;
  height: 450px;
  /* Fixed height */
  overflow: hidden;
  /* Prevent cards from spilling out of the dark box */
  padding: 40px 0;
  /* Extra space for quote breakouts if needed */
  margin: -40px 0;
  /* Offset padding to keep layout tight */
}

.testi-slider {
  position: absolute;
  inset: 0;
}

.testi-card {
  position: absolute;
  top: 40px;
  /* Matching padding offset */
  left: 0;
  width: 100%;
  background: #fff;
  border: 2px solid #ed9132;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(100px);
  /* Start from further down */
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.testi-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 5;
}

.testi-card.next-slide {
  opacity: 0.4;
  transform: translateY(380px) scale(0.95);
  z-index: 2;
}

.testi-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
}

.testi-card>p {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testi-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.tu-info h4 {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 800;
  color: #080832;
  margin: 0;
}

.tu-info span {
  font-size: 13px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  font-weight: 600;
  display: inline-block;
}

.testi-dots {
  position: absolute;
  bottom: 50px;
  left: 80px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.tdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  transition: all 0.3s;
  cursor: pointer;
}

.tdot.active {
  background: transparent;
  border: 2px solid #ed9132;
  transform: scale(1.4);
}

/* ========== PRICING ========== */
.pricing {
  padding: 80px 0;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(217, 62, 42, 0.06);
}

.pricing-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

.pricing-title h2 {
  font-family: var(--font-main);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.pricing-right-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 24px;
}

.pricing-toggle {
  display: inline-flex;
  background: #fff;
  border-radius: 40px;
  padding: 4px;
  overflow: hidden;
}

.toggle-opt {
  padding: 10px 28px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 40px;
}

.toggle-opt.active {
  background: var(--gradient);
  color: #fff;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: #fff;
  border: 3px solid #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.price-card:hover {
  transform: translateY(-6px);
}

.price-top {
  padding: 30px 24px 20px;
}

.price-card.dark .price-top {
  background: var(--dark);
}

.price-card.red-theme .price-top {
  background: var(--gradient);
}

.price-badge {
  display: inline-block;
  padding: 6px 16px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.price-badge.red-bg {
  background: var(--gradient);
  color: #fff;
}

.price-badge.dark-bg {
  background: var(--dark);
  color: #fff;
}

.price-amount {
  font-family: var(--font-main);
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.price-amount span {
  font-size: 15px;
  font-weight: 500;
}

.price-card.dark .price-amount span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.price-card.red-theme .price-amount span {
  color: #fff;
}

.price-top p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.price-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: opacity 0.3s;
}

.price-card.dark .price-cta {
  background: var(--dark);
}

.price-card.red-theme .price-cta {
  background: var(--gradient);
}

.price-cta:hover {
  opacity: 0.85;
}

.price-bottom {
  background: #fff;
  padding: 24px;
}

.features-label {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 14px;
  font-weight: 600;
}

.price-bottom ul li {
  font-size: 13px;
  color: var(--dark);
  padding: 6px 0 6px 18px;
  position: relative;
  font-weight: 500;
}

.price-bottom ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
}

/* ========== PROCESS ========== */
.process {
  position: relative;
  padding: 80px 0;
  background: var(--dark);
  overflow: hidden;
}

.process-waves {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(217, 62, 42, 0.06) 0%, transparent 70%);
}

.process-title {
  font-family: var(--font-main);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 50px;
}

.process {
  padding: 100px 0;
  background: #0a0e27;
  /* Dark background as seen in mockup */
  position: relative;
}

.process-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 70px;
}

.process-title em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  display: block;
  margin-top: 10px;
}

.process-cards {
  display: flex;
  gap: 20px;
  min-height: 500px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-card {
  flex: 1;
  background: var(--gradient);
  /* Brand Red Gradient */
  color: #fff;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Default open card (Item 2) and Hovered card */
.process-cards:not(:hover) .process-card:nth-child(2),
.process-card:hover {
  flex: 3.5;
  background: #fff !important;
  color: #0a0e27 !important;
}

/* Close state styles */
.pc-closed {
  position: absolute;
  inset: 0;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  z-index: 1;
}

.pc-vertical-wrap {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg) scale(1);
  width: 400px;
  text-align: center;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.process-cards:not(:hover) .process-card:nth-child(2) .pc-vertical-wrap,
.process-card:hover .pc-vertical-wrap {
  transform: translate(-50%, -50%) rotate(-90deg) scale(0.8);
  opacity: 0;
}

.pc-vertical-wrap h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.pc-vertical-wrap p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.8;
  margin-top: 15px;
  display: block;
  /* Show a bit of text even when closed if space allows */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

.pc-closed .pc-num {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

/* Open state styles */
.pc-open {
  position: absolute;
  inset: 0;
  padding: 50px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Space out top and bottom content */
  z-index: 2;
  pointer-events: none;
}

.pc-open .pc-num {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  margin-bottom: 0;
  line-height: 1;
  display: inline-block;
}

.pc-open-content-wrap {
  position: relative;
  margin-top: -20px;
}

.pc-content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  /* Gradient title as requested */
  margin-bottom: 15px;
  line-height: 1.2;
  display: inline-block;
}

.pc-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  max-width: 100%;
}

.pc-big-num {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Poppins', sans-serif;
  font-size: 260px;
  /* Much larger as per mockup */
  font-weight: 900;
  color: rgba(237, 145, 50, 0.04);
  line-height: 1;
  pointer-events: none;
  z-index: -1;
}

/* Decoration dot near big num */
.pc-open::after {
  content: '';
  position: absolute;
  top: 65%;
  left: 50px;
  width: 30px;
  height: 30px;
  background: rgba(237, 145, 50, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

/* Toggling visibility */
.process-cards:not(:hover) .process-card:nth-child(2) .pc-closed,
.process-card:hover .pc-closed {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0s 0.15s;
  /* Faster exit */
}

.process-cards:not(:hover) .process-card:nth-child(2) .pc-open,
.process-card:hover .pc-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.4s ease 0.2s, visibility 0s;
  /* Delayed entrance */
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 80px 0;
  /* background: #fff; */
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558655146-d09347e92766?w=1400&q=20') center/cover;
  opacity: 0.04;
  pointer-events: none;
}

.testi-box {
  background: var(--dark);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
  border: 2px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.testi-left h2 {
  font-family: var(--font-main);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 18px;
}

.testi-left p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testi-dots {
  margin-top: 30px;
}

.testi-right {
  position: relative;
}

.quote-bubble {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: absolute;
  z-index: 3;
}

.quote-bubble.top-right {
  top: -18px;
  right: -18px;
}

.quote-bubble.bottom-right {
  bottom: 40px;
  right: -10px;
}

.testi-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 12px;
}

.testi-card.muted {
  background: rgba(255, 255, 255, 0.15);
  opacity: 0.5;
}

.stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testi-card p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.testi-card.muted p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-author strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.testi-author span {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--gray);
}

/* ========== CONTACT ========== */
.contact {
  padding: 100px 0;
  background: var(--gradient);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.contact-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-left h2 em.dark-text {
  font-style: normal;
  color: #0a0e27;
}

.contact-left p {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-info-wrapper {
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 40px;
  position: relative;
}

.contact-flex-row {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  width: 260px;
  flex-shrink: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-logo img {
  width: 50px;
}

.contact-logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0a0e27;
  line-height: 1.2;
}

.contact-logo small {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #da482b;
  display: block;
}

.schedule-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0a0e27;
  line-height: 1.4;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cd-item {
  display: flex;
  flex-direction: column;
}

.cd-label {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a0e27;
  margin-bottom: 4px;
}

.cd-value {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}

.contact-bottom-row {
  display: flex;
  align-items: center;
}

.follow-us {
  display: flex;
  align-items: center;
  gap: 25px;
}

.follow-us span {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #da482b;
}

/* Form Styles */
.contact-form {
  padding: 40px 35px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.form-group label {
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fff !important;
  border: none !important;
  border-radius: 15px !important;
  padding: 18px 25px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  width: 100%;
  outline: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group.full {
  margin-bottom: 35px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555 !important;
  opacity: 1;
}

.form-group select {
  color: #555 !important;
}

.btn-send {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #0a0e27;
  color: #fff;
  padding: 10px 10px 10px 40px;
  border-radius: 60px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s;
  min-width: 280px;
}

.btn-send:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-arrow-circle {
  width: 55px;
  height: 55px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ========== CTA BANNER (Now inside Footer) ========== */
.cta-banner {
  background: var(--gradient);
  margin: 0 80px;
  border-radius: 30px;
  padding: 60px 80px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Geometric pattern */
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66-3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-46-45c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm37 2c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.cta-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #0a0e27;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  transition: all 0.3s;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.cta-circle span {
  text-align: center;
  margin-bottom: 8px;
}

.cta-circle i {
  font-size: 26px;
}

.cta-circle:hover {
  transform: scale(1.1);
  background: #fff;
  color: #da482b;
}

/* ========== FOOTER ========== */
.footer {
  background: #0a0e27;
  padding: 80px 0 60px;
  /* Add padding-top to give space for CTA */
  position: relative;
  overflow: hidden;
  margin-top: -100px;
  /* Pull the whole footer up to overlap the previous section */
  z-index: 5;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  /* Sublte hexagonal pattern */
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0l60 30v60L60 120 0 90V30L60 0zm0 5l55 27.5v55L60 115 5 87.5v-55L60 5z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.footer-top-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 40px;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5;
}

.footer-copy {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #fff;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: #da482b;
}

.footer-links .sep {
  color: rgba(255, 255, 255, 0.3);
}

.footer-bg-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(100px, 20vw, 320px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 25px;
  line-height: 0.8;
  /* Pull it down further to stick to bottom */
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about .container {
    grid-template-columns: 1fr 1fr;
  }

  .about-right {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .svc-item:nth-child(4),
  .svc-item:nth-child(5) {
    display: none;
  }

  .pricing-cards {
    gap: 14px;
  }

  .process-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 30px);
    padding: 10px 18px;
  }

  .nav-links {
    display: none;
  }

  .about .container {
    grid-template-columns: 1fr;
  }

  .about-center {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .svc-item {
    display: none;
  }

  .partners-top {
    grid-template-columns: 1fr;
  }

  .portfolio-inner {
    grid-template-columns: 1fr;
  }

  .webdev-inner {
    grid-template-columns: 1fr;
  }

  .domain-header {
    grid-template-columns: 1fr;
  }

  .domain-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-inner {
    grid-template-columns: 1fr;
  }

  .trust-f-content h4 {
    font-size: 17px !important;
  }

  .trust-f-content p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .pricing-header {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .process-cards {
    grid-template-columns: 1fr 1fr;
  }

  .testi-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    margin: 0 20px;
    padding: 30px;
  }

  .footer {
    padding: 50px 20px 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

/* ===== PARTNERS / AWARDS SCROLL SECTION ===== */
.awards-section {
  padding: 60px 0;
  background: #03031c;
}

.awards-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.awards-header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.awards-left {
  flex: 0 0 40%;
}

.awards-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.awards-title span {
  display: block;
  background-image: linear-gradient(90deg, rgba(237, 145, 50, 1) 0%, rgba(218, 72, 43, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.btn-reviews {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(237, 145, 50, 1) 0%, rgba(218, 72, 43, 1) 100%);
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  transition: background 0.3s;
}

.btn-reviews:hover {
  background: #000;
}

.awards-desc {
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
  color: gray;
  padding-top: 8px;
}

.scroll-wrapper {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  padding: 10px 0;
}

.scroll-wrapper:active {
  cursor: grabbing;
}

.scroll-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.award-card {
  flex: 0 0 200px;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s;
}

.award-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.award-icon-box {
  width: 100%;
  height: 120px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.award-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.award-name {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
}

.award-sub {
  font-size: 11px;
  color: gray;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .awards-header {
    flex-direction: column;
    gap: 20px;
  }

  .awards-left {
    flex: none;
  }
}

/* ===== LOCATION PAGE MOBILE FIX ===== */
@media (max-width: 1024px) {

  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  /* Hero fix */
  .hero {
    min-height: 100svh !important;
    height: auto !important;
    min-height: 500px !important;
    width: 100% !important;
  }

  .hero-bg,
  .hero-bg img {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-title {
    font-size: clamp(32px, 9vw, 60px) !important;
    gap: 8px !important;
    line-height: 1 !important;
  }

  .circle-dark {
    width: 45px !important;
    height: 45px !important;
  }

  .circle-red {
    width: 55px !important;
    height: 55px !important;
  }

  .hero-content {
    max-width: 100% !important;
    padding: 0 16px !important;
    margin-top: 100px !important;
  }

  /* About section fix */
  .about .container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 0 16px !important;
  }

  /* Domain slider */
  .domain-slider-wrap {
    gap: 12px !important;
  }

  .domain-cards {
    padding: 0 !important;
    gap: 16px !important;
  }

  .domain-card {
    min-width: 100% !important;
    max-width: 100% !important;
    padding: 28px 16px !important;
    box-sizing: border-box !important;
  }

  /* Services */
  .services-inner {
    padding: 0 16px !important;
  }

  .svc-item-wrap {
    width: 100% !important;
  }

  /* Contact form */
  .contact-form-wrap {
    padding: 0 16px !important;
  }

  /* Testimonial fix */
  .content-wrapper {
    flex-direction: column !important;
  }

  .left-content {
    min-width: auto !important;
    width: 100% !important;
  }

  .right-content {
    min-width: auto !important;
    width: 100% !important;
  }

  .main-card {
    padding: 30px 20px !important;
  }

  /* ===== PORTFOLIO STICKY GAP FIX ===== */
  .portfolio {
    height: auto !important;
  }

  .portfolio-sticky {
    position: relative !important;
    height: auto !important;
    top: auto !important;
    min-height: auto !important;
    padding: 60px 20px !important;
  }

  .portfolio-inner {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* ===== AWARDS SECTION FIX ===== */
  .awards-header {
    flex-direction: column !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
    align-items: flex-start !important;
  }

  .ah-right {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .rating-num {
    font-size: 54px !important;
  }

  .awards-grid {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
    row-gap: 20px !important;
  }

  .award-item {
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
  }

  .aw-info h4 {
    font-size: 18px !important;
  }

  .aw-btn {
    flex-shrink: 0 !important;
  }

  /* ===== TECH STACK TABS FIX ===== */
  .tech-tabs-wrapper {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 8px !important;
    scrollbar-width: none !important;
  }

  .tech-tabs-wrapper::-webkit-scrollbar {
    display: none !important;
  }

  .tech-tabs {
    flex-wrap: nowrap !important;
    width: max-content !important;
  }

  .tech-tab {
    padding: 10px 20px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
  }


  /* ===== PROCESS CARDS VERTICAL MOBILE ===== */
  .process-cards {
    flex-direction: column !important;
    min-height: auto !important;
    gap: 12px !important;
    padding: 0 20px !important;
  }

  .process-card {
    flex: none !important;
    width: 100% !important;
    border-radius: 20px !important;
    min-height: 64px !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
  }

  /* All cards collapsed by default on mobile */
  .process-card .pc-closed {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 18px 24px !important;
    opacity: 1 !important;
    visibility: visible !important;
    inset: auto !important;
    gap: 16px !important;
  }

  .process-card .pc-vertical-wrap {
    position: static !important;
    transform: none !important;
    width: auto !important;
    text-align: left !important;
    opacity: 1 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .process-card .pc-vertical-wrap h4 {
    font-size: 16px !important;
    color: #fff !important;
  }

  .process-card .pc-vertical-wrap p {
    display: none !important;
  }

  .process-card .pc-num {
    font-size: 20px !important;
    writing-mode: horizontal-tb !important;
    transform: none !important;
  }

  /* Open state hidden by default on mobile */
  .process-card .pc-open {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  /* Active open card on mobile */
  .process-card.mob-open {
    background: #fff !important;
    color: #0a0e27 !important;
    min-height: 240px !important;
  }

  .process-card.mob-open .pc-closed {
    display: none !important;
  }

  .process-card.mob-open .pc-open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    inset: auto !important;
    padding: 30px 24px !important;
    flex-direction: column !important;
    height: auto !important;
    transform: none !important;
  }
}

@media (max-width: 1024px) {

  /* Prevent desktop nth-child(2) rule from making card 2 white on mobile */
  .process-cards:not(:hover) .process-card:nth-child(2) {
    background: var(--gradient) !important;
    color: #fff !important;
    flex: none !important;
  }

  .process-cards:not(:hover) .process-card:nth-child(2) .pc-closed {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .process-cards:not(:hover) .process-card:nth-child(2) .pc-open {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

/* Fix overlap: add gap between pc-num and heading */
.process-card.mob-open .pc-open-content-wrap {
  margin-top: 12px !important;
}

.process-card.mob-open .pc-content h4 {
  font-size: 24px !important;
}

/* Override the desktop nth-child(2) open for mob-open card */
.process-card.mob-open .pc-closed {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.process-card.mob-open .pc-open {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.process-card.mob-open {
  background: #fff !important;
  color: #0a0e27 !important;
}


@media (max-width: 1024px) {

  /* ===== CONTACT SECTION MOBILE FIX ===== */
  .contact {
    padding: 60px 20px !important;
  }

  .contact-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
  }

  .contact-info-wrapper {
    padding: 30px 20px !important;
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-flex-row {
    flex-direction: column !important;
    gap: 24px !important;
    align-items: stretch !important;
  }

  .contact-card {
    width: 100% !important;
    flex-shrink: 1 !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
  }

  .contact-details {
    gap: 16px !important;
  }

  .cd-label {
    font-size: 15px !important;
  }

  .cd-value {
    font-size: 14px !important;
  }

  .contact-bottom-row {
    flex-wrap: wrap !important;
    gap: 16px !important;
  }

  .follow-us {
    gap: 16px !important;
  }

  .follow-us span {
    font-size: 18px !important;
  }

  .contact-form {
    padding: 30px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 1024px) {

  /* ===== FOOTER BOTTOM VERTICAL FIX ===== */
  .footer-bottom-flex {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
    padding: 20px 20px !important;
  }

  .footer-copy {
    font-size: 14px !important;
  }

  .footer-links {
    flex-direction: row !important;
    gap: 20px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .footer-links .sep {
    display: inline !important;
  }

  .footer-links a {
    font-size: 14px !important;
  }
}

/* ========== CALENDLY SECTION ========== */
.calendly-section {
  background-color: #0F103A;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.calendly-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.calendly-left {
  color: #fff;
}

.calendly-left h2 {
  font-family: var(--font-main);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #fff;
}

.calendly-left p {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
}

.calendly-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.calendly-right {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.calendly-right .calendly-inline-widget {
  width: 100%;
  height: 580px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .calendly-section {
    padding: 60px 0;
  }

  .calendly-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .calendly-buttons {
    justify-content: center;
  }

  .calendly-right .calendly-inline-widget {
    height: 650px;
  }
}

@media (max-width: 768px) {

  /* Move hero content up */
  .hero {
    padding: 100px 0 50px !important;
    min-height: 85vh !important;
    display: flex !important;
    align-items: center !important;
  }

  .hero-content {
    margin-top: -20px !important;
  }

  .hero-title {
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
  }

  .hero-desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
  }

  /* Make buttons inline row with gap and decreased size */
  .hero-buttons {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .hero-btn {
    padding: 8px 16px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    height: 40px !important;
    border-radius: 30px !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex: 1 1 auto !important;
    max-width: 160px !important;
  }

  .hero-btn .btn-arrow {
    width: 22px !important;
    height: 22px !important;
    font-size: 9px !important;
  }
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-bar {
  background-color: #f8f9fa;
  padding: 80px 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num-large {
  font-family: var(--font-main);
  font-size: clamp(60px, 6vw, 90px);
  font-weight: 300;
  line-height: 1.1;
  color: #111111;
  display: inline-flex;
  align-items: flex-start;
  letter-spacing: -2px;
}

.stat-operator {
  font-size: 0.45em;
  font-weight: 300;
  margin-top: 0.15em;
  margin-left: 2px;
  color: #111111;
  vertical-align: super;
}

.stat-text {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin-top: 15px;
  line-height: 1.5;
  max-width: 250px;
}

/* Responsive Stats */
@media (max-width: 992px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .stats-bar {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .stats-bar {
    padding: 50px 0;
  }

  .stat-text {
    margin-top: 8px;
  }
}