/*-----------------------------------------------------------------------------------
    Oliphant Software — 2026 Redesign
    Custom styles for oliphantsoftware.com
-----------------------------------------------------------------------------------*/

/* ===========================
   CSS CUSTOM PROPERTIES
=========================== */
:root {
  --color-dark: #0c0e23;
  --color-dark-2: #141634;
  --color-primary: #361CC1;
  --color-primary-light: #5b3fe4;
  --color-blue: #2e82ef;
  --color-teal: #33c8c1;
  --color-cyan: #119bd2;
  --color-warm-1: #fe8464;
  --color-warm-2: #fe6e9a;
  --color-text: #6A6972;
  --color-text-dark: #2E2E2E;
  --color-text-light: #b4b4c4;
  --color-white: #ffffff;
  --color-surface: #f8f9fc;
  --color-border: rgba(54, 28, 193, 0.1);

  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", "Lato", sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(54, 28, 193, 0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: all 0.3s ease;
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  overflow-x: hidden;
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  display: inline-block;
}

a:hover {
  text-decoration: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  outline: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.3;
}

p {
  margin: 0;
}

i, span {
  display: inline-block;
}

/* ===========================
   SCROLL PROGRESS BAR
=========================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-primary), var(--color-warm-2));
  z-index: 99999;
  transition: width 0.1s linear;
}

/* ===========================
   PRELOADER
=========================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-ring {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.loader-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 52px;
  height: 52px;
  margin: 6px;
  border: 4px solid transparent;
  border-radius: 50%;
  animation: loader-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-top-color: var(--color-teal);
}

.loader-ring div:nth-child(1) { animation-delay: -0.45s; }
.loader-ring div:nth-child(2) { animation-delay: -0.3s; border-top-color: var(--color-primary-light); }
.loader-ring div:nth-child(3) { animation-delay: -0.15s; border-top-color: var(--color-warm-1); }

@keyframes loader-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===========================
   BUTTONS
=========================== */
.main-btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  white-space: nowrap;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 0;
  color: var(--color-white);
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue) 100%);
  box-shadow: 0 4px 20px rgba(54, 28, 193, 0.3);
  letter-spacing: 0.3px;
}

.main-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-teal) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.main-btn:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(54, 28, 193, 0.4);
}

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

.outline-btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  white-space: nowrap;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  letter-spacing: 0.3px;
}

.outline-btn:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.outline-btn i {
  margin-left: 6px;
  font-size: 12px;
  animation: bounce-down 2s infinite;
}

@keyframes bounce-down {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(4px); }
  60% { transform: translateY(2px); }
}

/* ===========================
   SECTION COMMON
=========================== */
.section-tag {
  margin-bottom: 16px;
}

.section-tag span {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  background: rgba(54, 28, 193, 0.08);
  padding: 6px 18px;
  border-radius: 50px;
}

.section-heading {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.section-heading .highlight {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .section-heading {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .section-heading {
    font-size: 24px;
  }
  .section-text {
    font-size: 16px;
  }
}

/* ===========================
   NAVBAR
=========================== */
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition);
}

.navbar {
  padding: 20px 0;
  position: relative;
  transition: var(--transition);
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  transition: var(--transition);
}

.navbar-brand .logo-white {
  display: block;
  width: 280px;
}

.navbar-brand .logo-dark {
  display: none;
  width: 280px;
}

@media (max-width: 767px) {
  .navbar-brand .logo-white,
  .navbar-brand .logo-dark {
    width: 140px;
  }
}

.sticky {
  position: fixed;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.sticky .navbar {
  padding: 12px 0;
}

.sticky .navbar-brand .logo-white {
  display: none;
}

.sticky .navbar-brand .logo-dark {
  display: block;
}

.navbar-toggler {
  padding: 0;
  border: none;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--color-white);
  display: block;
  margin: 5px 0;
  position: relative;
  transition: var(--transition);
}

.sticky .navbar-toggler .toggler-icon {
  background-color: var(--color-text-dark);
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}

.navbar-nav .nav-item {
  margin-right: 35px;
  position: relative;
}

