/* =======================================================
   Custom CSS for Enhanced Laravel Portfolio
   ======================================================== */

/* Import Google Fonts for better typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables for consistent theming */
:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
  --accent-color: #c71585;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
  --white-color: #ffffff;
  --gradient-primary: linear-gradient(135deg, #c71585 0%, #e84393 100%);
  --gradient-secondary: linear-gradient(135deg, #dda0dd 0%, #c71585 100%);
  --gradient-accent: linear-gradient(135deg, #c71585 0%, #e84393 100%);
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
}

/* Enhanced Hero Section */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

/* Hero Background Effects */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: particleFloat 20s ease-in-out infinite;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(199, 21, 133, 0.8) 0%, 
    rgba(232, 67, 147, 0.8) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Hero Container */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Hero Avatar */
.hero-avatar {
  position: relative;
  margin-bottom: 2rem;
  display: inline-block;
}

.hero-profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white-color);
  box-shadow: var(--shadow-heavy);
  transition: var(--transition);
  animation: avatarFloat 3s ease-in-out infinite;
}

.hero-avatar-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: var(--gradient-accent);
  opacity: 0.3;
  filter: blur(20px);
  animation: glowPulse 2s ease-in-out infinite;
}

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

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

/* Hero Typography */
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: titleSlideIn 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--white-color);
  margin-bottom: 1.5rem;
  opacity: 0.9;
  animation: subtitleSlideIn 1s ease-out 0.3s both;
}

.hero-subtitle .typed {
  color: var(--accent-color);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(199, 21, 133, 0.5);
}

.hero-description {
  margin-bottom: 2.5rem;
  animation: descriptionSlideIn 1s ease-out 0.6s both;
}

.hero-description p {
  font-size: 1.1rem;
  color: var(--white-color);
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.6),
    0 0 10px rgba(199, 21, 133, 0.3),
    0 0 20px rgba(199, 21, 133, 0.2);
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

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

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

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: buttonsSlideIn 1s ease-out 0.9s both;
}

.hero-btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

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

.btn-primary.hero-btn {
  background: var(--gradient-accent);
  color: var(--white-color);
  border-color: transparent;
  box-shadow: var(--shadow-medium);
}

.btn-primary.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
  color: var(--white-color);
}

.btn-outline-primary.hero-btn {
  background: transparent;
  color: var(--white-color);
  border-color: var(--white-color);
}

.btn-outline-primary.hero-btn:hover {
  background: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollIndicator 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid var(--white-color);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  opacity: 0.7;
}

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

/* Enhanced Header */
#header {
  background: rgba(52, 58, 64, 0.95);
  backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

#header .profile {
  padding: 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header .profile img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #c71585;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

#header .profile img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-heavy);
}

#header .profile h1 {
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
}

#header .profile h1 a {
  color: var(--white-color);
  text-decoration: none;
  font-weight: 600;
}

/* Enhanced Navigation */
#navbar .nav-menu {
  padding: 1rem 0;
}

#navbar .nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#navbar .nav-menu li {
  margin-bottom: 0.5rem;
}

#navbar .nav-menu a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

#navbar .nav-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: var(--transition);
  z-index: -1;
}

#navbar .nav-menu a:hover::before,
#navbar .nav-menu a.active::before {
  left: 0;
}

#navbar .nav-menu a:hover,
#navbar .nav-menu a.active {
  color: var(--white-color);
  transform: translateX(5px);
}

#navbar .nav-menu i {
  margin-right: 0.75rem;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Enhanced Social Links */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: var(--transition);
  z-index: -1;
}

.social-links a:hover::before {
  left: 0;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-medium);
  border-color: var(--white-color);
  color: var(--white-color);
}

