/* Style Configuration - Affimintus Technologies (Light Theme) */

/* CSS Variables */
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --color-teal: #01acac;
  --color-teal-text: #007373;
  --color-teal-glow: #00cbd4;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --header-height: 100px;
  --header-padding: 24px 0;
  --header-bg: transparent;
  --header-border: transparent;
  --header-shadow: none;
}

/* Base Reset & Styling */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: rgba(1, 172, 172, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(1, 172, 172, 0.5);
}

/* Header & Navbar Custom Layout */
.header-main {
  padding: var(--header-padding);
  background-color: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.4s ease, 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
  z-index: 1030;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Animation & Interaction */
.logo-wrapper {
  transition: transform 0.3s ease;
}

.logo-svg {
  transition: transform 0.3s ease;
}

.logo-brackets {
  fill: none;
  stroke: var(--color-teal);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.logo-text-main {
  font-family: var(--font-heading);
  font-weight: 400;
  fill: var(--text-primary);
  font-size: 56px;
  letter-spacing: -0.5px;
}

.logo-text-sub {
  font-family: var(--font-heading);
  font-weight: 300;
  fill: var(--text-primary);
  font-size: 15px;
  letter-spacing: 12.8px;
  opacity: 0.95;
}

.logo-dot {
  fill: none;
  stroke: var(--color-teal);
  stroke-width: 3.5;
  transform-origin: center;
  animation: pulse-dot 2.5s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% {
    r: 5;
    stroke-width: 3.5;
    stroke: var(--color-teal);
  }
  50% {
    r: 6;
    stroke-width: 4.5;
    stroke: var(--color-teal-glow);
  }
}

/* Logo Hover Effect */
.navbar-brand:hover .logo-svg {
  transform: scale(1.02);
}

.navbar-brand:hover .logo-brackets {
  stroke: var(--color-teal-glow);
}

/* Nav Links Styling */
.nav-links-list {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  color: var(--text-secondary);
  padding: 8px 20px !important;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-teal-text);
}

/* Sliding underline animation */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-teal);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px rgba(1, 172, 172, 0.4);
}

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

/* CTA Button Styling */
.btn-quote {
  position: relative;
  background: var(--color-teal);
  border: 1px solid rgba(1, 172, 172, 0.2);
  color: #ffffff !important;
  font-weight: 500;
  font-family: var(--font-heading);
  padding: 11px 26px !important;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(1, 172, 172, 0.15);
  font-size: 15px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.btn-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-teal-glow);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(1, 172, 172, 0.3);
  border-color: rgba(1, 172, 172, 0.4);
}

.btn-quote:hover::before {
  opacity: 1;
}

.btn-quote:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(1, 172, 172, 0.15);
}

/* Native CSS Scroll-Driven Shrink Animation */
@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  @keyframes shrink-header {
    to {
      padding: 12px 0;
      background-color: rgba(255, 255, 255, 0.95);
      border-bottom-color: rgba(0, 0, 0, 0.05);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
  }

  .header-main {
    animation: shrink-header auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 120px;
    border-bottom: 1px solid transparent;
  }
}