.navbar-nav .nav-item a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  padding: 10px 0;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-item a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-blue));
  transition: width 0.3s ease;
}

.navbar-nav .nav-item.active a::after,
.navbar-nav .nav-item:hover a::after {
  width: 100%;
}

.sticky .navbar-nav .nav-item a {
  color: var(--color-text-dark);
}

.sticky .navbar-nav .nav-item.active a,
.sticky .navbar-nav .nav-item:hover a {
  color: var(--color-primary);
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    z-index: 9;
    box-shadow: var(--shadow-md);
    padding: 10px 20px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .navbar-nav .nav-item {
    margin: 0;
  }
  .navbar-nav .nav-item a {
    display: block;
    padding: 8px 0;
    color: var(--color-text-dark);
  }
  .navbar-nav .nav-item a::after {
    display: none;
  }
}

/* ===========================
   HERO
=========================== */
.header-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-dark) 0%, #1a1048 40%, #0d2847 100%);
  overflow: hidden;
  z-index: 5;
  padding-top: 100px;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

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

.hero-shape.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--color-primary);
  top: -200px;
  right: -100px;
  animation: float-shape 20s ease-in-out infinite;
}

.hero-shape.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--color-teal);
  bottom: -100px;
  left: -100px;
  animation: float-shape 15s ease-in-out infinite reverse;
}

.hero-shape.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--color-warm-2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-shape 25s ease-in-out infinite;
}

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

.header-hero-content {
  position: relative;
  z-index: 10;
  padding-bottom: 60px;
}

.hero-badge {
  margin-bottom: 24px;
}

.hero-badge span {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-teal);
  border: 1px solid rgba(51, 200, 193, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(51, 200, 193, 0.05);
}

.header-title {
  font-size: 60px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-cyan) 50%, var(--color-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-subtitle {
  font-size: 20px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
}

.typed-wrapper {
  color: var(--color-teal);
  font-weight: 500;
}

.typed-cursor {
  animation: blink 1s infinite;
  font-weight: 300;
  color: var(--color-teal);
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

#particles-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

@media (max-width: 991px) {
  .header-title {
    font-size: 42px;
  }
  .header-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .header-hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 60px;
  }
  .header-title {
    font-size: 32px;
  }
  .header-subtitle {
    font-size: 16px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ===========================
   VALUE PROPOSITION SECTION
=========================== */
.value-section {
  padding: 120px 0 80px;
  background: var(--color-white);
}

.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-slow);
  height: 100%;
}

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

.value-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(54, 28, 193, 0.08) 0%, rgba(46, 130, 239, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.value-card:hover .value-card-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue) 100%);
}

.value-card-icon i {
  font-size: 28px;
  color: var(--color-primary);
  transition: var(--transition);
}

.value-card:hover .value-card-icon i {
  color: var(--color-white);
}

.value-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
}

@media (max-width: 767px) {
  .value-section {
    padding: 80px 0 40px;
  }
  .value-card {
    margin-bottom: 20px;
  }
}

