/* =============================================
   YUWAM DATA SOLUTIONS — style.css
   ============================================= */

:root {
  --primary: #F25920;
  --secondary: #01549A;
  --dark: #0F172A;
  --text: #1E293B;
  --light: #F8FAFC;
  --white: #FFFFFF;
  --gray: #000000;
  --border: #E2E8F0;

  --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---- Utility ---- */
.section-pad {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #01549A;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-sub-text {
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

.section-text {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* =============================================
   LOADER
   ============================================= */
#loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 24px;
}

.loader-y {
  color: var(--primary);
}

.loader-d {
  color: var(--white);
}

.loader-s {
  color: var(--secondary);
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 16px;
}

.loader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transition: width .05s linear;
}

.loader-text {
  color: rgba(255, 255, 255, .4);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* =============================================
   HEADER
   ============================================= */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar-wrapper.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.navbar {
  padding: 10px 0;
  transition: padding .3s ease;
}

.navbar-wrapper.scrolled .navbar {
  padding: 5px 15px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.logo-main::before {
  content: 'Y';
  color: var(--primary);
  font-size: 26px;
}

.logo-sub {
  font-size: 7.5px;
  letter-spacing: 1.5px;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav links */
.navbar-nav .nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #000 !important;
  padding: 8px 16px !important;
  transition: var(--transition);
  position: relative;
}

.navbar-wrapper.scrolled .navbar-nav .nav-link {
  color: var(--text) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .3s ease;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

/* CTA Button */
.btn-cta {
  background: var(--primary);
  color: var(--white) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  transition: var(--transition);
}

.btn-cta:hover {
  background: #d94e18;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242, 89, 32, .3);
}

/* Toggler */
.custom-toggler {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.custom-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-wrapper.scrolled .custom-toggler span {
  background: var(--text);
}

/* Mobile menu */
.mobile-menu {
  background: var(--dark);
}

.mobile-menu .offcanvas-title {
  color: var(--white);
  font-family: var(--font-heading);
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-nav-list li a {
  display: block;
  padding: 16px 0;
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
  font-weight: 500;
  transition: color .2s;
}

.mobile-nav-list li a:hover {
  color: var(--primary);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  min-height: 100vh;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

/* Background elements */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--secondary);
  top: -200px;
  right: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  bottom: -100px;
  left: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1, 84, 154, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 84, 154, .06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-navy-arc {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 85%;
  background: var(--secondary);
  clip-path: ellipse(80% 90% at 100% 100%);
  opacity: 0.06;
}

.hero-orange-stripe {
  position: absolute;
  background: var(--primary);
  border-radius: 6px;
}

.stripe-1 {
  width: 8px;
  height: 40%;
  right: 12%;
  top: 10%;
  transform: rotate(15deg);
  opacity: 0.8;
}

.stripe-2 {
  width: 6px;
  height: 28%;
  right: 9%;
  top: 25%;
  transform: rotate(15deg);
  opacity: 0.5;
}

.hero-container {
  position: relative;
  z-index: 2;
}

/* Hero label */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
}

.label-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: .6;
  }
}

/* Hero heading */
.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
  opacity: 0;
}

.hero-heading em {
  font-style: normal;
  color: var(--primary);
}

.hero-sub {
  font-size: 15px;
  color: #000000;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}

.btn-hero-primary {
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid var(--primary);
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: #d94e18;
  border-color: #d94e18;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 89, 32, .3);
  color: var(--white);
}

.btn-hero-outline {
  background: transparent;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid var(--secondary);
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Globe */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.globe-wrap {
  position: relative;
  width: 460px;
  max-width: 100%;
}

.globe-svg {
  width: 100%;
  height: auto;
  animation: floatGlobe 6s ease-in-out infinite;
}

@keyframes floatGlobe {

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

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

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(1, 84, 154, .12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring-1 {
  width: 110%;
  height: 110%;
  animation: ringPulse 3s ease-in-out infinite;
}

.ring-2 {
  width: 125%;
  height: 125%;
  animation: ringPulse 3s ease-in-out .5s infinite;
}

.ring-3 {
  width: 140%;
  height: 140%;
  animation: ringPulse 3s ease-in-out 1s infinite;
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: .5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: .15;
    transform: translate(-50%, -50%) scale(1.03);
  }
}

/* Float cards */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
  font-size: 12px;
  min-width: 140px;
  animation: floatCard 4s ease-in-out infinite;
}

.float-card i {
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.float-card strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 12px;
}

.float-card span {
  color: var(--gray);
  font-size: 11px;
}

.card-1 {
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 28%;
  left: -8%;
  animation-delay: 1s;
}

.card-3 {
  top: 18%;
  right: 0%;
  animation-delay: 2s;
}

@keyframes floatCard {

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

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  width: 100%;
  height: 20px;
  background: var(--primary);
  position: absolute;
  top: -20px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    top: -20px;
  }

  100% {
    top: 100%;
  }
}

/* =============================================
   ABOUT STRIP
   ============================================= */
.about-strip {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.strip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.strip-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #01549a;
  line-height: 1.2;
  margin-bottom: 16px;
}

.strip-desc {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 360px;
}

.strip-link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #0154a6;
  text-transform: uppercase;
  transition: gap .2s;
  gap: 8px;
}

.strip-link:hover {
  gap: 14px;
  color: var(--primary);
}

.strip-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px 20px;
  height: 100%;
  border: 1px solid #d2dbe7;
  transition: var(--transition);
  text-align: center;
}

.strip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.strip-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(1, 84, 154, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--secondary);
  transition: var(--transition);
}

