/* ============================================
   MODERN ORANGE THEME - CUSTOM STYLES
   ============================================ */

:root {
  /* Orange Color Palette */
  --primary-dark: #0f0f0f;
  --secondary-dark: #1a1a1a;
  --accent-orange: #ff6b35;
  --accent-orange-light: #ff8c61;
  --accent-orange-dark: #e85d31;
  --accent-gold: #ffa500;
  --accent-coral: #ff7f50;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 107, 53, 0.2);
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
  --gradient-orange-warm: linear-gradient(135deg, #ff8c61 0%, #ff7f50 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  --shadow-orange: 0 10px 40px rgba(255, 107, 53, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--primary-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

/* Animated Background with Orange Glow */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 40% 10%, rgba(255, 127, 80, 0.05) 0%, transparent 50%);
  z-index: -1;
  animation: bgAnimation 20s ease infinite;
}

@keyframes bgAnimation {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Floating Blobs */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  z-index: -1;
  animation: blobFloat 25s ease-in-out infinite;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-orange);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: var(--accent-gold);
  bottom: 20%;
  right: 10%;
  animation-delay: 5s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-coral);
  top: 60%;
  left: 50%;
  animation-delay: 10s;
}

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

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-orange);
}

/* Parallax Sections */
.parallax-section {
  position: relative;
  transform-style: preserve-3d;
}

.parallax-layer {
  transition: transform 0.5s ease-out;
}

/* Navigation Styles */
.ftco_navbar {
  background: rgba(15, 15, 15, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  transition: background 0.3s ease;
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  color: var(--text-primary) !important;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: var(--accent-orange) !important;
}

.nav-link {
  color: var(--text-primary) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-orange) !important;
}

/* Hero Section */
.hero {
  background: transparent !important;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero .overlay {
  background: transparent !important;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero h1 span {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-orange);
  border-radius: 10px;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from { width: 0; }
  to { width: 100%; }
}

.hero h2 {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 1.5rem;
}

.subheading {
  color: var(--accent-orange) !important;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  padding-left: 60px;
}

.subheading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: var(--gradient-orange);
}

/* Buttons */
.btn-primary {
  background: var(--gradient-orange) !important;
  border: none !important;
  padding: 1rem 2.5rem !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-orange);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.5);
}

.btn-white {
  background: transparent !important;
  border: 2px solid var(--accent-orange) !important;
  color: var(--accent-orange) !important;
  padding: 1rem 2.5rem !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-orange);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-white:hover::before {
  left: 0;
}

.btn-white:hover {
  color: white !important;
  border-color: var(--accent-orange) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

/* Section Headings */
.heading-section .big {
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 107, 53, 0.03);
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(255, 107, 53, 0.05);
}

.heading-section h2 {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.heading-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-orange);
  border-radius: 10px;
}

/* About Section */
.ftco-about {
  background: transparent;
  padding: 5rem 0;
}

.img-about .img {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-orange);
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.img-about .img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
  z-index: 1;
}

.about-info li {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.about-info li:hover {
  padding-left: 10px;
  border-bottom-color: var(--accent-orange);
}

.about-info li span:first-child {
  color: var(--accent-orange);
  font-weight: 600;
  margin-right: 1rem;
  min-width: 150px;
  display: inline-block;
}

.counter-wrap .number {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Resume Section */
.resume-wrap {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.resume-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-orange);
}

.resume-wrap:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
  box-shadow: var(--shadow-orange);
  border-color: var(--accent-orange);
}

.resume-wrap .date {
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(255, 107, 53, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
}

.resume-wrap h2 {
  color: var(--text-primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 1rem 0;
}

.company-name-resume {
  color: var(--accent-gold);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.company-name-resume::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-orange);
  transition: width 0.3s ease;
}

.company-name-resume:hover::after {
  width: 100%;
}

.company-name-resume:hover {
  color: var(--accent-orange);
}

/* Services Section */
#services-section .row {
  margin-left: -15px;
  margin-right: -15px;
}

#services-section .col-md-4 {
  padding: 15px;
  margin-bottom: 30px;
}

.services-1 {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  display: block;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.services-1::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.services-1:hover::before {
  opacity: 1;
}

.services-1:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-orange);
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-orange);
}

