/* Global Styles */
:root {
  --primary: #ff00ff; /* Neon Pink */
  --secondary: #00ffff; /* Neon Cyan */
  --accent1: #ffff00; /* Neon Yellow */
  --accent2: #00ff00; /* Neon Green */
  --dark: #121212;
  --light: #f8f8f8;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-header h2 span {
  color: var(--primary);
}

.underline {
  height: 4px;
  width: 80px;
  background: var(--gradient);
  margin: 0 auto;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  color: var(--light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), 0 0 30px rgba(255, 0, 255, 0.5);
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  z-index: -1;
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
}

.btn:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 40px rgba(255, 0, 255, 0.8);
}

.btn-small {
  display: inline-block;
  padding: 8px 15px;
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  color: var(--light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  margin-top: 15px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), 0 0 20px rgba(255, 0, 255, 0.3);
}

.btn-small:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  z-index: -1;
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
}

.btn-small:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-small:hover {
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), 0 0 30px rgba(255, 0, 255, 0.5);
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  opacity: 0.7;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
  opacity: 0.5;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--light);
  letter-spacing: 2px;
  position: relative;
}

.logo a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.logo a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
}

nav ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

nav ul li a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

nav ul li a.active:after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--gradient);
  padding: 8px 20px;
  border-radius: 50px;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--light);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(45deg, var(--dark-blue), var(--purple));
  color: var(--light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.creative-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh; /* Ensure it takes up a good portion of the screen */
  background: rgba(0, 0, 0, 0.3); /* Semi-transparent dark background */
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5); /* Neon glow effect */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  border: 1px solid rgba(0, 255, 255, 0.3);
  animation: neon-border-pulse 3s infinite alternate;
}

.creative-banner h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 5em; /* Larger font for impact */
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.1;
  text-transform: uppercase;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
  /* Removed text-shadow for better readability as per user request */
}

.creative-banner p {
  font-size: 1.8em;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8); /* Adjusted for exact match with image */
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.creative-banner .btn {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 50px;
  background: linear-gradient(90deg, #800080, #4b0082); /* Darker gradient for 'level down' */
  /* Removed box-shadow as per user request */
  transition: all 0.3s ease;
}

.creative-banner .btn:hover {
  transform: translateY(-5px) scale(1.05);
  /* Removed box-shadow as per user request */
}

@keyframes neon-border-pulse {
  from {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), 0 0 30px rgba(0, 255, 255, 0.3);
  }
  to {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8), 0 0 50px rgba(0, 255, 255, 0.6);
  }
}

@media (max-width: 768px) {
  .creative-banner h1 {
    font-size: 3em;
  }

  .creative-banner p {
    font-size: 1.2em;
  }

  .creative-banner .btn {
    font-size: 1em;
    padding: 15px 30px;
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Glitch Effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--accent1);
  animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: 2px 0 var(--accent2);
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% {
    clip-path: inset(20% 0 80% 0);
  }
  20% {
    clip-path: inset(60% 0 40% 0);
  }
  40% {
    clip-path: inset(40% 0 60% 0);
  }
  60% {
    clip-path: inset(80% 0 20% 0);
  }
  80% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(30% 0 70% 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip-path: inset(30% 0 70% 0);
  }
  20% {
    clip-path: inset(10% 0 90% 0);
  }
  40% {
    clip-path: inset(70% 0 30% 0);
  }
  60% {
    clip-path: inset(20% 0 80% 0);
  }
  80% {
    clip-path: inset(90% 0 10% 0);
  }
  100% {
    clip-path: inset(40% 0 60% 0);
  }
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, var(--dark), #1a1a1a);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.contact-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Main Section */
.contact-main {
  padding: 80px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Contact Form Section */
.contact-form-section {
  background: rgba(30, 30, 30, 0.7);
  border-radius: 15px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
}

.form-header {
  margin-bottom: 40px;
}

.form-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--light);
}

.form-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--light);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--light);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 0, 255, 0.1);
}

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

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox Styles */
.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--gradient);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 12px;
}

/* Submit Button */
.submit-btn {
  background: var(--gradient);
  color: var(--light);
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.submit-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  z-index: -1;
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
}

.submit-btn:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 0, 255, 0.3);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Contact Info Section */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-card {
  background: rgba(30, 30, 30, 0.7);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-info-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
}

.contact-info-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--light);
}

.contact-info-card > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
  color: white;
}

.contact-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--light);
}

.contact-text p {
  font-size: 1rem;
  color: var(--light);
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-text span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Social Connect */
.social-connect h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--light);
}

.social-links {
  display: flex;
  gap: 15px;
}

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

.social-links a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

/* Quick Stats */
.quick-stats {
  background: rgba(30, 30, 30, 0.7);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.quick-stats:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
}