/* Class-based fallback for JS scrolled state */
.header-scrolled {
  padding: 12px 0 !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Custom Hamburger Icon for Mobile */
.navbar-toggler {
  border: none !important;
  padding: 0;
  width: 28px;
  height: 20px;
  position: relative;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.toggler-icon {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-bar { top: 0px; }
.middle-bar { top: 9px; }
.bottom-bar { top: 18px; }

/* Open State of Hamburger Toggler */
.navbar-toggler:not(.collapsed) .top-bar {
  top: 9px;
  transform: rotate(135deg);
  background-color: var(--color-teal);
}

.navbar-toggler:not(.collapsed) .middle-bar {
  opacity: 0;
  left: -20px;
}

.navbar-toggler:not(.collapsed) .bottom-bar {
  top: 9px;
  transform: rotate(-135deg);
  background-color: var(--color-teal);
}

/* Mobile & Responsive Styling */
@media (max-width: 991.98px) {
  .header-main {
    padding: 16px 0 !important;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 24px;
    margin-top: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    animation: slideInDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes slideInDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navbar-nav .nav-link {
    padding: 12px 10px !important;
    font-size: 18px;
    color: var(--text-primary) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .cta-wrapper {
    margin-top: 20px;
    text-align: center;
  }

  .btn-quote {
    width: 100%;
    max-width: 300px;
  }
}

/* Premium Showcase Sections */
.hero-section {
  min-height: 100vh;
  padding-top: 140px;
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.hero-grid-base {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(1, 172, 172, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 172, 172, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

.hero-grid-glow {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(1, 172, 172, 0.22) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(1, 172, 172, 0.22) 1.5px, transparent 1.5px);
  background-size: 60px 60px;
  background-position: center;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(300px circle at var(--mouse-x) var(--mouse-y), black, transparent);
  -webkit-mask-image: radial-gradient(300px circle at var(--mouse-x) var(--mouse-y), black, transparent);
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    550px circle at var(--mouse-x) var(--mouse-y),
    rgba(1, 172, 172, 0.16) 0%,
    rgba(1, 172, 172, 0.04) 40%,
    transparent 75%
  );
  z-index: 0;
  pointer-events: none;
}

.badge-premium {
  display: inline-block;
  background: rgba(1, 172, 172, 0.08);
  border: 1px solid rgba(1, 172, 172, 0.15);
  color: var(--color-teal-text);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.15;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.hero-actions {
  position: relative;
  z-index: 1;
}

.btn-primary-custom,
a.btn-primary-custom,
button.btn-primary-custom {
  background: var(--color-teal) !important;
  background-color: var(--color-teal) !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-weight: 500 !important;
  border: 1px solid var(--color-teal) !important;
  padding: 14px 32px !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus,
.btn-primary-custom:active,
a.btn-primary-custom:hover,
a.btn-primary-custom:focus,
a.btn-primary-custom:active,
button.btn-primary-custom:hover,
button.btn-primary-custom:focus,
button.btn-primary-custom:active {
  background: var(--color-teal-text) !important;
  background-color: var(--color-teal-text) !important;
  border-color: var(--color-teal-text) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(1, 172, 172, 0.35) !important;
}

.btn-secondary-custom,
a.btn-secondary-custom,
button.btn-secondary-custom {
  background: rgba(0, 0, 0, 0.02) !important;
  background-color: rgba(0, 0, 0, 0.02) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-heading) !important;
  font-weight: 500 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  padding: 14px 32px !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-secondary-custom:hover,
.btn-secondary-custom:focus,
.btn-secondary-custom:active,
a.btn-secondary-custom:hover,
a.btn-secondary-custom:focus,
a.btn-secondary-custom:active,
button.btn-secondary-custom:hover,
button.btn-secondary-custom:focus,
button.btn-secondary-custom:active {
  background: rgba(0, 0, 0, 0.05) !important;
  background-color: rgba(0, 0, 0, 0.05) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  color: var(--text-primary) !important;
  transform: translateY(-2px) !important;
}

.content-section {
  background-color: var(--bg-primary);
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 38px;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 300;
  max-width: 650px;
  margin: 0 auto;
}

.section-text {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.glow-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.glow-card:hover {
  border-color: rgba(1, 172, 172, 0.2);
  box-shadow: 0 15px 35px rgba(1, 172, 172, 0.05);
  transform: translateY(-5px);
}

.glow-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 15px;
}

/* About Us Section Styling */
.about-section {
  background-color: var(--bg-secondary);
  position: relative;
  z-index: 2;
}

.about-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--text-primary);
}

.about-text {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

.start-building-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-teal-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.start-building-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-teal);
  transform: scaleX(0.7);
  transform-origin: left;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.start-building-link:hover {
  color: var(--color-teal-glow);
}

.start-building-link:hover::after {
  transform: scaleX(1);
  background-color: var(--color-teal-glow);
}

.start-building-link:hover .arrow-icon {
  transform: translate(3px, -3px);
  stroke: var(--color-teal-glow);
}

/* Cityscape image wrapper styling */
.about-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.about-img {
  border-radius: 23px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  height: auto;
  display: block;
}

.about-image-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.about-image-frame:hover {
  transform: translateY(-4px) rotateX(1deg) rotateY(-1deg);
  border-color: rgba(1, 172, 172, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 25px rgba(1, 172, 172, 0.03);
}

.about-image-frame:hover .about-img {
  transform: scale(1.03);
}

/* Why Choose Section Styling */
.why-choose-section {
  background-color: var(--bg-primary);
  position: relative;
  z-index: 2;
}

.value-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.value-card:hover {
  background: #ffffff;
  border-color: rgba(1, 172, 172, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(1, 172, 172, 0.06), 0 0 25px rgba(0, 0, 0, 0.02);
}

.value-card-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 172, 172, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(1, 172, 172, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover .value-card-icon-wrapper {
  background: rgba(1, 172, 172, 0.08);
  border-color: rgba(1, 172, 172, 0.3);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(1, 172, 172, 0.05);
}

.value-icon {
  width: 36px;
  height: 36px;
}

.value-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.value-card-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 0;
}

/* Stat Cards Styling */
.stat-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 3px solid var(--accent-line);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.stat-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--glow-color) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
  transition: all 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 0 25px rgba(var(--shadow-glow-rgb), 0.03);
}

.stat-card:hover .stat-card-glow {
  opacity: 0.2;
  width: 180px;
  height: 180px;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-primary) 40%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: -1px;
}

.stat-plus, .stat-percent {
  font-size: 44px;
  font-weight: 500;
  margin-left: 2px;
  vertical-align: super;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.stat-unit {
  font-size: 22px;
  vertical-align: middle;
  font-weight: 400;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.stat-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 19px;
  color: var(--accent-color);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.stat-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
  opacity: 0.85;
}

/* Stat Themes */
.stat-teal {
  --glow-color: rgba(1, 172, 172, 0.08);
  --border-hover-color: rgba(1, 172, 172, 0.3);
  --shadow-glow-rgb: 1, 172, 172;
  --accent-color: var(--color-teal-text);
  --accent-glow: var(--color-teal);
  --accent-line: var(--color-teal);
}

.stat-cyan {
  --glow-color: rgba(14, 165, 233, 0.08);
  --border-hover-color: rgba(14, 165, 233, 0.3);
  --shadow-glow-rgb: 14, 165, 233;
  --accent-color: #0369a1;
  --accent-glow: #0ea5e9;
  --accent-line: #0ea5e9;
}

.stat-purple {
  --glow-color: rgba(168, 85, 247, 0.08);
  --border-hover-color: rgba(168, 85, 247, 0.3);
  --shadow-glow-rgb: 168, 85, 247;
  --accent-color: #7e22ce;
  --accent-glow: #a855f7;
  --accent-line: #a855f7;
}

/* Transform Services Section */
.services-transform-section {
  background-color: var(--bg-secondary);
  position: relative;
  z-index: 2;
}

.transform-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.transform-card-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--card-glow) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
  transition: all 0.4s ease;
}

.transform-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-accent);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 0 25px var(--card-glow);
}

.transform-card:hover .transform-card-glow {
  opacity: 0.25;
  width: 150px;
  height: 150px;
}

.transform-icon-wrapper {
  width: 140px;
  height: 140px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abstract-svg {
  width: 100%;
  height: 100%;
}

.transform-card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 19px;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.transform-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.transform-card-list li {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 12px 0;
  line-height: 1.5;
  font-weight: 300;
}

.know-more-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--card-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.know-more-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--card-accent);
  transform: scaleX(0.7);
  transform-origin: left;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover link interactions */
.know-more-link:hover {
  color: var(--text-primary);
}

.know-more-link:hover::after {
  transform: scaleX(1);
  background-color: var(--text-primary);
}

.know-more-link:hover .arrow-icon {
  transform: translate(2px, -2px);
  stroke: var(--text-primary);
}

/* Card Accent Themes (Readability optimized for Light Theme) */
.card-gold {
  --card-accent: #d97706;
  --card-glow: rgba(217, 119, 6, 0.1);
}

.card-mint {
  --card-accent: #059669;
  --card-glow: rgba(5, 150, 105, 0.1);
}

.card-blue {
  --card-accent: #2563eb;
  --card-glow: rgba(37, 99, 235, 0.1);
}

.card-peach {
  --card-accent: #ea580c;
  --card-glow: rgba(234, 88, 12, 0.1);
}

/* Core Solutions Services Section Styles */
.services-core-section {
  background-color: var(--bg-primary);
  position: relative;
  z-index: 2;
}

/* Glowing Separator Styling */
.glow-separator-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.glow-dot {
  width: 4px;
  height: 4px;
  background-color: var(--color-teal);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--color-teal-glow);
  display: inline-block;
}

.glow-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal) 0%, rgba(1, 172, 172, 0) 100%);
  box-shadow: 0 0 4px var(--color-teal-glow);
  display: inline-block;
}