/* ===========================
   SERVICES SECTION
=========================== */
.services-section {
  padding: 100px 0 80px;
  background: var(--color-surface);
  position: relative;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  margin-bottom: 30px;
  transition: var(--transition-slow);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-icon i {
  font-size: 28px;
  color: var(--color-white);
}

.icon-gradient-1 { background: linear-gradient(135deg, #361CC1, #6e4aff); }
.icon-gradient-2 { background: linear-gradient(135deg, #119bd2, #33c8c1); }
.icon-gradient-3 { background: linear-gradient(135deg, #fe6e9a, #fe8464); }
.icon-gradient-4 { background: linear-gradient(135deg, #2e82ef, #361CC1); }
.icon-gradient-5 { background: linear-gradient(135deg, #33c8c1, #2e82ef); }
.icon-gradient-6 { background: linear-gradient(135deg, #fe8464, #f7b733); }

.service-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--color-text-dark);
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  flex-grow: 1;
}

.service-link {
  margin-top: 20px;
}

.service-link a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  transition: var(--transition);
}

.service-link a i {
  margin-left: 6px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.service-link a:hover {
  color: var(--color-blue);
}

.service-link a:hover i {
  transform: translateX(4px);
}

/* ===========================
   INDUSTRIES SECTION
=========================== */
.industries-section {
  padding: 100px 0;
  background: var(--color-white);
}

.industry-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition-slow);
  border: 1px solid var(--color-border);
  margin-bottom: 30px;
  height: calc(100% - 30px);
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(54, 28, 193, 0.03) 100%);
  transition: height 0.4s ease;
}

.industry-card:hover::after {
  height: 100%;
}

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

.industry-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(54, 28, 193, 0.06) 0%, rgba(46, 130, 239, 0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue) 100%);
  box-shadow: 0 8px 25px rgba(54, 28, 193, 0.3);
}

.industry-icon i {
  font-size: 32px;
  color: var(--color-primary);
  transition: var(--transition);
}

.industry-card:hover .industry-icon i {
  color: var(--color-white);
}

.industry-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.industry-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

/* ===========================
   APPROACH SECTION
=========================== */
.approach-section {
  padding: 100px 0;
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.approach-content .section-heading {
  margin-bottom: 20px;
}

.approach-content .section-text {
  margin: 0 0 30px;
  max-width: none;
}

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

.approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.approach-list li:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.approach-list-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.approach-list-icon i {
  font-size: 20px;
  color: var(--color-teal);
}

.approach-list li strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.approach-list li span {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
}

/* Orbiting graphic */
.approach-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.approach-graphic {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.orbit-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(54, 28, 193, 0.4), 0 0 80px rgba(54, 28, 193, 0.15);
  z-index: 3;
}

.orbit-center i {
  font-size: 36px;
  color: var(--color-white);
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(54, 28, 193, 0.15);
  border-radius: 50%;
}

.orbit-ring-1 {
  width: 240px;
  height: 240px;
  margin-top: -120px;
  margin-left: -120px;
  animation: orbit-rotate 30s linear infinite;
}

.orbit-ring-2 {
  width: 360px;
  height: 360px;
  margin-top: -180px;
  margin-left: -180px;
  animation: orbit-rotate 45s linear infinite reverse;
}

@keyframes orbit-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbit-dot {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  margin-top: -24px;
  margin-left: -24px;
  transform: rotate(var(--angle)) translateX(calc(var(--orbit-radius, 120px))) rotate(calc(-1 * var(--angle)));
}

.orbit-ring-1 .orbit-dot {
  --orbit-radius: 120px;
  transform: rotate(var(--angle)) translateX(120px) rotate(calc(-1 * var(--angle)));
  animation: orbit-counter-rotate 30s linear infinite;
}

.orbit-ring-2 .orbit-dot {
  --orbit-radius: 180px;
  transform: rotate(var(--angle)) translateX(180px) rotate(calc(-1 * var(--angle)));
  animation: orbit-counter-rotate 45s linear infinite reverse;
}

@keyframes orbit-counter-rotate {
  from { transform: rotate(var(--angle)) translateX(var(--orbit-radius)) rotate(calc(-1 * var(--angle))); }
  to { transform: rotate(calc(var(--angle) + 360deg)) translateX(var(--orbit-radius)) rotate(calc(-1 * var(--angle) - 360deg)); }
}

.orbit-dot i {
  font-size: 20px;
  color: var(--color-primary);
}

@media (max-width: 991px) {
  .approach-visual {
    min-height: 320px;
    margin-top: 40px;
  }
  .orbit-container {
    width: 300px;
    height: 300px;
  }
  .orbit-ring-1 {
    width: 180px;
    height: 180px;
    margin-top: -90px;
    margin-left: -90px;
  }
  .orbit-ring-2 {
    width: 270px;
    height: 270px;
    margin-top: -135px;
    margin-left: -135px;
  }
  .orbit-ring-1 .orbit-dot { transform: rotate(var(--angle)) translateX(90px) rotate(calc(-1 * var(--angle))); }
  .orbit-ring-2 .orbit-dot { transform: rotate(var(--angle)) translateX(135px) rotate(calc(-1 * var(--angle))); }
  .orbit-dot {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
  }
  .orbit-dot i { font-size: 16px; }
  .orbit-center {
    width: 70px;
    height: 70px;
  }
  .orbit-center i { font-size: 28px; }
}

@media (max-width: 767px) {
  .orbit-container {
    width: 260px;
    height: 260px;
  }
  .orbit-ring-1 {
    width: 160px;
    height: 160px;
    margin-top: -80px;
    margin-left: -80px;
  }
  .orbit-ring-2 {
    width: 240px;
    height: 240px;
    margin-top: -120px;
    margin-left: -120px;
  }
  .orbit-ring-1 .orbit-dot { transform: rotate(var(--angle)) translateX(80px) rotate(calc(-1 * var(--angle))); }
  .orbit-ring-2 .orbit-dot { transform: rotate(var(--angle)) translateX(120px) rotate(calc(-1 * var(--angle))); }
}

/* ===========================
   STATS SECTION
=========================== */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-dark) 0%, #1a1048 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(54, 28, 193, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(51, 200, 193, 0.08) 0%, transparent 50%);
  animation: float-shape 20s ease-in-out infinite;
}

.stats-wrapper {
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-cyan) 50%, var(--color-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-cyan) 50%, var(--color-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-size: 15px;
  color: var(--color-text-light);
  font-weight: 400;
}

@media (max-width: 767px) {
  .stat-number,
  .stat-suffix {
    font-size: 40px;
  }
  .stat-item {
    padding: 20px 10px;
  }
  .stat-item p {
    font-size: 13px;
  }
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  padding: 100px 0;
  background: var(--color-white);
}

.cta-wrapper {
  background: linear-gradient(135deg, var(--color-surface) 0%, #eef2ff 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 28, 193, 0.06) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
}

.cta-contact {
  position: relative;
  z-index: 1;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.cta-contact-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cta-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-contact-icon i {
  font-size: 18px;
  color: var(--color-white);
}

.cta-contact-item span {
  display: block;
  font-size: 13px;
  color: var(--color-text);
  margin-bottom: 2px;
}

.cta-contact-item a {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

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

.cta-contact-item strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.cta-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.cta-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cta-social a:hover {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue) 100%);
  box-shadow: 0 4px 15px rgba(54, 28, 193, 0.3);
  transform: translateY(-2px);
}

.cta-social a i {
  font-size: 18px;
  color: var(--color-primary);
  transition: var(--transition);
}

.cta-social a:hover i {
  color: var(--color-white);
}

@media (max-width: 991px) {
  .cta-wrapper {
    padding: 40px 30px;
  }
  .cta-content {
    margin-bottom: 40px;
  }
  .cta-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .cta-section {
    padding: 60px 0;
  }
  .cta-wrapper {
    padding: 30px 20px;
  }
}

/* ===========================
   FOOTER
=========================== */
.footer-area {
  background: linear-gradient(180deg, var(--color-dark) 0%, #080a1a 100%);
  position: relative;
  z-index: 5;
  padding-top: 80px;
}

#particles-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.footer-content {
  padding-bottom: 50px;
}

.footer-about {
  margin-bottom: 30px;
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about .logo img {
  width: 180px;
}

.footer-about p {
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.8;
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
}

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

.footer-links ul li a {
  font-size: 14px;
  color: var(--color-text-light);
  transition: var(--transition);
}

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

.footer-contact {
  margin-bottom: 30px;
}

.footer-contact ul li {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact ul li i {
  color: var(--color-teal);
  font-size: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-blue));
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-social a i {
  font-size: 16px;
  color: var(--color-white);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.copyright p {
  font-size: 14px;
  color: var(--color-text-light);
  margin: 0;
}

/* ===========================
   BACK TO TOP
=========================== */
.back-to-top {
  font-size: 18px;
  color: var(--color-white);
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-blue));
  text-align: center;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(54, 28, 193, 0.3);
  transition: var(--transition);
  display: none;
}

.back-to-top:hover {
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(54, 28, 193, 0.4);
}

/* ===========================
   ANIMATED GRADIENT BG
=========================== */
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===========================
   REVEAL ANIMATIONS
=========================== */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   SELECTION
=========================== */
::selection {
  background: rgba(54, 28, 193, 0.15);
  color: var(--color-text-dark);
}
