:root {
  --primary-color: #6366f1;
  --secondary-color: #a855f7;
  --accent-color: #f43f5e;
  --dark-color: #0f172a;
  --light-color: #f8fafc;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: blur(12px);
  --font-main: 'Outfit', sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: var(--light-color);
  color: var(--dark-color);
  overflow-x: hidden;
}

.logo-head {
  height: 40px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

#header .logo a {
  font-weight: 800;
  font-size: 24px;
  background: linear-gradient(to right, #fff, var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
}

/* Header & Navbar Modernization */
#header.header-scrolled, #header.header-inner-pages {
  background: rgba(15, 23, 42, 0.8) !important;
  backdrop-filter: blur(10px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary-color), var(--secondary-color));
  border-radius: 10px;
}

::selection {
  background: var(--primary-color);
  color: #fff;
}

.navbar a, .navbar a:focus {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: var(--primary-color) !important;
}

.navbar .getstarted {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  padding: 10px 25px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.navbar .getstarted:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Hero Section Modernization */
#hero {
  background: #0f172a;
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
  animation: blob-float 20s infinite alternate;
}

.blob-1 { top: -10%; right: -5%; }
.blob-2 { bottom: -10%; left: -5%; animation-delay: -5s; }

@keyframes blob-float {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

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

#hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
}

#hero h2 {
  color: #94a3b8;
  font-weight: 400;
  max-width: 500px;
}

#hero .btn-get-started {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 12px 35px;
  font-weight: 600;
  border: none;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

#hero .btn-get-started:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

/* Section Title */
.section-title h2 {
  color: var(--dark-color);
  font-size: 36px;
  position: relative;
  padding-bottom: 20px;
}

.section-title h2::after {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color)) !important;
  width: 60px !important;
  height: 4px !important;
}

/* Cards & Glassmorphism */
.icon-box {
  background: #fff;
  border-radius: 20px !important;
  padding: 40px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.4s ease !important;
  border: 1px solid #f1f5f9 !important;
}

.icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1) !important;
  border-color: var(--primary-color) !important;
}

.icon-box .icon i {
  color: var(--primary-color) !important;
  font-size: 40px !important;
}

/* Why Us Section */
.why-us .accordion-list li {
  border-radius: 15px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02) !important;
  border: 1px solid #f1f5f9 !important;
}

.why-us .accordion-list a {
  color: var(--dark-color) !important;
  font-weight: 600 !important;
}

.why-us .accordion-list span {
  color: var(--primary-color) !important;
}

/* Services */
.services .icon-box {
  border-bottom: 5px solid transparent !important;
}

.services .icon-box:hover {
  border-bottom: 5px solid var(--primary-color) !important;
}

/* Footer */
#footer {
  background: var(--dark-color) !important;
  color: #94a3b8 !important;
}

#footer .footer-top {
  background: #0f172a !important;
}

#footer h3 {
  color: #fff !important;
}

#hero .animated {
  animation: hero-float 3s ease-in-out infinite alternate !important;
}

@keyframes hero-float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-30px); }
}

section {
  padding: 100px 0 !important;
}

.skills .progress {
  height: 12px !important;
  background-color: #e2e8f0 !important;
  border-radius: 10px !important;
  margin-bottom: 25px !important;
}

.skills .progress-bar {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color)) !important;
  border-radius: 10px !important;
}

.skills .skill {
  font-weight: 600 !important;
  color: var(--dark-color) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-size: 13px !important;
}
