/* Base Styles */
:root {
  --primary-color: #8a2be2;
  --primary-dark: #6a1cb7;
  --secondary-color: #ff5e84;
  --dark-bg: #121212;
  --darker-bg: #0a0a0a;
  --card-bg: #1e1e1e;
  --text-color: #f8f9fa;
  --text-muted: #adb5bd;
  --border-color: #2d2d2d;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  --gradient: linear-gradient(135deg, var(--primary-color), #4a00e0);
}

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

.dark-theme {
  --bs-body-bg: var(--dark-bg);
  --bs-body-color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.btn {
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-darker {
  background-color: var(--darker-bg);
}

/* Navbar */
.navbar {
  padding: 1rem 0;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
}

.nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 70%;
}

.dropdown-menu {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

.dropdown-item {
  color: var(--text-color);
}

.dropdown-item:hover {
  background-color: rgba(138, 43, 226, 0.1);
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 700px;
  background-color: var(--darker-bg);
  position: relative;

  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(138, 43, 226, 0.15), transparent 50%);
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-image {
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  width: 480px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

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

/* Section Styles */
section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

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

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

/* Service Cards */
.service-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  background: rgba(138, 43, 226, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
}

/* Process Timeline */
.process-timeline {
  position: relative;
  padding: 2rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.process-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.process-number {
  width: 100px;
  height: 100px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow);
  z-index: 1;
}

.process-content {
  margin-left: 2rem;
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  flex-grow: 1;
}

.process-content h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.process-content p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Project Cards */
.project-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border-color);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

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

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.project-info {
  padding: 1.5rem;
}

.project-info h4 {
  margin-bottom: 0.5rem;
}

.project-info p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.project-tags span {
  background-color: rgba(138, 43, 226, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Testimonials */
.testimonial-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 2.5rem;
  margin: 0 auto;
  max-width: 800px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-color);
  position: relative;
  padding: 0 1.5rem;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
  opacity: 0.3;
}

.testimonial-content p::before {
  top: -20px;
  left: -10px;
}

.testimonial-content p::after {
  bottom: -40px;
  right: -10px;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  border: 3px solid var(--primary-color);
}

.testimonial-author h5 {
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

/* Contact Section */
.contact-info {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.contact-item {
  display: flex;
  margin-bottom: 2rem;
}

.contact-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 1.5rem;
}

.contact-item h5 {
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-item a {
  color: var(--text-muted);
  transition: var(--transition);
}

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

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

.social-link {
  width: 45px;
  height: 45px;
  background-color: rgba(138, 43, 226, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}

.contact-form-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.form-control {
  background-color: var(--dark-bg);
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

.form-control:focus {
  background-color: var(--dark-bg);
  border-color: var(--primary-color);
  color: var(--text-color);
  box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
}

.form-floating label {
  color: var(--text-muted);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--darker-bg);
  border-top: 1px solid var(--border-color);
}

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

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

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

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

hr {
  border-color: var(--border-color);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 600px;
    height: auto;
    padding: 120px 0 80px;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .process-content {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .contact-form-card,
  .contact-info {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .btn-lg {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }
}

/* Make hero image visible on mobile */
@media (max-width: 991.98px) {
  .hero-section .col-lg-6 {
    margin-bottom: 2rem;
  }
  
  .hero-section .col-lg-6.d-none {
    display: block !important;
  }
  
  .hero-image {
    max-width: 80%;
    margin: 0 auto;
  }
}

/* Animation delays for staggered animations */
.animate__animated[data-wow-delay] {
  animation-delay: var(--wow-delay);
}

/* Ensure animations are visible initially */
.animate__animated {
  visibility: visible !important;
}

.media-color{
  color: #f8f9fa !important;
}


.whatsapp-icon {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 60px !important;
  height: 60px !important;
  background-color: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3) !important;
  cursor: pointer !important;
  z-index: 1000 !important;
  transition: transform 0.3s !important;
}

.whatsapp-icon:hover {
  transform: scale(1.1) !important;
}

.whatsapp-icon img {
  width: 35px !important;
  height: 35px !important;
}