/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors - SWR Cloud Pulse Theme */
  --primary: #db6f81;
  --primary-dark: #c55a6f;
  --secondary: rgb(144, 189, 72);
  --accent: #4CAF50;
  --dark: #db6f81;
  --dark-light: #e88a9a;
  --gray: #64748b;
  --gray-light: #cbd5e1;
  --white: #ffffff;
  --bg-light: #f8fafc;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, rgb(144, 189, 72) 0%, #4CAF50 100%);
  --gradient-secondary: linear-gradient(45deg, rgb(144, 189, 72), #4CAF50);
  --gradient-success: linear-gradient(135deg, rgba(144, 189, 72, 0.3) 0%, rgb(144, 189, 72) 100%);
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 100px 0;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--white);
  background: #0a0a0a;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-secondary:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(144, 189, 72, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0;
}

.navbar.scrolled {
  padding: 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  background: rgba(20, 20, 20, 0.98);
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(144, 189, 72, 0.5), transparent);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s ease;
}

.navbar.scrolled .nav-container {
  padding: 8px 30px;
}

.nav-logo {
  position: relative;
  z-index: 2;
}

.nav-logo img {
  height: 65px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 12px rgba(144, 189, 72, 0.4)) brightness(1.1) contrast(1.1);
}

.navbar.scrolled .nav-logo img {
  height: 55px;
}

.nav-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(144, 189, 72, 0.6));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.3px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(144, 189, 72, 0.8);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
  text-shadow: 0 0 8px rgba(144, 189, 72, 0.5);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-actions .btn-primary {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 12px rgba(144, 189, 72, 0.3);
  border: 1px solid rgba(144, 189, 72, 0.5);
}

.nav-actions .btn-primary:hover {
  box-shadow: 0 5px 20px rgba(144, 189, 72, 0.5);
  transform: translateY(-2px);
}

/* Search Icon in Header */
.nav-search {
  width: 35px;
  height: 35px;
  background: rgba(144, 189, 72, 0.1);
  border: 1px solid rgba(144, 189, 72, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-search:hover {
  background: var(--secondary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(144, 189, 72, 0.6);
}

.nav-search i {
  font-size: 14px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  border-radius: 3px;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(144, 189, 72, 0.3) 0%, transparent 70%);
  top: -200px;
  left: -200px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(219, 111, 129, 0.4) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(144, 189, 72, 0.2) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(144, 189, 72, 0.1);
  border: 1px solid rgba(144, 189, 72, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(144, 189, 72, 0.1);
}

.hero-badge i {
  color: var(--secondary);
}

.hero-badge i {
  color: var(--accent);
}

.hero-title {
  font-size: 56px;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--white);
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item h3 {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(144, 189, 72, 0.2);
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 6s infinite ease-in-out;
}

.floating-card i {
  font-size: 24px;
  color: var(--secondary);
}

.floating-card span {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.card-1 {
  top: 10%;
  left: 10%;
}

.card-2 {
  top: 30%;
  right: 10%;
  animation-delay: -2s;
}

.card-3 {
  bottom: 30%;
  left: 5%;
  animation-delay: -4s;
}

.card-4 {
  bottom: 10%;
  right: 15%;
  animation-delay: -1s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ===== SECTION STYLES ===== */
section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(144, 189, 72, 0.1);
  color: var(--secondary);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title {
  font-size: 48px;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services {
  background: #0f0f0f;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(144, 189, 72, 0.1);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 40px rgba(144, 189, 72, 0.2);
  border-color: rgba(144, 189, 72, 0.3);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  font-size: 32px;
  color: white;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.6);
}

.service-features i {
  color: var(--secondary);
  font-size: 14px;
}

/* ===== PROJECTS SECTION ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.project-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(144, 189, 72, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 40px rgba(144, 189, 72, 0.2);
  border-color: rgba(144, 189, 72, 0.3);
}

.project-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--dark-light);
}

.project-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.play-btn {
  width: 70px;
  height: 70px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.play-btn i {
  font-size: 24px;
  color: var(--secondary);
  margin-left: 5px;
}

.play-btn:hover {
  transform: scale(1.1);
}

.project-content {
  padding: 30px;
}

.project-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.project-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.project-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.project-tags span {
  padding: 6px 16px;
  background: rgba(144, 189, 72, 0.2);
  color: var(--secondary);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(144, 189, 72, 0.3);
}

/* ===== SKILLS SECTION ===== */
.skills {
  background: #0f0f0f;
}

.skills-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.skill-item {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(144, 189, 72, 0.1);
  padding: 30px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  min-height: 140px;
}

.skill-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 40px rgba(144, 189, 72, 0.2);
  border-color: rgba(144, 189, 72, 0.3);
}

.skill-item i {
  font-size: 48px;
  color: var(--secondary);
  transition: all 0.4s ease;
}

.skill-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.skill-item:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #4CAF50;
}

.skill-item:hover span {
  color: var(--secondary);
}

.skill-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* ===== CONTACT SECTION ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(144, 189, 72, 0.1);
  border-radius: 16px;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 40px rgba(144, 189, 72, 0.2);
  border-color: rgba(144, 189, 72, 0.3);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 20px;
  color: white;
}

.info-content h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.info-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  border: 1px solid rgba(144, 189, 72, 0.2);
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(144, 189, 72, 0.2);
}

#form-status {
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #083335 0%, #0c1b23 50%, #14453a 100%);
  color: white;
  padding: 50px 0 20px;
  border-top: 1px solid rgba(144, 189, 72, 0.2);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(144, 189, 72, 0.6), transparent);
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(144, 189, 72, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(144, 189, 72, 0.3));
}

