:root {
  --primary: #FF4D4D;
  --secondary: #FFB74D;
  --accent: #4D79FF;
  --dark: #1A1A2E;
  --light: #F8F4FF;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

/* Glow effect */
.glow {
  text-shadow: 0 0 10px rgba(255,77,77,0.5);
}

/* Header with gradient */
header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 30px rgba(0,0,0,0.2);
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav .logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.85em;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(to right, white, #FFEEEE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav li {
  margin-left: 30px;
  position: relative;
}

.nav a {
  color: white;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.nav a:hover {
  color: var(--light);
  transform: translateY(-3px);
}

.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -5px;
  left: 0;
  background: white;
  transition: width 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* Hero with parallax effect */
.hero {
  background: url('./images/heroImage.png') no-repeat center center / cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  margin-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,77,77,0.3), rgba(77,121,255,0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5em;
  margin: 0;
  line-height: 1.1;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.5em;
  margin: 20px 0 40px;
  font-weight: 400;
}

.btn {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  font-size: 1.1em;
  border-radius: 50px;
  transition: all 0.4s;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(255,77,77,0.4);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255,77,77,0.6);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* About section with floating images */
#about {
  padding: 120px 0;
  position: relative;
  background: url('https://images.pexels.com/photos/1457842/pexels-photo-1457842.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') no-repeat center center / cover;
  background-attachment: fixed;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26,26,46,0.9);
}

.about-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  color: white;
}

.about-images {
  flex: 1;
  position: relative;
  height: 600px;
}

.about-img-main {
  position: absolute;
  width: 70%;
  height: 70%;
  top: 0;
  left: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: rotate(-5deg);
  transition: all 0.5s;
}

.about-img-main:hover {
  transform: rotate(0deg) scale(1.05);
}

.about-img-secondary {
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: 0;
  right: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: rotate(5deg);
  transition: all 0.5s;
}

.about-img-secondary:hover {
  transform: rotate(0deg) scale(1.05);
}

.about-img-main img, 
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  flex: 1;
  padding-left: 80px;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 5px;
}

.about-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.about-feature {
  flex: 1 1 200px;
  margin: 10px;
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}

.about-feature:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-feature i {
  font-size: 2em;
  color: var(--secondary);
  margin-bottom: 15px;
}

.about-feature h3 {
  margin: 0 0 10px;
  font-size: 1.3em;
}

/* Services with card hover effects */
#services {
  padding: 120px 0;
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5em;
  margin: 0;
  /* color: var(--dark); */
  color: #EEEEFF;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 5px;
}

.section-header p {
  font-size: 1.2em;
  color: #666;
  max-width: 700px;
  margin: 20px auto 0;
}

.service-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-item {
  flex: 1 1 300px;
  max-width: 350px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.service-item:hover {
  transform: translateY(-20px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

.service-item:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
  position: relative;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2em;
  position: absolute;
  top: -40px;
  right: 30px;
  box-shadow: 0 10px 30px rgba(77,121,255,0.4);
}

.service-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8em;
  margin: 10px 0 15px;
  color: var(--dark);
}

.service-item p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
}

.service-more {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9em;
  transition: all 0.3s;
  text-decoration: none;
}

.service-more:hover {
  color: var(--accent);
  transform: translateX(5px);
}

/* Gallery section */
#gallery {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark), #2A2A4A);
  color: white;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.5s;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  transform: translateY(100%);
  transition: all 0.5s;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h3 {
  margin: 0 0 10px;
}

/* Stats with animated counters */
#stats {
  padding: 120px 0;
  /* background: url('https://images.pexels.com/photos/258154/pexels-photo-258154.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') no-repeat center center / cover; */
  background-attachment: fixed;
  position: relative;
  color: white;
  text-align: center;
}

#stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,77,77,0.8), rgba(77,121,255,0.8));
}

.stats-container {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-top: 80px;
}

.stat-item {
  padding: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.5s;
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.2);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.stat-item i {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--secondary);
}

