/* ==========================================
   COMMON STYLES - Professional Light Theme
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Logo Core Colors */
  --brand-primary: #2563eb;
  /* Royal Blue */
  --brand-secondary: #06b6d4;
  /* Cyan */
  --brand-dark: #1e3a8a;
  /* Dark Blue */

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  --gradient-hover: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-primary) 100%);
  --gradient-bg: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  --gradient-card: linear-gradient(145deg, #ffffff, #f8fafc);

  /* Vibrant Gradients (New) */
  --gradient-blue-pink-1: linear-gradient(180deg, #667eea 0%, #b97dd4 50%, #e8a6d8 100%);
  --gradient-blue-pink-2: linear-gradient(180deg, #4a7fc8 0%, #9b6dc4 50%, #d89bc8 100%);
  --gradient-purple-pink: linear-gradient(180deg, #8b6fb8 0%, #c47dba 50%, #e8a0d0 100%);
  --gradient-blue-purple: linear-gradient(180deg, #5a73d8 0%, #9775c4 50%, #d895d0 100%);
  --gradient-cyan-pink: linear-gradient(180deg, #4a9dd8 0%, #7d8fcc 50%, #c099d8 100%);
  --gradient-blue-lavender: linear-gradient(180deg, #a8c0e8 0%, #c4b5dc 50%, #d4c4e8 100%);
  --gradient-green-laptop: linear-gradient(180deg, #90B892 0%, #75C87C 50%, #A4CDA7 100%);

  /* Functional Colors */
  --white: #ffffff;
  --bg-body: #f8fafc;
  --text-main: #0f172a;
  --text-body: #475569;
  --text-light: #94a3b8;
  --border-light: #e2e8f0;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --container-width: 1200px;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;

  /* Animation Speeds */
  --ease-spring: cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 0.8rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* ==========================================
   LOGO & IMAGES
   ========================================== */
.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* ==========================================
   ORBIT ANIMATION
   ========================================== */
/* ==========================================
   ORBIT ANIMATION (Enhanced)
   ========================================== */
.orbit-container {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 3rem auto 0;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, var(--brand-secondary), var(--brand-primary));
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.6);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  animation: pulse 4s infinite ease-in-out;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 20px rgba(37, 99, 235, 0.05);
}

/* Ring Sizes & Speeds */
.ring-1 {
  width: 220px;
  height: 220px;
  animation: spin-right 12s linear infinite;
}

.ring-2 {
  width: 340px;
  height: 340px;
  animation: spin-left 18s linear infinite;
}

.ring-3 {
  width: 460px;
  height: 460px;
  animation: spin-right 25s linear infinite;
}

.ring-4 {
  width: 580px;
  height: 580px;
  animation: spin-left 35s linear infinite;
  border-style: dashed;
  border-color: rgba(6, 182, 212, 0.15);
}

.orbit-planet {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 15px currentColor;
}

/* Planet Positioning */
/* Ring 1: 1 planet */
.ring-1 .planet-1 {
  width: 20px;
  height: 20px;
  background: #60a5fa;
  color: #60a5fa;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Ring 2: 2 planets */
.ring-2 .planet-1 {
  width: 25px;
  height: 25px;
  background: #34d399;
  color: #34d399;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
}

.ring-2 .planet-2 {
  width: 18px;
  height: 18px;
  background: #a78bfa;
  color: #a78bfa;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

/* Ring 3: 2 planets */
.ring-3 .planet-1 {
  width: 30px;
  height: 30px;
  background: #f472b6;
  color: #f472b6;
  top: 14.6%;
  left: 85.3%;
  transform: translate(-50%, -50%);
}

.ring-3 .planet-2 {
  width: 22px;
  height: 22px;
  background: #fbbf24;
  color: #fbbf24;
  top: 85.3%;
  left: 14.6%;
  transform: translate(-50%, -50%);
}

/* Ring 4: 1 planet */
.ring-4 .planet-1 {
  width: 35px;
  height: 35px;
  background: #22d3ee;
  color: #22d3ee;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin-right {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin-left {
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 60px rgba(37, 99, 235, 0.6);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 90px rgba(37, 99, 235, 0.8);
  }
}

/* Update Media Queries for Orbit */
@media (max-width: 768px) {
  .orbit-container {
    width: 300px;
    height: 300px;
  }

  .ring-1 {
    width: 150px;
    height: 150px;
  }

  .ring-2 {
    width: 220px;
    height: 220px;
  }

  .ring-3 {
    width: 300px;
    height: 300px;
  }

  .orbit-center {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}


.logo-text h2 {
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

/* ==========================================
   NAVBAR DROPDOWN (New)
   ========================================== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid var(--border-light);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-body);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: #f1f5f9;
  color: var(--brand-primary);
  padding-left: 1.75rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-primary);
}

/* Mobile Menu Button */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-main);
  margin: 6px 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
  background: var(--brand-primary);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
  background: var(--brand-primary);
}

/* Mobile Menu Overlay */
@media (max-width: 968px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .nav-menu.active li {
    animation: slideUpFade 0.5s ease forwards;
  }

  .nav-menu li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav-menu li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .nav-menu li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .nav-menu li:nth-child(4) {
    animation-delay: 0.4s;
  }

  .nav-menu li:nth-child(5) {
    animation-delay: 0.5s;
  }

  .nav-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    /* Hidden by default in mobile, toggled via JS if needed, but for now flat list is better */
    margin-top: 1rem;
    padding-left: 0;
    text-align: center;
  }

  /* Show dropdown items nicely in mobile */
  .dropdown:hover .dropdown-menu,
  .dropdown.active .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  .dropdown-item {
    font-size: 1.1rem;
    padding: 0.5rem;
    color: var(--text-body);
  }

  /* Hide the chevron for cleaner mobile look or rotate it */
  .dropdown>a>i {
    transform: rotate(-90deg);
    transition: transform 0.3s;
  }

  .dropdown.active>a>i {
    transform: rotate(0deg);
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all 0.3s var(--ease-spring);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.4);
}

.btn-outline {
  background: white;
  color: var(--brand-primary);
  border: 2px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--brand-primary);
  background: #f8fafc;
  transform: translateY(-2px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
/* ==========================================
   HERO SECTION (Updated)
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0f172a;
  /* Fallback */
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease-in-out, transform 10s linear;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9));
  z-index: 1;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 100px;
  /* Space for navbar */
  padding-bottom: 50px;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: white;
}

.hero-text p {
  font-size: 1.25rem;
  color: #cad5e1;
  margin: 0 auto 3rem;
  max-width: 700px;
}

/* ==========================================
   NEW SECTIONS
   ========================================== */
.stats-section {
  background: white;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-body);
  font-weight: 500;
}

.process-step {
  position: relative;
  padding: 2rem;
  text-align: center;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--brand-secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-body);
}

/* ==========================================
   SECTIONS & CARDS
   ========================================== */
/* ==========================================
   SECTIONS & CARDS
   ========================================== */
.section-padding {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-body);
  font-size: 1.1rem;
}

/* ==========================================
   PROCESS SECTION (Enhanced)
   ========================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-light);
  z-index: 0;
  display: block;
}

.process-step {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.4s ease;
  z-index: 1;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.3);
}

.step-number {
  width: 80px;
  height: 80px;
  background: white;
  border: 4px solid var(--bg-body);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  margin: -60px auto 1.5rem;
  /* Pull up to overlap line */
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.process-step:hover .step-number {
  background: var(--gradient-primary);
  color: white;
  border-color: rgba(37, 99, 235, 0.2);
  transform: scale(1.1);
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.gallery-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* ==========================================
   UPDATED GRID & CARDS
   ========================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: white;
  background: white;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  border-radius: 50%;
  /* Circle */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--brand-primary);
  transition: all 0.3s ease;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover .feature-icon {
  transform: rotateY(180deg);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand p {
  margin-top: 1rem;
  color: #cbd5e1;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.footer h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: white;
}

.footer ul li {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer ul li a {
  color: #cbd5e1;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer ul li a:hover {
  color: var(--brand-secondary);
  padding-left: 5px;
}

/* Specific styling for contact icons in footer to keep them aligned but centered group */
.footer-links li {
  justify-content: center !important;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.9rem;
}

/* ==========================================
   PAGE HEADER (For subpages)
   ========================================== */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================
   CONTACT FORM
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: var(--brand-primary);
  color: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-item i {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* ==========================================
   SUPPLY NETWORK MAP
   ========================================== */
.map-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
}

.india-map {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(37, 99, 235, 0.2));
  transform: perspective(1000px) rotateX(10deg);
  /* 3D Effect */
  transition: transform 0.5s ease;
}

.map-path {
  fill: #e0f2fe;
  stroke: #bae6fd;
  stroke-width: 1;
  transition: all 0.3s ease;
}

.map-path:hover {
  fill: #bae6fd;
  transform: translateY(-2px);
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--brand-secondary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
  animation: pulse-dot 2s infinite;
  cursor: pointer;
}

/* ==========================================
   DOTTED SVG MAP (Light Premium)
   ========================================== */
.map-container.light-theme {
  background: white;
  /* Clean white background */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(74, 222, 128, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.map-container.light-theme::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(74, 222, 128, 0.08), transparent 60%);
  pointer-events: none;
}

.india-map-dotted {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(37, 99, 235, 0.1));
}

.dotted-fill {
  fill: url(#dotPatternLight);
  transition: all 0.5s ease;
}

/* Glowing Markers (Green) */
.marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 10;
}

.marker-pin {
  width: 34px;
  height: 34px;
  background: white;
  border: 2px solid #22c55e;
  /* Green-500 */
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.marker-pin i {
  transform: rotate(45deg);
  color: #22c55e;
  font-size: 0.9rem;
}

.marker:hover .marker-pin {
  transform: rotate(-45deg) scale(1.15);
  background: #22c55e;
  border-color: #22c55e;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
}

.marker:hover .marker-pin i {
  color: white;
}

.marker-pulse {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 6px;
  background: rgba(34, 197, 94, 0.4);
  border-radius: 50%;
  filter: blur(3px);
  animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translateX(-50%) scale(2);
    opacity: 0.2;
  }
}

/* ==========================================
   CURSOR FOLLOWER
   ========================================== */
#cursor-follower {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--brand-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
  mix-blend-mode: difference;
}

