@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Syne:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

body {
  font-family: 'Poppins';
  overflow-x: hidden;
  padding-top: 76px;
  padding-bottom: 56px;
}

:root {
    --gradient-blue: linear-gradient(90.38deg, #023be2 2.06%, #00a1c5 99.67%);
    --white: #ffffff;
    --heading-title-size: 3rem;
    --text-gray: #6c757d;
    --border-color: #d1d5db;
    --brand-blue: #023be2;
    --text-dark: #1a1a1a;
    --bg-blue: #E0E6EC;
    --bg-green: #E0ECE0;
    --navbar-height: 76px;
    --contact-shell-bg: #f1f2f4;
    --contact-form-bg: white;
    --contact-text-main: #0f172a;
    --contact-text-muted: #e4e9f0;
    --contact-border: #b5bac3;
    --contact-input-bg: white;
    --sticky-slider-height: 56px;
    --section-spacing: 60px;
    --section-spacing-mobile: 40px;
    --section-width:1280px;
}

.background-dark{
  background-color: #0b101e !important;
}

.text-white{
  color:e2e8f0;
}
/* ==================================================================================================================
================================================HERO SECTION======================================================
================================================================================================================= */
.hero-section {
  --clip-flat-start: 35%;
  --clip-top-start: 42%;
  background-color: #f9fafb;
  padding: var(--section-spacing) 20px 210px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: white;
  clip-path: polygon(0 75%, var(--clip-flat-start) 75%, 42% 28%, 100% 28%, 100% 0%, 100% 100%, 0 100%);
  z-index: 1;
}

.hero-container {
  max-width: var(--section-width);
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.growth-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.growth-label {
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
}

.growth-btn {
  padding: 6px 18px;
  border: 1.5px solid #023be2;
  border-radius: 50px;
  background: white;
  color: #023be2;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.growth-btn:hover {
  background: rgba(2, 59, 226, 0.08);
}

.growth-trust-line {
  margin: -10px 0 26px 0;
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
  opacity: 0;
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
  will-change: transform, opacity;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 30px 0;
  line-height: 1.2;
  opacity: 0;
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  will-change: transform, opacity;
}

.hero-highlight {
  background: linear-gradient(90.38deg, #023be2 2.06%, #00a1c5 99.67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sparkles {
  display: inline-block;
  margin-left: 10px;
  width: 60px;
  height: 60px;
  vertical-align: middle;
  animation: sparkleRotate 3s ease-in-out infinite;
}

@keyframes sparkleRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(15deg);
  }
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 20px;
  color: #4b5563;
  margin: 0 0 20px 0;
  font-weight: 400;
  max-width: 900px;
  opacity: 0;
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
  will-change: transform, opacity;
}

.cta-button {
  padding: 14px 40px;
  background: #023be2;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(2, 59, 226, 0.2);
}

.arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: rotate(35deg);
}

.hero-trust-line {
  margin: 24px 0 0 0;
  font-size: 15px;
  font-weight: 500;
  color: #4b5563;
  letter-spacing: 0.1px;
  opacity: 0;
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.35s;
  will-change: transform, opacity;
}

.clip-description {
  position: absolute;
  left: 15%;
  bottom: 64px;
  margin: 0;
  max-width: min(32vw, 420px);
  color: #4b5563;
  font-size: clamp(11px, 1.05vw, 15px);
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  text-wrap: balance;
  overflow-wrap: anywhere;
  z-index: 3;
}

.clip-description-emphasis {
  font-size: clamp(16px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90.38deg, #121213 2.06%, #161616 99.67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-right: 6px;
}

.logo-strip {
  position: absolute;
  right: 20px;
  bottom: clamp(18px, 2.5vw, 32px);
  width: calc(100% - var(--clip-top-start) + 80px);
  height: clamp(56px, 6.2vw, 78px);
  display: flex;
  align-items: center;
  z-index: 3;
  overflow: hidden;
  clip-path: polygon(0 0, 7% 7%, 0 100%, 100% 100%, 100% 0);
}

.logo-strip::before {
  content: none;
}

.logo-slider {
  flex: 1;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4.5vw, 64px);
  animation: logoLoop 35s linear infinite;
  padding-right: clamp(24px, 4.5vw, 64px);
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
  height: clamp(18px, 2.8vw, 34px);
  max-width: clamp(96px, 12vw, 180px);
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  flex-shrink: 0;
  filter: grayscale(95%);
}

.logo-item:hover {
  filter: grayscale(0);
}

@keyframes logoLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes swingIn {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateX(-90deg) translateZ(-100px);
    transform-origin: top;
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateZ(0);
    transform-origin: top;
  }
}


@media (min-width:1600px){
  .logo-strip {
  width: calc(100% - var(--clip-top-start) + 110px);
}
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 52px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }

  .logo-strip {
    width: calc(100% - var(--clip-top-start) + 30px);
    bottom: 60px;

  }

  .clip-description {
    left: 7%;
    bottom: 60px;
    max-width: min(38vw, 340px);
  }

  .logo-item {
    max-width: clamp(96px, 14vw, 150px);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: var(--section-spacing-mobile) 20px 100px;
  }

  .hero-container {
    padding: 40px 0;
  }
  
  .growth-buttons {
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .growth-label {
    font-size: 14px;
    width: 100%;
    margin-bottom: 8px;
  }
  
  .growth-btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  .growth-trust-line {
    margin: 0 0 24px 0;
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 1.3;
  }
  
  .sparkles {
    width: 40px;
    height: 40px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 10px;
  }
  
  .cta-button {
    padding: 14px 32px;
    font-size: 16px;
    margin-top: 8px;
  }

  .hero-trust-line {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.6;
    padding: 0 10px;
  }

  .logo-strip {
    width: calc(100% - var(--clip-top-start) + 35px);
    left: auto;
    right: 0;
    bottom: 70px;
    height: clamp(48px, 5.5vw, 64px);
  }

  .clip-description {
    left: 20px;
    bottom: 70px;
    max-width: min(42vw, 240px);
    font-size: clamp(9px, 1vw, 12px);
  }

  .logo-strip::before {
    display: none;
  }

  

  .logo-item {
  max-width: clamp(120px, 25vw, 180px);
}
}

@media (max-width: 480px) {
  .hero-section {
    padding: var(--section-spacing-mobile) 16px 100px;
  }

  .hero-container {
    padding: 30px 0;
  }
  
  .hero-title {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.35;
  }
  
  .sparkles {
    width: 32px;
    height: 32px;
    margin-left: 4px;
  }
  
  .hero-subtitle {
    font-size: 15px;
    line-height: 1.65;
    padding: 0 5px;
  }
  
  .growth-btn {
    padding: 6px 16px;
    font-size: 13px;
  }

  .growth-trust-line {
    margin: 0 0 20px 0;
    font-size: 13px;
    line-height: 1.5;
  }
  
  .cta-button {
    padding: 12px 28px;
    font-size: 15px;
    margin-top: 6px;
  }

  .hero-trust-line {
    margin-top: 18px;
    font-size: 11px;
    line-height: 1.6;
    padding: 0 5px;
  }

  .logo-strip {
    width: calc(100% - var(--clip-top-start) + 25px);
    left: auto;
    right: 0;
    bottom: 60px;
    height: clamp(42px, 5vw, 56px);
  }

  .clip-description {
    left: 16px;
    bottom: 60px;
    max-width: min(38vw, 200px);
    line-height: 1.4;
    font-size: clamp(8px, 1vw, 11px);
  }

  .clip-description-emphasis {
    font-size: clamp(16px, 3vw, 24px);
  }

  /* .logo-item {
    max-width: clamp(75px, 24vw, 100px);
    height: clamp(16px, 2.5vw, 28px);
  } */
  .contact-section,
  .contact-section .container,
  .contact-shell,
  .contact-form-panel,
  .contact-form-grid{
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

 
  .contact-field,
  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-shell {
    padding: 10px !important;
    border-radius: 18px !important;
    gap: 16px !important;
    grid-template-columns: 1fr !important;
  }

  .contact-form-panel {
    padding: 10px !important;
    border-radius: 14px !important;
  }

  .contact-form-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    font-size: 13px !important;
    padding: 10px 8px !important;
  }

  .contact-form-action {
    padding: 0 !important;
    margin: 0 !important;
  }

  body {
    overflow-x: hidden !important;
  }
}

/* Global Section Title Styles */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #023be2;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0;
  transform: translateY(22px) rotate(-1.4deg);
  will-change: transform, opacity;
}

.section-tag::before {
  content: '*';
  color: #023be2;
  font-size: 30px;
  line-height: 1;
  margin-top: 10px;
}

.tech-stack-section.animate-in .section-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0s;
}

.section-main-title {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

.section-main-title .text-blue {
  background: linear-gradient(90.38deg, #023be2 2.06%, #00a1c5 99.67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .section-main-title {
    font-size: 48px;
  }

  .section-subtitle {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .section-main-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .section-main-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }
}

/* ==================================================================================================================
================================================     NAVBAR  ======================================================
================================================================================================================= */


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
}

.nav-link {
  color: #333;
  font-weight: 400;
  font-size: 16px;
  margin: 0 20px;
  position: relative;
}

.nav-link .arrow {
  font-size: 18px;
  margin-left: 5px;
  transform: rotate(0deg);
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 1px;
}

.divider {
  color: #d1d1d1;
  font-weight: 200;
  font-size: 18px;
}

@media (min-width: 1024px) and (max-width: 1400px) {
  .nav-link {
    font-size: 14px;
    margin: 0 12px;
  }
  
  .btn-gradient {
    padding: 8px 18px;
    font-size: 13px;
  }
  
  .divider {
    font-size: 16px;
  }
}