.footer-logo:hover {
  transform: scale(1.05) translateY(-3px);
  filter: drop-shadow(0 0 20px rgba(144, 189, 72, 0.6));
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 13px;
  margin-bottom: 15px;
}

.footer-links h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
  box-shadow: 0 0 8px rgba(144, 189, 72, 0.6);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  font-size: 13px;
  position: relative;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--secondary);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 18px;
  text-shadow: 0 0 8px rgba(144, 189, 72, 0.5);
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(144, 189, 72, 0.3), transparent);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  font-size: 12px;
  position: relative;
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

.footer-bottom-links a:hover::after {
  width: 100%;
}

/* Newsletter Subscription */
.footer-newsletter {
  margin-top: 15px;
}

.footer-newsletter h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: white;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(144, 189, 72, 0.3);
  border-radius: 6px;
  color: white;
  font-size: 12px;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(144, 189, 72, 0.3);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  padding: 8px 16px;
  background: var(--secondary);
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #4CAF50;
  box-shadow: 0 0 15px rgba(144, 189, 72, 0.6);
  transform: translateY(-2px);
}

/* Back to Top Button in Footer */
.back-to-top {
  position: absolute;
  top: -25px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(144, 189, 72, 0.4);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(144, 189, 72, 0.6);
}

.back-to-top i {
  font-size: 18px;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(10px);
}

.video-modal.active {
  display: flex !important;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 100000;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from { 
    transform: scale(0.9);
    opacity: 0;
  }
  to { 
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: var(--secondary);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(144, 189, 72, 0.4);
}

.modal-close:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 25px rgba(144, 189, 72, 0.6);
}

#modal-video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(144, 189, 72, 0.3);
}
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: floatPulse 3s ease-in-out infinite;
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1);
  }
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  pointer-events: none;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-visual {
    height: 400px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: #1a1a1a;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-stats {
    flex-wrap: wrap;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}


/* ===== CUSTOM CURSOR EFFECTS ===== */
body {
  cursor: default;
}

body.custom-cursor-active {
  cursor: none;
}

body.custom-cursor-active * {
  cursor: none !important;
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(144, 189, 72, 0.9);
  border: 2px solid rgba(144, 189, 72, 1);
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease, opacity 0.15s ease;
  mix-blend-mode: screen;
  display: none;
  box-shadow: 0 0 20px rgba(144, 189, 72, 0.8), 0 0 40px rgba(144, 189, 72, 0.4);
}

body.custom-cursor-active .cursor {
  display: block;
}

.cursor.hover {
  transform: scale(1.8);
  background: rgba(144, 189, 72, 0.3);
  border-color: rgba(144, 189, 72, 1);
  box-shadow: 0 0 20px rgba(144, 189, 72, 0.8);
}

