:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --secondary: #8b5cf6;
  --dark: #111827;
  --dark-gray: #1f2937;
  --gray: #374151;
  --light-gray: #6b7280;
  --light: #f9fafb;
  --gradient: linear-gradient(135deg, #f59e0b, #d97706);
  --gradient-purple: linear-gradient(135deg, #8b5cf6, #a78bfa);
  --gradient-blue: linear-gradient(135deg, #06b6d4, #3b82f6);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background-color: #111827;
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-size: 1.875rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
nav a {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
nav a:hover {
  color: white;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
nav a:hover::after {
  width: 100%;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}
/* Hero Section */
.hero {
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text h1 {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-text h1 span {
  display: block;
}
.hero-text h1 .primary {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text h1 .secondary {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  font-size: 1.25rem;
  color: #9ca3af;
  margin-bottom: 2rem;
  max-width: 90%;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.4);
}
.btn-secondary {
  background: rgba(55, 65, 81, 0.5);
  color: white;
  border: 1px solid rgba(156, 163, 175, 0.3);
}
.btn-secondary:hover {
  background: rgba(75, 85, 99, 0.5);
  border-color: var(--primary);
}
/* New WhatsApp Button Style */
.btn-whatsapp {
  background: #25D366; /* WhatsApp green */
  color: white;
  box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(37, 211, 102, 0.4);
  background: #128C7E; /* Darker WhatsApp green on hover */
}
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 1rem;
  transform: rotate(3deg);
  transition: var(--transition);
}
.hero-image img:hover {
  transform: rotate(0);
}
.hero-image::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 128px;
  height: 128px;
  background: var(--gradient-purple);
  border-radius: 1rem;
  opacity: 0.8;
  z-index: -1;
}
.hero-image::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 96px;
  height: 96px;
  background: var(--gradient-blue);
  border-radius: 0.75rem;
  opacity: 0.8;
  z-index: -1;
}
/* Social Buttons in Hero */
.social-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.social-hero-link {
  width: 40px;
  height: 40px;
  background: rgba(55, 65, 81, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: #d1d5db;
  text-decoration: none;
}
.social-hero-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}
/* Services Section */
.services {
  padding: 8rem 0;
  background: rgba(31, 41, 55, 0.5);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-header h2 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  font-size: 1.25rem;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.service-card {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}
.service-desc {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.service-price {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
}
.service-link {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
}
/* Portfolio Section */
.portfolio {
  padding: 8rem 0;
}
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: capitalize;
}
.filter-btn-all {
  background: var(--gradient);
  color: white;
}
.filter-btn:not(.filter-btn-all) {
  background: rgba(55, 65, 81, 0.5);
  color: #9ca3af;
}
.filter-btn:hover:not(.filter-btn-all) {
  background: rgba(75, 85, 99, 0.5);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.portfolio-item {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  height: 350px;
  transition: var(--transition);
}
.portfolio-item:hover {
  transform: scale(1.02);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 24, 39, 0.9),
    rgba(17, 24, 39, 0.2)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}
.portfolio-desc {
  color: #d1d5db;
  font-size: 0.9rem;
}
/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
  background: rgba(31, 41, 55, 0.5);
}
.testimonial-card {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1.5rem;
  padding: 3rem;
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-quote {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 2rem;
  position: relative;
}
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
/* Updated star color */
.star {
  color: var(--primary); /* Use primary color for filled stars */
  width: 24px;
  height: 24px;
  fill: var(--primary-dark)
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
/* Updated avatar styling */
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 1rem;
  overflow: hidden; /* Ensures the image fits within the circle */
  display: flex; /* Flexbox to center the image */
  align-items: center;
  justify-content: center;
  background: var(--gradient-purple); /* Fallback if image fails */
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the area without distortion */
  display: block; /* Removes potential bottom space from inline images */
}
.author-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}
.author-role {
  color: #9ca3af;
  font-size: 0.9rem;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(55, 65, 81, 0.5);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}
/* New styles for Play/Pause button */
.testimonial-play-pause {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  margin-top: 1rem;
  transition: var(--transition);
  display: flex; /* Ensure icon is centered */
  align-items: center;
  justify-content: center;
  width: 100%; /* Full width for centering */
}
.testimonial-play-pause:hover {
  color: white;
}
.testimonial-play-pause i {
  width: 24px;
  height: 24px;
}
/* Contact Section */
.contact {
  padding: 8rem 0;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}
.contact-info p {
  color: #9ca3af;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}
.contact-text p {
  color: #9ca3af;
  margin: 0;
  font-size: 0.95rem;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 48px;
  height: 48px;
  background: rgba(55, 65, 81, 0.5);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
.contact-form {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1.5rem;
  padding: 2.5rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #d1d5db;
}
.form-control {
  width: 100%;
  padding: 1rem;
  background: rgba(55, 65, 81, 0.5);
  border: 1px solid rgba(156, 163, 175, 0.3);
  border-radius: 0.75rem;
  color: white;
  font-size: 1rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
textarea.form-control {
  resize: none;
  min-height: 150px;
}
/* Footer */
footer {
  background: #111827;
  border-top: 1px solid rgba(55, 65, 81, 0.5);
  padding: 4rem 0 2rem;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-about p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.footer-links h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-contact li {
  color: #9ca3af;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(55, 65, 81, 0.5);
  color: #9ca3af;
  font-size: 0.9rem;
}
/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text p {
    margin: 0 auto 2rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .social-buttons {
    justify-content: center;
  }
  .stats {
    justify-content: center;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .header-container {
    padding: 1rem 1.5rem;
  }
  .mobile-menu-btn {
    display: block;
  }
  nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #111827;
    z-index: 1001;
    padding: 4rem 2rem;
    transition: var(--transition);
    border-left: 1px solid rgba(55, 65, 81, 0.3);
  }
  nav.open {
    right: 0;
  }
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  .close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .overlay.open {
    opacity: 1;
    visibility: visible;
  }
  .hero {
    padding: 120px 0 60px;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1.1rem;
  }
  .stats {
    flex-wrap: wrap;
  }
  .filter-buttons {
    gap: 0.5rem;
  }
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}