.quick-stats h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 25px;
  color: var(--light);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.stat-number {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* FAQ Section */
.contact-faq {
  padding: 80px 0;
  background: rgba(18, 18, 18, 0.8);
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(30, 30, 30, 0.7);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 0, 255, 0.3);
  transform: translateY(-5px);
}

.faq-question {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--light);
  margin: 0;
}

.faq-question i {
  font-size: 1rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 25px 25px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--light);
}

.about-text p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.about-image {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.3;
  z-index: 1;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.stat .number {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 5px;
}

.stat .label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Services Section */
.services {
  padding: 120px 0;
  background-color: rgba(18, 18, 18, 0.8);
  position: relative;
}

.services:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://via.placeholder.com/1920x1080") center / cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-box {
  background-color: rgba(30, 30, 30, 0.7);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-box:hover:before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.service-box:hover .service-icon {
  transform: scale(1.2);
  color: var(--secondary);
}

.service-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.service-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary);
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.service-link:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--secondary);
}

.service-link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Services Page Specific Styles */
.services-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--dark);
  padding-top: 100px;
}

.services-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
}

.services-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--light);
}

.services-page {
  padding: 80px 0;
  position: relative;
}

.services-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.service-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary);
  font-style: italic;
}

.services-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)),
    url("https://via.placeholder.com/1920x1080") center / cover no-repeat;
  position: relative;
}

.services-cta h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--light);
}

.services-cta p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
footer {
  background-color: #0a0a0a;
  padding: 80px 0 20px;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-logo {
  flex: 1;
  min-width: 300px;
  margin-bottom: 30px;
}

.footer-logo a {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--light);
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  min-width: 200px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--light);
  position: relative;
  display: inline-block;
}

.footer-column h4:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-info li i {
  margin-right: 10px;
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background-color: rgba(18, 18, 18, 0.8);
  position: relative;
}

.testimonials:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://via.placeholder.com/1920x1080") center / cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-slide {
  background-color: rgba(30, 30, 30, 0.7);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: none;
}

.testimonial-content {
  margin-bottom: 30px;
  position: relative;
}

.testimonial-content:before {
  content: "\201C";
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
  top: -40px;
  left: 0;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  border: 3px solid var(--primary);
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.author-title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.prev-btn,
.next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
  background: var(--gradient);
}

/* Contact Section */
.contact {
  padding: 120px 0;
  position: relative;
}

.contact-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-details .contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 15px;
  margin-top: 5px;
}

.contact-details .contact-item div {
  flex: 1;
}

.contact-details .contact-item h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-details .contact-item p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form {
  flex: 1;
  background-color: rgba(30, 30, 30, 0.7);
  border-radius: 10px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--light);
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(255, 255, 255, 0.1);
}

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

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient);
  color: var(--light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

/* Thank You Message Styles */
.thank-you-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.thank-you-content {
  background: linear-gradient(135deg, #4b0082, #800080);
  color: #fff;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInScale 0.5s ease-out;
}

.thank-you-content h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.thank-you-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.thank-you-content .close-thank-you {
  background: linear-gradient(45deg, #00ffff, #00aaff);
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.thank-you-content .close-thank-you:hover {
  background: linear-gradient(45deg, #00aaff, #00ffff);
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.8);
  transform: translateY(-2px);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .contact-grid {
    gap: 60px;
  }

  .contact-hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-hero h1 {
    font-size: 3rem;
  }

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .about-content,
  .contact-content {
    flex-direction: column;
  }

  .about-image {
    margin-top: 40px;
  }

  .services-hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  header .container {
    padding: 0 20px;
  }

  nav ul {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  nav ul.active {
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .contact-hero {
    padding: 100px 0 60px;
    min-height: 50vh;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

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

  .contact-form-section {
    padding: 30px;
  }

  .form-header h2 {
    font-size: 2rem;
  }

  .contact-info-card {
    padding: 30px;
  }

  .quick-stats {
    padding: 25px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
  }

  .contact-item {
    padding: 15px;
    gap: 15px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-icon i {
    font-size: 1rem;
  }
}

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

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

  .contact-form-section {
    padding: 20px;
  }

  .form-header h2 {
    font-size: 1.8rem;
  }

  .contact-info-card {
    padding: 20px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-item {
    margin: 0 10px;
  }
}

/* Animation Classes */
.animate {
  animation: fadeInUp 1s ease forwards;
}

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

.visible {
  animation: fadeInUp 0.8s ease forwards;
}

/* Loaded Animation */
body.loaded .hero-content {
  animation: fadeInUp 1s ease forwards;
}

body.loaded .shape {
  animation-play-state: running;
}