#cursor-follower.hovering {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  border-color: transparent;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

@keyframes shimmer {
  0% {
    transform: translateX(-150%) rotate(45deg);
  }

  100% {
    transform: translateX(150%) rotate(45deg);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

/* ==========================================
   RESPONSIVE - COMPREHENSIVE MOBILE-FIRST DESIGN
   ========================================== */

/* ===== TABLET AND BELOW (< 968px) ===== */
@media (max-width: 968px) {

  /* Container padding reduction */
  .container {
    padding: 0 1.25rem;
  }

  /* Section padding reduction */
  .section-padding {
    padding: 4rem 0;
  }

  /* Hero adjustments */
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-text p {
    margin: 0 auto 2.5rem;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  /* Grid adjustments */
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
  }

  /* Stats section */
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Process grid */
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
  }

  .process-grid::before {
    display: none;
  }

  /* Gallery adjustments */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* ===== SMALLER DESKTOP (< 1024px) ===== */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 2rem;
  }

  .section-padding {
    padding: 5rem 0;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem 2rem;
  }

  .process-grid::before {
    display: none;
  }

  .step-number {
    margin: 0 auto 1.5rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }
}

/* ===== MOBILE AND SMALL TABLET (< 768px) ===== */
@media (max-width: 768px) {

  /* Container adjustments */
  .container {
    padding: 0 1rem;
  }

  /* Enhanced mobile navigation */
  .hamburger {
    display: block;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 100px 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-menu.active {
    right: 0;
  }

  /* Ensure nav links are touch-friendly */
  .nav-link {
    padding: 0.75rem 0;
    font-size: 1.1rem;
  }

  /* Typography scaling */
  .hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* Section padding */
  .section-padding {
    padding: 3rem 0;
  }

  /* Page header */
  .page-header {
    padding: 120px 0 60px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  /* Footer improvements */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
    margin: 1rem auto;
  }

  /* Form improvements */
  .form-input {
    padding: 0.875rem;
    font-size: 16px;
    /* Prevent zoom on iOS */
  }

  /* Button improvements */
  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    min-height: 44px;
    /* Touch-friendly */
  }

  /* Contact info card */
  .contact-info-card {
    padding: 2rem;
  }

  /* Process grid - single column */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Gallery full width */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 250px;
  }
}

