/* ============================================
   PREMIUM PORTFOLIO STYLES
   Modern, High-End Design System
   ============================================ */

/* CRITICAL: Force all content to be visible */
.ftco-animate {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ---------- CSS Variables (Design Tokens) ---------- */
:root {
  /* Premium Color Palette - Vibrant */
  --primary: #8b5cf6;
  --primary-light: #a78bfa;
  --primary-dark: #7c3aed;
  --accent: #06b6d4;
  --accent-light: #22d3ee;
  --accent-glow: rgba(6, 182, 212, 0.5);
  --pink: #ec4899;
  --orange: #f97316;
  
  /* Neutral Colors */
  --bg-dark: #030014;
  --bg-card: rgba(139, 92, 246, 0.08);
  --bg-card-hover: rgba(139, 92, 246, 0.15);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --border-subtle: rgba(139, 92, 246, 0.2);
  --border-hover: rgba(139, 92, 246, 0.5);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.6);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --gradient-vibrant: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f97316 100%);
  --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
  --gradient-text: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
  --gradient-card: linear-gradient(145deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.4);
  --shadow-accent: 0 10px 40px rgba(6, 182, 212, 0.3);
  --shadow-pink: 0 0 60px rgba(236, 72, 153, 0.3);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ---------- Base & Typography ---------- */
html {
  scroll-behavior: smooth;
}

body {
  background: #030014 !important;
  background-image: 
    radial-gradient(ellipse at 20% 0%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 40% 100%, rgba(6, 182, 212, 0.15) 0%, transparent 50%) !important;
  min-height: 100vh;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff !important;
  overflow-x: hidden;
}

/* Force text visibility */
h1, h2, h3, h4, h5, h6, p, span, a, li, div {
  color: inherit;
}

/* Smooth scroll offset for fixed navbar */
section[id] {
  scroll-margin-top: 80px;
}

/* ---------- Premium Navbar ---------- */
.ftco_navbar {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent !important;
  transition: var(--transition-base);
  backdrop-filter: blur(0);
}

.ftco_navbar.scrolled {
  background: rgba(10, 10, 15, 0.85) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border-subtle), var(--shadow-md);
  padding: 0.7rem 0;
}

.ftco_navbar .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  transition: var(--transition-base);
}

.ftco_navbar .navbar-brand:hover {
  transform: scale(1.02);
}

.ftco_navbar .nav-link {
  position: relative;
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  overflow: hidden;
}

.ftco_navbar .nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  z-index: -1;
}

.ftco_navbar .nav-link:hover,
.ftco_navbar .nav-link.active {
  color: var(--text-primary) !important;
}

.ftco_navbar .nav-link:hover::before {
  opacity: 0.15;
}

.ftco_navbar .nav-link.active::before {
  opacity: 1;
}

.ftco_navbar .nav-link.active {
  color: #fff !important;
}

/* Mobile menu button */
.navbar-toggler {
  border: 1px solid var(--border-subtle) !important;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text-primary) !important;
  transition: var(--transition-base);
}

.navbar-toggler:hover {
  background: var(--bg-glass);
  border-color: var(--border-hover) !important;
}

/* Mobile Menu Fixes */
@media (max-width: 991px) {
  .ftco_navbar .navbar-collapse {
    background: rgba(10, 10, 20, 0.98) !important;
    padding: 1.5rem;
    border-radius: 16px;
    margin: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
  }
  
  
  .ftco_navbar .nav-link {
    padding: 1rem 1.5rem !important;
    margin: 0.3rem 0;
    border-radius: 12px;
  }
  
  .ftco_navbar .nav-link::before {
    display: none !important;
  }
  
  .ftco_navbar .nav-link.active {
    background: rgba(139, 92, 246, 0.2) !important;
    color: #a78bfa !important;
    border-left: 3px solid #8b5cf6;
  }
  
  .ftco_navbar .nav-link:hover {
    background: rgba(139, 92, 246, 0.1) !important;
  }
}

/* Hamburger to X toggle animation */
.navbar-toggler {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler-icon {
  position: relative;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

/* Active state - X icon */
.navbar-toggler.active .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
  background: #a78bfa;
}

.navbar-toggler.active .navbar-toggler-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
  background: #a78bfa;
}

/* ---------- Premium Hero Section ---------- */
.hero-wrap {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}