.social-links a i {
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover i {
  transform: rotate(360deg);
}

/* Social Media Specific Colors */
.social-links .twitter:hover {
  background: #1DA1F2;
}

.social-links .facebook:hover {
  background: #4267B2;
}

.social-links .instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links .google-plus:hover {
  background: #DB4437;
}

.social-links .linkedin:hover {
  background: #0077B5;
}

.social-links .github:hover {
  background: #333;
}

.social-links .youtube:hover {
  background: #FF0000;
}

/* Social Links Animation */
.social-links a {
  animation: socialFadeIn 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.social-links a:nth-child(1) { animation-delay: 0.1s; }
.social-links a:nth-child(2) { animation-delay: 0.2s; }
.social-links a:nth-child(3) { animation-delay: 0.3s; }
.social-links a:nth-child(4) { animation-delay: 0.4s; }
.social-links a:nth-child(5) { animation-delay: 0.5s; }

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

/* Social Links Tooltip */
.social-links a::after {
  content: attr(title);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

.social-links a::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.social-links a:hover::after,
.social-links a:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Enhanced Sections */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  position: relative;
}

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

.section-title p {
  font-size: 1.1rem;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Section Subtitle Styling */
.section-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-subtitle i {
  color: #000000;
  margin-right: 0.5rem;
}

/* Enhanced Cards */
.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.card-header {
  background: var(--gradient-primary);
  color: var(--white-color);
  border: none;
  padding: 1.5rem;
}

/* Enhanced Buttons */
.btn {
  border-radius: var(--border-radius);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

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

/* Enhanced Forms */
.form-control {
  border-radius: var(--border-radius);
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: #c71585;
  box-shadow: 0 0 0 0.2rem rgba(199, 21, 133, 0.25);
}

/* Enhanced About Section */
.about {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdf0f8 0%, #f8e8f5 100%);
}

/* Enhanced Resume Section */
.resume {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdf0f8 0%, #f8e8f5 100%);
}

/* Enhanced Portfolio Section */
.portfolio,
.services {
  padding: 100px 0;
  background: #fafafa;
  position: relative;
}

/* Enhanced Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdf0f8 0%, #f8e8f5 100%);
}

/* Portfolio Items Styling */
.portfolio .icon-box,
.services .icon-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.portfolio .icon-box:hover,
.services .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #c71585;
}

.portfolio .icon-box .icon,
.services .icon-box .icon {
  background: #c71585;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.portfolio .icon-box:hover .icon,
.services .icon-box:hover .icon {
  transform: scale(1.1);
  background: #e84393;
}

.portfolio .icon-box .icon i,
.services .icon-box .icon i {
  font-size: 2rem;
  color: var(--white-color);
}

.portfolio .icon-box .title,
.services .icon-box .title {
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.portfolio .icon-box .title a,
.services .icon-box .title a {
  color: #000000;
  text-decoration: none;
  transition: var(--transition);
}

.portfolio .icon-box .title a:hover,
.services .icon-box .title a:hover {
  color: #333333;
}

.portfolio .icon-box .description,
.services .icon-box .description {
  color: #666;
  line-height: 1.6;
  text-align: center;
  font-size: 0.9rem;
  margin: 0;
}

/* Services Grid Spacing */
.services .row {
  margin: 0 -1rem;
}

.services .row > [class*="col-"] {
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.services .icon-box {
  margin-bottom: 0;
}

/* Portfolio Section Subtitle Styling */
.portfolio .section-subtitle,
.services .section-subtitle {
  color: #000000;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.portfolio .section-subtitle::after,
.services .section-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.portfolio .section-subtitle i,
.services .section-subtitle i {
  color: #000000;
  margin-right: 0.5rem;
}

/* Resume Timeline Styling */
.resume .resume-item {
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
  border-left: 4px solid #c71585;
}

.resume .resume-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-left-color: #e84393;
}

.resume .resume-item h4 {
  color: #000000;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.resume .resume-item h5 {
  color: #000000;
  font-weight: 500;
  margin-bottom: 1rem;
}

.resume .resume-item p {
  color: #000000;
  line-height: 1.6;
}

.resume .resume-item ul {
  color: #000000;
  padding-left: 1.5rem;
}

.resume .resume-item ul li {
  margin-bottom: 0.5rem;
}

/* Resume Section Headers */
.resume .resume-title {
  color: #000000;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.resume .resume-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.about-image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition);
}

.about-image-container:hover {
  transform: translateY(-10px);
}

.about-image {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1rem 1rem;
  color: var(--white-color);
}

.about-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.about-role {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.about-intro {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-info {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.about-info li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.about-info li:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-medium);
}

.about-info i {
  color: #000000;
  margin-right: 1rem;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.about-info strong {
  color: #000000;
  margin-right: 0.5rem;
}

.about-info span {
  color: #000000;
}

.about-description {
  margin-bottom: 2rem;
}

.about-description p {
  color: #000000;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-skills h4 {
  color: #000000;
  margin-bottom: 1rem;
  font-weight: 600;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.skill-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border-left: 4px solid #c71585;
}

.skill-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-left-color: #e84393;
}

.skill-item i {
  color: #000000;
  font-size: 1.5rem;
  margin-right: 1rem;
}

.skill-item span {
  color: #000000;
  font-weight: 500;
}

/* Enhanced Facts Section */
.facts {
  padding: 80px 0;
  background: var(--gradient-primary);
  color: var(--white-color);
}

.facts .section-title h2 {
  color: var(--white-color);
}

.facts .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.count-box {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.count-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: var(--transition);
}

.count-box:hover::before {
  left: 100%;
}

.count-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  background: rgba(255, 255, 255, 0.15);
}

.count-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.count-box:hover .count-icon {
  transform: scale(1.1) rotate(5deg);
}

.count-icon i {
  font-size: 2rem;
  color: var(--white-color);
}

.count-box .purecounter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white-color);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.count-box p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 1rem;
}

.count-box p strong {
  color: var(--white-color);
  font-weight: 600;
}

/* Enhanced Footer */
#footer {
  background: var(--dark-color);
  color: var(--white-color);
  padding: 2rem 0;
  text-align: center;
}

#footer .copyright {
  margin-bottom: 1rem;
}

#footer .credits a {
  color: #000000;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 200px;
  }
  
  /* Social Links Responsive */
  .social-links {
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
  }
  
  .social-links a i {
    font-size: 1rem;
  }
  
  #header {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    z-index: 9999;
    transition: var(--transition);
  }
  
  #header.mobile-nav-active {
    left: 0;
  }
  
  .mobile-nav-toggle {
    display: block !important;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background: #c71585;
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .mobile-nav-toggle:hover {
    background: #e84393;
    transform: scale(1.1);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-profile-img {
    width: 120px;
    height: 120px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Back to Top Button Enhancement */
.back-to-top {
  background: var(--gradient-primary);
  color: var(--white-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
}

.back-to-top:hover {
  background: var(--gradient-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
  color: var(--white-color);
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #c71585 0%, #e84393 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #e84393 0%, #dda0dd 100%);
}