@media (max-width: 1199px) {
  .offcanvas-body .btn-gradient{
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}


.btn-gradient {
    background: #023be2;
    color: var(--white);
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gradient-blue);
    border-radius: 17px;
    z-index: -1;
    opacity: 0.15;
    animation: pulseOut 3s infinite;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

.btn-gradient.no-pulse::before {
    content: none;
    animation: none;
}

.btn-gradient:hover {
    background: #023be2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(2, 59, 226, 0.2);
}

.btn-gradient:hover::before {
    opacity: 0.3;
}

.btn-gradient .arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-gradient:hover .arrow-icon {
    transform: rotate(35deg);
}

.nav-link-animated {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.nav-link-animated::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90.38deg, #023be2 2.06%, #00a1c5 99.67%);
    transition: width 0.3s ease;
}

.nav-link-animated:hover::after {
    width: 100%;
}

.custom-navbar {
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.custom-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90.38deg, #023be2 2.06%, #00a1c5 99.67%);
    transition: width 0.4s ease;
}

.custom-navbar:hover::after {
    width: 100%;
}

.nav-item-wrapper {
    position: relative;
    display: inline-block;
}

.mobile-menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-submenu {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    border-radius: 0;
}

.mobile-toggle {
  padding: 12px 0;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-arrow {
  transition: transform 0.3s;
}

.mobile-arrow.rotated {
  transform: rotate(90deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}

.mobile-submenu.expanded {
  max-height: 1000px;
  background: #f9f9f9;
  padding: 10px 0;
  margin-bottom: 10px;
  border-radius: 8px;
}

.submenu-category {
  margin-left: 15px;
  margin-top: 8px;
}

.category-title {
  font-weight: 600;
  font-size: 14px;
  color: #023be2;
  margin-bottom: 5px;
}

.mobile-submenu a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

.mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(8, 106, 218, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(8, 106, 218, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(8, 106, 218, 0);
    }
}

@keyframes pulseOut {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    5% {
        transform: scale(1);
        opacity: 0.3;
    }
    95% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}


/* ==================================================================================================================
================================================MEGA MENU ======================================================
================================================================================================================= */
.mega-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--navbar-height);
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    max-height: 0;
    overflow: hidden;
}

.mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 600px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menu-content {
    padding: 40px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.mega-menu.show .mega-menu-content {
    opacity: 1;
    transform: translateY(0);
}

.mega-menu-sidebar {
    border-right: 1px solid #e5e5e5;
    padding-right: 30px;
}

.mega-menu-main {
    padding-left: 30px;
}

.mega-menu-title {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.title-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90.38deg, #023be2 2.06%, #00a1c5 99.67%);
    display: block;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 16px;
}

.mega-menu-list li.active a {
    background: linear-gradient(90.38deg, #023be2 2.06%, #00a1c5 99.67%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.mega-menu-list li.active a img {
    filter: brightness(0) invert(1);
    transform: rotate(35deg);
}

.mega-menu-list a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
}

.mega-menu-list a:hover {
    color: #023be2;
}

.mega-menu-list-plain {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list-plain li {
    margin-bottom: 16px;
}

.mega-menu-list-plain a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.mega-menu-list-plain a:hover {
    color: #023be2;
}

.mega-menu-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.footer-label {
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

.reviews-badge {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 4px;
}

.btn-footer {
  background: #0066ff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-footer:hover {
  background: #0052cc;
}

@media (max-width: 768px) {
    .mega-menu.show {
        max-height: 80vh;
        overflow-y: auto;
    }

    .mega-menu-content {
        padding: 20px 0;
    }

    .mega-menu-sidebar {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .mega-menu-main {
        padding-left: 0;
    }

    .mega-menu-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .mega-menu-list li {
        margin-bottom: 12px;
    }

    .mega-menu-list a,
    .mega-menu-list-plain a {
        font-size: 14px;
    }

    .mega-menu-footer {
        margin-top: 30px;
        padding-top: 20px;
    }

    .mega-menu-footer .d-flex {
        flex-direction: column;
        gap: 20px;
    }

    .mega-menu-footer .d-flex > div:first-child {
        width: 100%;
    }

    .mega-menu-footer .d-flex > div .d-flex {
        flex-wrap: wrap;
        gap: 10px !important;
    }

    .mega-menu-footer img {
        height: 24px !important;
    }

    .mega-menu-footer button {
        width: 100%;
        padding: 10px 20px !important;
    }

    .reviews-badge {
        font-size: 10px;
    }

    .footer-label {
        font-size: 11px;
    }
}



/* ==================================================================================================================
================================================CHOOSE SECTION======================================================
================================================================================================================= */



.choose-section {
  padding: var(--section-spacing) 20px;
  margin: 0;
  background: #ffffff;
}

.choose-section .container {
  max-width: var(--section-width);
}

@media (max-width: 768px) {
  .choose-section {
    padding: var(--section-spacing-mobile) 20px;
  }
}

.choose-section h6,
.choose-section h1,
.choose-section p {
  opacity: 0;
  transform: translateY(22px) rotate(-1.4deg);
  will-change: transform, opacity;
}

.choose-section.animate-in h6 {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0s;
}

.choose-section.animate-in h1 {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.choose-section.animate-in p {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}

.text-blue {
  background: linear-gradient(90.38deg, #023be2 2.06%, #00a1c5 99.67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rotating-text-container {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  z-index: 2;
  animation: rotateText 15s linear infinite;
}

@keyframes rotateText {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#circlePath { fill: transparent; }

.rotating-text-content {
  fill: #023be2;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.col-lg-6.position-relative {
  overflow: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.col-lg-6.position-relative::-webkit-scrollbar {
  display: none;
}

.col-lg-6.position-relative::before,
.col-lg-6.position-relative::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: transform 3.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0s;
}

.col-lg-6.position-relative::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transform: translate(0%, 0%);
}

.col-lg-6.position-relative::after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: translate(0%, 0%);
}

.col-lg-6.position-relative:hover::before {
  opacity: 1;
  transform: translate(-100%, -100%);
}

.col-lg-6.position-relative:hover::after {
  opacity: 1;
  transform: translate(100%, 100%);
}

.col-lg-6.position-relative:hover .main-hero-img {
  transform: scale(1.03);
}

.main-hero-img {
  border: 1px solid rgba(2, 59, 226, 0.1);
  box-shadow: 0 20px 40px rgba(2, 59, 226, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.2s;
  transition: transform 0.8s ease;
  min-height: 600px;
  object-fit: cover;
}


@media (max-width: 480px) {
  .main-hero-img {
    min-height: 320px; /* reduce height for mobile */
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stats-container {
  background: white;
  border: 8px solid transparent; 
  border-radius: 30px;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(to right, #023be2 0%, rgba(2, 59, 226, 0.1) 50%, transparent 60%) border-box;
  position: relative;
  box-shadow: 0 0 20px rgba(2, 59, 226, 0.1);
  margin-top: -60px;
  max-width: 90%;
  z-index: 10;
} 

.stat-card-horizontal {
  padding: 5px;
}

.stat-circle-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #023be2;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.stat-circle-number::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #00a1c5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.stat-circle-number:hover::before {
  width: 100%;
  height: 100%;
}

.stat-circle-number h2 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-align: left;
}

.check-circle {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #023be2;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-circle::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #023be2;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .rotating-text-container {
    width: 120px;
    height: 120px;
    top: -30px;
    left: -30px;
  }
}

@media (max-width: 1280px) {
  .stats-container {
    margin-top: 2rem;
  }
}

@media (max-width: 1024px) {
  .stats-container {
    max-width: 95%;
    border-width: 6px;
  }

  .stats-container .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .stat-circle-number {
    width: 60px;
    height: 60px;
  }

  .stat-circle-number h2 {
    font-size: 18px;
  }

  .stat-label {
    font-size: 14px;
  }

 
  .clip-description {
    bottom: 60px;
  }

  .services-showcase .container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .choose-section .display-4 {
    font-size: 2rem;
  }

  .choose-section .text-secondary {
    font-size: 14px;
  }

  .stats-container {
    margin-top: 2rem;
    max-width: 100%;
    border-width: 5px;
    padding: 1rem !important;
  }

  .stats-container .col-md-3,
  .stats-container .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .stat-card-horizontal {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem !important;
  }

  .rotating-text-container {
    width: 100px;
    height: 100px;
    top: -25px;
    left: -10px;
  }

  .rotating-text-content {
    font-size: 6px;
  }

  .stat-circle-number {
    width: 50px;
    height: 50px;
  }

  .stat-circle-number h2 {
    font-size: 14px;
  }

  .stat-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .stats-container {
    border-width: 4px;
    padding: 0.75rem !important;
  }

  .stat-circle-number {
    width: 45px;
    height: 45px;
  }

  .stat-circle-number h2 {
    font-size: 12px;
  }

  .stat-label {
    font-size: 11px;
  }
}

/* ==================================================================================================================
================================================GRID SECTION======================================================
================================================================================================================= */



.grid-section {
  padding: var(--section-spacing) 20px;
  background: #f9fafb;
}

.grid-section .section-main-title,
.grid-section .section-subtitle {
  opacity: 0;
}

.grid-section .section-tag {
  opacity: 0;
}

.grid-section.animate-in .section-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0s;
}

.grid-section.animate-in .section-main-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.grid-section.animate-in .section-subtitle {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}

.grid-container {
    display: grid;
    grid-template-columns: 0.75fr 1.4fr 0.8fr;
    grid-template-rows: 330px;
    grid-auto-rows: 330px;
    gap: 20px;
    max-width: var(--section-width);
    width: 100%;
    margin: 0 auto;
}

/* Card Basics */
.grid-container .card {
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-white {
    background: #ffffff;
    color: #000;
    padding: 10px 25px;
    border-radius: 12px;   /* pill style */
    font-weight: 500;
    font-size: 14px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;

}

/* Arrow Image */
.btn-arrow {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: transform 0.3s ease;

    filter:brightness(0);
}


 .btn-white:hover .btn-arrow {
    transform: rotate(35deg);
}


.reviewed-text {
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #5c6368;
    font-weight: 400;
    position: absolute;
    top: 30px;
    left: 20%;
    transform: translateX(-50%);
    z-index: 2;
}

.arrow-img {
    width: 40px;
    height: 40px;
    margin-left: auto;
    transition: transform 0.3s ease;
    filter: brightness(0);
}

/* 🔥 Move arrow when hovering whole div */
.card-header:hover .arrow-img {
    transform: rotate(37deg);
}

.grid-container .card-white { background: #fff;     border: 1px solid rgba(2, 59, 226, 0.15); box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
.grid-container .card-white.span-wide { padding-top: 40px; padding-bottom: 40px;     border: 1px solid rgba(2, 59, 226, 0.15);}
.grid-container .card-light-green { background:  linear-gradient(90.38deg, rgba(2, 59, 226, 0.08) 2.06%, rgba(0, 161, 197, 0.08) 99.67%);     border: 1px solid rgba(2, 59, 226, 0.15);}
.grid-container .card-light-blue { background:  linear-gradient(90.38deg, rgba(2, 59, 226, 0.08) 2.06%, rgba(0, 161, 197, 0.08) 99.67%);     border: 1px solid rgba(2, 59, 226, 0.15);}
.grid-container .card-orange { background-color: white; padding: 0; align-items: center; justify-content: center; }

/* Grid Spanning */
.grid-container .span-wide { grid-column: span 1; }
.grid-container .span-extra-wide { grid-column: span 2; }

/* Typography */
.grid-container h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--text-dark); }
.grid-container p { font-size: 1rem; line-height: 1.5; color: var(--text-gray); margin-bottom: 15px; }
.grid-container .brand { color: var(--brand-blue); font-weight: 700; }

/* Components */
.grid-container .card-header { display: flex; align-items: center; gap: 30px; margin-bottom: 20px; background-color: transparent; border-bottom: none; padding: 0; text-decoration: none; }
.grid-container .logo { width: 50px; height: 50px; }
.grid-container .rating { font-size: 0.95rem; font-weight: 300; color: #5c6368;}
.grid-container .card-light-blue .card-header {
    position: relative;
    flex-wrap: wrap;
    padding-top: 22px;
    row-gap: 10px;
}

.grid-container .card-light-blue .reviewed-text {
    top: 0;
    left: 0;
    transform: none;
}
.grid-container .stars {
    display: flex;
    gap:0.5px;
    padding-bottom: 8px;
}

.star {
    width: 17px;
    height: 17px;
    fill: #e62415;
    stroke: #e62415;
  stroke-width: 2;
  stroke-linejoin: round;   
  stroke-linecap: round;
}

.grid-container .explore { font-weight: 700; text-decoration: none; color: #000; font-size: 0.85rem; margin-top: auto; }
.grid-container .explore span { color: #ff4f4f; font-size: 1rem; }

/* Orange Card Specifics */
.grid-container .contact-badge {
    position: absolute;
    top: 20px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
}
.grid-container .person-img { width: 100%; height: 100%; object-fit: cover; }

/* Horizontal Large Card */
.grid-container .card-horizontal {
    display: flex;
    flex-direction: row;
    padding: 0;
}
.grid-container .hero-img { width: 50%; height: 100%; object-fit: cover; }
.grid-container .card-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-container { grid-template-columns: repeat(2, 1fr); }
    .grid-container { 
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: auto;
        grid-auto-rows: auto;
    }
    .grid-container .span-extra-wide { grid-column: span 2; }
    .grid-container h3 { font-size: 1.3rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .reviewed-text { top: 30px; }
    .grid-container .card-horizontal .card-body {
        padding-left: 50px;
    }

    .grid-container .card:nth-child(1) { /* Clutch */
        grid-column: 1;
        grid-row: 1;
    }
    .grid-container .card:nth-child(4) { /* Google */
        grid-column: 2;
        grid-row: 1;
    }
    .grid-container .card:nth-child(2) { /* Who We Are */
        grid-column: 1;
        grid-row: 2;
    }
    .grid-container .card:nth-child(3) { /* Orange */
        grid-column: 2;
        grid-row: 2;
    }
    .grid-container .card:nth-child(5) { /* AI Driven */
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .grid-container { grid-template-columns: 1fr; }
    .grid-container .span-extra-wide, .grid-container .span-wide { grid-column: span 1; }
    .grid-container .card-horizontal { flex-direction: column; }
    .grid-container .hero-img { width: 100%; height: 200px; }
    .grid-container h3 { font-size: 1.2rem; }
    .grid-container .card-light-blue .card-header {
        padding-top: 24px;
        gap: 12px;
    }

    .grid-container .card-light-blue .logo {
        width: 44px;
        height: 44px;
    }
}

/* ==================================================================================================================
================================================SERVICES SECTION======================================================
================================================================================================================= */
.services-showcase {
  padding: 56px 20px;
  background: #ffffff;
}

.services-showcase .container {
  max-width: var(--section-width);
}

@media (max-width: 768px) {
  .services-showcase {
    padding: var(--section-spacing-mobile) 16px;
  }


}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #023be2;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-description {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.section-tag-dot {
  width: 22px;
  height: 22px;
  border: 2px solid #023be2;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #023be2;
}

.heading-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 38px;
}


.heading-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 820px;
}

.services-showcase .section-tag,
.services-showcase .section-main-title,
.services-showcase .section-subtitle,
.services-showcase .heading-title,
.services-showcase .heading-copy {
  opacity: 0;
  transform: translateY(22px) rotate(-1.4deg);
  will-change: transform, opacity;
}

.heading-copy {
  margin: 0;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  color: #6c757d;
  max-width: 620px;
}

.services-showcase.animate-in .section-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0s;
}

.services-showcase.animate-in .section-main-title,
.services-showcase.animate-in .heading-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.services-showcase.animate-in .section-subtitle,
.services-showcase.animate-in .heading-copy {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}

.panel-shell {
  background: #f8f9fa;
  border-radius: 48px;
  padding: 25px;
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(250px, 360px) 1fr;
  gap: 20px;
  align-items: stretch;
}

.tabs-col,
.details-col {
  background: #ffffff;
  border-radius: 30px;
  padding: 16px;
}

.service-tab {
  width: 100%;
  border: 0;
  background: #f8f9fa;
  border-radius: 999px;
  min-height: 56px;
  margin-bottom: 10px;
  padding: 12px 14px 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  text-align: left;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.service-tab:last-child {
  margin-bottom: 0;
}

.service-tab:hover {
  transform: translateX(2px);
}

.service-tab.active {
  background: linear-gradient(90.38deg, rgba(2, 59, 226, 0.1) 2.06%, rgba(0, 161, 197, 0.1) 99.67%);
  color: #023be2;
}

.tab-arrow-img {
  width: 25px;
  height: 25px;
  padding: 4px;
  background: linear-gradient(
    90.38deg,
    rgba(2, 59, 226, 0.8) 2.06%,
    rgba(0, 161, 197, 0.8) 99.67%
  );
  border-radius: 50%;
  transition: all 0.25s ease;
  transform: rotate(125deg);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transform: rotate(125deg) translateZ(0);
}

.service-tab.active .tab-arrow-img {
  transform: rotate(37deg) translateZ(0);
}

.details-col {
  padding: 28px;
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.services-showcase .details-col[hidden] {
  display: none !important;
}

.panel-cta-float {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(90.38deg, #023be2 2.06%, #00a1c5 99.67%);
  color: #ffffff;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1;
  overflow: visible;
}

.panel-cta-float::before {
  content: '';
  position: absolute;
  inset: -5px;
  background: var(--gradient-blue);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.15;
  animation: pulseOut 3s infinite;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.panel-cta-float:hover::before {
  opacity: 0.3;
}

.detail-title {
  margin: 0 0 12px;
  font-size: clamp(26px, 2vw, 38px);
  line-height: 1.2;
  max-width: calc(100% - 86px);
}

.detail-copy {
  margin: 0;
  color: #6c757d;
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.65;
  max-width: 1000px;
}

.feature-grid {
  list-style: none;
  padding: 0;
  margin: 30px 0 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 14px 34px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
  position: relative;
}

.feature-item::before {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #023be2;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #023be2;
  background-clip: content-box;
  padding: 4px;
}

.feature-item:hover {
  color: #023be2;
  cursor: pointer;
}

.detail-bottom {
  margin-top: auto;
  border: 1px solid rgba(2, 59, 226, 0.25);
  background: rgba(2, 59, 226, 0.05);
  border-radius: 20px;
  padding: 20px;
}

.detail-bottom h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.35;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #023be2;
  border-radius: 999px;
  color: #023be2;
  padding: 4px 4px 4px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  overflow: visible;
  white-space: nowrap;
}

.cta-pill:hover {
  transform: translateY(-1px);
  background: #023be2;
  color: #ffffff;
}

.cta-pill-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-left: 12px;
  margin-right: -20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #023be2;
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
  overflow: visible;
  transition: all 0.3s ease;
}

.cta-pill:hover .cta-pill-arrow {
  background: #ffffff;
  border-color: #023be2;
}

.cta-pill-arrow img {
  width: 20px;
  height: 20px;
  transform: rotate(20deg);
  transition: all 0.3s ease;
}

.cta-pill:hover .cta-pill-arrow img {
  transform: rotate(37deg);
  filter: brightness(0) invert(0);
}




.panel-cta-float img {
  width: 26px;
  height: 26px;
  transform: rotate(10deg);
    transition: transform 0.3s ease;

}

.panel-cta-float:hover img {
  transform: rotate(37deg);
}



/* ==================================================================================================================
================================================CTA SECTION======================================================
================================================================================================================= */

.custom-app-cta-section {
  padding: 60px 20px 60px;
  background: #ffffff;
}

.custom-app-cta-section.dark-bg {
  background: #0b101e;
}

.custom-app-cta-card {
  max-width: var(--section-width);
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  background-image: url('https://dev.primocys.com/wp-content/uploads/2026/01/Frame38486.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.custom-app-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
}

.custom-app-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(50px, 5vw, 80px) clamp(20px, 5vw, 48px);
  max-width: 920px;
  margin: 0 auto;
}

.custom-app-cta-content .section-subtitle {
  color: #ffffff;
}

.custom-app-cta-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(22px) rotate(-1.4deg);
  will-change: transform, opacity;
}

.custom-app-cta-section.animate-in .custom-app-cta-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0s;
}

.custom-app-cta-text {
  margin: 12px auto 18px;
  max-width: 760px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(22px) rotate(-1.4deg);
  will-change: transform, opacity;
}

.custom-app-cta-section.animate-in .custom-app-cta-text {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.custom-app-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
  padding: 12px 24px;
  border-radius: 14px;
  background: #ffffff;
  color: #0664d8;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-app-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.custom-app-cta-btn img {
  width: 22px;
  height: 22px;
  transform: rotate(20deg);
  transition: transform 0.3s ease;
}

.custom-app-cta-btn:hover img {
  transform: rotate(36deg);
}

@media (max-width: 1199px) {
  .heading-grid {
    grid-template-columns: 1fr;
  }

  .panel-shell {
    padding: 20px;
    border-radius: 32px;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .panel-grid > .details-col {
    display: none;
  }

  .tabs-col.accordion-mode {
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: grid;
    gap: 12px;
  }

  .tabs-col.accordion-mode .service-accordion-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 8px;
  }

  .tabs-col.accordion-mode .service-tab {
    margin-bottom: 0;
    border-radius: 18px;
    min-height: 54px;
    background: #f8f9fa;
  }

  .tabs-col.accordion-mode .service-tab.active {
    background: linear-gradient(90.38deg, rgba(2, 59, 226, 0.12) 2.06%, rgba(0, 161, 197, 0.12) 99.67%);
  }

  .tabs-col.accordion-mode .service-accordion-panel {
    margin-top: 8px;
    padding: 6px 12px 12px;
  }

  .tabs-col.accordion-mode .service-accordion-panel[hidden] {
    display: none;
  }

  .tabs-col.accordion-mode .service-accordion-panel .detail-title {
    max-width: none;
    font-size: clamp(24px, 3vw, 32px);
  }

  .tabs-col.accordion-mode .service-accordion-panel .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 22px 0 20px;
  }

  .tabs-col.accordion-mode .service-accordion-panel .feature-item {
    font-size: 16px;
  }

  .tabs-col.accordion-mode .service-accordion-panel .detail-bottom {
    margin-top: 0;
  }

  .custom-app-cta-title {
    font-size: clamp(24px, 3vw, 34px);
    white-space: normal;
  }

  .custom-app-cta-text {
    font-size: 18px;
  }

  .custom-app-cta-btn {
    font-size: 16px;
    padding: 11px 22px;
  }

  .tabs-col.accordion-mode .service-tab .tab-arrow-img {
    transform: rotate(-55deg);
  }

  .tabs-col.accordion-mode .service-tab.active .tab-arrow-img {
    transform: rotate(125deg);
  }
}

@media (max-width: 1024px) {
  .tabs-col:not(.accordion-mode) .tab-arrow-img {
    transform: rotate(-55deg) translateZ(0);
  }

  .tabs-col:not(.accordion-mode) .service-tab.active .tab-arrow-img {
    transform: rotate(124deg) translateZ(0);
  }
}

@media (max-width: 767px) {
  .services-showcase {
    padding: var(--section-spacing-mobile) 16px;
  }

  .tabs-col,
  .details-col {
    border-radius: 22px;
  }

  .details-col {
    padding: 20px;
  }

  .panel-cta-float {
    width: 48px;
    height: 48px;
    top: 18px;
    right: 18px;
  }

  .detail-title {
    max-width: calc(100% - 62px);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-pill {
    padding-left: 14px;
  }

  .service-tab {
    min-height: 52px;
    font-size: 16px;
    padding-left: 14px;
  }

  .custom-app-cta-section {
    padding: var(--section-spacing-mobile) 20px;
  }

  .custom-app-cta-card {
    border-radius: 22px;
  }

  .custom-app-cta-content {
    padding: 24px 16px;
  }

  .custom-app-cta-title {
    font-size: clamp(20px, 5.5vw, 28px);
    white-space: normal;
  }

  .custom-app-cta-text {
    margin: 16px auto 24px;
    font-size: 16px;
    line-height: 1.5;
  }

  .custom-app-cta-btn {
    min-width: 160px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 15px;
  }

  .custom-app-cta-btn img {
    width: 18px;
    height: 18px;
  }
}

/* ==================================================================================================================
================================================SMART SOLUTIONS SECTION======================================================
================================================================================================================= */



.smart-solutions-section {
  background: #f9fafb;
  padding: var(--section-spacing) 20px;
}

.smart-solutions-container {
  max-width: var(--section-width);
  margin: 0 auto;
}

.smart-solutions-section .section-tag,
.smart-solutions-section .section-main-title,
.smart-solutions-section .heading-copy {
  opacity: 0;
  transform: translateY(22px) rotate(-1.4deg);
  will-change: transform, opacity;
}

.smart-solutions-section.animate-in .section-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0s;
}

.smart-solutions-section.animate-in .section-main-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.smart-solutions-section.animate-in .heading-copy {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}

.smart-solutions-heading {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.8fr);
  gap: 24px;
  margin-bottom: 28px;
  align-items: center;
}

.smart-solutions-title-main {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.4px;
}

.smart-solutions-title-sub {
  margin: 6px 0 0;
  color: #111827;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.05;
}

.smart-solutions-intro {
  margin: 0;
  color: #4b5563;
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.4;
  max-width: 540px;
}

.smart-solutions-table {
  border: 1px solid #d1d5db;
  border-left: 0;
  border-right: 0;
  background: #f9fafb;
}

.smart-solutions-row {
  display: grid;
  grid-template-columns: 130px minmax(220px, 0.8fr) 1fr;
  align-items: center;
  min-height: 180px;
  border-bottom: 1px solid #d1d5db;
  transition: all 0.3s ease;
}

.smart-solutions-row:hover {
  background: rgba(2, 59, 226, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 59, 226, 0.1);
}

.smart-solutions-row:hover .smart-icon-cell {
  color: #023be2;
}

.smart-solutions-row:last-child {
  border-bottom: 0;
}

.smart-icon-cell {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #d1d5db;
  color: #6b7280;
  transition: all 0.3s ease;
}


.smart-icon-cell svg {
  width: 62px;
  height: 62px;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.smart-solutions-row:hover .smart-icon-cell svg {
  transform: scale(1.4);
}

.smart-title-cell,
.smart-copy-cell{
  padding: 28px 24px;
}

.smart-title-cell h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.12;
}

.smart-copy-cell p {
  margin: 0;
  color: #4b5563;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.45;
  max-width: 560px;
}

.smart-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.smart-tags span,
.smart-tags a {
  display: inline-flex;
  align-items: center;
  background:  linear-gradient(90.38deg, rgba(2, 59, 226, 0.15) 2.06%, rgba(0, 161, 197, 0.15) 99.67%);
  border: 1px solid rgba(2, 59, 226, 0.25);
  color:#023be2;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}





@media (max-width: 1199px) {
  .smart-solutions-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .smart-solutions-row {
    grid-template-columns: 96px minmax(180px, 0.9fr) 1fr;
  }

  .smart-icon-cell,
  .smart-solutions-row {
    min-height: 160px;
  }

  .smart-title-cell,
  .smart-copy-cell{
    padding: 20px 16px;
  }

  .smart-title-cell h3 {
    font-size: 25px;
  }

  .smart-tags span {
    font-size: 14px;
  }

  
}

@media (max-width: 767px) {
  .smart-solutions-section {
    padding: var(--section-spacing-mobile) 20px;
  }

  .smart-solutions-row {
    grid-template-columns: 72px 1fr;
    align-items: start;
    min-height: auto;
  }


  .smart-icon-cell {
    min-height: 100%;
    padding-top: 20px;
    grid-row: 1 / span 2;
  }

  .smart-icon-cell svg {
    width: 42px;
    height: 42px;
  }

  .smart-title-cell {
    padding-bottom: 8px;
  }

  .smart-title-cell h3 {
    font-size: 24px;
  }

  .smart-copy-cell {
    grid-column: 2;
    padding-top: 0;
    padding-bottom: 10px;
  }

 

  .smart-tags {
    gap: 8px;
    margin-top: 14px;
  }

  .smart-tags span {
    padding: 7px 12px;
    font-size: 13px;
  }
}


/* ==================================================================================================================
================================================TESTIMONIALS SECTION======================================================
================================================================================================================= */



.testimonials-section {
  padding: var(--section-spacing) 20px;
  background-color: #f9f9f9;
 
}

.testimonials-section .container {
  max-width: var(--section-width);
  background-color: #f9f9f9;

}

.testimonials-section .section-tag,
.testimonials-section .section-main-title {
  opacity: 0;
  transform: translateY(22px) rotate(-1.4deg);
  will-change: transform, opacity;
}

.testimonials-section.animate-in .section-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0s;
}

.testimonials-section.animate-in .section-main-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 36px;
}

.clutch-widget {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  
}
.testimonials-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #023be2;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}



.all-testimonials-btn {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  padding: 12px 12px 12px 22px;
  backdrop-filter: blur(6px);
}

.all-testimonials-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(90.38deg, #023be2 2.06%, #00a1c5 99.67%);
  font-size: 22px;
  line-height: 1;
}

.testimonials-main-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
}

.rating-card {
  background: linear-gradient(90.38deg, rgba(2, 59, 226, 0.08) 2.06%, rgba(0, 161, 197, 0.08) 99.67%);
  border: 1px solid rgba(2, 59, 226, 0.15);
  border-radius: 30px;
  padding: 36px 26px;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rating-avatars {
  display: flex;
}

.rating-avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  margin-left: -10px;
}

.rating-avatars img:first-child {
  margin-left: 0;
}

.rating-client-text {
  margin: 0 0 16px 0;
  text-align: center;
  font-size: 28px;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1;
}

.rating-client-line {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-card-description {
  margin: 32px 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #1a1a1a;
}

.rating-card .btn-gradient {
  margin: 0 auto;
}

.testimonials-slider-shell {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: linear-gradient(90.38deg, rgba(2, 59, 226, 0.08) 2.06%, rgba(0, 161, 197, 0.08) 99.67%);
  padding: 26px 20px;
  overflow: hidden;
  position: relative;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(4, calc(50% - 8px));
  gap: 14px;
  transition: transform 0.5s ease;
}

.testimonial-review-card {
  padding: 10px 18px 12px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.testimonial-review-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(2, 59, 226, 0.2);
}

.testimonials-slider .testimonial-review-card.is-second-visible::after {
  display: none;
}

.testimonial-review-card:nth-child(2) {
  border-right: none;
}

.testimonial-review-card:first-child {
  border-right: none;
}

.testimonial-brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-brand-mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(90.38deg, #023be2 2.06%, #00a1c5 99.67%);
}

.testimonial-brand-name {
  color: #1a1a1a;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
}

.testimonial-quote {
  margin-left: auto;
  color: #00a1c5;
  font-size: 42px;
  line-height: 0.7;
  font-weight: 700;
}

.testimonial-review-card p {
  margin: 20px 0 auto;
  color: #4b5563;
  font-size: 16px;
}

.testimonial-review-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-end;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
}

.testimonial-review-footer h5 {
  margin: 0;
  color: #1a1a1a;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 600;
}

.testimonial-review-footer span {
  color: #6c757d;
  font-size: 16px;
}

.testimonial-stars {
  color: #FDB022 !important; 
  font-size: 18px !important;
  letter-spacing: 2px;
}

.testimonials-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testimonials-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(2, 59, 226, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dot-mobile-only {
  display: none;
}

.testimonials-dots .dot.active {
  width: 10px;
  height: 10px;
  background: #023be2;
}

.testimonials-dots .dot.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 1px solid #023be2;
  border-radius: 50%;
}

.testimonials-logos-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-logo-box {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(22px, 1.7vw, 33px);
  font-weight: 600;
  background: rgba(0, 0, 0, 0.18);
}

@media (max-width: 1199px) {
  .testimonials-main-grid {
    grid-template-columns: 1fr;
  }

  .rating-card {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .testimonials-logos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

  @media (max-width: 991px) {
  .testimonials-header {
    flex-direction: column;
    margin-bottom: 24px;
  }

  .testimonials-clutch-wrap {
    margin-left: 0;
  }

  .all-testimonials-btn {
    margin-top: 0;
  }

  .testimonials-slider {
    grid-template-columns: repeat(4, calc(50% - 7px));
  }

  .testimonial-review-card:nth-child(2) {
    border-right: none;
  }

  .testimonial-review-card:first-child::after {
    display: block;
  }
}

@media (max-width: 768px) {
  .testimonial-review-card::after {
    display: none !important;
  }

  .testimonials-slider {
    grid-template-columns: repeat(4, 100%);
    gap: 0;
  }

  .dot-mobile-only {
    display: block;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: var(--section-spacing-mobile) 16px;
  }

  .testimonials-slider {
    grid-template-columns: repeat(4, 100%);
    gap: 0;
  }

  .testimonials-slider-shell {
    padding: 20px 16px;
  }

  .testimonials-slider-shell::before {
    display: none;
  }

  .testimonial-review-card {
    padding: 16px;
  }

  .testimonial-brand-name {
    font-size: 22px;
  }

  .testimonial-review-card p {
    font-size: 14px;
    margin: 16px 0 20px;
  }

  .dot-mobile-only {
    display: block;
  }

  .testimonials-logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .testimonial-logo-box {
    min-height: 80px;
    font-size: 24px;
  }

  .testimonial-review-footer h5 {
    font-size: 28px;
  }

  .testimonial-review-footer span {
    font-size: 18px;
  }
}

.google-review-widget {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 8px 55px 8px 30px ;
  position: relative;
  transition: all 0.3s ease;
  min-height: 54px;
  
}

.review-widget-border {
  border: 1px solid rgba(2, 59, 226, 0.2);
  border-radius: 10px;
}

.google-review-widget::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  background: url("https://dev.primocys.com/wp-content/uploads/2026/01/arrow-up-1.webp") center/contain no-repeat;
  filter: brightness(0);
}

.google-review-widget:hover::after {
  transform: translateY(-50%) rotate(37deg);
}

.bg-gradient{
  background: linear-gradient(90.38deg, rgba(2, 59, 226, 0.08) 2.06%, rgba(0, 161, 197, 0.08) 99.67%) !important;
}


.google-review-widget .reviewed-text {
  position: absolute;
  top: 15px;
  left: 80px;
  font-size: 11px;
  color: #5c6368;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.google-review-widget .logo {
  width: 100px;
  height: 60px;
  margin-right: 12px;
  margin-top: 17.5px;
  object-fit: contain;
  filter:grayscale(100%)
}



.google-review-widget .rating {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* margin-top: 5px; */
}

.google-review-widget .stars {
  display: flex;
  gap: 2px;
  line-height: 1;
}

.google-review-widget .star {
  width: 16px;
  height: 16px;
}

.google-review-widget .rating span {
  font-size: 0.95rem;
  color: #5c6368;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 10px;
}

.upwork-review-widget .logo {
  width: 106px;
  height: 30px;
  margin-right: 0;
  margin-top: 0;
}

.upwork-review-widget {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-width: 146px;
  padding: 20px 55px 20px 30px;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 54px;
}

.upwork-review-widget::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background: url("https://dev.primocys.com/wp-content/uploads/2026/01/arrow-up-1.webp") center/contain no-repeat;
  filter:brightness(0)
}

.upwork-review-widget .reviewed-text {
  position: static;
}

.upwork-review-widget .rating {
  align-items: center;
}

.upwork-review-widget .rating span {
  margin-top: 0;
}

.testimonial-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(90.38deg, #023be2 2.06%, #00a1c5 99.67%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-left: auto;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.testimonial-play-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  background: linear-gradient(90.38deg, #023be2 2.06%, #00a1c5 99.67%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  animation: videoPulse 2s infinite;
}

@keyframes videoPulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.testimonial-play-btn:hover {
  transform: scale(1.1);
}

.testimonial-play-btn svg {
  margin-left: 2px;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.4); /* lighter overlay */
  backdrop-filter: blur(8px);     /* blur effect */
  -webkit-backdrop-filter: blur(8px); /* for Safari */
}


.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}