.hero-wrap .container {
  position: relative;
  z-index: 10;
}

.hero-wrap .text {
  position: relative;
  z-index: 10;
}

.hero-wrap .subheading {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #a78bfa !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: 0.6rem 1.8rem;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.hero-wrap h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  margin-bottom: 1rem !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-wrap h2 {
  font-size: clamp(1.3rem, 3vw, 2rem) !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 1.5rem !important;
}

.hero-wrap .txt-rotate > .wrap {
  border-right: 3px solid #06b6d4 !important;
  color: #22d3ee !important;
  font-weight: 600;
}

/* Hero Tagline */
.hero-tagline {
  font-size: 1.15rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  max-width: 650px;
  margin: 0 auto 2.5rem !important;
  line-height: 1.9;
}

/* Hero CTA Buttons */
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
  text-decoration: none !important;
}

.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.6);
  color: #ffffff !important;
  text-decoration: none !important;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid rgba(139, 92, 246, 0.5);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.btn-hero-secondary:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: #8b5cf6;
  transform: translateY(-4px);
  color: #ffffff !important;
  text-decoration: none !important;
}

/* Scroll indicator - positioned at bottom */
.scrollDown {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@media (max-width: 767px) {
  .scrollDown {
    display: none !important;
  }
  .contact-buttons-hide{
    display: none !important;
  }

  .resume-wrap{
    display: flex;
    flex-direction: column !important;
  }

  .resume-wrap .icon {
    width: 60px;
    height: 60px;
    background: #FFAC00;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

#page-3 .col {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem 0 !important;
}

}

.scrollDown span {
  border-color: var(--primary-light) !important;
}

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

.ftco-no-pb {
  padding-bottom: 2rem !important;
}

.ftco-no-pt {
  padding-top: 2rem !important;
}

.heading-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.heading-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

/* ---------- About Section - Premium Redesign ---------- */
#about-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

#about-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

#about-section .img-about {
  position: relative;
}

#about-section .img-about::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  z-index: -1;
}

#about-section .img-about .img {
  border-radius: 50%;
  box-shadow: 
    0 0 0 8px rgba(139, 92, 246, 0.1),
    0 0 0 16px rgba(139, 92, 246, 0.05),
    0 25px 60px rgba(139, 92, 246, 0.4);
  border: 4px solid rgba(139, 92, 246, 0.5);
  transition: all 0.4s ease;
}

#about-section .img-about .img:hover {
  transform: scale(1.03) rotate(2deg);
  border-color: #8b5cf6;
  box-shadow: 
    0 0 0 8px rgba(139, 92, 246, 0.15),
    0 0 0 16px rgba(139, 92, 246, 0.08),
    0 30px 80px rgba(139, 92, 246, 0.5);
}

.about-me-heading {
  color: transparent !important;
  background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
  font-size: 0.9rem !important;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

#about-section .heading-section h2 {
  color: #ffffff !important;
  font-size: 2.8rem !important;
  font-weight: 800 !important;
  margin-bottom: 1.5rem !important;
}

#about-section p {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.9;
  font-size: 1.05rem;
}

#about-section p strong {
  color: #a78bfa !important;
  font-weight: 600;
}

/* About stats/highlights */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* Desktop highlights - below image */
.desktop-highlights {
  display: grid !important;
  margin-top: 2rem;
  padding: 0 1rem;
}

/* Mobile highlights - hide on desktop */
.mobile-highlights {
  display: none !important;
}

@media (max-width: 767px) {
  .desktop-highlights {
    display: none !important;
  }
  .mobile-highlights {
    display: grid !important;
  }
}

.highlight-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.12) 0%, rgba(236, 72, 153, 0.05) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #ec4899, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.highlight-item:hover {
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.1) 100%);
  border-color: #8b5cf6;
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.35);
}

.highlight-item:hover::before {
  opacity: 1;
}

.highlight-item .number {
  font-size: 3rem !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.highlight-item .label {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

/* ---------- Projects Section ---------- */
#project-section {
  background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 50%, transparent 100%);
  padding: 3rem 0 4rem;
}

#project-section .py-5 {
  padding-top: 1rem !important;
  padding-bottom: 2rem !important;
}

#project-section .heading-section h2 {
  color: #ffffff !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 1rem auto 0;
}