/* ==========================================
   RESPONSIVE LAYOUTS & FIXES [NEW]
   ========================================== */

/* Split Layout (Desktop Default) */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}

/* Ensure images in split layout fit */
.split-layout img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* Tablet & Mobile Fixes */
@media (max-width: 968px) {
  .split-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-wrapper.split-layout {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .split-layout ul {
    display: inline-block;
    text-align: left;
  }

  .orbit-container {
    margin: 0 auto 3rem;
  }
}

/* ===== SMALL MOBILE (< 640px) ===== */
@media (max-width: 640px) {

  /* Typography - further reduction */
  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  /* Layouts */
  .split-layout {
    gap: 1.5rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    margin: 1rem 0;
    gap: 1.25rem;
  }

  /* Stats section - single column */
  .stats-section {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
    margin-top: -40px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  /* Full-width mobile menu */
  .nav-menu {
    width: 100%;
    max-width: 100%;
    padding: 100px 1.5rem;
    background: rgba(255, 255, 255, 0.98);
  }

  /* Section padding - minimal */
  .section-padding {
    padding: 2.5rem 0;
  }

  /* Container minimal padding */
  .container {
    padding: 0 0.875rem;
  }

  /* Feature cards */
  .feature-card {
    padding: 1.75rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Logo size reduction */
  .logo-img {
    height: 40px;
  }

  /* Page header */
  .page-header {
    padding: 100px 0 40px;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }
}

/* ==========================================
   EVENTS SECTION
   ========================================== */
.events-section {
  background: var(--gradient-blue-pink-1);
  position: relative;
  z-index: 1;
}

.event-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 1);
}

.event-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* Alternating Layout */
.event-item:nth-child(even) {
  flex-direction: row-reverse;
}

.event-content {
  flex: 1;
}

.event-content h3 {
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.event-content h4 {
  font-size: 1.25rem;
  color: var(--brand-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.event-content p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: justify;
}

.event-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.event-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-item:hover .event-image img {
  transform: scale(1.05);
}

/* Responsive Events */
@media (max-width: 968px) {

  .event-item,
  .event-item:nth-child(even) {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .event-content h3 {
    font-size: 1.75rem;
  }

  .event-content p {
    text-align: left;
  }

  .event-image img {
    aspect-ratio: 16 / 9;
  }
}

/* ==========================================
   EVENT FIXES & NEW HERO STYLES
   ========================================== */

/* Fix for Event Images - Show Full Image */
.event-image img {
  aspect-ratio: auto !important;
  /* Override previous rule */
  object-fit: contain !important;
  /* Ensure full image is visible */
  height: auto !important;
  max-height: 400px;
  /* Limit height to prevent taking up too much space */
  background: #f8fafc;
  /* Subtle background for aspect ratio padding */
}

/* New Hero Slider */
.hero-simple-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  /* Standard 1920x1080 aspect ratio */
  overflow: hidden;
  margin-top: 70px;
  /* Navbar height */
}

@media (max-width: 768px) {
  .hero-simple-wrapper {
    /* height: 400px; - Removed to maintain aspect ratio on mobile too, or customize if needed */
    aspect-ratio: 16 / 9;
  }
}

.hero-slide-simple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  /* Removed initial scale to prevent movement */
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-simple.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.hero-slide-simple img,
.hero-slide-simple video {
  width: 100%;
  height: 100%;
  object-fit: fill;
  /* Forces video to fit container exactly - ensures NO cropping */
  object-position: center;
  transition: transform 8s ease-out;
}

/* Removed zoom effect to prevent edge cropping */
.hero-slide-simple.active img,
.hero-slide-simple.active video {
  transform: scale(1);
}


/* New Stats Bar */
.new-stats-bar {
  background: white;
  padding: 2rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item-new h3 {
  font-size: 3rem;
  color: var(--brand-dark);
  /* Dark blue/First color in screenshot */
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.stat-item-new p {
  color: #0f172a;
  /* Dark text */
  font-weight: 700;
  font-size: 1.1rem;
}

/* Responsive Stats */
@media (max-width: 768px) {
  .stats-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item-new h3 {
    font-size: 2.2rem;
  }
}

/* ==========================================
   PREMIUM SOLUTIONS SECTION - NEW DESIGN
   ========================================== */

.premium-solutions-section {
  background: #f8fafc;
  padding: 4rem 0;
}

.products-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.product-card-new {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.product-card-new.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.product-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.product-card-new:hover .product-image-container img {
  transform: scale(1.1);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.product-info p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .products-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .product-image-container {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .products-grid-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-info h3 {
    font-size: 1.25rem;
  }

  .product-image-container {
    height: 220px;
  }
}

/* Stagger animation delays */
.product-card-new:nth-child(1) {
  transition-delay: 0.1s;
}

.product-card-new:nth-child(2) {
  transition-delay: 0.2s;
}

.product-card-new:nth-child(3) {
  transition-delay: 0.3s;
}

.product-card-new:nth-child(4) {
  transition-delay: 0.4s;
}

.product-card-new:nth-child(5) {
  transition-delay: 0.5s;
}

.product-card-new:nth-child(6) {
  transition-delay: 0.6s;
}

/* ==========================================
   ANIMATED BACKGROUND (About Page)
   ========================================== */
.animated-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  /* Place behind content */
  pointer-events: none;
}

.about-hero-overlay {
  z-index: 1;
}

.cube {
  position: absolute;
  bottom: -100px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  animation: animateBackground 15s linear infinite;
}

.cube:nth-child(1) {
  left: 10%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.cube:nth-child(2) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 2s;
  animation-duration: 20s;
}

.cube:nth-child(3) {
  left: 50%;
  width: 40px;
  height: 40px;
  animation-delay: 4s;
  animation-duration: 15s;
}

.cube:nth-child(4) {
  left: 75%;
  width: 70px;
  height: 70px;
  animation-delay: 0s;
  animation-duration: 22s;
}

.cube:nth-child(5) {
  left: 90%;
  width: 50px;
  height: 50px;
  animation-delay: 5s;
  animation-duration: 16s;
}

@keyframes animateBackground {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateY(-800px) rotate(720deg);
    opacity: 0;
  }
}

/* ==========================================
   PRODUCT DETAILS PAGE
   ========================================== */
.product-details-page {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #4c1d95 100%);
  color: white;
  min-height: 100vh;
}

.pd-hero {
  padding: 120px 0 60px;
  text-align: center;
}

.pd-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #a5b4fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pd-hero p {
  font-size: 1.5rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.pd-hero-image {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.pd-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pd-grid {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.pd-section.reverse .pd-grid {
  flex-direction: row-reverse;
}

.pd-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.pd-image img {
  max-width: 100%;
  border-radius: var(--radius-md);
  /* filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); */
}

.pd-text {
  flex: 1;
}

.pd-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #e0e7ff;
}

.pd-text p {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pd-text ul {
  list-style: none;
  padding: 0;
}

.pd-text li {
  color: #cbd5e1;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.pd-text li::before {
  content: "•";
  color: #818cf8;
  position: absolute;
  left: 0;
  font-weight: bold;
}

@media (max-width: 768px) {
  .pd-hero h1 {
    font-size: 3rem;
  }

  .pd-grid {
    flex-direction: column !important;
    gap: 2rem;
    text-align: center;
  }

  .pd-text li {
    padding-left: 0;
    list-style-position: inside;
  }
}

/* ==========================================
   Vibrant Gradient Utilities
   ========================================== */
.gradient-blue-pink-1 {
  background: var(--gradient-blue-pink-1);
}

.gradient-blue-pink-2 {
  background: var(--gradient-blue-pink-2);
}

.gradient-purple-pink {
  background: var(--gradient-purple-pink);
}

.gradient-blue-purple {
  background: var(--gradient-blue-purple);
}

.gradient-cyan-pink {
  background: var(--gradient-cyan-pink);
}

.gradient-blue-lavender {
  background: var(--gradient-blue-lavender);
}

.gradient-green-laptop {
  background: var(--gradient-green-laptop);
}