/* Core Service Card Styling */
.core-service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.core-service-card:hover {
  background: #ffffff;
  border-color: rgba(1, 172, 172, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(1, 172, 172, 0.06), 0 0 25px rgba(0, 0, 0, 0.02);
}

.core-service-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0;
}

.core-service-title span {
  color: var(--color-teal-text);
  font-weight: 500;
  font-size: 19px;
}

.card-separator {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal) 0%, var(--color-teal-glow) 100%);
  margin: 16px 0 24px;
  box-shadow: 0 0 6px var(--color-teal-glow);
  transition: width 0.3s ease;
}

.core-service-card:hover .card-separator {
  width: 75px;
}

.core-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.core-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.4;
  font-weight: 300;
}

.core-service-list li:last-child {
  margin-bottom: 0;
}

.bullet-icon {
  width: 18px;
  height: 18px;
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.core-service-card:hover .bullet-icon {
  transform: scale(1.1);
  color: var(--color-teal-glow);
}

/* Start Journey CTA Button Styling */
.btn-journey {
  position: relative;
  background: var(--color-teal);
  border: 1px solid rgba(1, 172, 172, 0.2);
  color: #ffffff !important;
  font-weight: 500;
  font-family: var(--font-heading);
  padding: 14px 38px !important;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(1, 172, 172, 0.15);
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.btn-journey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-teal-glow);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.btn-journey:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(1, 172, 172, 0.3);
  border-color: rgba(1, 172, 172, 0.4);
}