.services-1 .icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.services-1:hover .icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.services-1 h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 600;
}

/* Skills Section */
.progress-wrap {
  margin-bottom: 2rem;
}

.progress-wrap h3 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.progress {
  height: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: visible;
  position: relative;
}

.progress-bar {
  background: var(--gradient-orange) !important;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
  animation: progressAnimation 1.5s ease-out;
}

@keyframes progressAnimation {
  from { width: 0 !important; }
}

.progress-bar span {
  position: absolute;
  right: 10px;
  top: -35px;
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255, 107, 53, 0.1);
  padding: 3px 10px;
  border-radius: 15px;
}

/* Projects Section */
.project {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  position: relative;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.project .overlay {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.85) 0%, rgba(255, 107, 53, 0.5) 100%);
  opacity: 0.9;
  transition: all 0.4s ease;
}

.project:hover .overlay {
  opacity: 1;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(255, 165, 0, 0.95) 100%);
}

.project:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 60px rgba(255, 107, 53, 0.5);
  border: 2px solid var(--accent-orange);
}

.project .text {
  z-index: 10;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.project:hover .text {
  transform: translateY(0);
  opacity: 1;
}

.project h3 a {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
}

.project span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

/* Client Logos */
.client-container {
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
}

.client-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

.client-track img {
  height: 80px;
  margin: 0 3rem;
  filter: grayscale(100%) brightness(0.5);
  transition: all 0.3s ease;
}

.client-track img:hover {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Counter Section */
#section-counter {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 4rem 0;
  margin: 4rem 0;
}

.block-18 {
  text-align: center;
}

.block-18 .number {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.block-18 span {
  color: var(--text-secondary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Contact Section */
.contact-info .box {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.3s ease;
  padding: 2rem 1.5rem !important;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-info .box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-orange);
}

.contact-info .icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-orange);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.contact-info .box:hover .icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.contact-info .icon span {
  font-size: 2rem;
  color: white;
}

.contact-info h3 {
  color: var(--text-primary);
  font-weight: 600;
  margin: 1.5rem 0 1rem;
}

.contact-info p,
.contact-info a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
  overflow-wrap: break-word;
  font-size: 0.95rem;
}

.contact-info a:hover {
  color: var(--accent-orange);
}

/* Contact Form */
.contact-form {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.form-control {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--text-primary) !important;
  border-radius: 10px !important;
  padding: 1rem !important;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--accent-orange) !important;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3) !important;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Footer */
.ftco-footer {
  background: var(--secondary-dark);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  padding: 4rem 0 2rem;
}

.ftco-heading-2 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.ftco-heading-2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gradient-orange);
}

.ftco-footer p,
.ftco-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.ftco-footer a:hover {
  color: var(--accent-orange);
  padding-left: 5px;
}

.ftco-footer-social li a {
  width: 50px;
  height: 50px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ftco-footer-social li a:hover {
  background: var(--gradient-orange);
  border-color: transparent;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: var(--shadow-orange);
}

/* Hire Me Section */
.ftco-hireme {
  background-attachment: fixed !important;
  background-size: cover !important;
  position: relative;
  padding: 5rem 0;
}

.ftco-hireme::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(255, 165, 0, 0.9) 100%);
}

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

::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-orange);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
}

/* Animated Particles Background */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-orange);
  animation: float 15s infinite;
  opacity: 0.5;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { left: 30%; animation-delay: 1s; animation-duration: 18s; }
