/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #fafafa;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation */
nav {
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d2d2d;
  text-decoration: none;
  background: linear-gradient(45deg, #6C63FF, #FF6B6B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  float: right;
}

.nav-links a {
  margin-left: 2rem;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #6C63FF;
}

/* Hero Section */
.hero {
  padding: 12rem 0 6rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #6C63FF, #FF6B6B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Services Section */
.services {
  padding: 8rem 0;
  background: linear-gradient(135deg, #6C63FF, #FF6B6B);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  animation: fadeInDown 1s ease-in-out;
}

.section-subtitle {
  font-size: 1.3rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-in-out;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.service-card {
  padding: 2rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card i {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

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

.service-card p {
  color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Portfolio Section */
.portfolio {
  padding: 5rem 0;
  background: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.portfolio-item {
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
  text-align: center;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

.portfolio-item .overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.portfolio-item .overlay p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 80%;
}
/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: #f8f9fa;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-card p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  font-size: 1rem;
  color: #6C63FF;
  font-weight: 600;
}

.testimonial-card em {
  font-style: normal;
  color: #333;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

input, textarea {
  padding: 2rem;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
}

/* Footer */
footer {
  padding: 3rem 0;
  background: #2d2d2d;
  color: #fff;
  text-align: center;
}

.social-links a {
  color: #fff;
  margin: 0 1rem;
  font-size: 1.5rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #6C63FF, #FF6B6B);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
}

/* Add this to your existing CSS */

/* Offers Section */
.offers {
  padding: 8rem 0 5rem;
  background: #f8f9fa;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.offer-card {
  padding: 2rem;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

.offer-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: #6C63FF;
  margin: 1.5rem 0;
}

.offer-card ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.offer-card ul li {
  margin: 0.5rem 0;
}

/* FAQ Section */
.faq {
  padding: 8rem 0 5rem; /* Added more top padding (8rem) to push the title lower */
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  padding: 2rem;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #666;
}

/* Form Message */
.form-message {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}