.btn-journey:hover::before {
  opacity: 1;
}

.btn-journey:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(1, 172, 172, 0.15);
}

/* Customer Testimonials Section Styles */
.testimonials-section {
  background-color: var(--bg-primary);
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
  background: #ffffff;
  border-color: rgba(1, 172, 172, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(1, 172, 172, 0.06), 0 0 25px rgba(0, 0, 0, 0.02);
}

.stars-wrapper {
  display: flex;
  gap: 4px;
}

.star-icon {
  width: 20px;
  height: 20px;
  fill: var(--color-teal);
  filter: drop-shadow(0 0 4px rgba(1, 172, 172, 0.2));
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
  font-weight: 300;
  margin: 16px 0 0;
}

.testimonial-author {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-primary);
}

.author-title {
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.75;
}

/* Call to Action Banner Styles */
.cta-banner-section {
  background-color: var(--bg-secondary);
  position: relative;
  z-index: 2;
}

.cta-glass-banner {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.cta-banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(1, 172, 172, 0.05) 0%, rgba(1, 172, 172, 0.01) 60%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
  pointer-events: none;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.25;
  color: var(--text-primary);
}

.cta-banner-text {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 300;
}

/* Careers Section Styles */
.career-section {
  background-color: var(--bg-secondary);
  position: relative;
  z-index: 2;
}

.career-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.career-card:hover {
  background: #ffffff;
  border-color: rgba(1, 172, 172, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(1, 172, 172, 0.06), 0 0 25px rgba(0, 0, 0, 0.02);
}

.career-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-primary);
}

.career-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
}

.career-badge-teal,
.career-badge-blue,
.career-badge-gold {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.career-badge-teal {
  background: rgba(1, 172, 172, 0.08);
  border: 1px solid rgba(1, 172, 172, 0.15);
  color: var(--color-teal);
}

.career-badge-blue {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: #2563eb;
}

.career-badge-gold {
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.15);
  color: #d97706;
}

.career-apply-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-teal-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.career-apply-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-teal-text);
  transform: scaleX(0.7);
  transform-origin: left;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.career-apply-link:hover {
  color: var(--color-teal-glow);
}

.career-apply-link:hover::after {
  transform: scaleX(1);
  background-color: var(--color-teal-glow);
}

.career-apply-link:hover .arrow-icon {
  transform: translate(2px, -2px);
  stroke: var(--color-teal-glow);
}

/* Contact Section & Form Styles */
.contact-section {
  background-color: var(--bg-primary);
  position: relative;
  z-index: 2;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.info-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 26px;
  color: var(--text-primary);
}

.info-intro {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
}