.cursor.click {
  transform: scale(0.7);
  background: rgba(144, 189, 72, 1);
}

.cursor-trail {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(144, 189, 72, 0.5);
  border: 1px solid rgba(144, 189, 72, 0.8);
  pointer-events: none;
  z-index: 99998;
  display: none;
  box-shadow: 0 0 10px rgba(144, 189, 72, 0.6);
}

body.custom-cursor-active .cursor-trail {
  display: block;
}

.magic-particle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(144, 189, 72, 1);
  pointer-events: none;
  z-index: 99997;
  animation: particleFloat 2s ease-out forwards;
  display: block;
  box-shadow: 0 0 8px rgba(144, 189, 72, 0.8);
}

@keyframes particleFloat {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--random-x), var(--random-y)) scale(0);
  }
}

.glow-trail {
  position: fixed;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(144, 189, 72, 0.8);
  box-shadow: 0 0 15px rgba(144, 189, 72, 1), 0 0 30px rgba(144, 189, 72, 0.6);
  pointer-events: none;
  z-index: 99996;
  animation: glowFade 1s ease-out forwards;
  display: block;
}

@keyframes glowFade {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

a, button, .nav-link, .btn-primary, .btn-secondary, 
.service-card, .project-card, .skill-item, .play-btn {
  /* cursor will be controlled by body class */
}

/* ===== ENHANCED SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-left: 1px solid rgba(144, 189, 72, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(144, 189, 72, 0.6), rgba(219, 111, 129, 0.8));
  border-radius: 6px;
  border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(144, 189, 72, 0.8), rgba(8, 51, 53, 1));
  box-shadow: 0 0 10px rgba(144, 189, 72, 0.5);
}

/* ===== ENHANCED HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(144, 189, 72, 0.5), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  animation: fadeInDown 0.8s ease-out;
}

.hero-title {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ENHANCED BUTTONS ===== */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(144, 189, 72, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(144, 189, 72, 0.2);
}

/* ===== ENHANCED SECTIONS ===== */
section {
  position: relative;
  padding: 120px 0;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(144, 189, 72, 0.3), transparent);
}

.section-header {
  margin-bottom: 80px;
}

.section-badge {
  animation: fadeIn 0.6s ease-out;
}

.section-title {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-description {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== ENHANCED SERVICE CARDS ===== */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(144, 189, 72, 0.1), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(144, 189, 72, 0.5), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-10px) rotate(5deg);
  box-shadow: 0 10px 30px rgba(144, 189, 72, 0.4);
}

/* ===== ENHANCED PROJECT CARDS ===== */
.project-card {
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(144, 189, 72, 0.5), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.project-card:hover::before {
  opacity: 1;
}

.project-image video {
  transition: transform 0.6s ease;
}

.project-card:hover .project-image video {
  transform: scale(1.1);
}

.play-btn {
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.2) rotate(90deg);
  box-shadow: 0 0 30px rgba(144, 189, 72, 0.6);
}

/* ===== ENHANCED SKILLS SECTION ===== */
.skill-item {
  position: relative;
  overflow: hidden;
}

.skill-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(144, 189, 72, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.skill-item:hover::before {
  width: 200%;
  height: 200%;
}

.skill-item img {
  transition: all 0.4s ease;
  filter: grayscale(0.5);
}

.skill-item:hover img {
  transform: scale(1.2) rotate(5deg);
  filter: grayscale(0);
}

/* ===== ENHANCED CONTACT SECTION ===== */
.contact {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(144, 189, 72, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(144, 189, 72, 0.3);
}

/* ===== ENHANCED FOOTER ===== */
.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(144, 189, 72, 0.5), transparent);
}

.footer-logo {
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(144, 189, 72, 0.6));
}

.social-links a {
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.social-links a:hover::before {
  width: 100%;
  height: 100%;
}

/* ===== SCROLL TO TOP ENHANCED ===== */
.scroll-top {
  animation: fadeInUp 0.5s ease-out;
}

.scroll-top::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-top:hover::before {
  opacity: 1;
  animation: rotate 2s linear infinite;
}

/* ===== LOADING ANIMATION ===== */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading-shimmer {
  animation: shimmer 2s infinite;
  background: linear-gradient(90deg, transparent, rgba(144, 189, 72, 0.1), transparent);
  background-size: 1000px 100%;
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }
  
  section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 28px;
  }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--secondary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
}

