:root {
  --primary-color: #d88bc3; /* Pink from logo */
  --primary-hover-color: #c97ab3; /* Darker Pink */
  --secondary-color: #492b48; /* Dark Purple from logo */
  --light-gray-color: #f9f6f9; /* Light lavender-gray */
  --text-color: #333;
  --white-color: #fff;
  --font-family-body: 'Poppins', sans-serif;
  --font-family-headings: 'Playfair Display', serif;
  --container-width: 1100px;
  --border-radius: 8px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-body);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white-color);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navbar */
.header {
  background-color: var(--white-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

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

.logo-img {
    height: 60px;
    width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--secondary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover-color);
  border-color: var(--primary-hover-color);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 35px;
  font-size: 1.1rem;
}

.nav-btn {
  padding: 8px 20px;
}

/* Hero Section */
.hero {
  background-color: var(--light-gray-color);
  text-align: center;
  padding: 100px 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-family-headings);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

/* General Section Styling */
section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-family-headings);
  text-align: center;
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

/* Clients Section */
.clients {
    background-color: var(--white-color);
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.clients-title {
    text-align: center;
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.client-logos img {
    height: 35px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Services Section */
.services {
    background-color: var(--light-gray-color);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--white-color);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--font-family-headings);
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.service-description {
  color: #555;
}

/* About Section */
.about {
    background-color: var(--white-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.about-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Process Section */
.process {
    background-color: var(--light-gray-color);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
}
.process-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.process-title {
    font-family: var(--font-family-headings);
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* CTA Section */
.cta {
    background-color: var(--secondary-color);
    color: var(--white-color);
    text-align: center;
    padding: 60px 0;
}
.cta-title {
    font-family: var(--font-family-headings);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white-color);
}
.cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}


/* Contact Section */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: var(--border-radius);
  border: 1px solid #ccc;
  font-family: var(--font-family-body);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(216, 139, 195, 0.5);
}

.contact-form textarea {
    margin-bottom: 20px;
    resize: vertical;
}

.contact-submit-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo-img {
    height: 80px;
    margin-bottom: 10px;
    width: auto;
}
.footer-col p {
    color: #ccc;
}
.footer-heading {
    font-family: var(--font-family-headings);
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #5a4159;
    color: #aaa;
}


/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .about-grid {
      grid-template-columns: 1fr;
  }
  .about-image {
      order: -1;
      margin-bottom: 30px;
  }
  .about-content .section-title {
      text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--white-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

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

  .nav-item {
    padding: 1.5rem 0;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-btn {
      display: none;
  }
  
  .logo-img {
      height: 50px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
      font-size: 2.2rem;
  }
  
  .about-content .section-title {
      text-align: center;
  }

  .form-group {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .footer-grid {
      text-align: center;
  }
  .footer-logo-img {
      margin: 0 auto 10px auto;
  }

  .client-logos img {
      height: 25px;
  }
}