:root {
  --primary: #06b6d4;
  --primary-glow: rgba(6, 182, 212, 0.4);
  --secondary: #64748b;
  --dark: #0a0a0b;
  --light: #f1f5f9;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-dark: rgba(10, 10, 11, 0.85);
  --accent: #f59e0b;
  --font-main: "Inter", sans-serif;
  --font-heading: "Montserrat", sans-serif;
}

/* Global Color Consistency Overrides */
.text-primary,
.text-primary-custom {
  color: var(--primary) !important;
}

.bg-primary,
.bg-primary-custom {
  background-color: var(--primary) !important;
}

.border-primary,
.border-primary-custom {
  border-color: var(--primary) !important;
}

.btn-primary,
.btn-premium-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
}

/* Bootstrap Overrides */
.text-primary {
  color: var(--primary) !important;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.border-primary {
  border-color: var(--primary) !important;
}
.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Glassmorphism Classes */
.glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.glass-dark {
  background: var(--glass-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Hero Section Overhaul */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
  padding: 180px 0;
}

.hero-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/hero_ultra.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 11, 0.95) 0%,
    rgba(10, 10, 11, 0.75) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* Service Cards */
.premium-card {
  border: none;
  border-radius: 24px;
  background: var(--white);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.premium-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(6, 182, 212, 0.12);
}

.premium-card .icon-wrap {
  width: 80px;
  height: 80px;
  background: #f1f5f9;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  transition: all 0.4s ease;
}

.premium-card:hover .icon-wrap {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 20px var(--primary-glow);
}

/* Buttons */
.btn-premium {
  padding: 1.1rem 2.8rem;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: none;
  font-size: 0.85rem;
}

.btn-premium-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-premium-primary:hover {
  background: #0891b2;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px var(--primary-glow);
  color: var(--white);
}

/* Navbar */
.nav-premium {
  transition: all 0.4s ease;
  padding: 2rem 0;
  z-index: 1000;
}

.nav-premium.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1.2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-link {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--dark) !important;
  margin: 0 1.2rem;
  transition: color 0.3s ease;
}

.hero-section .nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
}

.scrolled .nav-link {
  color: var(--dark) !important;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(6, 182, 212, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
}

.badge-premium {
  background: rgba(6, 182, 212, 0.1);
  color: var(--primary);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .nav-premium .navbar-collapse {
    background: var(--glass-dark);
    margin-top: 1rem;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
  }

  .nav-premium .nav-link {
    margin: 1rem 0;
    text-align: center;
    color: var(--white) !important;
  }

  .nav-premium .btn-premium {
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-section {
    padding: 120px 0;
  }
}

/* Custom Utilities */
.fw-extra-bold {
  font-weight: 900;
}
.py-100 {
  padding: 100px 0;
}
.mb-100 {
  margin-bottom: 100px;
}
.text-gradient {
  background: linear-gradient(90deg, #06b6d4, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Slick Customization */
.slick-dots li button:before {
  color: var(--primary) !important;
  opacity: 0.25;
}

.slick-dots li.slick-active button:before {
  color: var(--primary) !important;
  opacity: 1;
}

.testimonial-slider .px-3 {
  margin-bottom: 20px;
}

input::placeholder,textarea::placeholder {
    color: #ccc !important;
}