.strip-card:hover .strip-icon {
  background: rgba(242, 89, 32, .1);
  color: var(--primary);
}

.strip-card h4 {
  font-family: poppins;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 8px;
}

.strip-card p {
  font-size: 13px;
  color: #000;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: var(--secondary);
  padding: 48px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 28px;
  color: var(--primary);
  flex-shrink: 0;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgb(255, 255, 255);
  margin-top: 4px;
  font-weight: 500;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  background: var(--light);
}

.about-img-wrap {
  position: relative;
}

.about-img-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.badge-exp {
  bottom: -16px;
  right: -16px;
  flex-direction: column;
  text-align: center;
  padding: 16px 20px;
}

.badge-exp .badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.badge-exp .badge-txt {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
}

.badge-clients {
  top: -16px;
  left: -16px;
}

.badge-clients i {
  color: var(--secondary);
  font-size: 18px;
}

.about-feat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.about-feat-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(242, 89, 32, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 18px;
  color: var(--primary);
}

.about-feat-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.about-feat-card p {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  margin: 0;
}

.btn-primary-cta {
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-primary-cta:hover {
  background: #d94e18;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 89, 32, .3);
  color: var(--white);
}

/* =============================================
   FOUNDERS SECTION
   ============================================= */
.founders-section {
  background: var(--white);
}

.founder-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.founder-card:hover::before {
  transform: scaleX(1);
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.founder-card-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.founder-img-wrap {
  position: relative;
  flex-shrink: 0;
}

.founder-img-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(1, 84, 154, .15), rgba(242, 89, 32, .15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--secondary);
  border: 3px solid var(--border);
  transition: var(--transition);
}

.founder-card:hover .founder-img-placeholder {
  border-color: var(--primary);
  color: var(--primary);
}

.founder-img-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(242, 89, 32, .3);
  animation: spin 12s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.founder-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.founder-socials {
  display: flex;
  gap: 8px;
}

.founder-socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(1, 84, 154, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--secondary);
  transition: var(--transition);
}

.founder-socials a:hover {
  background: var(--primary);
  color: var(--white);
}

.founder-bio {
  font-size: 14px;
  color: #000000;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 20px;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-tags span {
  background: rgba(1, 84, 154, .06);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(1, 84, 154, .12);
}

/* =============================================
   MISSION & VISION
   ============================================= */
.mv-section {
  background: var(--dark);
}

.mv-section .section-heading {
  color: var(--white);
}

.mv-section .section-label {
  color: var(--primary);
}

.mv-card {
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.mv-mission {
  background: rgba(242, 89, 32, .08);
  border: 1px solid rgba(242, 89, 32, .2);
}

.mv-vision {
  background: rgba(1, 84, 154, .15);
  border: 1px solid rgba(1, 84, 154, .3);
}

.mv-card:hover {
  transform: translateY(-6px);
}

.mv-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.mv-mission .mv-icon-wrap {
  background: rgba(242, 89, 32, .2);
  color: var(--primary);
}

.mv-vision .mv-icon-wrap {
  background: rgba(1, 84, 154, .3);
  color: #60A5FA;
}

.mv-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mv-mission .mv-tag {
  color: var(--primary);
}

.mv-vision .mv-tag {
  color: #60A5FA;
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.mv-card p {
  font-size: 15px;
  color: rgb(255, 255, 255);
  line-height: 1.8;
}

.mv-footer {
  display: flex;
  gap: 6px;
  margin-top: 28px;
}

.mv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
}

.mv-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  background: var(--light);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover .service-card-bg {
  opacity: 1;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242, 89, 32, .04), rgba(1, 84, 154, .04));
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(242, 89, 32, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--primary);
  color: var(--white);
  transform: rotate(-6deg) scale(1.1);
}

