:root {
  --primary-color-1: #64a0af; /* Teal blue */
  --primary-color-2: #e8c3a6; /* Peach */
  --primary-color-3: #f2a49c; /* Coral */
  --primary-color-4: #5b7b7a; /* Sage green */
  --primary-color-5: #d4c1e0; /* Lavender */
  
  --light-shade-1: #f7f7f7;
  --light-shade-2: #ebebeb;
  --dark-shade-1: #333333;
  --dark-shade-2: #555555;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: var(--dark-shade-1);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color-1);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-4);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color-4);
  color: white;
}

.btn-secondary {
  background-color: var(--primary-color-3);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--primary-color-5);
  color: var(--dark-shade-1);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background-color: var(--primary-color-3);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: var(--dark-shade-2);
  max-width: 650px;
  margin: 0 auto;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-scrolled {
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
}

.header-scrolled .navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-1);
}

.nav-link {
  color: var(--dark-shade-1);
  font-weight: 500;
  margin: 0 15px;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-3);
  bottom: -5px;
  left: 0;
  transition: all 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background-color: var(--light-shade-1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-img {
  position: relative;
  z-index: 5;
}

.hero-shape {
  position: absolute;
  z-index: 1;
}

.shape-1 {
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(100, 160, 175, 0.1);
  border-radius: 50%;
}

.shape-2 {
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background-color: rgba(242, 164, 156, 0.1);
  border-radius: 50%;
}

/* About Section */
.about-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.about-img {
  position: relative;
}

.about-img:before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--primary-color-5);
  opacity: 0.2;
  top: -30px;
  left: -30px;
  z-index: -1;
}

.about-content {
  padding: 30px 0;
}

.about-feature {
  margin-top: 40px;
}

.about-feature-item {
  margin-bottom: 30px;
  padding: 25px;
  border-radius: 10px;
  background-color: var(--light-shade-1);
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color-1);
}

/* Services Section */
.services-section {
  background-color: var(--light-shade-1);
  position: relative;
  overflow: hidden;
}

.service-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color-1);
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-3);
  margin: 15px 0;
}

.service-features {
  margin: 20px 0;
  padding-left: 20px;
}

.service-features li {
  margin-bottom: 10px;
  position: relative;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color-1);
  margin-right: 10px;
}

/* Features Section */
.features-section {
  background-color: white;
}

.feature-item {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color-5);
  color: var(--primary-color-1);
  font-size: 2rem;
  margin: 0 auto 25px;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-shade-1);
}

.price-item {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-item:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: var(--primary-color-3);
  top: 0;
  left: 0;
}

.price-item h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 20px 0;
}

.price-features {
  margin: 30px 0;
  text-align: left;
}

.price-features li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color-1);
  position: absolute;
  left: 0;
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  transition: all 0.5s ease;
  width: 100%;
}

.team-item:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 20px;
  text-align: center;
  background-color: white;
}

.team-info h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-info p {
  color: var(--primary-color-3);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-shade-1);
  position: relative;
  overflow: hidden;
}

.reviews-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(232, 195, 166, 0.1);
  z-index: 1;
}

.shape-left {
  top: -150px;
  left: -150px;
}

.shape-right {
  bottom: -150px;
  right: -150px;
}

.reviews-slider {
  position: relative;
  z-index: 5;
}

.review-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  margin: 20px 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.review-text {
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-info h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.review-author-info p {
  color: var(--primary-color-3);
  font-size: 0.9rem;
}

/* Core Info Section */
.coreinfo-section {
  background-color: white;
}

.coreinfo-item {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.coreinfo-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

.coreinfo-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-shade-1);
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  width: 100%;
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--dark-shade-2);
}

/* Blog Section */
.blog-section {
  background-color: white;
}

.blog-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
  background-color: white;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color-1);
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-shade-1);
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: none;
}

.accordion-button {
  padding: 20px;
  font-weight: 600;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2364a0af'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
overflow-x: hidden;
  padding: 20px;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  background-color: white;
  padding: 100px 0;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark-shade-1);
  color: white;
  padding: 80px 0 20px;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-desc {
  margin-bottom: 25px;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color-3);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #aaa;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color-3);
  padding-left: 5px;
}

.footer-contact-info {
  margin-bottom: 25px;
}

.footer-contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact-info i {
  margin-right: 15px;
  color: var(--primary-color-3);
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #aaa;
} 