.skip-to-content:focus {
  top: 0;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.hero-visual,
.gradient-orb,
.floating-card {
  will-change: transform;
}

img, video {
  will-change: transform;
}


/* ===== SOCIAL MEDIA ICONS IN FOOTER ===== */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(144, 189, 72, 0.1);
  border: 1px solid rgba(144, 189, 72, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-secondary);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(144, 189, 72, 0.4);
  border-color: var(--secondary);
  color: white;
}

.social-links a:hover::before {
  opacity: 1;
}

.social-links a i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.social-links a:hover i {
  transform: scale(1.2) rotate(5deg);
}


/* ===== IMPRESSIVE PAGE LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
  animation: logoFloat 2s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(144, 189, 72, 0.6));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(144, 189, 72, 0.2);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-text {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), #4CAF50);
  z-index: 99999;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(144, 189, 72, 0.8);
}

/* ===== STATS COUNTER ANIMATION ===== */
.stat-item h3 {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 5px;
  font-weight: 700;
}

.stat-item.counting h3 {
  animation: countUp 2s ease-out;
}

@keyframes countUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FLOATING PARTICLES BACKGROUND ===== */
.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(144, 189, 72, 0.3);
  border-radius: 50%;
  animation: floatParticle 20s linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: #0f0f0f;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(144, 189, 72, 0.5), transparent);
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 350px;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(144, 189, 72, 0.2);
  border-radius: 20px;
  padding: 30px;
  scroll-snap-align: start;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(144, 189, 72, 0.5);
  box-shadow: 0 10px 40px rgba(144, 189, 72, 0.2);
}

.testimonial-rating {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 20px;
}

.author-info h5 {
  color: white;
  font-size: 16px;
  margin-bottom: 3px;
}

.author-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* ===== ACHIEVEMENT BADGES ===== */
.achievements {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.achievement-badge {
  background: rgba(144, 189, 72, 0.1);
  border: 2px solid rgba(144, 189, 72, 0.3);
  border-radius: 15px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.achievement-badge:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 10px 30px rgba(144, 189, 72, 0.3);
}

.achievement-icon {
  font-size: 28px;
  color: var(--secondary);
}

.achievement-text h4 {
  color: white;
  font-size: 14px;
  margin-bottom: 3px;
}

.achievement-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

/* ===== TYPING TEXT EFFECT ===== */
.typing-text {
  border-right: 2px solid var(--secondary);
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: var(--secondary); }
}

/* ===== PARALLAX SECTIONS ===== */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
  will-change: transform;
}

/* ===== CALL TO ACTION BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(144, 189, 72, 0.1) 0%, rgba(219, 111, 129, 0.2) 100%);
  border: 2px solid rgba(144, 189, 72, 0.3);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(144, 189, 72, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

.cta-banner h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ===== TECH STACK MARQUEE ===== */
.tech-marquee {
  overflow: hidden;
  padding: 40px 0;
  background: rgba(144, 189, 72, 0.05);
  border-top: 1px solid rgba(144, 189, 72, 0.2);
  border-bottom: 1px solid rgba(144, 189, 72, 0.2);
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 60px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 600;
}

.tech-item i {
  font-size: 32px;
  color: var(--secondary);
}

/* ===== INTERACTIVE HOVER CARDS ===== */
.hover-card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.hover-card:hover {
  transform: rotateY(5deg) rotateX(5deg);
}

.hover-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(144, 189, 72, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}

.hover-card:hover::after {
  opacity: 1;
}

/* ===== NOTIFICATION TOAST ===== */
.toast-notification {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(144, 189, 72, 0.5);
  border-radius: 12px;
  padding: 20px;
  min-width: 300px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 99999;
  transform: translateX(400px);
  transition: transform 0.4s ease;
}

.toast-notification.show {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.toast-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.toast-text h4 {
  color: white;
  font-size: 14px;
  margin-bottom: 3px;
}

.toast-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
  .cta-banner {
    padding: 30px 20px;
  }
  
  .cta-banner h2 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .testimonial-card {
    min-width: 280px;
  }
  
  .achievements {
    flex-direction: column;
  }
}