/* Project Cards */
.services-1 {
  position: relative;
  background: rgba(139, 92, 246, 0.08) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.services-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 50%, #f97316 100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.services-1:hover {
  background: rgba(139, 92, 246, 0.15) !important;
  border-color: #8b5cf6 !important;
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

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

.services-1 .icon {
  margin-bottom: 1.5rem;
}

.services-1 .icon i {
  font-size: 3.5rem !important;
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.services-1:hover .icon i {
  transform: scale(1.15);
}

.services-1 .desc h3 {
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin-bottom: 1rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.services-1 .desc h3::after {
  display: none !important;
}

.services-1 .desc p {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.services-1 .desc p strong {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.4rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #22d3ee !important;
}

.services-1:hover .desc h3 {
  color: #ffffff !important;
}

.services-1:hover .desc p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* View More Button */
#viewMoreBtn {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%) !important;
  border: none !important;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
  color: #ffffff !important;
}

#viewMoreBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.5);
}

/* ---------- Resume/Skills Section ---------- */
#resume-section {
  margin: 2rem 0;
  padding: 3rem 0;
}

#resume-section .page .heading {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

#resume-section .page .heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
  border-radius: 50px;
}

/* Resume navigation */
#navi ul {
  padding: 0;
}

#navi li {
  margin-bottom: 0.5rem;
}

#navi li a {
  display: block;
  padding: 0.8rem 1.2rem;
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

#navi li a:hover {
  color: #ffffff !important;
  background: rgba(139, 92, 246, 0.1);
  text-decoration: none;
}

#navi li a.current {
  color: #a78bfa !important;
  background: rgba(139, 92, 246, 0.15);
  border-left-color: #8b5cf6;
  margin-left: 0;
}

#navi li a.current::after {
  display: none;
}

/* Resume wrap cards */
.resume-wrap {
  background: rgba(139, 92, 246, 0.08) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.resume-wrap:hover {
  border-color: rgba(139, 92, 246, 0.4) !important;
  background: rgba(139, 92, 246, 0.12) !important;
}

.resume-wrap .icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%) !important;
  box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.resume-wrap h2 {
  color: #ffffff !important;
  font-size: 1.2rem !important;
}

.resume-wrap .position {
  color: #a78bfa !important;
}

.resume-wrap .date {
  color: #22d3ee !important;
  font-size: 0.9rem;
}

.resume-wrap p {
  color: rgba(255, 255, 255, 0.7) !important;
}

.resume-wrap ul {
  padding-left: 1.2rem;
  margin-top: 1rem;
}

.resume-wrap ul li {
  color: rgba(255, 255, 255, 0.75) !important;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Skills Grid */
#page-3 .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

#page-3 .row {
  gap: 1rem 0;
}

#page-3 .col img {
  padding: 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  max-width: 75px;
}

#page-3 .col img:hover {
  transform: translateY(-8px) scale(1.08);
  border-color: #8b5cf6;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.grow:hover {
  transform: scale(1.1);
}

/* ---------- Hire Me Section - Premium Design ---------- */
.ftco-hireme {
  background: #030014 !important;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.ftco-hireme::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.ftco-hireme .overlay {
  display: none;
}

.ftco-hireme .container {
  position: relative;
  z-index: 2;
}

.ftco-hireme h2 {
  font-size: 3rem !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  margin-bottom: 1.5rem !important;
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ftco-hireme p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.1rem;
}

.ftco-hireme .services-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.ftco-hireme .services-list span {
  padding: 0.5rem 1.2rem;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 50px;
  color: #a78bfa !important;
  font-size: 0.9rem;
  font-weight: 500;
}

#fiverr {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

#fiverr:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.5);
}

/* ---------- Contact Section ---------- */
#contact-section {
  padding: 3rem 0;
}

#contact-section .heading-section h2 {
  color: #ffffff !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
}

/* Contact info boxes */
.contact-section .box {
  background: rgba(139, 92, 246, 0.08) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: none;
}

.contact-section .box:hover {
  border-color: #8b5cf6 !important;
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.contact-section .box .icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%) !important;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.contact-section .box .icon span {
  color: #ffffff !important;
  font-size: 1.8rem;
}