.info-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(1, 172, 172, 0.06);
  border: 1px solid rgba(1, 172, 172, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(1, 172, 172, 0.05);
}

.info-icon {
  width: 20px;
  height: 20px;
}

.info-label {
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.info-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: var(--color-teal);
}

.info-text {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
}

/* Form inputs customized styling */
.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.form-group-custom {
  position: relative;
}

.form-label-custom {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-control-custom,
.form-select-custom {
  width: 100%;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 20px !important;
  border-radius: 12px !important;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.form-select-custom {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230f172a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 20px center !important;
  background-size: 12px 12px !important;
}

.form-control-custom::placeholder {
  color: rgba(0, 0, 0, 0.35) !important;
}

/* Custom Dropdown Options Styling */
.form-select-custom option {
  background: #ffffff;
  color: var(--text-primary);
  padding: 10px;
}

.form-control-custom:focus,
.form-select-custom:focus {
  border-color: rgba(1, 172, 172, 0.5) !important;
  box-shadow: 0 0 12px rgba(1, 172, 172, 0.15) !important;
  background: #ffffff !important;
}

/* Premium Footer Styles */
.footer-main {
  background-color: #F8FAFC;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-teal);
  border-radius: 2px;
}

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

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

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--color-teal-text);
  padding-left: 4px;
}

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

.footer-contact-info li {
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 300;
}

.footer-contact-info a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: var(--color-teal-text);
}

/* Social icons styling */
.social-icon-wrapper {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.social-svg {
  width: 18px;
  height: 18px;
}

.social-icon-wrapper:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(1, 172, 172, 0.25);
}

.footer-bottom {
  border-color: rgba(0, 0, 0, 0.05) !important;
}

.footer-bottom p {
  font-size: 13px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .contact-info-card,
  .contact-form-card {
    padding: 32px 24px;
  }
}

/* Subpage Hero Layouts */
.subpage-hero {
  padding-top: 160px;
  padding-bottom: 60px;
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.subpage-hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--text-primary);
  line-height: 1.25;
}

.subpage-hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 16px auto 0;
  line-height: 1.6;
}

/* Custom Modal Glassmorphic Overlay Styles */
.modal-custom .modal-content {
  background: #ffffff;
  border: 1px solid rgba(1, 172, 172, 0.15);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.modal-custom .modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 24px 32px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-custom .modal-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--text-primary);
}

.modal-custom .modal-body {
  padding: 32px;
}

.modal-custom .btn-close-custom {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
}

.modal-custom .btn-close-custom:hover {
  color: var(--color-teal-text);
}

/* Drag & Drop File Upload Styles */
.cv-upload-dropzone {
  border: 2px dashed rgba(1, 172, 172, 0.3);
  background: rgba(1, 172, 172, 0.01);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.cv-upload-dropzone:hover,
.cv-upload-dropzone.dragover {
  border-color: var(--color-teal);
  background: rgba(1, 172, 172, 0.05);
  box-shadow: 0 0 15px rgba(1, 172, 172, 0.05);
}

.upload-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(1, 172, 172, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-teal-text);
  transition: transform 0.3s ease;
}

.cv-upload-dropzone:hover .upload-icon-wrapper {
  transform: translateY(-2px);
}

.upload-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.upload-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  font-weight: 300;
}

.upload-text span {
  color: var(--color-teal-text);
  font-weight: 500;
}

.upload-hint {
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-bottom: 0;
  font-weight: 300;
}

.file-input-hidden {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-selected-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(1, 172, 172, 0.08);
  border: 1px solid rgba(1, 172, 172, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--color-teal-text);
  font-weight: 500;
  margin-top: 12px;
}

.file-remove-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.file-remove-btn:hover {
  color: #ef4444;
}

/* Custom validation styling */
.was-validated .form-control-custom:invalid,
.form-control-custom.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !important;
}

.was-validated .form-control-custom:valid {
  border-color: #198754 !important;
}

.was-validated .form-select-custom:invalid,
.form-select-custom.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !important;
}

.was-validated .form-select-custom:valid {
  border-color: #198754 !important;
}

.invalid-feedback-custom {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 13px;
  color: #dc3545;
  font-weight: 400;
}

.was-validated :invalid ~ .invalid-feedback-custom,
.was-validated .is-invalid ~ .invalid-feedback-custom {
  display: block;
}


