:root {
  /* Color Palette */
  --primary-color-1: #5A8F7B; /* Soft sage green */
  --primary-color-2: #D6A2AD; /* Dusty rose */
  --primary-color-3: #F2D0A9; /* Warm peach */
  --primary-color-4: #8F6593; /* Muted purple */
  --primary-color-5: #354F52; /* Deep teal */
  
  /* Light and dark shades */
  --primary-color-1-light: #7BAA96;
  --primary-color-1-dark: #3D725F;
  --primary-color-2-light: #E6C3CB;
  --primary-color-2-dark: #B4798A;
  --primary-color-3-light: #FFE6C9;
  --primary-color-3-dark: #D3A87C;
  --primary-color-4-light: #AC87B0;
  --primary-color-4-dark: #6E4971;
  --primary-color-5-light: #5A7A7D;
  --primary-color-5-dark: #1F3335;
  
  /* Base values */
  --base-font-size: 16px;
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--base-font-size);
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color-5);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-1);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color-1-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--primary-color-2);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--primary-color-2-dark);
  color: white;
}

.btn-tertiary {
  background-color: transparent;
  border: 2px solid var(--primary-color-1);
  color: var(--primary-color-1);
}

.btn-tertiary:hover {
  background-color: var(--primary-color-1);
  color: white;
}

/* Container */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.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 {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color-5);
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
}

.navbar-nav li {
  margin-left: 2rem;
}

.navbar-nav a {
  color: var(--primary-color-5);
  font-weight: 600;
  position: relative;
}

.navbar-nav a:hover {
  color: var(--primary-color-1);
}

.navbar-nav a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-1);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.navbar-nav a:hover:after {
  width: 100%;
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color-5);
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-3-light);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-image {
  position: relative;
  z-index: 1;
}

/* About Section */
.about {
  background-color: #fff;
  position: relative;
}

.about-content {
  margin-bottom: 3rem;
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 1.5rem;
}

.about-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background-color: #f9f9f9;
  position: relative;
}

.services-item {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  margin-bottom: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.services-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.services-item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
}

.services-item-desc {
  margin-bottom: 1.5rem;
}

.services-item-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-item-features li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.services-item-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
  font-weight: 700;
}

/* Features Section */
.features {
  background-color: #fff;
}

.features-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.features-item-icon {
  min-width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-3-light);
  border-radius: 50%;
  margin-right: 2rem;
}

.features-item-icon i {
  font-size: 2rem;
  color: var(--primary-color-1);
}

.features-item-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Price Plan Section */
.priceplan {
  background-color: #f9f9f9;
}

.priceplan-item {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
}

.priceplan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.priceplan-item-header {
  background-color: var(--primary-color-1);
  color: white;
  text-align: center;
  padding: 2rem;
}

.priceplan-item-header h3 {
  color: white;
  margin-bottom: 0;
}

.priceplan-item-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

.priceplan-item-body {
  padding: 2rem;
}

.priceplan-item-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.priceplan-item-features li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.priceplan-item-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
  font-weight: 700;
}

/* Team Section */
.team {
  background-color: #fff;
}

.team-member {
  text-align: center;
  margin-bottom: 3rem;
}

.team-member-img {
  border-radius: 50%;
  overflow: hidden;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-color-1);
  font-weight: 600;
}

/* Reviews Section */
.reviews {
  background-color: var(--primary-color-3-light);
  position: relative;
}

.reviews-container {
  position: relative;
}

.swiper-reviews {
  padding-bottom: 3rem;
}

.reviews-item {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.reviews-item-text {
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviews-item-author {
  font-weight: 700;
  color: var(--primary-color-5);
}

/* Core Info Section */
.coreinfo {
  background-color: #fff;
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 2rem;
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--primary-color-1);
  margin-bottom: 1.5rem;
}

.coreinfo-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
}

.contact-form {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color-1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(90, 143, 123, 0.2);
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
}

.services-select {
  margin-bottom: 1.5rem;
}

.services-select label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Blog Section */
.blog {
  background-color: #fff;
}

.blog-item {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
  height: 200px;
  overflow: hidden;
}

.blog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}

.blog-item-content {
  padding: 1.5rem;
}

.blog-item-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.blog-item-excerpt {
  margin-bottom: 1rem;
}

.blog-item-link {
  font-weight: 600;
  color: var(--primary-color-1);
}

/* FAQ Section */
.faq {
  background-color: #f9f9f9;
}

.accordion {
  margin-bottom: 3rem;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  background-color: #fff;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.accordion-header i {
  transition: var(--transition);
}

.accordion-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  background-color: #fff;
}

.accordion-item.active .accordion-body {
  padding: 1.5rem;
  max-height: 300px;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

/* Gallery Section */
.gallery {
  background-color: #fff;
}

.gallery-container {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--border-radius);
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-color-5);
  color: #fff;
  padding: 5rem 0 2rem;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: var(--primary-color-3);
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

.footer-desc {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  color: aliceblue;

}

.footer-title:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color-3);
  bottom: 0;
  left: 0;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.8rem;
}

.footer-contact p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 0.8rem;
  min-width: 20px;
}

.footer-bottom {
  margin-top: 4rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
} 