.contact-section .box h3 {
  color: #ffffff !important;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.contact-section .box p,
.contact-section .box a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.contact-section .box a:hover {
  color: #a78bfa !important;
  text-decoration: none;
}

/* Contact Form */
.contact-form {
  background: rgba(139, 92, 246, 0.08) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  border-radius: 20px;
  padding: 2.5rem !important;
}

.contact-form .form-control {
  background: rgba(3, 0, 20, 0.8) !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  border-radius: 10px;
  color: #ffffff !important;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.contact-form .form-control:focus {
  border-color: #8b5cf6 !important;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25) !important;
}

.contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%) !important;
  border: none !important;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  color: #ffffff !important;
}

.contact-form .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

/* Contact image */
#contact-img .img {
  border-radius: 20px;
  border: 3px solid rgba(139, 92, 246, 0.3);
}

/* Contact CTA Box */
.contact-cta-box {
  background: rgba(139, 92, 246, 0.08) !important;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  width: 100%;
}

.contact-cta-title {
  color: #ffffff !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.8rem !important;
}

.contact-cta-text {
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 2rem !important;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.contact-btn i {
  font-size: 1.8rem;
  width: 50px;
  text-align: center;
}

.contact-btn span {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

.contact-btn small {
  font-size: 0.85rem;
  opacity: 0.8;
  display: block;
  margin-top: 2px;
}

.contact-btn-email {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #ffffff !important;
}

.contact-btn-email i {
  color: #a78bfa;
}

.contact-btn-email:hover {
  background: rgba(139, 92, 246, 0.25);
  border-color: #8b5cf6;
  transform: translateX(5px);
}

.contact-btn-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #ffffff !important;
}

.contact-btn-whatsapp i {
  color: #25d366;
}

.contact-btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: #25d366;
  transform: translateX(5px);
}

.contact-btn-upwork {
  background: rgba(20, 168, 0, 0.15);
  border: 1px solid rgba(20, 168, 0, 0.3);
  color: #ffffff !important;
}

.contact-btn-upwork i {
  color: #14a800;
}

.contact-btn-upwork:hover {
  background: rgba(20, 168, 0, 0.25);
  border-color: #14a800;
  transform: translateX(5px);
}

.contact-response-time {
  margin-top: 1.5rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.95rem;
}

.contact-response-time i {
  margin-right: 0.5rem;
  color: #a78bfa;
}

.contact-response-time strong {
  color: #22d3ee !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2590d3 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.whatsapp-float i {
  color: #ffffff;
  font-size: 2rem;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
  content: 'Chat with me!';
  position: absolute;
  right: 70px;
  background: #ffffff;
  color: #128c7e;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover::before {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {

  .ftco_navbar {
    padding: 0 20px !important;
  }


  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-float i {
    font-size: 1.8rem;
  }
  
  .whatsapp-float::before {
    display: none;
  }
}

/* ---------- Footer ---------- */
.ftco-footer {
  background: #030014 !important;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  padding: 5rem 0 3rem;
}

.ftco-footer .ftco-heading-2 {
  color: #ffffff !important;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.ftco-footer p {
  color: rgba(255, 255, 255, 0.7) !important;
}

.ftco-footer a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: all 0.3s ease;
}

.ftco-footer a:hover {
  color: #a78bfa !important;
  text-decoration: none;
}

/* Social links */
.ftco-footer-social li a {
  width: 45px;
  height: 45px;
  background: rgba(139, 92, 246, 0.1) !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ftco-footer-social li a:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%) !important;
  border-color: transparent !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.ftco-footer-social li a span {
  font-size: 1.2rem;
  color: #ffffff !important;
  position: static;
  transform: none;
}

/* Footer links */
.ftco-footer .list-unstyled li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
}

.ftco-footer .list-unstyled li a:hover {
  padding-left: 0.5rem;
}

.ftco-footer .list-unstyled li a span {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Footer bottom */
.ftco-footer .icon-heart {
  color: #ec4899 !important;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
  }
}


/* ---------- Responsive Styles ---------- */
@media (max-width: 991px) {
  .ftco_navbar .navbar-collapse {
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    border: 1px solid var(--border-subtle);
  }
  
  .ftco_navbar .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-wrap h1 {
    font-size: 2.5rem;
  }
  
  .heading-section h2 {
    font-size: 2rem;
  }
  
  .ftco-section {
    padding: 4rem 0;
  }
  
  .services-1 {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem !important;
  }
}

/* ---------- Utility Classes ---------- */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.glow {
  box-shadow: var(--shadow-glow);
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

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