:root {
  --primary-color-1: #8e6ea6; /* Soft purple */
  --primary-color-2: #f0c987; /* Warm gold */
  --primary-color-3: #55a895; /* Teal green */
  --primary-color-4: #e27d60; /* Terracotta */
  --primary-color-5: #c38d9e; /* Dusty rose */
  
  --light-shade-1: #f8f4fc;
  --light-shade-2: #fbf6e9;
  --light-shade-3: #edf7f5;
  --light-shade-4: #faeae5;
  --light-shade-5: #f9f0f4;
  
  --dark-shade-1: #4a3954;
  --dark-shade-2: #9e8456;
  --dark-shade-3: #2d5b50;
  --dark-shade-4: #a34d33;
  --dark-shade-5: #845a6c;
}

html {
  scroll-behavior: smooth;
}

body {
overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: var(--light-shade-1);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-shade-1);
}

a {
  text-decoration: none;
  color: var(--primary-color-1);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dark-shade-1);
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--dark-shade-1);
  color: white;
}

.btn-secondary {
  background-color: var(--primary-color-2);
  color: var(--dark-shade-2);
}

.btn-secondary:hover {
  background-color: var(--dark-shade-2);
  color: white;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 4rem;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color-1);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  font-size: 1.1rem;
  color: #777;
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-1);
}

.navbar-nav .nav-link {
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  color: var(--dark-shade-1);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--light-shade-1);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--dark-shade-1);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #666;
}

.hero-image {
  position: relative;
  z-index: 1;
}

/* About Section */
.about-section {
  background-color: white;
  position: relative;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.about-image img {
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-feature {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-radius: 10px;
  background-color: var(--light-shade-1);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature h4 {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background-color: var(--light-shade-3);
  position: relative;
}

.service-card {
  padding: 2rem;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-color-1);
  transition: all 0.3s ease;
}

.service-card:hover::before {
  width: 10px;
}

.service-card h3 {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.service-price {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: var(--light-shade-1);
  color: var(--dark-shade-1);
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background-color: white;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-1);
}

.feature-item h3 {
  margin-bottom: 1rem;
}

/* Price Plans Section */
.price-plans-section {
  background-color: var(--light-shade-2);
}

.price-card {
  padding: 3rem 2rem;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.price-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.price-features li::before {
  content: "✓";
  color: var(--primary-color-3);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-card {
  margin-bottom: 2rem;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
  background-color: white;
}

.team-info h4 {
  margin-bottom: 0.5rem;
}

.team-info p {
  color: var(--primary-color-1);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-shade-5);
  position: relative;
}

.review-slider {
  padding: 3rem 0;
}

.review-card {
  padding: 2rem;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 0 15px;
  height: 100%;
  transition: all 0.3s ease;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.review-text::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--primary-color-1);
  opacity: 0.2;
  line-height: 1;
}

.review-author {
  font-weight: 700;
  color: var(--dark-shade-1);
}

/* Core Info Section */
.core-info-section {
  background-color: white;
}

.core-info-item {
  padding: 2rem;
  border-radius: 15px;
  background-color: var(--light-shade-1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 1.5rem;
}

.core-info-item h3 {
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-shade-3);
  position: relative;
}

.contact-form {
  padding: 3rem;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  height: 50px;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: none;
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.contact-info {
  padding: 2rem;
  border-radius: 15px;
  background-color: var(--primary-color-1);
  color: white;
  height: 100%;
}

.contact-info h3 {
  color: white;
  margin-bottom: 2rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  margin-right: 1rem;
  font-size: 1.5rem;
}

/* Blog Section */
.blog-section {
  background-color: white;
}

.blog-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
  overflow: hidden;
}

.blog-img img {
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
  background-color: white;
}

.blog-content h3 {
  margin-bottom: 1rem;
}

.blog-content p {
  color: #666;
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-shade-1);
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  background-color: white;
  color: var(--dark-shade-1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

.accordion-body {
overflow-x: hidden;
  padding: 1.5rem;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  background-color: white;
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer Styles */
footer {
  background-color: var(--dark-shade-1);
  color: rgba(255, 255, 255, 0.8);
  padding: 100px 0 30px;
}

.footer-title {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-about {
  margin-bottom: 2rem;
}

.footer-about p {
  margin-bottom: 1.5rem;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-contact p {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 70px;
}

#site-copyright {
  text-align: center;
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Swiper Slider Styles */
.swiper {
  padding-bottom: 70px;
}

.swiper-pagination-bullet {
  background-color: var(--primary-color-1);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Shape Elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color-2);
  opacity: 0.1;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morph 8s ease-in-out infinite;
}

.shape-2 {
  bottom: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background-color: var(--primary-color-3);
  opacity: 0.1;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 8s ease-in-out infinite alternate;
}

.shape-3 {
  bottom: 30%;
  left: 10%;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color-4);
  opacity: 0.1;
  border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
  animation: morph 8s ease-in-out infinite alternate-reverse;
}

@keyframes morph {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  50% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
}

/* Additional Pages */
.page-header {
  padding: 200px 0 100px;
  background-color: var(--primary-color-1);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  color: white;
  position: relative;
  z-index: 2;
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 43% 57% 70% 30% / 30% 43% 57% 70%;
  animation: blobAnimation 8s infinite;
  z-index: 1;
}

.blob-1 {
  top: -250px;
  right: -100px;
  animation-delay: 0s;
}

.blob-2 {
  bottom: -300px;
  left: -100px;
  animation-delay: 2s;
}

@keyframes blobAnimation {
  0% {
    border-radius: 43% 57% 70% 30% / 30% 43% 57% 70%;
    transform: translate(0%, 0%) rotate(0deg);
  }
  33% {
    border-radius: 70% 30% 30% 70% / 70% 30% 70% 30%;
    transform: translate(5%, 5%) rotate(120deg);
  }
  66% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: translate(-5%, -5%) rotate(240deg);
  }
  100% {
    border-radius: 43% 57% 70% 30% / 30% 43% 57% 70%;
    transform: translate(0%, 0%) rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .blob,
  .shape,
  .service-card,
  .price-card,
  .team-card,
  .gallery-item img,
  .blog-img img,
  .about-feature,
  .core-info-item,
  .feature-item,
  .team-img img,
  html {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
} 