.particle:nth-child(4) { left: 40%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(5) { left: 50%; animation-delay: 0s; animation-duration: 16s; }
.particle:nth-child(6) { left: 60%; animation-delay: 3s; animation-duration: 13s; }
.particle:nth-child(7) { left: 70%; animation-delay: 1s; animation-duration: 17s; }
.particle:nth-child(8) { left: 80%; animation-delay: 5s; animation-duration: 15s; }
.particle:nth-child(9) { left: 90%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(10) { left: 15%; animation-delay: 4s; animation-duration: 16s; background: var(--accent-gold); box-shadow: 0 0 10px var(--accent-gold); }
.particle:nth-child(11) { left: 25%; animation-delay: 1s; animation-duration: 13s; background: var(--accent-gold); box-shadow: 0 0 10px var(--accent-gold); }
.particle:nth-child(12) { left: 35%; animation-delay: 3s; animation-duration: 19s; background: var(--accent-gold); box-shadow: 0 0 10px var(--accent-gold); }
.particle:nth-child(13) { left: 45%; animation-delay: 0s; animation-duration: 12s; background: var(--accent-coral); box-shadow: 0 0 10px var(--accent-coral); }
.particle:nth-child(14) { left: 55%; animation-delay: 2s; animation-duration: 17s; background: var(--accent-coral); box-shadow: 0 0 10px var(--accent-coral); }
.particle:nth-child(15) { left: 65%; animation-delay: 4s; animation-duration: 15s; background: var(--accent-coral); box-shadow: 0 0 10px var(--accent-coral); }

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Grid Background Lines */
.grid-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .heading-section .big {
    font-size: 4rem;
  }

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

  .services-1 .icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .btn-primary,
  .btn-white {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.9rem !important;
  }

  .project {
    height: 300px;
  }

  .resume-wrap {
    padding: 1.5rem;
  }

  .contact-info .icon {
    width: 60px;
    height: 60px;
  }

  .navbar-brand {
    font-size: 1.2rem !important;
  }

  .nav-link {
    padding: 0.5rem !important;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .heading-section .big {
    font-size: 3rem;
  }

  .heading-section h2 {
    font-size: 1.5rem;
  }

  .services-1 {
    padding: 2rem 1rem;
  }

  .services-1 .icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .counter-wrap .number {
    font-size: 2.5rem;
  }

  .block-18 .number {
    font-size: 3rem;
  }

  .about-info li span:first-child {
    min-width: 100px;
  }
}

/* Glow Effects */
.glow {
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #00f5ff, 0 0 20px #00f5ff, 0 0 30px #00f5ff;
  }
  to {
    text-shadow: 0 0 20px #bd00ff, 0 0 30px #bd00ff, 0 0 40px #bd00ff;
  }
}

/* Loader */
#ftco-loader {
  background: var(--primary-dark) !important;
}

#ftco-loader .path {
  stroke: var(--accent-orange) !important;
}

/* Parallax Effects */
.parallax-bg {
  transform: translateZ(-1px) scale(1.5);
}

.parallax-text {
  transform: translateZ(0) scale(1);
}

/* Modern Tilt Effects on Cards */
.services-1, .resume-wrap, .project {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

/* Magnetic Button Effect */
.btn-primary, .btn-white {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

/* Smooth Image Reveal */
.img-about .img, .project {
  overflow: hidden;
}

.img-about .img img, .project img {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.img-about .img:hover img, .project:hover img {
  transform: scale(1.1);
}

/* Ripple Effect Container */
.btn-primary, .btn-white {
  position: relative;
  overflow: hidden;
}

/* Text Gradient Animation */
@keyframes gradientText {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.heading-section h2 {
  background-size: 200% auto;
  animation: gradientText 3s ease infinite;
}

/* Floating Animation for Icons */
@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.services-1 .icon, .contact-info .icon {
  animation: iconFloat 3s ease-in-out infinite;
}

.services-1:hover .icon, .contact-info .box:hover .icon {
  animation: none;
}

/* Loading State */
.ftco-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Cursor Trail Effect */
.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--accent-orange);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

/* Shine Effect on Hover */
.glass-card::after, .services-1::after, .resume-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.glass-card:hover::after, .services-1:hover::after, .resume-wrap:hover::after {
  left: 150%;
}

/* Pulse Animation for Active Elements */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
  }
}

/* Skeleton Loading */
@keyframes skeleton {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

/* 3D Card Hover */
.services-1, .project, .resume-wrap {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Gradient Border Animation */
@keyframes borderGradient {
  0%, 100% {
    border-image-source: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 50%, var(--accent-orange) 100%);
  }
  50% {
    border-image-source: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-coral) 50%, var(--accent-gold) 100%);
  }
}

/* Morphing Shapes */
@keyframes morph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

.blob {
  animation: blobFloat 25s ease-in-out infinite, morph 15s ease-in-out infinite;
}