.service-card h4 {
  font-family: var(--font-heading);
  font-size: 1.50rem;
  font-weight: 900;
  color: #01549a;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-card p {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: gap .2s;
}

.service-link:hover {
  gap: 12px;
  color: var(--primary);
}

/* =============================================
   WHY CHOOSE YDS
   ============================================= */
.why-section {
  background: var(--white);
}

.why-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover,
.why-card.active {
  background: var(--secondary);
  border-color: var(--secondary);
}

.why-card:hover i,
.why-card.active i {
  color: var(--primary);
}

.why-card:hover h5,
.why-card.active h5 {
  color: var(--white);
}

.why-card:hover p,
.why-card.active p {
  color: rgba(255, 255, 255, .65);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card i {
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 12px;
  display: block;
  transition: color .3s;
}

.why-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  transition: color .3s;
}

.why-card p {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
  transition: color .3s;
}

/* =============================================
   DARK STATS
   ============================================= */
.dark-stats {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.dark-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.dark-stat {
  position: relative;
  z-index: 1;
}

.ds-num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.ds-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  background: var(--light);
  overflow: hidden;
}

.contact-info {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  height: 100%;
  color: var(--white);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--white);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-item p {
  color: rgb(255, 255, 255);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.contact-item a {
  color: rgba(255, 255, 255, .85);
  transition: color .2s;
}

.contact-item a:hover {
  color: var(--primary);
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.contact-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  transition: var(--transition);
}

.contact-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.form-group-yds {
  margin-bottom: 4px;
}

.form-group-yds label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.yds-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--light);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.yds-input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(242, 89, 32, .08);
}

.yds-input.invalid {
  border-color: #ef4444;
}

.yds-textarea {
  resize: vertical;
  min-height: 120px;
}

.error-msg {
  display: none;
  font-size: 11px;
  color: #ef4444;
  margin-top: 4px;
}

.form-group-yds.has-error .error-msg {
  display: block;
}

.form-group-yds.has-error .yds-input {
  border-color: #ef4444;
}

.btn-submit-form {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), #d94e18);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px;
  border-radius: var(--radius);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.btn-submit-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(242, 89, 32, .35);
}

.form-success-msg {
  text-align: center;
  padding: 48px 24px;
}

.form-success-msg i {
  font-size: 56px;
  color: #22c55e;
  margin-bottom: 16px;
}

.form-success-msg h5 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-success-msg p {
  color: var(--gray);
  font-size: 14px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-section {
  background: var(--dark);
  padding: 80px 0 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}

.footer-brand::before {
  content: 'Y';
  color: var(--primary);
  font-size: 24px;
}

.footer-brand-sub {
  display: block;
  font-size: 7px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .35);
  font-weight: 600;
  text-transform: uppercase;
}

.footer-about {
  font-size: 13px;
  color: rgb(241, 241, 241);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
  font-style: normal;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgb(255, 255, 255);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgb(255, 255, 255);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-list i {
  color: var(--primary);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgb(255, 255, 255);
  transition: color .2s;
}

.footer-contact-list a:hover {
  color: var(--primary);
}

.footer-top {
  padding-bottom: 60px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgb(255, 255, 255);
  margin: 0;
}

/* =============================================
   GSAP INITIAL STATES
   ============================================= */
[data-gsap="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
}

[data-gsap="slide-right"] {
  opacity: 0;
  transform: translateX(-50px);
}

[data-gsap="slide-left"] {
  opacity: 0;
  transform: translateX(50px);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .hero-right {
    display: none;
  }

  .hero-left {
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto 32px;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    justify-content: flex-start;
  }

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

  .contact-info {
    margin-bottom: 0;
  }

  .about-img-col {
    order: 2;
  }

  .about-content-col {
    order: 1;
  }

  .float-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 70px 0;
  }

  .hero-section {
    min-height: 100vh;
  }

  .about-strip {
    padding: 60px 0;
  }

  .strip-left {
    margin-bottom: 40px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .mv-card {
    padding: 32px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .badge-exp {
    right: 8px;
    bottom: -12px;
  }

  .badge-clients {
    top: -12px;
    left: 8px;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 2rem;
  }

  .loader-logo {
    font-size: 52px;
  }

  .ds-num {
    font-size: 2rem;
  }

  .founder-card {
    padding: 24px 20px;
  }

  .founder-card-top {
    flex-direction: column;
    text-align: center;
  }

  .founder-socials {
    justify-content: center;
  }
}

.contact-info{
    background:#01549A;
    color:#fff;
    padding:40px;
    border-radius:20px;
}

.contact-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.contact-icon{
    width:50px;
    height:50px;
    background:#fff;
    color:#F25920;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
}

.active-tab{
    background:#01549A !important;
    color:#fff !important;
}