.video-modal-close:hover {
  color: #00a1c5;
}


/* ==================================================================================================================
================================================TO PROVIDE SOLUTIONS SERVICE SECTION======================================================
================================================================================================================= */


.services-section {
    padding: var(--section-spacing) 20px;
    background: #ffffff;
}

.services-section .container {
    max-width: var(--section-width);
    padding: 0;
}


.services-section .section-tag,
.services-section .section-main-title,
.services-section .section-subtitle {
  opacity: 0;
  transform: translateY(22px) rotate(-1.4deg);
  will-change: transform, opacity;
}

.services-section.animate-in .section-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0s;
}

.services-section.animate-in .section-main-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.services-section.animate-in .section-subtitle {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}



.header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.main-heading {
    font-size: var(--heading-title-size);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}

.explore-top {
    max-width: 350px;
}

.explore-top a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}

.explore-top p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border-color);
}

.service-card {
    padding: 50px 30px;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

/* Remove right border for the 3rd column items */
.service-card:nth-child(3n) {
    border-right: none;
}

.card-number {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.card-desc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 50px; /* Ensures alignment if text lengths vary */
}

/* Tags Styles */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tags span {
    border: 1px solid #ddd;
    background: linear-gradient(90.38deg, rgba(2, 59, 226, 0.1) 2.06%, rgba(0, 161, 197, 0.1) 99.67%);
    border: 1px solid rgba(2, 59, 226, 0.15);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #333;
    color: #023be2;
    font-weight: 500;
}

.service-card .btn-gradient::before {
    display: none;
}

/* Button Styles */
.explore-btn {
    background: #111;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.explore-btn:hover {
    background: var(--gradient-blue);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card:nth-child(3n) { border-right: 1px solid var(--border-color); }
    .service-card:nth-child(2n) { border-right: none; }
    .services-section {
        padding: var(--section-spacing-mobile) 20px;
    }
    .service-card {
        padding: 40px 24px;
    }
}

@media (max-width: 768px) {
    .service-card,
    .service-card:nth-child(3n) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card { border-right: none; }
    .service-card:last-child { border-bottom: none; }
    .header-container { flex-direction: column; gap: 20px; }
    .explore-top { max-width: 100%; }
    .main-heading { font-size: 2.2rem; }
    .service-card { padding: 30px 20px; }
}





/* ==================================================================================================================
================================================BLOG SECTION======================================================
================================================================================================================= */


.blog-container {
    padding: var(--section-spacing) 20px;
    background:#ffffff
}

.blog-container .container {
    max-width: var(--section-width);
    padding: 0;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.blog-container .section-tag,
.blog-container .section-main-title,
.blog-container .section-subtitle {
    opacity: 0;
}

.blog-header .section-subtitle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    max-width: 440px;
}

.blog-explore-btn {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.blog-explore-btn img {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    filter: brightness(0);
}



.blog-explore-btn:hover img {
    transform: rotate(37deg);
}

.blog-container.animate-in .section-tag {
    animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0s;
}

.blog-container.animate-in .section-main-title {
    animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.1s;
}

.blog-container.animate-in .section-subtitle {
    animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.2s;
}



.header-left h1 {
    font-size: 3rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 2px;
}

.header-right {
    max-width: 350px;
    text-align: left;
}

.explore-link {
    display: block;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.header-right p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Card Styling */
.blog-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.4s ease-out, box-shadow 0.3s ease;
    will-change: transform;
}

.blog-card:hover {
    transition-property: transform, box-shadow;
    transition-duration: 0.1s, 0.3s;
    transition-timing-function: linear, ease;
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.card-content {
    padding: 25px;
}

.card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    color: #555;
    font-weight: 400;
    margin-bottom: 15px;
}

.card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.card-meta:hover span {
   color:#0230b8
}

.card-meta svg {
    width: 16px;
    height: 16px;
    color: #023be2;
}

.card-content h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 430;
    color: #1a1a1a;
    margin-bottom: 25px;
    min-height: 3.5em; /* Keeps titles aligned */
    cursor: pointer;
}

.card-content:hover h3 {
  color:#023be2
}


.read-more {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}



.read-more img {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    filter: brightness(0);
}

.blog-card:hover .read-more img {
    transform: rotate(37deg);
}

.explore-more {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}



.explore-more img {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    filter: brightness(0);
}

.card:hover .explore-more img {
    transform: rotate(37deg);
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .blog-container {
        padding: 40px 0;
        padding: 40px 20px;
    }
}
/* ==================================================================================================================
==============================================CONTACT FORM ======================================================
================================================================================================================= */
.contact-section {
    padding: 24px 20px 72px;
}

.contact-section .container {
    max-width: var(--section-width);
    padding: 0;
    background: #fafafa;

}

.contact-shell {
    background: var(--contact-shell-bg);
    border-radius: 40px;
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 34px;
}

.contact-info-panel {
    padding: 10px 6px;
}

.contact-kicker {
    margin: 0 0 14px;
    color: #023be2;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.contact-title {
    margin: 0;
    max-width: 520px;
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.2;
    color: var(--contact-text-main);
    font-weight: 700;
}

.contact-info-list {
    margin-top: 56px;
    display: grid;
    gap: 28px;
}

.contact-label {
    margin: 0 0 6px;
    color: black;
    font-size: 14px;
    line-height: 1.4;
}

.contact-link {
    color: var(--contact-text-main);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-link:hover {
    color: #023be2;
}

.contact-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contact-icon-placeholder {
    display: inline-block;
    width: 24px;
}

.contact-socials {
    margin-top: 34px;
}

.contact-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-social-row a {
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: all 0.25s ease;
    padding: 2px 6px;
}

.contact-social-row a:hover {
    color: #023be2;
    transform: translateY(-1px);
}

.contact-social-row a i {
    font-size: 28px;
    line-height: 1;
}

.contact-form-panel {
    background: var(--contact-form-bg);
    border-radius: 28px;
    padding: 30px 30px 34px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-field label {
    font-size: 14px;
    color: var(--contact-text-main);
    font-weight: 500;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid var(--contact-border);
    border-radius: 12px;
    background: var(--contact-input-bg);
    padding: 12px 16px;
    font-size: 15px;
    color: var(--contact-text-main);
    outline: none;
}

.contact-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-height: 48px;
    line-height: 1.3;
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23616b7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.contact-field select::-ms-expand {
    display: none;
}

.contact-field select option {
    color: var(--contact-text-main);
}

.contact-custom-select {
    position: relative;
}

.contact-select-trigger {
    width: 100%;
    border: 1px solid var(--contact-border);
    border-radius: 12px;
    background: var(--contact-input-bg);
    padding: 12px 44px 12px 16px;
    min-height: 48px;
    font-size: 15px;
    color: var(--contact-text-main);
    text-align: left;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.contact-select-trigger::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23616b7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    transition: transform 0.2s ease;
}

.contact-custom-select.is-open .contact-select-trigger::after {
    transform: translateY(-50%) rotate(180deg);
}

.contact-select-value {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    width: 100%;
    min-height: 22px;
}

.contact-select-placeholder {
    color: #616b7a;
}

.contact-select-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef2f7;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.2;
}

.contact-select-chip-label {
    white-space: nowrap;
}

.contact-select-chip-remove {
    color: #023be2;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}

.contact-select-menu {
    list-style: none;
    margin: 8px 0 0;
    padding: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 30;
    background: #ffffff;
    border: 1px solid var(--contact-border);
    border-radius: 12px;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    display: none;
}

.contact-custom-select.is-open .contact-select-menu {
    display: block;
}

.contact-select-menu li button {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--contact-text-main);
}

.contact-select-menu li button:hover,
.contact-select-menu li button.is-selected {
    background: rgba(2, 59, 226, 0.1);
    color: #023be2;
}

.contact-custom-select.is-invalid .contact-select-trigger {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.14);
}

.phone-input-container {
    display: flex;
    align-items: center;
    border: 1px solid var(--contact-border);
    border-radius: 12px;
    background: var(--contact-input-bg);
    position: relative;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.phone-input-container #contactPhone {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
}

.contact-country-select {
    position: relative;
    flex-shrink: 0;
}

.contact-country-trigger {
    width: 100%;
    border: none;
    border-radius: 0;
    background: transparent;
    min-height: 48px;
    padding: 10px 34px 10px 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--contact-text-main);
    position: relative;
}

.contact-country-trigger::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23616b7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    transition: transform 0.2s ease;
}

.contact-country-select.is-open .contact-country-trigger::after {
    transform: translateY(-50%) rotate(180deg);
}

.country-flag {
    font-size: 16px;
    line-height: 1;
}

.country-code {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.contact-country-menu {
    list-style: none;
    margin: 8px 0 0;
    padding: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    z-index: 35;
    background: #ffffff;
    border: 1px solid var(--contact-border);
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    max-height: 240px;
    overflow-y: auto;
    display: none;
}

.contact-country-select.is-open .contact-country-menu {
    display: block;
}

.contact-country-menu li button {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--contact-text-main);
}

.contact-country-menu li button:hover,
.contact-country-menu li button.is-selected {
    background: rgba(2, 59, 226, 0.1);
    color: #023be2;
}

.contact-field textarea {
    resize: vertical;
    border-radius: 12px;
    min-height: 180px;
}

.contact-field input::placeholder,
.contact-field select,
.contact-field textarea::placeholder {
    color: #7c8696;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #023be2;
    box-shadow: 0 0 0 3px rgba(2, 59, 226, 0.12);
}

.phone-input-container:focus-within {
    border-color: #023be2;
    box-shadow: 0 0 0 3px rgba(2, 59, 226, 0.12);
}

.phone-input-container #contactPhone:focus {
    box-shadow: none;
}

.file-input-container {
    position: relative;
    border: 1px solid var(--contact-border);
    border-radius: 12px;
    background: var(--contact-input-bg);
    min-height: 48px;
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
}

