/* Root Variables */
:root {
  --primary-color: #00d9ff;
  --secondary-color: #0047ab;
  --dark-bg: #0f172a;
  --card-bg: rgba(15, 23, 42, 0.8);
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --accent-pink: #ff006e;
  --accent-purple: #8338ec;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Navbar Styling */
#navbar {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(0, 71, 171, 0.1) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.05);
}

#navbar.scrolled {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(0, 71, 171, 0.15) 100%);
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.1);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

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

.brand-letter {
  font-size: 1.4rem;
  margin-right: 0.3rem;
}

.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  margin: 0 0.5rem;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-pink));
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1a1a3e 50%, #0f172a 100%);
}

.hero-section .stars {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

.hero-section .stars::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  top: 20%;
  left: 10%;
  box-shadow:
    100px 50px 0 white, 200px 80px 0 white, 300px 30px 0 white, 400px 100px 0 white,
    500px 60px 0 white, 600px 20px 0 white, 700px 90px 0 white, 800px 50px 0 white,
    900px 70px 0 white, 1000px 40px 0 white, 150px 150px 0 white, 350px 200px 0 white,
    550px 150px 0 white, 750px 200px 0 white, 950px 150px 0 white;
  animation: twinkle 3s infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: slideInLeft 0.8s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-pink) 50%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  background-size: 200% 200%;
}

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

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
  border: none;
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.hero-buttons .btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.hero-buttons .btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 217, 255, 0.1);
  color: var(--primary-color);
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  font-size: 1.2rem;
}

.social-icon:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-5px);
}

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

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  animation: slideInRight 0.8s ease-out;
}

.floating-card {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 110, 0.1));
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 50px rgba(0, 217, 255, 0.3), inset 0 0 50px rgba(0, 217, 255, 0.1);
  animation: float 3s ease-in-out infinite;
}

.floating-card img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-pink));
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(131, 56, 236, 0.05));
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 110, 0.1));
  border-radius: 15px;
  z-index: 1;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-stat {
  background: rgba(0, 217, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  text-align: center;
}

.about-stat:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateX(10px);
}

.stat-number {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.05), rgba(131, 56, 236, 0.05));
}

.service-card {
  background: rgba(0, 217, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 217, 255, 0.1);
  height: 100%;
}

.service-card:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
  border-radius: 50%;
  font-size: 2rem;
  color: var(--dark-bg);
  animation: bounce 2s infinite;
}

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

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Skills Section */
.skills-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(0, 71, 171, 0.05));
}

.skill-category {
  background: rgba(0, 217, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 217, 255, 0.1);
  transition: all 0.3s ease;
}

.skill-category:hover {
  border-color: var(--primary-color);
  background: rgba(0, 217, 255, 0.1);
}

.skill-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.skill-item {
  margin-bottom: 1.5rem;
}

.skill-item span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
}

.skill-bar {
  background: rgba(0, 217, 255, 0.1);
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-pink));
  border-radius: 10px;
  animation: fillBar 1.5s ease-out forwards;
}

@keyframes fillBar {
  from {
    width: 0;
  }
}

/* Portfolio Section */
.portfolio-section {
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.05), rgba(131, 56, 236, 0.05));
}

.project-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 217, 255, 0.1);
}

.project-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 217, 255, 0.2);
}

.project-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 217, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.overlay-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
  color: var(--dark-bg);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.overlay-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.project-content {
  padding: 1.5rem;
}

.project-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.project-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(0, 217, 255, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

/* Timeline Section */
.timeline-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(0, 71, 171, 0.05));
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-color), var(--accent-pink));
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: auto;
  width: calc(50% - 40px);
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
  width: calc(50% - 40px);
  text-align: left;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border: 4px solid var(--dark-bg);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(0, 217, 255, 0);
  }
}

.timeline-content {
  background: rgba(0, 217, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateY(-5px);
}

.timeline-content h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.timeline-date {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 0;
  }

  .timeline-marker {
    left: 0;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: calc(100% - 40px);
    margin-left: 40px;
    margin-right: 0;
    text-align: left;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.05), rgba(131, 56, 236, 0.05));
}

.testimonial-card {
  background: rgba(0, 217, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 217, 255, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
}

.stars {
  color: #ffc107;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.stars i {
  margin-right: 0.3rem;
}

.testimonial-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  padding-top: 1rem;
}

.author-name {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Awards Section */
.awards-section {
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.08), rgba(131, 56, 236, 0.08));
}

.award-card {
  background: rgba(0, 217, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 217, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.award-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.award-card:hover::before {
  left: 100%;
}

.award-card:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateY(-15px);
  box-shadow: 0 30px 50px rgba(0, 217, 255, 0.25);
  border-color: var(--primary-color);
}

.award-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
  border-radius: 50%;
  font-size: 2rem;
  color: var(--dark-bg);
  animation: rotateIcon 3s infinite;
}

@keyframes rotateIcon {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(10deg) scale(1.05);
  }
}

.award-card h4 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.award-year {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.award-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.05), rgba(131, 56, 236, 0.05));
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  animation: moveGradient 20s ease infinite;
}

@keyframes moveGradient {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, 50px);
  }
}

.stat-box {
  background: rgba(0, 217, 255, 0.05);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 217, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-box:hover::after {
  opacity: 1;
}

.stat-box:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateY(-20px);
  box-shadow: 0 35px 60px rgba(0, 217, 255, 0.3);
  border-color: var(--primary-color);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--dark-bg);
  animation: bounceIcon 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

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

.stat-counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.stat-box p {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

/* Blog Section */
.blog-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(0, 71, 171, 0.05));
}

.blog-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 217, 255, 0.1);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
}

.blog-image {
  overflow: hidden;
  height: 200px;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-card h4 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: var(--text-primary);
}

.blog-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-link:hover {
  color: var(--accent-pink);
  gap: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.1), rgba(131, 56, 236, 0.1));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-pink), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: slideUp 0.8s ease-out;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  animation: slideUp 0.8s ease-out 0.2s backwards;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.4s backwards;
}

.cta-buttons .btn {
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

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

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.05), rgba(131, 56, 236, 0.05));
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.contact-item {
  background: rgba(0, 217, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 217, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.contact-item:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateY(-5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-pink));
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--dark-bg);
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent-pink);
}

.contact-form {
  background: rgba(0, 217, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 217, 255, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
  outline: none;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(0, 71, 171, 0.05) 100%);
  border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.footer-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 217, 255, 0.1);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 217, 255, 0.3);
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.footer-social a:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-8px) rotate(360deg);
}

.footer-divider {
  border-color: rgba(0, 217, 255, 0.1);
  margin: 2rem 0;
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

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

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .floating-card {
    width: 250px;
    height: 250px;
  }

  .floating-card img {
    width: 230px;
    height: 230px;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
