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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

/* Color Variables */
:root {
  --primary-purple: #6a0dad;
  --secondary-purple: #9b59b6;
  --white: #fff;
  --dark-gray: #333;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-purple);
  padding: 15px 30px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--white);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary-purple);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background: var(--white);
  color: var(--primary-purple);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn i {
  margin-right: 8px;
}

.btn:hover {
  background: var(--secondary-purple);
  color: var(--white);
  transform: translateY(-3px);
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}

/* Section Headings */
section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-purple);
}

/* About Section */
.about p {
  max-width: 800px;
  margin: 20px auto;
  font-size: 1.1rem;
  text-align: center;
}

/* Services Section */
.services .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.services .card {
  background: var(--white);
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  width: calc(33.33% - 20px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.services .card i {
  font-size: 3rem;
  color: var(--primary-purple);
  margin-bottom: 15px;
}

.services .card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.services .card p {
  font-size: 1rem;
  color: #666;
}

/* Contact Section */
.contact .contact-info {
  text-align: center;
  font-size: 1.2rem;
  color: var(--dark-gray);
}

.contact .contact-info p {
  margin: 10px 0;
}

.contact .contact-info a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: bold;
}

.contact .contact-info a:hover {
  color: var(--secondary-purple);
}

/* Footer */
footer {
  background: var(--primary-purple);
  color: var(--white);
  text-align: center;
  padding: 20px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: var(--primary-purple);
    transition: left 0.3s ease;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links.nav-active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .services .card {
    width: 100%;
  }
}

/* Animations */

/* Fade In Down */
.animate__fadeInDown {
  animation: fadeInDown 1s ease both;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In Up */
.animate__fadeInUp {
  animation: fadeInUp 1s ease both;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Zoom In */
.animate__zoomIn {
  animation: zoomIn 0.8s ease both;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