.stat-item .counter {
  font-family: 'Montserrat', sans-serif;
  font-size: 4em;
  font-weight: 900;
  margin: 0;
  background: linear-gradient(to right, white, #EEEEFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item p {
  font-size: 1.2em;
  margin: 10px 0 0;
  font-weight: 600;
}

/* Testimonials */
#testimonials {
  padding: 120px 0;
  background: var(--light);
}

.testimonials-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 30px;
  padding: 30px 0;
  -webkit-overflow-scrolling: touch;
}

.testimonial {
  min-width: 350px;
  scroll-snap-align: start;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 6em;
  color: rgba(255,77,77,0.1);
  line-height: 1;
}

.testimonial-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
  border: 3px solid var(--primary);
}

.author-info h4 {
  margin: 0;
  font-size: 1.2em;
}

.author-info p {
  margin: 5px 0 0;
  color: #666;
  font-size: 0.9em;
}

/* Contact with floating form */
#contact {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark), #2A2A4A);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
  margin-bottom: 30px;
  position: relative;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 5px;
}

.contact-info p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 500px;
}

.contact-details {
  margin-top: 40px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-detail i {
  font-size: 1.5em;
  color: var(--secondary);
  margin-right: 20px;
  margin-top: 5px;
}

.contact-detail h3 {
  margin: 0 0 5px;
  font-size: 1.3em;
}

.contact-detail p, 
.contact-detail a {
  margin: 0;
  color: #ccc;
  transition: color 0.3s;
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--secondary);
}

.contact-social {
  display: flex;
  margin-top: 40px;
  gap: 15px;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.3em;
  transition: all 0.3s;
  text-decoration: none;
}

.contact-social a:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transform: translateY(-30px);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  color: var(--dark);
  margin: 0 0 30px;
  position: relative;
}

.contact-form h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 5px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #666;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 1em;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}

.form-control:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(77,121,255,0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.1em;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(255,77,77,0.4);
  font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255,77,77,0.6);
}

/* Floating decorations */
.floating {
  position: absolute;
  animation: floating 6s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,77,77,0.2);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  border-radius: 30px;
  background: rgba(77,121,255,0.2);
  bottom: 10%;
  right: 5%;
  animation-delay: 1s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,183,77,0.2);
  top: 60%;
  left: 10%;
  animation-delay: 2s;
}

/* Footer with wave */
footer {
  background: var(--dark);
  color: white;
  padding: 0 0 50px;
  position: relative;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23F8F4FF" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23F8F4FF" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23F8F4FF"/></svg>');
  background-size: cover;
}

.footer-content {
  padding-top: 100px;
  text-align: center;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5em;
  font-weight: 900;
  margin-bottom: 30px;
  background: linear-gradient(to right, white, #FFEEEE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-links a {
  color: #ccc;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9em;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.3em;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.copyright {
  color: #777;
  font-size: 0.9em;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive styles */
@media(max-width: 1200px) {
  .hero h1 {
    font-size: 4em;
  }
  
  .about-container {
    flex-direction: column;
  }
  
  .about-content {
    padding-left: 0;
    margin-top: 50px;
  }
  
  .about-images {
    height: 500px;
    width: 100%;
  }
}

@media(max-width: 768px) {
  .nav ul {
    display: none;
  }
  
  .hero h1 {
    font-size: 3em;
  }
  
  .hero p {
    font-size: 1.2em;
  }
  
  .btn {
    padding: 15px 30px;
  }
  
  .section-header h2 {
    font-size: 2.5em;
  }
  
  .contact-form {
    transform: translateY(0);
  }
  
  .testimonial {
    min-width: 280px;
  }
}

@media(max-width: 480px) {
  .hero h1 {
    font-size: 2.5em;
  }
  
  .hero p {
    font-size: 1em;
  }
  
  .section-header h2 {
    font-size: 2em;
  }
  
  .stat-item .counter {
    font-size: 3em;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}