.file-input-hidden {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-custom-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    color: #7c8696;
    font-size: 15px;
    width: 100%;
    pointer-events: none;
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-form-action {
    grid-column: 1 / -1;
    margin-top: 4px;
    text-align: center;
}


.contact-form-action .btn-gradient::before {
    display: none;

}



@media (max-width: 1200px) {
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .contact-title {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: var(--section-spacing-mobile) 16px;
    }

    .contact-shell {
        border-radius: 26px;
        padding: 22px;
        gap: 30px;
    }

    .contact-kicker {
        font-size: 14px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-info-list {
        margin-top: 34px;
        gap: 20px;
    }

    .contact-label {
        font-size: 13px;
    }

    .contact-link {
        font-size: 18px;
    }

    .contact-form-panel {
        border-radius: 20px;
        padding: 24px 20px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-field label {
        font-size: 14px;
    }

    .contact-field input,
    .contact-field select,
    .contact-field textarea {
        font-size: 14px;
        padding: 12px 14px;
    }

    .contact-field select {
        min-height: 44px;
        padding-right: 40px;
        background-position: right 12px center;
        background-size: 14px;
    }

    .contact-select-trigger {
        min-height: 44px;
        padding: 12px 40px 12px 14px;
        font-size: 14px;
    }

    .contact-select-chip {
        padding: 4px 8px;
        font-size: 13px;
    }

    .contact-select-trigger::after {
        right: 12px;
        width: 14px;
        height: 14px;
        background-size: 14px;
    }

    .contact-select-menu li button {
        font-size: 13px;
    }

    .contact-country-select {
        min-width: 116px;
    }

    .contact-country-trigger {
        min-height: 44px;
        padding: 10px 30px 10px 8px;
    }

    .country-flag {
        font-size: 14px;
    }

    .country-code {
        font-size: 13px;
    }

    .contact-country-menu {
        min-width: 200px;
    }

    .contact-country-menu li button {
        font-size: 13px;
    }

    
}




/* ==================================================================================================================
================================================FAQ SECTION======================================================
================================================================================================================= */
.faq-section {
    padding: 72px 20px;
    background: #ffffff;
}

.faq-section .container {
    max-width: var(--section-width);
    padding: 0;
}

.faq-section .section-main-title,
.faq-section .section-subtitle {
    opacity: 0;
}

.faq-section .section-tag {
    opacity: 0;
}

.faq-section.animate-in .section-tag {
    animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0s;
}

.faq-section.animate-in .section-main-title {
    animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.faq-section.animate-in .section-subtitle {
    animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.15s;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
    margin-top: 40px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-section details {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-section summary {
    padding: 20px 24px;
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
}

.faq-section summary::-webkit-details-marker {
    display: none;
}

.faq-section .icon::before {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    color: #023be2;
}

.faq-section details[open] .icon::before {
    content: "\2212"; /* Minus sign */
}

.faq-section details[open] {
    border-color: #023be2;
    box-shadow: 0 4px 20px rgba(2, 59, 226, 0.08);
}

.faq-section .content {
    padding: 0 24px 24px 24px;
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    overflow: hidden;
}

@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================================================================================================
================================================FOOTER SECTION======================================================
================================================================================================================= */
.footer-country-slider-section {
    background: #021a6e;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-country-slider {
    overflow: hidden;
}

.footer-country-track {
    display: flex;
    width: max-content;
    animation: footerCountryLoop 130s linear infinite;
    will-change: transform;
}

.footer-country-track:hover {
    animation-play-state: paused;
}

.footer-country-group {
    display: flex;
}

.footer-country-item {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    min-width: 285px;
    padding: 26px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    flex-shrink: 0;
}

.footer-country-item img {
    width: 62px;
    height: 42px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.footer-country-item span {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.01em;
}

@keyframes footerCountryLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.site-footer-lite {
    background: #edf4ff;
    color: #000000;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin-top: 0;

}

.site-footer-lite a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer-lite a:hover {
    color: #023be2;
}

.site-footer-lite .container {
    max-width: var(--section-width);
    padding: 0px 20px;
    background: #edf4ff;
}

.footer-top {
    padding: 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
}

.footer-col {
    padding: 84px 22px 56px;
    border-right: 1px solid rgba(0, 0, 0, 0.14);
}

.footer-col:last-child {
    border-right: none;
}

.footer-col h4 {
    margin: 0 0 14px;
    font-size: 1.35rem;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a,
.footer-col p {
    margin: 0 0 8px;
    font-size: 0.95rem;
    line-height: 1.55;
    opacity: 0.95;
}


.footer-office-col h4:not(:first-child) {
    margin-top: 24px;
}

.footer-middle {
    border-top: 1px solid rgba(0, 0, 0, 0.14);
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.footer-middle-wrap {
    padding: 20px 20px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-content: center;
    gap: 20px;
}

.footer-brand h3 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.footer-brand p {
    margin: 0;
    font-size: 0.95rem;
    max-width: 480px;
    line-height: 1.6;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 5px;
}

.footer-badge {
    padding: 8px 10px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    min-height: 142px;
    flex-shrink: 0;
}

.footer-badge img {
    height: 80px;
    height: 140px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-bottom-wrap {
    padding: 20px 20px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-certifications {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-cert {
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.55);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.footer-bottom-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-bottom-links a:not(:last-child)::after {
    content: '|';
    margin-left: 12px;
    color: rgba(0, 0, 0, 0.3);
}

.footer-socials > span {
    font-size: 1rem;
    font-weight: 500;
}

.footer-social-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-list a {
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 30px;
    line-height: 1;
    padding: 2px 6px;
    transition: all 0.25s ease;
}

.footer-social-list a:hover {
    color: #023be2;
    transform: translateY(-1px);
}

@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col:nth-child(2) {
        border-right: none;
    }

    .footer-col:nth-child(3),
    .footer-col:nth-child(4) {
        border-top: 1px solid rgba(0, 0, 0, 0.14);
    }

    .footer-middle-wrap,
    .footer-bottom-wrap {
        flex-direction: column;
        align-items: center;
    }

    .footer-badges {
        justify-content: flex-start;
    }
}

@media (max-width: 1024px) {
    .footer-badge {
        min-height: 100px;
    }
    .footer-badge img {
        height: 90px;
    }
}

@media (max-width: 768px) {
    .footer-badges {
        flex-wrap: wrap;
        overflow-x: visible;
        justify-content: center;
    }
    .footer-badge {
        flex: 0 0 calc(25% - 8px);
        max-width: calc(25% - 8px);
    }
}

@media (max-width: 767px) {
    .footer-country-item {
        min-width: 200px;
        padding: 18px 22px;
        gap: 14px;
    }

    .footer-country-item img {
        width: 42px;
        height: 30px;
    }

    .footer-country-item span {
        font-size: 1.2rem;
    }

    .footer-top {
        padding: 44px 0 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col {
        border-right: none;
        border-top: 1px solid rgba(0, 0, 0, 0.14);
    }

    .footer-col:first-child {
        border-top: none;
    }

    .footer-col h4 {
        font-size: 1.2rem;
    }

    .footer-brand h3 {
        font-size: 1.55rem;
    }

    .footer-brand p {
        font-size: 0.92rem;
    }

    .footer-socials {
        width: 100%;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }

    .footer-social-list a {
        font-size: 24px;
        padding: 2px 4px;
    }

    .footer-bottom-wrap {
        padding: 22px 16px;
    }

    .footer-badge {
        min-height: 80px;
    }
    .footer-badge img {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .footer-badge {
        min-height: 60px;
        padding: 4px 6px;
    }
    .footer-badge img {
        height: 50px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-badge {
        min-height: 60px;
        padding: 4px 6px;
        flex: 0 0 calc(33.33% - 7px);
        max-width: calc(33.33% - 7px);
    }
    .footer-badge img {
        height: 50px;
    }
}


/* ==================================================================================================================
================================================STICKY SLIDER SECTION======================================================
================================================================================================================= */
.sticky-expert-slider {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    height: var(--sticky-slider-height);
    display: flex;
    align-items: center;
    padding: 0 12px 0 16px;
    gap: 12px;
    background: linear-gradient(90deg, #4f27f8 0%, #2c49f8 40%, #0e75ee 70%, #00a1c5 100%);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.22);
}

.sticky-expert-marquee {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.sticky-expert-track {
    width: max-content;
    display: inline-flex;
    align-items: center;
    animation: stickyExpertLoop 16s linear infinite;
}

.sticky-expert-track span {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.96;
    padding-right: 52px;
}

.sticky-expert-btn {
    flex-shrink: 0;
    background: #ffffff;
    color: #111827;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    padding: 8px 20px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sticky-expert-btn:hover {
    color: #111827;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.sticky-expert-close-btn {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    padding: 6px 8px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease;
}

.sticky-expert-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sticky-expert-slider.is-hidden {
    display: none;
}

@keyframes stickyExpertLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1199px) {
    .sticky-expert-track span {
        font-size: 1rem;
    }

    .sticky-expert-btn {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

@media (max-width: 767px) {
    :root {
        --sticky-slider-height: 50px;
    }

    body {
        padding-bottom: 50px;
    }

    .sticky-expert-slider {
        padding: 0 10px;
    }

    .sticky-expert-track span {
        font-size: 0.84rem;
    }

    .sticky-expert-btn {
        font-size: 0.76rem;
        padding: 8px 12px;
        border-radius: 7px;
    }
}

/* ==================================================================================================================
===============================================ABOUT HERO SECTION===================================================
================================================================================================================== */
.about-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(140px, 15vw, 180px) 20px clamp(90px, 9vw, 120px);
 background: linear-gradient(
  90.38deg,
  rgba(2, 59, 226, 0.3) 2.06%,
  rgba(0, 161, 197, 0.3) 99.67%
);
}

body.about-page {
  padding-top: 0;
  padding-bottom: 0;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.55), transparent 42%),
    radial-gradient(circle at 85% 10%, rgba(255, 245, 220, 0.6), transparent 38%),
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.2), transparent 44%);
  z-index: -2;
}

.about-hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--section-width);
  margin: 0 auto;
  text-align: center;
}

.about-hero-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
}

.about-hero-rings .ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid white;
  transform-origin: center;
  animation: aboutRingPulse 4.2s ease-in-out infinite;
}

.about-hero-rings .ring-1 {
  width: clamp(90px, 9vw, 130px);
  aspect-ratio: 1 / 1;
  animation-delay: 0s;
}

.about-hero-rings .ring-2 {
  width: clamp(180px, 18vw, 260px);
  aspect-ratio: 1 / 1;
  animation-delay: 0.45s;
}

.about-hero-rings .ring-3 {
  width: clamp(300px, 29vw, 420px);
  aspect-ratio: 1 / 1;
  animation-delay: 0.9s;
}

.about-hero-rings .ring-4 {
  width: clamp(440px, 42vw, 600px);
  aspect-ratio: 1 / 1;
  animation-delay: 1.35s;
}

@keyframes aboutRingPulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(1);
  }
  50% {
    opacity: 0.25;
    transform: scale(1.08);
  }
}

@media (max-width: 992px) {
  .about-hero-description {
    max-width: 95%;
  }

  .about-hero-cta {
    font-size: 1.35rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 120px 16px 84px;
  }

  .about-hero-title {
    font-size: clamp(1.8rem, 7.5vw, 2.4rem);
  }

  .about-hero-description {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .about-hero-cta {
    width: 100%;
    max-width: 260px;
    font-size: 1.15rem;
  }
}

/* ==================================================================================================================
=============================================ABOUT first SECTION====================================================
================================================================================================================== */
.about-first-section {
  padding: clamp(60px, 7vw, 88px) 20px clamp(70px, 8vw, 100px);
}

.about-first-container {
  max-width: var(--section-width);
  margin: 0 auto;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(30px, 4vw, 50px);
  align-items: end;
}

.about-first-header {
  max-width: 1280px;
  margin: 0 auto;
}

.about-first-section .section-tag,
.about-first-section .section-main-title,
.about-first-section .section-subtitle,
.banner-section .banner-title,
.banner-section .banner-subtitle,
.about-approach-section .section-tag,
.about-approach-section .section-main-title,
.about-approach-section .section-subtitle,
.about-stats-section .section-tag,
.about-stats-section .section-main-title,
.about-stats-section .section-subtitle,
.featured-awards-section .section-tag,
.featured-awards-section .section-main-title,
.featured-awards-section .featured-awards-headline {
  opacity: 0;
}

.about-first-section.animate-in .section-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0s;
}

.about-first-section.animate-in .section-main-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.about-first-section.animate-in .section-subtitle {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}

.banner-section.animate-in .banner-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0s;
}

.banner-section.animate-in .banner-subtitle {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.about-strategy-section.animate-in .section-tag,
.about-approach-section.animate-in .section-tag,
.about-stats-section.animate-in .section-tag,
.featured-awards-section.animate-in .section-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0s;
}

.about-strategy-section.animate-in .section-main-title,
.about-approach-section.animate-in .section-main-title,
.about-stats-section.animate-in .section-main-title,
.featured-awards-section.animate-in .section-main-title,
.featured-awards-section.animate-in .featured-awards-headline {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.about-strategy-section.animate-in .section-subtitle,
.about-approach-section.animate-in .section-subtitle,
.about-stats-section.animate-in .section-subtitle {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}

.about-first-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-first-metric {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.about-first-icon {
  width: 78px;
  min-width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
}

.about-first-icon svg {
  width: 68px;
  height: 68px;
}

.about-first-icon img {
  width: 68px;
  height: 68px;
  object-fit: cover;
}

.about-first-metric h3 {
  margin: 0;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1;
  font-weight: 550;
  color: #111827;
}

.about-first-metric p {
  margin: 10px 0 0;
  color: #374151;
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  line-height: 1.5;
}

.about-first-btn {
  align-self: flex-start;
  margin-top: 10px;
}

.about-first-right {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap:5px;
}

.about-first-photo-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-first-photo-top {
  width: 90%;
  height: clamp(180px, 20vw, 280px);
  object-fit: cover;
}

.about-first-text {
  margin: 0;
  color: #6c757d;
  font-size: 18px;
  line-height: 1.6;
}

.about-first-photo-tall {
  width: 100%;
  height: clamp(320px, 38vw, 550px);
  object-fit: cover;
}

@media (max-width: 1199px) {
  .about-first-container {
    grid-template-columns: 1fr;
  }

  
  .about-first-photo-tall {
    height: clamp(300px, 52vw, 520px);
  }

  .about-first-left {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .about-first-btn {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 10px;
  }

  .about-first-text{
    font-size: 17px;
  }
}

@media (max-width: 768px) {
 
  .about-first-text {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .about-first-section {
    padding: 54px 20px 70px;
  }

  .about-first-metric {
    gap: 12px;
  }

  .about-first-icon {
    width: 62px;
    min-width: 62px;
    height: 62px;
  }

  .about-first-icon svg {
    width: 56px;
    height: 56px;
  }

  .about-first-left {
    grid-template-columns: 1fr;
  }
  
  .about-first-text{
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .section-main-title {
    font-size: 36px;
  }

  .section-subtitle, .about-first-text {
    font-size: 12px;
  }
}

/* ==================================================================================================================
=============================================ABOUT STRATEGY SECTION=================================================
================================================================================================================== */
.bg-gray-50 {
  background-color: #f9fafb;
}

.about-strategy-section {
  padding: var(--section-spacing) 20px;
}

.about-strategy-wrap {
  max-width: var(--section-width);
  margin: 0 auto;
  border-radius: 26px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(22px, 3.5vw, 40px);
  overflow: hidden;
}

.about-strategy-media {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  justify-content: center;
}

.about-strategy-photo-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 260px;
}

.about-strategy-photo {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
}

.about-strategy-photo-small {
  width: clamp(155px, 18vw, 210px);
  height: clamp(255px, 29vw, 330px);
  margin-bottom: 150px;
}

.about-strategy-photo-tall {
  width: clamp(175px, 20vw, 235px);
  height: clamp(325px, 36vw, 435px);
}

.about-strategy-photo-wrapper::before,
.about-strategy-photo-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: transform 3.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0s;
}

.about-strategy-photo-wrapper::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transform: translate(0%, 0%);
}

.about-strategy-photo-wrapper::after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: translate(0%, 0%);
}

.about-strategy-photo-wrapper:hover::before {
  opacity: 1;
  transform: translate(-100%, -100%);
}

.about-strategy-photo-wrapper:hover::after {
  opacity: 1;
  transform: translate(100%, 100%);
}

.about-strategy-photo-wrapper:hover .about-strategy-photo {
  transform: scale(1.03);
}

.about-strategy-sparkle {
  position: absolute;
  top: 40px;
  left: 45%;
  transform: translateX(-50%);
  width: clamp(52px, 6vw, 74px);
  height: auto;
  animation: sparkleRotate 3s ease-in-out infinite;
}

.about-strategy-learn {
  position: absolute;
  left: 10px;
  bottom: 12px;
  width: 102px;
  height: 102px;
  border: 2px dashed #023be2;
  border-radius: 50%;
  color: #023be2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: grid;
  place-items: center;
}

.about-strategy-learn span {
  transform: rotate(-18deg);
}

.about-strategy-cards {
  display: grid;
  gap: 24px;
  align-content: center;
  position: relative;
}

.about-strategy-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 20px;
  border: 1px solid rgba(167, 243, 51, 0.14);
  background: linear-gradient(90.38deg, rgba(2, 59, 226, 0.08) 2.06%, rgba(0, 161, 197, 0.08) 99.67%);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.about-strategy-card.active {
  background: transparent;
  box-shadow: none;
  border-color: transparent;
}

.strategy-card-slider {
  position: absolute;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  z-index: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

.about-strategy-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  color: #023be2;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.about-strategy-card h3 {
  margin: 0 0 8px;
  color: var(--text-dark);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.2;
}

.about-strategy-card p {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(0.75rem, 0.8vw, 0.85rem);
  line-height: 1.5;
}

.strategy-rotating-text .rotating-text-content {
  font-size: 8px;
}

.strategy-rotating-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  filter: brightness(0);
}

.about-strategy-media .rotating-text-container {
  top: auto;
  left: 100px;
  bottom: 0;
  width: 140px;
  height: 140px;
}

/* Responsive improvements for strategy section */
@media (max-width: 1199px) {
  

  .about-strategy-media {
    min-height: auto;
    justify-content: center;
    padding-top: 86px;
    padding-bottom: 80px;
  }

  .about-strategy-photo-small {
    margin-bottom: 60px;
    width: 42%;
    height: auto;
    aspect-ratio: 2/3;
  }

  .about-strategy-photo-tall {
    width: 48%;
    height: auto;
    aspect-ratio: 1/2;
  }

  .about-strategy-learn {
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .about-strategy-section {
    padding: 50px 20px 70px;
  }

  .about-strategy-wrap {
    grid-template-columns: 1fr;
    border-radius: 20px;
    padding: 18px;
    margin-top: -30px;
  }

  .about-strategy-media {
    gap: 12px;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .about-strategy-photo-small {
    width: 48%;
    height: auto;
    aspect-ratio: 2/3;
    margin-bottom: 30px;
  }

  .about-strategy-photo-tall {
    width: 54%;
    height: auto;
    aspect-ratio: 1/2;
  }

  .about-strategy-card {
    border-radius: 16px;
    padding: 20px 16px;
  }

  .about-strategy-sparkle {
    width: 45px;
    top: 15px;
    left: 50%;
  }
}

@media (max-width: 767px) {
  .about-strategy-media .rotating-text-container {
    width: 100px;
    height: 100px;
    margin-left: -50px;
    bottom: 10px;
  }
  
  .strategy-rotating-img {
    width: 24px;
    height: 24px;
  }
}

/* Additional responsive improvements */
@media (max-width: 576px) {
  .about-strategy-section {
    padding: 40px 16px 60px;
  }

  .about-strategy-wrap {
    padding: 14px;
  }

  .about-strategy-media {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .about-strategy-photo-small {
    width: 45%;
    margin-bottom: 20px;
  }

  .about-strategy-photo-tall {
    width: 60%;
  }

  .about-strategy-card {
    padding: 16px 14px;
    gap: 14px;
  }

  .about-strategy-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 20px;
  }

  .about-strategy-card h3 {
    font-size: 1rem;
  }

  .about-strategy-card p {
    font-size: 0.8rem;
  }

  .about-strategy-media .rotating-text-container {
    width: 80px;
    height: 80px;
    margin-left: -40px;
    bottom: 8px;
  }
  
  .strategy-rotating-img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .about-strategy-photo-small {
    width: 42%;
  }

  .about-strategy-photo-tall {
    width: 68%;
  }

  .about-strategy-card {
    padding: 14px 12px;
  }

  .about-strategy-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 18px;
  }

  .about-strategy-card h3 {
    font-size: 0.95rem;
  }

  .about-strategy-card p {
    font-size: 0.75rem;
  }

  .about-strategy-media .rotating-text-container {
    width: 70px;
    height: 70px;
    margin-left: -35px;
    bottom: 6px;
  }
  
  .strategy-rotating-img {
    width: 18px;
    height: 18px;
  }

  .about-strategy-sparkle {
    width: 35px;
    top: 10px;
    left:40%;
  }
}

/* ==================================================================================================================
=============================================ABOUT APPROACH SECTION=================================================
================================================================================================================== */
.about-approach-section {
  padding: var(--section-spacing) 20px;
}

.about-approach-container {
  max-width: var(--section-width);
  margin: 0 auto;
}

.about-approach-header {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(280px, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.about-approach-title-wrap {
  margin: 0;
}

.about-approach-title-wrap .section-tag {
  margin-bottom: 12px;
}

.about-approach-title {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.about-approach-desc {
  margin: 0;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.6;
  color: var(--text-gray);
}

.about-approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.about-approach-card {
  padding: clamp(24px, 2.5vw, 36px);
  border-radius: 20px;
  /* background: var(--white); */
  /* border: 1px solid rgba(2, 59, 226, 0.12); */
  transition: all 0.3s ease;
}

.about-approach-card:hover {
  border-color: rgba(2, 59, 226, 0.25);
  box-shadow: 0 8px 32px rgba(2, 59, 226, 0.08);
}

.about-approach-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.about-approach-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  color: var(--brand-blue);
  /* background: linear-gradient(90.38deg, rgba(2, 59, 226, 0.08) 2.06%, rgba(0, 161, 197, 0.08) 99.67%); */
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 0;
}

.about-approach-card-title {
  margin: 0;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  font-weight: 700;
  color: var(--brand-blue);
}

.about-approach-card-text {
  margin: 0;
  font-size: clamp(14px, 0.9vw, 15px);
  line-height: 1.6;
  color: var(--text-dark);
}

.about-approach-divider {
  border-top: 1px solid var(--border-color);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.about-approach-logo-slider {
  overflow: hidden;
}

.about-approach-logo-slider::-webkit-scrollbar {
  display: none;
}

.about-approach-logo-track {
  display: flex;
  align-items: center;
  gap: clamp(32px, 4vw, 56px);
  width: max-content;
  padding-right: clamp(32px, 4vw, 56px);
  animation: logoLoop 35s linear infinite;
}

.about-approach-logo-track:hover {
  animation-play-state: paused;
}

.about-approach-logo-img {
  height: clamp(28px, 3vw, 44px);
  max-width: clamp(80px, 10vw, 140px);
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  flex-shrink: 0;
  filter: grayscale(95%);
  transition: all 0.3s ease;
  pointer-events: auto;
  -webkit-user-drag: none;
  user-select: none;
}

.about-approach-logo-img:hover {
  filter: grayscale(0);
  opacity: 1;
}


@media (max-width: 991px) {
  .about-approach-header {
    grid-template-columns: 1fr;
  }

  .about-approach-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .about-approach-section {
    padding: var(--section-spacing-mobile) 20px;
  }

  .about-approach-container {
    padding: 0 4px;
  }

  .about-approach-header {
    margin-bottom: 36px;
  }

  .about-approach-cards {
    margin-bottom: 40px;
  }

  .about-approach-logo-slider {
    margin: 0 -16px;
  }
}

/* ==================================================================================================================
=============================================ABOUT STATS SECTION==================================================
================================================================================================================== */
.about-stats-section {
  padding: var(--section-spacing) 20px;
}

.about-stats-container {
  max-width: var(--section-width);
  margin: 0 auto;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

.about-stats-grid .about-stats-panel:nth-child(1),
.about-stats-grid .about-stats-panel:nth-child(4) {
  grid-column: span 2;
}

.about-stats-grid .about-stats-panel:nth-child(2),
.about-stats-grid .about-stats-panel:nth-child(3) {
  grid-column: span 3;
}

@media (max-width: 1280px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-grid .about-stats-panel:nth-child(1),
  .about-stats-grid .about-stats-panel:nth-child(2),
  .about-stats-grid .about-stats-panel:nth-child(3),
  .about-stats-grid .about-stats-panel:nth-child(4) {
    grid-column: span 1;
  }

  .about-stats-grid .about-stats-panel:first-child {
    border-top-left-radius: 24px;
  }

  .about-stats-grid .about-stats-panel:nth-child(4) {
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
  }
}

@media (min-width: 1281px) {
  .about-stats-grid .about-stats-panel:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: min-content min-content;
    align-content: center;
    align-items: center;
    gap: 0 30px;
  }
  .about-stats-grid .about-stats-panel:nth-child(2) .about-stats-title {
    grid-column: 1;
    grid-row: 1;
  }
  .about-stats-grid .about-stats-panel:nth-child(2) .about-stats-metric {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
  }
  .about-stats-grid .about-stats-panel:nth-child(2) .about-stats-tags,
  .about-stats-grid .about-stats-panel:nth-child(2) .about-stats-awards {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

.about-stats-panel {
  border-radius: 24px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.about-stats-grid .about-stats-panel:first-child ,
.about-stats-grid .about-stats-panel:nth-child(4) {
  border-top-left-radius: 0;
}



.about-stats-panel-gradient {
  background: linear-gradient(180deg, rgba(2, 59, 226, 0.06) 0%, rgba(0, 161, 197, 0.08) 100%);
  border: 1px solid rgba(2, 59, 226, 0.12);
}

.about-stats-panel-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(2, 59, 226, 0.2);
}

.about-stats-title {
  margin: 0 0 12px;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.about-stats-panel-dark .about-stats-title {
  color: rgba(255, 255, 255, 0.9);
}

.about-stats-metric {
  margin: 0 0 clamp(20px, 2.5vw, 28px);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.about-stats-panel-dark .about-stats-metric {
  background: linear-gradient(90.38deg, #60a5fa 2.06%, #38bdf8 99.67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



.about-stats-tags {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-stats-tags-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

.about-stats-awards {
  display: flex;
  align-items: center;
}

.about-stats-awards-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
}

.about-stats-brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}

.about-stats-brand-img {
  height: clamp(24px, 2.5vw, 36px);
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.about-stats-panel-apps {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

.about-stats-apps-content {
  flex: 1;
  min-width: 180px;
  padding-right: clamp(140px, 18vw, 200px);
  align-self: flex-start;
}

.about-stats-apps-visual {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(220px, 26vw, 320px);
  height: auto;
  overflow: visible;
}

.about-stats-app-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right ;
  display: block;
}

.about-stats-panel-apps .about-stats-arrow {
  position: absolute;
  top: clamp(28px, 3vw, 40px);
  right: clamp(28px, 3vw, 40px);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
  z-index: 2;
}

.about-stats-arrow:hover {
  transform: scale(1.1);
}

.about-stats-arrow img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-brands {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .about-stats-section {
    padding: var(--section-spacing-mobile) 20px;
  }

  .about-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about-stats-grid .about-stats-panel {
    flex: 1 1 auto;
    min-width: auto;
    max-width: none;
  }

  .about-stats-panel {
    padding: 24px;
  }

  .about-stats-brands {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .about-stats-panel-apps {
    flex-direction: column;
    align-items: stretch;
  }

  .about-stats-apps-content {
    min-width: auto;
    padding-right: 0;
    padding-bottom: 140px;
  }

  .about-stats-apps-visual {
    bottom: 0;
    right: 0;
    width: 220px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .about-stats-tags-img {
    max-width: 100%;
  }

  .about-stats-awards-img {
    max-width: 70%;
  }

  .about-stats-apps-content {
    padding-bottom: 120px;
  }


  .about-stats-apps-visual {
    width: 200px;
    height: auto;
  }
}


/* ==================================================================================================================
========================================  BANNER (OVER FEATURED AWARDS)  =====================================
================================================================================================================= */

.banner-section {
  position: relative;
  margin-top: 0;
  margin-bottom: -120px; /* pull card into featured awards section (half in / half out) */
  z-index: 2;
}

.banner-container {
  max-width: var(--section-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

.banner-content {
  background-image: url('https://dev.primocys.com/wp-content/uploads/2026/01/Frame38486.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 32px;
  padding: clamp(36px, 4.8vw, 64px) clamp(24px, 5vw, 72px);
  color: #ffffff;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.banner-tag {
  color: #ffffff;
}

.banner-title {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.banner-title span {
  font-weight: 700;
}

.banner-subtitle {
  margin: 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  align-self: center;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  align-self: center;
  padding: 12px 24px;
  border-radius: 14px;
  border: none;
  background-color: #ffffff;
  color: #0664d8;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}


.banner-btn:hover {
    transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.banner-btn img {
  width: 22px;
  height: 22px;
  transform: rotate(20deg);
  transition: transform 0.3s ease;
}

.banner-btn:hover img {
  transform: rotate(36deg);
}


@media (max-width: 1024px) {
  .banner-content {
    max-width: 100%;
  }
  .banner-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    margin-bottom: -80px; /* keep overlap but slightly reduced on tablets */
  }

  .banner-container {
    padding: 0 20px;
  }

  .banner-content {
    border-radius: 24px;
  }

  .banner-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .banner-section {
    margin-bottom: -56px; /* gentle overlap on mobile */
  }

  .banner-content {
    padding: 24px 18px;
    border-radius: 20px;
  }
  .banner-title {
    font-size: 22px;
  }
}



/* ==================================================================================================================
================================================  FEATURED AWARDS SECTION  ========================================
================================================================================================================= */

.featured-awards-section {
  background-color: #f9fafb; /* gray-50 */
  padding: calc(var(--section-spacing) + 120px) 0 var(--section-spacing);
  overflow: hidden;
}

.featured-awards-container {
  max-width: var(--section-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header Row ---- */
.featured-awards-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.featured-awards-header-left {
  flex: 1;
  min-width: 220px;
}


.featured-awards-headline {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.45;
}

.featured-awards-headline strong {
  font-weight: 700;
  color: var(--text-dark);
}

/* ---- Nav Buttons ---- */
.featured-awards-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.awards-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: #1e2636;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.awards-nav-btn:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 59, 226, 0.3);
}

.awards-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: #1e2636;
}

/* ---- Track / Carousel ---- */
.featured-awards-track-wrap {
  overflow: hidden;
  border-radius: 20px;
}

.featured-awards-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ---- Award Card ---- */
.award-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  background: #1a2035;
  border-radius: 16px;
  padding: 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}


/* Circular image container with blurred grey backdrop */
.award-card-img-wrap {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.award-card-img-wrap::before {
  content: '';
  position: absolute;
  width: 110px;
  height: 110px;
  background-color: #2e3746;
  border-radius: 50%;
  z-index: -1;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.award-card-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.award-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.35;
}

.award-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .award-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}

@media (max-width: 768px) {
  .featured-awards-header {
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .featured-awards-headline {
    font-size: clamp(18px, 4vw, 22px);
  }

  .award-card {
    flex: 0 0 calc(50% - 10px);
  }

  .awards-nav-btn {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .featured-awards-section {
    padding: calc(var(--section-spacing-mobile) + 56px) 0 var(--section-spacing-mobile);
  }

  .featured-awards-container {
    padding: 0 20px;
  }

  .featured-awards-headline {
    font-size: 18px;
  }

  .award-card {
    flex: 0 0 calc(100% - 0px);
  }

  
}

/* ==================================================================================================================
===============================================  TRUSTED BY SECTION =================================================
================================================================================================================== */

.trusted-section {
  background: #0b101e;
  padding: 80px 20px 100px;
  color: #fff;
  text-align: center;
}

.trusted-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;

  background: linear-gradient(90.38deg, #023be2 2.06%, #00a1c5 99.67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  opacity: 0;
  will-change: transform, opacity;
}

.trusted-section.animate-in .trusted-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.trusted-subtitle {
  font-size: 16px;
  color: #e2e8f0;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
  opacity: 0;
  will-change: transform, opacity;
}

.trusted-section.animate-in .trusted-subtitle {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.trusted-logo-strip {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  clip-path: none;
  height: 80px;
  margin-bottom: 80px;
}

.trusted-logo-strip .logo-item {
  filter: grayscale(100%);
}

.trusted-logo-strip .logo-item:hover{
  filter: grayscale(0);
}

.trusted-stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  text-align: left;
}

.trusted-stat-item {
  flex: 1;
}

.trusted-stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.trusted-stat-text {
  font-size: 14px;
  color: #b4b8ca;
  line-height: 1.5;
}

.trusted-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 15px;
}

@media (max-width: 991px) {
  .trusted-stats-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
  }
  .trusted-stat-item {
    flex: 0 0 calc(50% - 20px);
  }
  .trusted-stat-divider {
    display: none;
  }
  .trusted-stat-number {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .trusted-stat-item {
    flex: 0 0 100%;
  }
}



/* ==================================================================================================================
==============================================CONTACT HERO SECTION ======================================================
================================================================================================================= */
#contact.contact-section {
  padding: 80px 20px;
  background-color: #fafafa;
}

.contact-container {
  max-width: var(--section-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-container .section-tag {
  margin-bottom: 8px;
}

/* Left Side */
.contact-left-title {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-left-sub {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 40px;
  line-height: 1.5;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #4b5563;
  font-size: 15px;
  font-weight: 500;
}

.contact-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-testimonial-carousel-wrapper {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 600px;
}

.contact-testimonial-carousel {
  overflow: hidden;
}

.contact-testimonial-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.contact-testimonial-card {
  min-width: 100%;
  padding-right: 20px;
  box-sizing: border-box;
}

.contact-testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.contact-testimonial-name {
  font-weight: 600;
  color: #111827;
  font-size: 16px;
  margin-bottom: 2px;
}

.contact-testimonial-role {
  font-size: 13px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-testimonial-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

.contact-testimonial-next {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e5e7eb;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.2s;
  z-index: 2;
}

.contact-testimonial-next:hover {
  background: #f9fafb;
}

/* Right Side - Form */
.contact-form-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.contact-form-sub {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 30px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
}

.contact-form-group label {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.contact-form-group label span {
  color: #ef4444;
  margin-left: 2px;
}

.contact-form-control {
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.contact-form-control:focus {
  border-color: #023be2;
  box-shadow: 0 0 0 3px rgba(2, 59, 226, 0.1);
}

textarea.contact-form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-full {
  grid-column: 1 / -1;
}

.contact-submit-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.contact-submit-row span {
  font-size: 12px;
  color: #6b7280;
  width: 100%;
}

.contact-submit-row .btn-gradient {
  padding: 12px 24px;
  border-radius: 8px;
  flex-shrink: 0;
  font-weight: 600;
  width: auto;
  justify-content: center;
}

.contact-submit-row .btn-gradient::before {
  display: none;
}

.contact-response-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}

.contact-form-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-form-badge-img {
  height: 110px;
  max-width: 23%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .contact-form-badge-img {
    height: 120px;
    max-width: 45%;
  }
}

/* Intel input adjustments */
.iti {
  width: 100%;
}


/* Responsive */
@media (max-width: 1024px) {
  .contact-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .contact-left-col {
    display: contents;
  }

  .contact-intro { order: 1; }
  .contact-form-card { order: 2; }
  .contact-info { order: 3; }
  .contact-testimonial-carousel-wrapper { order: 4; }
  
  .contact-testimonial-next {
    right: 0;
  }

  .contact-form-card {
    padding: 30px;
    width: 100%;
  }

  .contact-testimonial-carousel-wrapper {
    max-width: 100%;
    width: 100%;
  }
  .contact-left-sub{
    margin-bottom: 0px;
  }
  .contact-info{
  margin-bottom: 0px;
  }
}




@media (max-width: 620px) {
  #contact.contact-section {
    padding: 40px 20px; /* Reduced side padding */
    overflow-x: hidden; /* Hard stop for horizontal scrolling */
    width: 100%;
    box-sizing: border-box;
  }

  .contact-container {
    display: flex; /* Switch from Grid to flex for better control */
    flex-direction: column;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .contact-left-title {
    font-size: 24px;
    width: 100%;
    word-wrap: break-word; /* Prevents long words from pushing screen */
  }

  .contact-testimonial-carousel-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    margin: 20px 0;
    padding: 15px;
    box-sizing: border-box; /* Padding stays INSIDE the width */
    overflow: hidden; 
  }

  .contact-testimonial-carousel {
    overflow: hidden;
  }

  .contact-testimonial-track {
    display: flex;
    width: 100%;
  }

  .contact-testimonial-card {
    min-width: 100%;
    /* flex-shrink: 0; */
    padding-right: 0 !important;
    box-sizing: border-box;
  }

  .contact-form-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    padding: 20px !important;
    box-sizing: border-box; 
    border-radius: 16px;
  }

  .contact-form-grid {
    display: flex;
    flex-direction: column; /* Stack all inputs 100% wide */
    width: 100%;
    gap: 15px;
  }

  .contact-form-group {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-form-control {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box; 
  }

  /* 5. Submit Row & Badges */
  .contact-submit-row {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  /* .btn-gradient {
    width: 100% ;
    margin-bottom: 10px;
  } */

  .contact-form-badges {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 10px;
  }

  .contact-form-badge-img {
    height: 90px;
    max-width: 45%;
  }
}

/* --- Blog Hero Section --- */
.header-section {
  background-color: transparent; /* Allows page body color, typically black/dark based on image */
  background: white; /* Force dark background as per screenshot */
  padding: 80px 15px;
}



.header-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .header-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .header-title {
    font-size: 2rem;
  }
}

.header-subtitle {
  color: #6b7280;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 50px;
}

.blog-tags-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.blog-tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-tag {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 10px;
  border: 1px solid rgba(2, 59, 226, 0.15);
  background-color: white;
  color: black;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.blog-tag:hover {
  background: linear-gradient(
    90.38deg,
    rgba(2, 59, 226, 0.15) 2.06%,
    rgba(0, 161, 197, 0.15) 99.67%
  );

  border: 1px solid rgba(2, 59, 226, 0.15);
  color: black;
}

/* Drag scroll feature for mobile */
@media (max-width: 768px) {
  .blog-tags-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(2, 59, 226, 0.5) transparent;
    margin-bottom: 30px;
  }
  .blog-tags-wrapper::-webkit-scrollbar {
    height: 4px;
    display: block;
  }
  .blog-tags-wrapper::-webkit-scrollbar-track {
    background: transparent;
  }
  .blog-tags-wrapper::-webkit-scrollbar-thumb {
    background: rgba(2, 59, 226, 0.5);
    border-radius: 4px;
  }
  .blog-tags-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(2, 59, 226, 0.8);
  }
  .blog-tags-container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 10px; /* space for scroll bar if any */
    width: max-content;
    margin: 0 auto;
  }
  .blog-tag {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

.header-portfolio-btn-wrap {
  margin-top: -15px;
  margin-bottom: 60px;
}

@media (max-width: 480px) {
  .hero-contact-btn {
    justify-content: center;
    padding: 12px 20px;
    font-size: 15px;
  }
  .header-portfolio-btn-wrap {
    margin-top: -10px;
    margin-bottom: 40px;
  }
}

/* Search Container */
.blog-search-container {
  max-width: 600px;
  margin: 0 auto;
}

.blog-search-form {
  display: flex;
  background-color: white;
   border: 1px solid rgba(2, 59, 226, 0.15);
  border-radius: 10px;
  padding: 0px;
  align-items: center;
  transition: border-color 0.3s ease;
}

.blog-search-form:focus-within {
  border-color: rgba(2, 59, 226, 0.15);
}

.blog-search-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: black;
  padding: 15px 20px;
  font-size: 1rem;
  outline: none;
  width: 100%;
}

.blog-search-input::placeholder {
  color: #666;
}

.blog-search-btn {
  background: linear-gradient(
    90.38deg,
    rgba(2, 59, 226, 0.15) 2.06%,
    rgba(0, 161, 197, 0.15) 99.67%
  );
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 15.5px 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}



@media (max-width: 576px) {
  .blog-search-input {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  .blog-search-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* --- Blog Grid Cards Section --- */
.blog-cards-section {
  background-color: transparent;
  padding: 60px 0;
}

.blog-grid-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
}

.blog-grid-img-wrap {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  width: 100%;
}

.blog-grid-img-wrap img {
  border-radius: 8px;
  max-width: 100%;
  height: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-grid-card:hover .blog-grid-img-wrap img {
  transform: scale(1.03);
}

.blog-grid-title {
  font-size: 1.15rem;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  margin-top: 1rem;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.blog-grid-card:hover .blog-grid-title {
  color: var(--brand-blue, #023be2);
}

@media (max-width: 768px) {
  .blog-grid-title {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .blog-cards-section {
    padding: 0px 15px 40px 15px;
  }
}

/* --- Blog Read More --- */
.blog-read-more {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  transition: color 0.3s ease;
}

.blog-read-more img {
  width: 20px;
  height: 20px;
  margin-left: 6px; /* ms-1 equivalent */
  transition: transform 0.3s ease;
  filter: brightness(0);
}

.blog-grid-card:hover .blog-read-more img {
  transform: rotate(37deg);
}

/* --- Blog Grid Image Hover Effect --- */
.blog-grid-img-wrap::before, .blog-grid-img-wrap::after { 
  content: ''; 
  position: absolute; 
  inset: 0; 
  background: rgba(255, 255, 255, 0.15); 
  z-index: 10; 
  pointer-events: none; 
  opacity: 0; 
  transition: transform 3.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0s; 
}

.blog-grid-img-wrap::before { 
  clip-path: polygon(0 0, 100% 0, 0 100%); 
  transform: translate(0%, 0%); 
}

.blog-grid-img-wrap::after { 
  clip-path: polygon(100% 0, 100% 100%, 0 100%); 
  transform: translate(0%, 0%); 
}

.blog-grid-card:hover .blog-grid-img-wrap::before { 
  opacity: 1; 
  transform: translate(-100%, -100%); 
}

.blog-grid-card:hover .blog-grid-img-wrap::after { 
  opacity: 1; 
  transform: translate(100%, 100%); 
}

/* --- Blog Cards Scroll Animation --- */
.blog-grid-card {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.blog-grid-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* --- Blog Hero Swing Animations --- */
.header-section .header-title,
.header-section .header-subtitle {
  opacity: 0;
  transform: translateY(22px) rotate(-1.4deg);
  will-change: transform, opacity;
}

.header-section.animate-in .header-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0s;
}

.header-section.animate-in .header-subtitle {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}


/* Blog Detail Content Section */
.blog-content-container {
  max-width: 950px;
  margin: 0 auto;
  padding: 3rem 15px;
}

.blog-content-title {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.blog-content-text {
  color: #666;
  line-height: 1.8;
}

.blog-text-margin {
  margin-top: 1.5rem;
}

.blog-content-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.blog-content-col {
  flex: 1 1 100%;
}

.blog-list-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
  gap: 2rem;
}

.blog-content-col-half {
  flex: 1 1 calc(50% - 1rem);
}

@media (max-width: 768px) {
  .blog-content-col-half {
    flex: 1 1 100%;
  }
}

.blog-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.blog-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.blog-list-icon {
  font-size: 1.1rem;
  color: #333;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.blog-content-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

@media (max-width: 768px) {
  .blog-content-image {
    margin: 0 auto;
  }
}

.blog-quote-banner {
  background-color: #1a1a1a;
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  margin: 4.5rem 0;
}

.blog-quote-cutout-left,
.blog-quote-cutout-right {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  background-color: #373737;
}

.blog-quote-cutout-left {
  left: 0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.blog-quote-cutout-right {
  right: 0;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

@media (min-width: 768px) {
  .blog-quote-cutout-left,
  .blog-quote-cutout-right {
    display: block;
  }
}

.blog-quote-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.blog-quote-text {
  color: #fff !important;
  font-size: clamp(1.25rem, 2.5vw, 1.45rem);
  line-height: 1.6;
  margin-bottom: 0;
  text-align: left;
}

/* Blog Detail TOC Layout */
.blog-detail-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.blog-toc-sidebar {
  flex: 0 0 300px;
  position: sticky;
  top: 100px;
}

.blog-content-main {
  flex: 1 1 calc(100% - 300px - 3rem);
  min-width: 0;
}

@media (max-width: 991px) {
  .blog-toc-sidebar {
    flex: 1 1 100%;
    position: static;
    margin-bottom: 1rem;
  }
  .blog-content-main {
    flex: 1 1 100%;
  }
}

/* TOC Styles */
.blog-toc-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000;
}

.blog-toc-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.blog-toc-item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.blog-toc-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #d1d5db; /* gray dot */
  transition: all 0.3s ease;
}

.blog-toc-item.active::before {
  background-image: linear-gradient(90deg, #ec4899, #8b5cf6); /* fallback gradient or inherit if text-blue sets background */
}

/* Make dot blue if active */
.blog-toc-item.active::before {
    background: currentColor;
    background-color: currentColor;
}


.blog-toc-link {
  font-size: 1.1rem;
  color: #9ca3af; /* modern distinct gray */
  text-decoration: none;
  line-height: 1.4;
  display: block;
  transition: all 0.3s ease;
}

.blog-toc-link:hover {
  color: #374151;
}

/* For active item with text-blue */
.blog-toc-item.active .blog-toc-link {
  font-weight: 500;
}

/* Blog Tags */
.blog-tags-wrapper {
  margin-top: 2rem;
  padding-bottom: 1rem;
}

.blog-tag-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  padding: 10px 24px;
}

.blog-tag-title {
  font-weight: 700;
  color: #1a1a1a;
  margin-right: 10px;
  font-size: 1.05rem;
}

.blog-tag-list {
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Two column images */
.blog-images-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.blog-image-col {
  flex: 1 1 calc(50% - 15px);
}

@media (max-width: 768px) {
  .blog-image-col {
    flex: 1 1 100%;
  }
}

/* ── Blog TOC CTA Banner ─────────────────────────────── */
.blog-toc-cta {
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(90.38deg, rgba(2, 59, 226, 0.08) 2.06%, rgba(0, 161, 197, 0.08) 99.67%);
  border-radius: 12px;
}

.blog-toc-cta-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.blog-toc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #023be2;
  color: #fff;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  /* No pulse/::before effect */
}

.blog-toc-cta-btn:hover {
  background: #023be2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(2, 59, 226, 0.2);
}

.blog-toc-cta-btn .arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.blog-toc-cta-btn:hover .arrow-icon {
  transform: rotate(35deg);
}

/* ── Blog Content Bottom CTA Section ──────────── */
.blog-bottom-cta-section {
    padding: var(--section-spacing, 80px) 20px;
}

.blog-bottom-cta-section .container {
    max-width: var(--section-width);
    margin: 0 auto;
}

.blog-bottom-cta-box {
    background: #eff6ff; /* Match the image's light blue tint */
    border-radius: 20px;
    padding: 3.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.blog-bottom-cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.blog-bottom-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #023be2;
    color: #fff;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.blog-bottom-cta-btn:hover {
    background: #023be2;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 59, 226, 0.25);
}

.blog-bottom-cta-btn .arrow-icon {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.blog-bottom-cta-btn:hover .arrow-icon {
    transform: rotate(35deg);
}

@media (max-width: 991px) {
    .blog-bottom-cta-box {
        padding: 3rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-bottom-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }
    
    .blog-bottom-cta-title {
        font-size: 1.75rem;
    }

    .blog-bottom-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1.05rem;
    }
}

/* ── Blog Comment / Leave a Comment Section ──────────── */
.blog-comment-section {
  padding: 3rem 1rem;
}

.blog-comment-box {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 2.5rem 2.5rem;
}

.blog-comment-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.blog-comment-note {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.75rem;
}

.blog-comment-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Two-column row: name + email */
.blog-comment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Shared input styles */
.blog-comment-input,
.blog-comment-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.blog-comment-input:focus,
.blog-comment-textarea:focus {
  border-color: #023be2;
  box-shadow: 0 0 0 3px rgba(2, 59, 226, 0.08);
}

.blog-comment-textarea {
  resize: vertical;
  min-height: 150px;
}

/* Checkbox label */
.blog-comment-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
  cursor: pointer;
  line-height: 1.5;
}

.blog-comment-checkbox {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: #023be2;
  cursor: pointer;
}

/* Submit button — same as .btn-gradient but NO pulse */
.blog-comment-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #023be2;
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
}

.blog-comment-btn:hover {
  background: #023be2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(2, 59, 226, 0.2);
}

.blog-comment-btn .arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.blog-comment-btn:hover .arrow-icon {
  transform: rotate(35deg);
}

/* Responsive */
@media (max-width: 767px) {
  .blog-comment-box {
    padding: 1.75rem 1.25rem;
  }

  .blog-comment-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .blog-comment-box {
    padding: 1.25rem 1rem;
  }

  .blog-comment-title {
    font-size: 1.4rem;
  }
}

/* ── Blog Share Icons ─────────────────────────────────── */
.blog-share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  text-decoration: none;
  transition: border-color 0.25s ease;
}

.blog-share-icon i {
  font-size: 1.5rem;
  color: #333;
  transition: color 0.25s ease;
}


.blog-share-icon:hover i {
  color: #023be2;
}

/* ── Blog Newsletter / Subscribe Section ─────────────────── */
.blog-newsletter-section {
  padding: 3.5rem 1rem;
  background: #f5f5f5;
}

.blog-newsletter-box {
  text-align: center;
}

.blog-newsletter-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.blog-newsletter-desc {
  font-size: 0.97rem;
  color: #555;
  max-width: 680px;
  margin: 0 auto 2rem auto;
  line-height: 1.65;
}

.blog-newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* Pill-shaped input + button group */
.blog-newsletter-input-group {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  max-width: 580px;
  width: 100%;
  padding: 4px 4px 4px 20px;
  gap: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.blog-newsletter-input-group:focus-within {
  border-color: #023be2;
  box-shadow: 0 0 0 3px rgba(2, 59, 226, 0.08);
}

.blog-newsletter-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  color: #333;
  min-width: 0;
}

.blog-newsletter-input::placeholder {
  color: #aaa;
}

.blog-newsletter-btn {
  flex-shrink: 0;
  background: linear-gradient(90.38deg, rgba(2, 59, 226, 0.15) 2.06%, rgba(0, 161, 197, 0.15) 99.67%);;
  color: black;
  border: none;
  border-radius: 10px;
  padding: 10px 26px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}



/* Checkbox label */
.blog-newsletter-checkbox-label {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #555;
  cursor: pointer;
  line-height: 1.5;
  max-width: 580px;
  text-align: left;
}

.blog-newsletter-checkbox {
  margin-top: 3px;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  accent-color: #023be2;
  cursor: pointer;
}

.blog-newsletter-policy-link {
  color: #e05d5d;
  text-decoration: underline;
  font-weight: 500;
}

.blog-newsletter-policy-link:hover {
  color: #c0392b;
}

/* Responsive */
@media (max-width: 767px) {
  .blog-newsletter-section {
    padding: 2.5rem 1rem;
  }

  .blog-newsletter-input-group {
    padding: 4px 4px 4px 16px;
  }

  .blog-newsletter-btn {
    padding: 10px 18px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .blog-newsletter-section {
    padding: 2rem 0.75rem;
  }

  .blog-newsletter-title {
    font-size: 1.4rem;
  }

  .blog-newsletter-desc {
    font-size: 0.9rem;
  }

  .blog-newsletter-input-group {
    flex-direction: column;
    border-radius: 12px;
    padding: 12px;
    gap: 10px;
    align-items: stretch;
  }

  .blog-newsletter-input {
    width: 100%;
    padding: 6px 4px;
  }

  .blog-newsletter-btn {
    width: 100%;
    border-radius: 10px;
    text-align: center;
    padding: 12px 20px;
  }

  .blog-newsletter-checkbox-label {
    font-size: 0.83rem;
  }
}

/* ── Blog Detail Hero swingIn Animation ───────────────── */
/* Set all animatable elements to start invisible */
.blog-hero-animate .blog-hero-tag,
.blog-hero-animate .header-title,
.blog-hero-animate .blog-hero-meta {
  opacity: 0;
}

/* Tag: first */
.blog-hero-animate .blog-hero-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0s;
}

/* Title: second */
.blog-hero-animate .header-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}

/* Meta row: third */
.blog-hero-animate .blog-hero-meta {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.4s;
}

/* ==================================================================================================================
================================================POPUP FORM SECTION===================================================
================================================================================================================= */

.popup-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.popup-form-overlay.show {
    display: flex;
    opacity: 1;
}

.popup-form-container {
    background: #fff;
    width: 100%;
    max-width: 1300px;
    max-height: 95vh;
    overflow-y: auto;
    border-radius: 24px;
    overflow-x: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: popupSlideUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes popupSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f3f4f6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}



.popup-content-wrap {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.popup-left-col {
    flex: 1;
    min-width: 450px;
    background: linear-gradient(135deg, #050b1a 0%, #0a1631 100%);
    color: #fff;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.popup-left-col::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(2, 59, 226, 0.3) 0%, transparent 70%);
    filter: blur(40px);
}

.popup-right-col {
    flex: 1.2;
    min-width: 450px;
    padding: 40px 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.popup-title-main {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.popup-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

/* Testimonial Slider */
.popup-testimonial-slider {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    overflow: hidden;
    min-height: 250px;
}

.popup-testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.popup-testimonial-card {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.popup-testimonial-card.active {
    opacity: 1;
}

.quote-icon {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

.author-info strong {
    display: block;
    font-size: 16px;
}

.author-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.popup-slider-controls {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.popup-slider-btn {
    background: transparent;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.popup-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-slider-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* Awards Section */
.popup-awards-section {
    position: relative;
}

.awards-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.awards-title::before,
.awards-title::after {
    content: '';
    height: 1px;
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
}

.popup-awards-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.popup-awards-grid img {
    height: 110px;
    width: auto;
    object-fit: contain;
    filter: brightness(1) contrast(1.1);
    opacity: 1;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-awards-grid img:hover {
    transform: scale(1.05);
    z-index: 2;
}

/* Popup Success State */
.popup-right-col.success-state {
    background: #023be2;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background 0.4s ease;
}

.popup-form-box {
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.popup-right-col.success-state .popup-form-box,
.popup-right-col.success-state .popup-trusted-brands {
    display: none;
}

.popup-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease forwards;
}

.popup-right-col.success-state .popup-success-message {
    display: flex;
}

.popup-success-icon {
    font-size: 60px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.popup-success-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.popup-success-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.popup-form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.popup-form-title-sub {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #6c757d;
    margin-top: 8px;
}

.popup-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.popup-form-group {
    margin-bottom: 20px;
}

.popup-form-group.half {
    flex: 1;
    margin-bottom: 0;
}

.popup-form-group input,
.popup-form-group textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: transparent;
    outline: none !important;
}

.popup-form-group input:-webkit-autofill,
.popup-form-group input:-webkit-autofill:hover, 
.popup-form-group input:-webkit-autofill:focus, 
.popup-form-group input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.popup-form-group input:focus,
.popup-form-group textarea:focus {
    border-color: #023be2;
}

.popup-form-group textarea {
    height: 100px;
    resize: none;
    padding-top: 20px;
}

.popup-form-protection {
    margin-bottom: 20px;
    padding: 10px 15px;
    background: #fffbeb;
    border-radius: 12px;
    font-size: 14px;
    color: #92400e;
}

.protection-tag::before {
    content: '✓';
    margin-right: 8px;
    font-weight: bold;
}

.popup-captcha-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.captcha-math {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
}

.captcha-input {
    width: 80px;
    height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.popup-submit-btn {
    width: auto;
    background: #023be2;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.popup-submit-btn::before {
    display: none;
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(2, 59, 226, 0.2);
}

.popup-submit-btn:hover::before {
    display: none;
}

.popup-submit-btn .arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.popup-submit-btn:hover .arrow-icon {
    transform: rotate(35deg);
}

/* Trusted Brands Slider */
.popup-trusted-brands {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.trusted-title {
    font-size: 25px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
}

.popup-logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.popup-logo-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: popupLogoScroll 30s linear infinite;
    width: max-content;
}

.popup-logo-track img {
    height: 35px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(1) contrast(1.2);
    transition: all 0.3s ease;
}

.popup-logo-track img:hover {
    opacity: 1;
    filter: grayscale(0);
}

@keyframes popupLogoScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Response Design */
@media (max-width: 991px) {
    .popup-form-container {
        max-width: 600px;
    }
    .popup-left-col {
        min-width: 100%;
        padding: 40px;
        order: 2;
    }
    .popup-right-col {
        min-width: 100%;
        padding: 40px 30px;
        order: 1;
    }
    
    .popup-slider-dots {
        display: flex;
    }
    
    .popup-slider-controls {
        display: none;
    }
    .popup-awards-grid {
        flex-wrap: wrap;
        gap: 10px;
    }
    .popup-awards-grid img {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .popup-form-row {
        flex-direction: column;
        gap: 0;
    }
    .popup-right-col {
        padding: 30px 20px;
    }
    .popup-form-title {
        font-size: 20px;
    }
    .popup-captcha-row {
        flex-wrap: wrap;
    }
    .popup-awards-grid img {
        height: 60px;
    }
}


/* Fix for intl-tel-input in Popup */
.popup-form-container .iti {
    width: 100%;
    margin-bottom: 20px;
}

.popup-form-container .iti__country-list {
    z-index: 10001;
}

.popup-form-group.half .iti {
    margin-bottom: 0;
}

.popup-form-row .half {
    width: calc(50% - 10px);
}

@media (max-width: 480px) {
    .popup-form-row .half {
        width: 100%;
    }
}

/* Blog Tag Active State */
.blog-tag.active {
    background-color: #023be2 !important;
    color: white !important;
    border-color: #023be2 !important;
}

/* ==================================================================================================================
================================================MOBILE APP DEV HERO==================================================
================================================================================================================= */
.app-dev-hero {
  position: relative;
  padding: 80px 0;
  /* We use a very low alpha (0.05) to keep it subtle against the #fafbfc background */
  background: linear-gradient(
    90.38deg, 
    rgba(2, 59, 226, 0.05) 2.06%, 
    rgba(0, 161, 197, 0.05) 99.67%
  ), #fafbfc;
  overflow: hidden;
  z-index: 1;
}

.app-dev-hero-bg {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 900px;
  height: 90vw;
  max-height: 900px;
  border-radius: 50%;
  background-color: rgba(2, 59, 226, 0.02);
  z-index: -1;
  pointer-events: none;
}

.app-dev-hero-bg::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55vw;
  max-width: 550px;
  height: 55vw;
  max-height: 550px;
  border-radius: 50%;
  background-color: rgba(2, 59, 226, 0.025);
}

.app-dev-hero .container {
  z-index: 2;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.app-dev-hero-breadcrumb {
  font-size: 14px;
  font-weight: 500;
  color: #6c757d;
  background: transparent;
  padding: 0;
  opacity: 0;
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
  will-change: transform, opacity;
}

.app-dev-hero-breadcrumb a {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
}

.app-dev-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  opacity: 0;
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  will-change: transform, opacity;
}

.app-dev-hero .bg-text-gradient {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.app-dev-hero-subtitle {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 40px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
  will-change: transform, opacity;
}

.hero-contact-btn {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.3s;
  will-change: transform, opacity;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 60px;
}
.hero-contact-btn::before {
  display: none !important;
}

.hero-contact-btn.portfolio-btn {
  margin-bottom: 0;
}

.app-dev-award-slider-container {
  width: 100%;
  background: transparent;
  padding: 30px 0;
  overflow: hidden;
  position: relative;
}

.app-dev-award-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoLoop 40s linear infinite;
  gap: 60px;
  padding-right: 60px;
}

.app-dev-award-track:hover {
  animation-play-state: paused;
}

.app-dev-award-item {
  display: flex;
  align-items: center;
}

.app-dev-award-img {
  height: 60px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}

.app-dev-award-divider {
  width: 2px;
  height: 48px;
  background-color: #d1d5db; /* Gray-300 */
  margin: 0 16px;
  border-radius: 2px;
}

.app-dev-award-text {
  font-size: 14px;
  line-height: 1.3;
  color: #111827; /* Dark gray */
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
}

.app-dev-award-item:hover .app-dev-award-img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 767px) {
  .app-dev-hero {
    padding: 60px 0 60px;
  }
  .app-dev-hero-bg {
    width: 120vw;
    height: 120vw;
  }
  
  .app-dev-hero-bg::after {
    width: 80vw;
    height: 80vw;
  }
  .app-dev-award-img {
    height: 50px;
  }
  .app-dev-award-divider {
    height: 40px;
    margin: 0 12px;
  }
  .app-dev-award-text {
    font-size: 12px;
  }
  .app-dev-award-track {
    gap: 40px;
    padding-right: 40px;
  }
}

/* ==================================================================================================================
============================================INSTAGRAM CREATIVE SECTION================================================
================================================================================================================== */
.clone-hero-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: clamp(54px, 7vw, 88px) 20px;
  background: linear-gradient(
    90.38deg, 
    rgba(2, 59, 226, 0.05) 2.06%, 
    rgba(0, 161, 197, 0.05) 99.67%
  ), #fafbfc;
}

.clone-hero-wrap {
  position: relative;
  z-index: 2;
  max-width: var(--section-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 0.7fr;
  gap: clamp(24px, 3.5vw, 40px);
  align-items: flex-start;
}

.clone-hero-left {
  margin-top: 50px;
}

.clone-hero-left .section-main-title,
.clone-hero-description,
.clone-hero-middle .section-subtitle {
  opacity: 0;
  transform: translateY(22px) rotate(-1.4deg);
  will-change: transform, opacity;
}

.clone-hero-section.animate-in .clone-hero-left .section-main-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.clone-hero-description {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  margin: 42px 0 0;
}

.clone-hero-section.animate-in .clone-hero-description {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.12s;
}

.clone-hero-points {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.clone-hero-points li {
  position: relative;
  padding-left: 28px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0;
  transform: translateY(22px) rotate(-1.4deg);
  will-change: transform, opacity;
}

.clone-hero-section.animate-in .clone-hero-points li {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.clone-hero-section.animate-in .clone-hero-points li:nth-child(1) { animation-delay: 0.32s; }
.clone-hero-section.animate-in .clone-hero-points li:nth-child(2) { animation-delay: 0.42s; }
.clone-hero-section.animate-in .clone-hero-points li:nth-child(3) { animation-delay: 0.52s; }
.clone-hero-section.animate-in .clone-hero-points li:nth-child(4) { animation-delay: 0.62s; }

.clone-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 14px;
  height: 14px;
  border: 2px solid #023be2;
  border-radius: 50%;
  transform: translateY(-50%);
}

.clone-hero-points li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.5em;
  width: 4px;
  height: 4px;
  background: #023be2;
  border-radius: 50%;
  transform: translateY(-50%);
}

.clone-hero-middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  align-self: stretch;
  padding-right: clamp(20px, 4vw, 60px); /* Add space before the divider */
}

.clone-hero-section.animate-in .clone-hero-middle .section-subtitle {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.24s;
}

.clone-hero-btn {
  align-self: flex-start;
}

.clone-hero-right {
  position: relative;
  padding: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  overflow: hidden;
  border-left: none; /* remove original border */
}

/* .clone-hero-right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 94%; 
  background: #9ca3af;
} */

.clone-hero-right img {
  width: 100%;
  max-width: 430px;
  height: auto;
  max-height: 550px;
  object-fit: contain;
  margin-left: 0px; 
}






@media (max-width: 1199px) {
  .clone-hero-wrap {
    grid-template-columns: 1fr 1fr;
    align-items: center; 
  }

  .clone-hero-middle, .clone-hero-right {
    margin-top: 0;
    align-self: auto;
  }

  .clone-hero-right {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid #e5e7eb;
    padding-left: 0;
    padding-top: 24px;
    min-height: 0;
  }
}

.clone-hero-stats {
    display: flex;
    gap: clamp(20px, 4vw, 60px);
    margin-top: clamp(30px, 5vw, 60px);
}

.creative-stat-item {
    display: flex;
    flex-direction: column;
}

.creative-stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #111827;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Syne', sans-serif;
}

.creative-stat-label {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: #4b5563;
    font-weight: 500;
}

@media (max-width: 767px) {
  .clone-hero-wrap {
    grid-template-columns: 1fr;
  }

  .clone-hero-left .section-main-title {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .clone-hero-left {
    margin-top: 0;
  }
}

/* ==================================================================================================================
================================================APP SERVICES GRID===================================================
================================================================================================================= */
.app-services-section{
  padding: var(--section-spacing, 80px) 20px;
  position: relative;
}

.expert-solutions-section {
  padding: var(--section-spacing, 80px) 20px;
  position: relative;
  background:#f9f9f9;
}

.app-services-section .container,
.expert-solutions-section .container {
  max-width: var(--section-width);
  margin: 0 auto;
}

.app-services-section .section-tag,
.expert-solutions-section .section-tag {
  opacity: 0;
  will-change: transform, opacity;
}

.app-services-section.animate-in .section-tag,
.expert-solutions-section.animate-in .section-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.app-services-section .section-main-title,
.expert-solutions-section .section-main-title {
  opacity: 0;
  will-change: transform, opacity;
}

.app-services-section.animate-in .section-main-title,
.expert-solutions-section.animate-in .section-main-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.app-services-section .section-subtitle,
.expert-solutions-section .section-subtitle {
  opacity: 0;
  will-change: transform, opacity;
}

.app-services-section.animate-in .section-subtitle,
.expert-solutions-section.animate-in .section-subtitle {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}

.app-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.app-service-card {
  padding: 40px 50px;
  border-bottom: 1px solid rgba(2, 59, 226, 0.08); /* Using the blue from theme */
  border-right: 1px solid rgba(2, 59, 226, 0.08);
  display: flex;
  flex-direction: column;
}

.app-service-card:nth-child(even) {
  border-right: none;
}

.app-service-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.app-service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.app-service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* Using the main.css circle gradient for border */
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px; /* thickness of the gradient border */
  flex-shrink: 0;
}

.app-service-icon-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-service-icon-inner img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.fallback-icon {
  display: none;
  font-size: 26px;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

img[style*="display: none"] + .fallback-icon, 
img:not([src]), 
img[src=""] {
  display: block;
}

.app-service-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.app-service-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563; /* text gray */
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .app-services-grid {
    grid-template-columns: 1fr;
  }
  
  .app-service-card {
    padding: 30px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(2, 59, 226, 0.08);
  }
  
  .app-service-card:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(2, 59, 226, 0.08); /* reset */
  }
  
  .app-service-card:last-child {
    border-bottom: none;
  }
}

/* New Feature Cards Style */
.new-feature-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(30px);
}

.new-feature-bggray-card {
  background: #1a2235 !important;
}

.new-feature-bggray-card .feature-card-title,
.new-feature-bggray-card .feature-icon-box i {
  color: #ffffff !important;
}

.new-feature-bggray-card .feature-card-desc {
  color: #d1d5db !important;
}

.expert-solutions-section.animate-in .new-feature-card {
  animation: cardFadeInUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes cardFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger card animations */
.expert-solutions-section.animate-in .col-lg-4:nth-child(1) .new-feature-card { animation-delay: 0.3s; }
.expert-solutions-section.animate-in .col-lg-4:nth-child(2) .new-feature-card { animation-delay: 0.4s; }
.expert-solutions-section.animate-in .col-lg-4:nth-child(3) .new-feature-card { animation-delay: 0.5s; }
.expert-solutions-section.animate-in .col-lg-4:nth-child(4) .new-feature-card { animation-delay: 0.6s; }
.expert-solutions-section.animate-in .col-lg-4:nth-child(5) .new-feature-card { animation-delay: 0.7s; }
.expert-solutions-section.animate-in .col-lg-4:nth-child(6) .new-feature-card { animation-delay: 0.8s; }

.new-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}



.new-feature-card .feature-icon-box {
  margin-bottom: 25px;
}

.new-feature-card .feature-icon-box i {
  font-size: 44px;
  color: #111827;
}

.new-feature-card .feature-icon-box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.new-feature-card .feature-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 25px;
}

.new-feature-card .feature-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}


/* ==================================================================================================================
================================================APP BENEFITS SECTION================================================
================================================================================================================= */
.app-benefits-section {
  padding: var(--section-spacing, 80px) 20px;
  background-color: #0b101e; /* Dark navy background matching the image */
  color: var(--white);
}

.app-benefits-section .container {
  max-width: var(--section-width);
}

.app-benefits-top {
  display: flex;
  align-items: center;
  gap: 4px;
}

.app-benefits-text {
  flex: 1;
}

.app-benefits-tag {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity;
}

.app-benefits-section.animate-in .app-benefits-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.app-benefits-section.animate-in .section-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}


.app-benefits-title {
  color: var(--white);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  opacity: 0;
  will-change: transform, opacity;
}

.app-benefits-section.animate-in .app-benefits-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.app-benefits-desc {
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
  opacity: 0;
  will-change: transform, opacity;
}

.app-benefits-section.animate-in .app-benefits-desc {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}

.app-benefits-img {
  flex: 1;
}

.app-benefits-img img {
  width: 100%;
  object-fit: cover;
}

.app-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  background-color: transparent;
}

.app-benefit-item {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.05); /* Slight lightening over the page background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.app-benefit-item:nth-child(even) {
  border-right: none;
}

.app-benefit-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.app-benefit-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.app-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.app-benefit-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 15px;
  color: #d1d5db;
  font-size: 14.5px;
  line-height: 1.6;
}

.app-benefit-list li:last-child {
  margin-bottom: 0;
}

/* Bullet outer ring */
.app-benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--brand-blue);
  background-color: transparent;
  padding: 4px;
}

/* Bullet inner dot */
.app-benefit-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand-blue);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .app-benefits-top {
    flex-direction: column;
    gap: 40px;
  }
  
  .app-benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .app-benefit-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px 20px;
  }
  
  .app-benefit-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .app-benefit-item:last-child {
    border-bottom: none;
  }
}




/* Help Services Section */
.help-services-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.help-services-section .container {
  max-width: var(--section-width);
}

.help-services-section .section-tag,
.help-services-section .section-main-title,
.help-services-section .heading-copy {
  opacity: 0;
  transform: translateY(22px) rotate(-1.4deg);
  will-change: transform, opacity;
}

.help-services-section.animate-in .section-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.help-services-section.animate-in .section-main-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.help-services-section.animate-in .heading-copy {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}

.help-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.help-service-card {
  background-color: #fff;
  padding: 30px 28px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.help-service-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);
}

.help-icon-wrapper {
  margin-bottom: 40px;
}

.help-icon-wrapper svg,
.help-icon-wrapper img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.help-icon-wrapper svg {
  stroke: #222;
}

.help-service-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.help-service-desc {
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.help-service-link {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.help-service-link .arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  filter:brightness(0)
}

.help-service-link:hover {
  color: var(--brand-blue, #0d6efd);
}

.help-service-link:hover .arrow-icon {
  transform: rotate(35deg);
}

.help-image-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px 30px;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.help-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.help-image-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.help-image-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.help-image-desc {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.5;
}

.help-image-btn {
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 4px;
  text-transform: none;
  background-color: #fff;
  color: #333;
  border: none;
  transition: background-color 0.3s ease;
}

.help-image-btn:hover {
  background-color: #f1f1f1;
}

.help-progress-container {
  max-width: 100%;
  margin-top: 25px;
}

.help-progress-bar {
  height: 3px;
  background-color: #ddd;
  width: 100%;
  position: relative;
}

.help-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #333;
}

@media (max-width: 1199px) {
  .help-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .help-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Help Services Section Refined Layout */
.help-services-layout {
  display: flex;
  gap: 30px;
}

.help-services-left {
  flex: 0 0 calc(75% - 15px); /* Take 3/4 of space */
  min-width: 0; 
  display: flex;
  flex-direction: column;
}

.help-services-right {
  flex: 0 0 calc(25% - 15px); /* Take 1/4 of space */
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Scroll area for cards */
.help-cards-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: auto; 
  scrollbar-width: none; 
  -ms-overflow-style: none; 
  flex: 1;
}

.help-cards-scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.help-cards-scroll .help-service-card {
  flex: 0 0 calc(33.333% - 13.33px); /* Show 3 cards at a time desktop */
  min-width: 250px;
  height: 100%;
}

.help-services-right .help-image-card {
  flex: 1;
  min-height: 320px; /* same as before */
}

@media (min-width: 1200px) {
  .help-services-right::after {
    content: "";
    display: block;
    margin-top: 25px; /* matches .help-progress-container margin-top */
    height: 3px;     /* matches .help-progress-bar height */
  }
}

.help-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #333;
  width: 20%; /* Will be overriden dynamically by JS */
  border-radius: 2px;
}

@media (max-width: 1199px) {
  .help-services-layout {
    flex-direction: column;
  }
  .help-services-left {
    flex: 1 1 auto;
  }
  .help-services-right {
    flex: 1 1 auto;
  }
  .help-cards-scroll .help-service-card {
    flex: 0 0 calc(50% - 10px); /* Show 2 cards at a time tablet */
  }
}

@media (max-width: 767px) {
  .help-cards-scroll .help-service-card {
    flex: 0 0 100%; /* Show 1 card at a time mobile */
  }
}

/* App Development Process Section */
.app-process-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.app-process-section .section-tag,
.app-process-section .section-main-title,
.app-process-section .section-subtitle {
  opacity: 0;
  transform: translateY(22px) rotate(-1.4deg);
  will-change: transform, opacity;
}

.app-process-section.animate-in .section-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.app-process-section.animate-in .section-main-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.app-process-section.animate-in .section-subtitle {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}

.app-process-section .container {
  max-width: var(--section-width);
}

.app-process-heading .section-main-title {
  font-size: clamp(34px, 4.2vw, 52px);
}

.app-process-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border-color);
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
}

.app-process-card {
  padding: 32px 30px 30px;
  background: linear-gradient(180deg, rgba(2, 59, 226, 0.16) 0%, rgba(0, 161, 197, 0.10) 45%, #ffffff 100%);
  
}


.app-process-card:not(:nth-child(3n)) {
  border-right: 1px solid var(--border-color);
}

.app-process-card:nth-child(-n+3) {
  border-bottom: 1px solid var(--border-color);
}

.app-process-title {
  font-size: clamp(26px, 1.9vw, 32px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.app-process-point {
  position: relative;
  padding-left: 24px;
  margin-bottom: 34px;
}

.app-process-point:last-child {
  margin-bottom: 0;
}

.app-process-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--brand-blue);
  background: transparent;
}

.app-process-point::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
}

.app-process-point h4 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-dark);
}

.app-process-point p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text-dark);
}

@media (max-width: 1199px) {
  .app-process-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-process-card {
    border-right: 0;
    border-bottom: 0;
  }

  .app-process-card:nth-child(odd) {
    border-right: 1px solid var(--border-color);
  }

  .app-process-card:nth-child(-n+4) {
    border-bottom: 1px solid var(--border-color);
  }

  .app-process-point h4 {
    font-size: 16px;
  }

  .app-process-point p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .help-services-section,
  .app-process-section {
    padding: var(--section-spacing-mobile) 20px;
  }

  .app-process-heading {
    gap: 14px;
    margin-bottom: 26px;
  }

  .app-process-shell {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .app-process-card:nth-child(odd),
  .app-process-card:nth-child(-n+4) {
    border-right: 0;
    border-bottom: 0;
  }

  .app-process-card:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
  }

  .app-process-card {
    padding: 26px 22px;
  }

  .app-process-point {
    margin-bottom: 24px;
  }

  .app-process-title {
    margin-bottom: 20px;
  }

  .app-process-point h4 {
    font-size: 15px;
  }

  .app-process-point p {
    font-size: 15px;
  }
}

/* ==========================================================================
   WHY CHOOSE US SECTION
========================================================================== */
.wcu-section {
  padding: var(--section-spacing) 20px;
}

@media (min-width: 1024px) {
  .wcu-section {
    padding-bottom: 120px;
  }
}
.wcu-section .section-tag,
.wcu-section .section-main-title,
.wcu-section .section-subtitle {
  opacity: 0;
  transform: translateY(22px) rotate(-1.4deg);
  will-change: transform, opacity;
}

.wcu-section.animate-in .section-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.wcu-section.animate-in .section-main-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.wcu-section.animate-in .section-subtitle {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}

.wcu-section .container {
  max-width: var(--section-width);
}

.wcu-content-row {
  margin-bottom: 50px;
}

.wcu-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wcu-image-wrapper {
  position: relative;
  max-width: 550px;
  width: 100%;
}

.wcu-image-inner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.wcu-image-inner::before,
.wcu-image-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: transform 3.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0s;
}

.wcu-image-inner::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transform: translate(0%, 0%);
}

.wcu-image-inner::after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: translate(0%, 0%);
}

.wcu-image-wrapper:hover .wcu-image-inner::before {
  opacity: 1;
  transform: translate(-100%, -100%);
}

.wcu-image-wrapper:hover .wcu-image-inner::after {
  opacity: 1;
  transform: translate(100%, 100%);
}

.wcu-image-wrapper:hover .wcu-main-image {
  transform: scale(1.03);
}

.wcu-main-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  min-height: 680px;
  border: 1px solid rgba(2, 59, 226, 0.1);
  box-shadow: 0 20px 40px rgba(2, 59, 226, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.2s;
  transition: transform 0.8s ease;
}

@media (max-width: 768px) {
  .wcu-main-image {
    min-height: 400px;
  }
}

.wcu-floating-card {
  position: absolute;
  bottom: -100px;
  right: -40px;
  background: #ffffff;
  padding: 24px;
  width: 300px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  z-index: 2;
  animation: floatLeftRight 1.5s ease-in-out infinite alternate;
}

.wcu-floating-card-second {
  position: absolute;
  bottom: -100px;
  left: -40px;
  background: #ffffff;
  padding: 24px;
  width: 300px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  z-index: 2;
  animation: floatLeftRight 1.5s ease-in-out infinite alternate;
}

@keyframes floatLeftRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(-15px); }
}

.wcu-card-top-icon {
  color: #1a1a1a;
  margin-bottom: 25px;
}

.wcu-card-top-icon svg {
  color: #023be2;
}

.wcu-card-main-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 25px;
  line-height: 1.3;
}

.wcu-card-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}

.wcu-info-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wcu-avatar-group {
  display: flex;
  align-items: center;
}

.wcu-avatar-group img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -15px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.wcu-avatar-group img:first-child {
  margin-left: 0;
}

.wcu-happy-label {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  white-space: nowrap;
}

/* Dividing vertical line */
.wcu-info-divider {
  width: 1px;
  height: 50px;
  background-color: #cbd5e1;
  margin: 0 15px;
}

.wcu-info-right {
  display: flex;
  align-items: center;
}

.wcu-progress-circle {
  width: 65px;
  height: 65px;
}

.circular-chart {
  display: block;
  margin: 0 auto;
}

.circle-bg {
  fill: none;
  stroke: #f1f5f9;
  stroke-width: 2.2;
}

.circle {
  fill: none;
  stroke: #023be2;
  stroke-width: 3;
  stroke-linecap: round;
}

.percentage {
  fill: #023be2;
  font-size: 9px;
  font-weight: 700;
  text-anchor: middle;
}

.wcu-right {
  padding-left: 50px;
}

.wcu-tag {
  color: #0f172a !important; 
}

.wcu-title {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.wcu-desc {
  font-size: 16px;
  color: #475569;
  margin-bottom: 40px;
  line-height: 1.6;
}



.wcu-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.wcu-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.wcu-feature-icon-wrapper {
  margin-bottom: 0;
  flex-shrink: 0;
  font-size: 32px;
  color: #334155;
}

.wcu-feature-icon-wrapper i {
  background: linear-gradient(90.38deg, #023be2 2.06%, #00a1c5 99.67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wcu-feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.wcu-feature-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}



@media (max-width: 991px) {
  .wcu-right {
    padding-left: 15px;
    margin-top: 70px;
  }
  .wcu-floating-card {
    right: 20px;
    bottom: -100px;
  }
   .wcu-floating-card-second {
    right: 20px;
    bottom: -100px;
  }
  .wcu-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .wcu-title {
    font-size: 32px;
  }
  .wcu-floating-card {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
    bottom: -140px;
  }
   .wcu-floating-card-second {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
    bottom: -140px;
  }
  .wcu-image-wrapper {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .wcu-section {
    padding: var(--section-spacing-mobile) 20px;
  }
}

/* Responsive Sequence for WCU Section */
@media (max-width: 991px) {
  .wcu-section .wcu-content-row {
    display: flex !important;
    flex-direction: column !important;
  }
  .wcu-section .wcu-left,
  .wcu-section .wcu-right {
    display: contents !important;
  }
  .wcu-section .section-tag {
    order: 1 !important;
    margin-bottom: 1.2rem !important;
  }
  .wcu-section .wcu-title {
    order: 2 !important;
    margin-bottom: 1.5rem !important;
  }
  .wcu-section .wcu-image-wrapper {
    order: 3 !important;
    margin-bottom: 170px !important;
    margin-top: 1rem !important;
    align-self: center !important;
  }
  .wcu-section .wcu-desc:nth-of-type(1) {
    order: 4 !important;
    margin-bottom: 1.5rem !important;
  }
  .wcu-section .feature-grid {
    order: 5 !important;
    margin-bottom: 1.5rem !important;
  }
  .wcu-section .wcu-desc:nth-of-type(2) {
    order: 6 !important;
    margin-bottom: 0 !important;
  }
}


.tech-stack-section {
  background-color: #0f1524;
  padding: 80px 20px;
  overflow: hidden;
}
.tech-stack-section .container {
  max-width: var(--section-width);
}
.tech-stack-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}
.tech-stack-left {
  flex: 1;
}
.tech-stack-section .tech-stack-tag,
.tech-stack-section .tech-stack-title,
.tech-stack-section .tech-stack-desc {
  opacity: 0;
  transform: translateY(22px) rotate(-1.4deg);
  will-change: transform, opacity;
}

.tech-stack-section.animate-in .tech-stack-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.tech-stack-section.animate-in .tech-stack-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.tech-stack-section.animate-in .tech-stack-desc {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}
.tech-stack-tag {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;

  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.tech-stack-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
}
.tech-stack-desc {
  color: #c7c8d1;
  font-size: 16px;
  line-height: 1.6;
}
.tech-stack-right {
  flex: 1.2; 
  position: relative;
  height: 500px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}
.tech-slider-container {
  display: flex;
  gap: 20px;
  height: 100%;
}
.tech-slider-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tech-slider-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.scroll-up .tech-slider-track {
  animation: techScrollUp 20s linear infinite;
}
.scroll-down .tech-slider-track {
  animation: techScrollDown 25s linear infinite;
  transform: translateY(-50%);
}
.tech-slider-container:hover .tech-slider-track {
  animation-play-state: paused;
}
@keyframes techScrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes techScrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}
.tech-card {
  background-color: #1a2235;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  height: 130px;
}
.tech-card:hover {
  background-color: #242f47;
  transform: translateY(-5px);
}
.tech-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.tech-card span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .tech-stack-layout {
    flex-direction: column;
  }
  .tech-stack-right {
    flex:unset;
    height: 450px;
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .tech-stack-title {
    font-size: 32px;
  }
  .tech-stack-section {
    padding: 50px 20px;
  }
  .tech-slider-container {
    gap: 15px;
  }
  .tech-card {
    height: 110px;
    padding: 15px;
  }
  .tech-card img {
    width: 28px;
    height: 28px;
  }
  .tech-card span {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .tech-slider-container {
    gap: 10px;
  }
  .tech-slider-track {
    gap: 12px;
  }
  .tech-card {
    height: 90px;
    padding: 10px 5px;
    border-radius: 12px;
    gap: 8px;
  }
  .tech-card img {
    width: 24px;
    height: 24px;
  }
  .tech-card span {
    font-size: 11px;
    text-align: center;
    line-height: 1.2;
  }
  .tech-stack-section {
    padding: 40px 20px;
  }
  .tech-stack-right {
    height: 400px;
  }
}

/* ==================================================================================================================
================================================ INDUSTRY SECTION ===================================================
================================================================================================================= */
.industry-work-section {
    background-color: #0f1524;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    color: white;
}
.industry-work-section .container {
    max-width: var(--section-width);
}

/* New background image pattern */
.industry-work-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://html.awaikenthemes.com/optive/images/dark-section-bg-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8; /* Subtle overlay */
    pointer-events: none;
}

.industry-tag-light {
    color: #e2e8f0 !important;
}

.industry-tag-light::before {
    color: #00d4ff !important;
}

.industry-work-section .section-tag {
    opacity: 0;
    will-change: transform, opacity;
}

.industry-work-section.animate-in .section-tag {
    animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.industry-work-section .section-main-title {
    opacity: 0;
    will-change: transform, opacity;
}

.industry-work-section.animate-in .section-main-title {
    animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.1s;
}

.industry-description {
    max-width: 800px;
    margin: 20px auto 50px;
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0;
    will-change: transform, opacity;
}

.industry-work-section.animate-in .industry-description {
    animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.2s;
}

.industry-tags-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.industry-pill {
    background: rgba(255, 255, 255, 0.10);
    padding: 12px 28px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.industry-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.industry-pill:hover {
    background: linear-gradient(90.38deg, rgba(2, 59, 226, 0.50) 2.06%, rgba(0, 161, 197, 0.50) 99.67%);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}



.industry-footer {
    display: flex;
    justify-content: center;
}

.industry-footer-pill {
    padding: 10px 35px 10px 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: fit-content;
    border-radius: 50px;
}

.footer-media-overlap {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0f172a;
}

.footer-call-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: -15px;
    position: relative;
    z-index: 1;
    border: 2px solid #0f172a;
    font-size: 18px;
}

.footer-cta-text {
    margin: 0;
    font-size: 16px;
    color: #e2e8f0;
}

.footer-cta-link {
    color: white;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: white;
    transition: color 0.3s ease;
}

.footer-cta-link:hover {
    color: #023be2;
}

/* Responsiveness */
@media (max-width: 768px) {
    .industry-work-section {
        padding: 60px 20px;
    }
    
    .industry-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .industry-tags-grid {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .industry-pill {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .industry-footer-pill {
        padding: 8px 20px 8px 10px;
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        gap: 10px;
    }
    
    .footer-cta-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .industry-pill {
        width: 100%;
        justify-content: center;
    }
}

/* ==================================================================================================================
============================================ HOW IT WORKS SECTION ================================================
================================================================================================================= */
.how-it-works-section {
    background-color: #0b101e; 
    padding: var(--section-spacing) 20px;
    position: relative;
    overflow: clip; /* Clip overflow without breaking position: sticky */
}

.how-it-works-section .container {
    max-width: var(--section-width);
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(77, 171, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.sticky-left-content {
    position: sticky;
    top: 120px; /* Offset for navbar height */
    padding-right: 40px;
    z-index: 2;
}


.how-it-works-section .section-tag,
.how-it-works-section .section-main-title,
.how-it-works-section .section-subtitle {
    opacity: 0;
    will-change: transform, opacity;
}

.how-it-works-section.animate-in .section-tag {
    animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.how-it-works-section.animate-in .section-main-title {
    animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.1s;
    color: #ffffff;
}

.how-it-works-section.animate-in .section-subtitle {
    animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    animation-delay: 0.2s;
    color: rgba(255, 255, 255, 0.8);
}

.work-cards-wrapper {
    padding-left: 20px;
}

.work-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.work-card:hover {
    border-color: #0230b8; 
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.work-card-number {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 150px;
    font-weight: 800;
    color: #ffffff;
    opacity: 0; /* Hidden by default */
    transition: all 0.4s ease;
    z-index: -1;
    pointer-events: none;
    line-height: 1;
}

.work-card:hover .work-card-number {
    opacity: 0.1; /* More visible on hover */
    right: 20px; /* Subtle movement */
}

.work-card-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.work-card-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .how-it-works-section {
        padding: var(--section-spacing-mobile) 20px;
        overflow: hidden; /* Safe to use hidden here since position: sticky is disabled below */
    }

    .sticky-left-content {
        position: static;
        padding-right: 0;
        margin-bottom: 60px;
    }
    
    .work-cards-wrapper {
        padding-left: 0;
    }
    
    .work-card {
        padding: 30px;
    }
    
    .work-card-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .work-card-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section .section-main-title {
        font-size: 36px;
    }
}

/* ==========================================================================
   SPECIALIZED SERVICES ACCORDION
========================================================================== */
.specialized-services-section {
  padding: var(--section-spacing) 20px;
}

.specialized-services-section .container {
  max-width: var(--section-width);
  margin: 0 auto;
}

.specialized-services-section .section-tag,
.specialized-services-section .section-main-title,
.specialized-services-section .section-subtitle {
  opacity: 0;
  will-change: transform, opacity;
}

.specialized-services-section.animate-in .section-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.specialized-services-section.animate-in .section-main-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.specialized-services-section.animate-in .section-subtitle {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}
.specialized-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border-radius: 12px;
}
.specialized-main-image {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.specialized-main-image.active {
  opacity: 1;
  visibility: visible;
}

.specialized-accordion {
  padding-left: 30px;
}

.specialized-accordion .sp-accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.specialized-accordion .sp-accordion-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.sp-accordion-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  cursor: pointer;
  padding: 15px 0;
}
.sp-accordion-title {
  font-size: 28px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  transition: color 0.3s;
}

.sp-accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--brand-blue);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}




.sp-accordion-item.active .sp-accordion-icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sp-accordion-item:hover .sp-accordion-icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sp-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-bottom 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  margin-bottom: 0;
}
.sp-accordion-item.active .sp-accordion-body {
  opacity: 1;
  margin-bottom: 20px;
}

.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.sp-tag {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  color: #334155;
  background-color: transparent;
  transition: background-color 0.3s, color 0.3s;
}
.sp-tag:hover {
  background: linear-gradient(
    90.38deg,
    rgba(2, 59, 226, 0.08) 2.06%,
    rgba(0, 161, 197, 0.08) 99.67%
  );
}

.sp-accordion-desc {
  font-size: 16px;
  color: #475569;
  margin-bottom: 25px;
  line-height: 1.6;
}

.sp-explore-link {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}
.sp-explore-link:hover {
  color: var(--brand-blue);
}
.sp-explore-link img {
  filter: brightness(0);
  transition: transform 0.3s ease;
}
.sp-explore-link:hover img {
  transform: rotate(37deg)
}

@media(max-width: 991px) {
  .specialized-accordion {
    padding-left: 0;
  }
  .specialized-image-wrapper {
    min-height: 350px;
    margin-bottom: 30px;
  }
  .sp-accordion-title {
    font-size: 26px;
  }
}



/* ==================================================================================================================
================================================CURSOR FOLLOWER======================================================
================================================================================================================= */
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 96px;
  height: 96px;
  background-color: var(--brand-blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate3d(-100px, -100px, 0) scale(0.125);
  transition: background-color 0.2s ease;
  will-change: transform;
  display: none;
}

@media (min-width: 1200px) {
  .cursor-follower {
    display: block;
  }
}

.cursor-follower.is-hovered {
  background-color: #ffffff;
}




/* Portfolio Filter Tabs */


.portfolio-header {
  padding-bottom: 0;
}

.header-section.portfolio-hero {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(
    90.38deg, 
    rgba(2, 59, 226, 0.05) 2.06%, 
    rgba(0, 161, 197, 0.05) 99.67%
  ), #fafbfc;
}


/* Portfolio Items Grid */
.portfolio-items-section {
  padding: var(--section-spacing, 80px) 20px;
  background-color: #f9f9f9;
}

.portfolio-items-section .container {
  max-width: var(--section-width);
  margin: 0 auto;
}

.portfolio-divider-wrap {
  margin: 60px auto 40px;
  max-width: var(--section-width);
  padding: 0 20px;
}

.portfolio-divider {
  position: relative;
  text-align: center;
  height: 1px;
  background: #dfdfdf;
}

.portfolio-divider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #e3ebf8;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.portfolio-img-wrap::before,
.portfolio-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: transform 3.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0s;
}

.portfolio-img-wrap::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transform: translate(0%, 0%);
}

.portfolio-img-wrap::after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: translate(0%, 0%);
}

.portfolio-item:hover .portfolio-img-wrap::before {
  opacity: 1;
  transform: translate(-100%, -100%);
}

.portfolio-item:hover .portfolio-img-wrap::after {
  opacity: 1;
  transform: translate(100%, 100%);
}

.portfolio-item-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.75); /* white with opacity */
  color: #023be2;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-item-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.portfolio-item-desc {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.6;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
}

.portfolio-item:hover .portfolio-item-title {
  color: #023be2;
}




@media (max-width: 1200px) {
  .portfolio-grid {
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .portfolio-items-section {
    padding: var(--section-spacing-mobile, 40px) 20px;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .portfolio-item {
    border-radius: 18px;
  }
  .portfolio-item-title {
    font-size: 18px;
  }
  .portfolio-item-desc {
    font-size: 14px;
  }
  .portfolio-info {
    padding: 20px;
  }
  .portfolio-item-tag {
    font-size: 11px;
    padding: 4px 12px;
  }
}

@media (max-width: 767px) {
  .portfolio-items-section {
    padding: var(--section-spacing-mobile, 40px) 20px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .portfolio-info {
    padding: 16px 20px;
  }
}

/* ==================================================================================================================
========================================= HIRE PROCESS TIMELINE SECTION ===========================================
================================================================================================================== */

.hire-process-section {
  padding: var(--section-spacing) 20px;
  background: transparent;
}

.hire-process-section .container {
  max-width: var(--section-width);
}

.hire-process-section .section-tag,
.hire-process-section .section-main-title,
.hire-process-section .section-subtitle {
  opacity: 0;
  will-change: transform, opacity;
}

.hire-process-section.animate-in .section-tag {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.hire-process-section.animate-in .section-main-title {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.1s;
}

.hire-process-section.animate-in .section-subtitle {
  animation: swingIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
}




.hire-process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding-top: 34px;
}

.hire-process-line {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 1px;
  background: #d8dfeb;
  z-index: 0;
}

.hire-process-step {
  padding-top: 15px;
  position: relative;
  z-index: 1;
}


.hire-process-dot {
  position: absolute;
  top: -8px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--brand-blue);
  background: #fff;
}

.hire-process-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
}

.hire-process-number {
  display: inline-block;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(58px, 7vw, 84px);
  font-weight: 700;
  line-height: 0.95;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--brand-blue);
}

.hire-process-step h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
}

.hire-process-step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
  color: #4b5563;
}

.hire-process-step:hover .hire-process-number {
  -webkit-text-stroke: 1.5px #00A1C5FE;
}

.hire-process-step:hover .hire-process-dot {
  border-color: #00A1C5FE;
}

.hire-process-step:hover .hire-process-dot::after {
  background: #00A1C5FE;
}



@media (max-width: 1199px) {
  .hire-process-steps {
    /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
    gap: 36px 28px;
    padding-top: 0;
  }

  .hire-process-line {
    top:0
  }

  
}

@media (max-width: 991px) {

  .hire-process-step h3 {
    font-size: 15px;
  }

  .hire-process-step p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .hire-process-section {
    padding: var(--section-spacing-mobile) 20px;
  }

  .hire-process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hire-process-line {
    display: none;
  }

  

  .hire-process-step .hire-process-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 16px;
    width: calc(100vw - 50px);
    height: 1px;
    background: #d8dfeb;
    transform: translateY(-50%);
  }

  .hire-process-number {
    -webkit-text-stroke: 1.2px var(--brand-blue);
  }
}


/* Additional theme CSS */