:root {
  /* Color Palette */
  --primary-color-1: #5A6CB2; /* Blue-purple */
  --primary-color-2: #F0B67F; /* Soft orange */
  --primary-color-3: #D5E2BC; /* Sage green */
  --primary-color-4: #FE5F55; /* Coral */
  --primary-color-5: #F5F5DC; /* Beige */
  
  /* Shades */
  --primary-color-1-light: #8A99D0;
  --primary-color-1-dark: #394580;
  --primary-color-2-light: #FFD6A9;
  --primary-color-2-dark: #C08E50;
  --primary-color-3-light: #EBF5D7;
  --primary-color-3-dark: #ABC190;
  --primary-color-4-light: #FF8A82;
  --primary-color-4-dark: #D13C33;
  --primary-color-5-light: #FFFFF0;
  --primary-color-5-dark: #D9D9BD;
}

/* General Styles */
html {
  scroll-behavior: smooth;
}

body {
overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 4rem;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 1.5rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color-4);
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-1);
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-5-light);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--primary-color-3-light);
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--primary-color-2-light);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-1-dark);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #666;
}

/* About Section */
.about-section {
  background-color: #fff;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.about-content {
  padding: 30px;
}

.about-feature {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 15px;
}

/* Services Section */
.services-section {
  background-color: var(--primary-color-5-light);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-color-3-light);
  border-radius: 50%;
  z-index: 0;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-1-dark);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-4);
  margin: 15px 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background-color: #fff;
}

.feature-item {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-color-2);
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-color-5-light);
}

.price-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-header {
  background-color: var(--primary-color-1);
  color: #fff;
  padding: 30px;
  text-align: center;
}

.price-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.price-header .price {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-body {
overflow-x: hidden;
  padding: 30px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: #fff;
}

.team-member {
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  height: auto;
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.team-info p {
  color: #777;
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-color-5-light);
  position: relative;
}

.review-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-1-dark);
}

/* Core Info Section */
.coreinfo-section {
  background-color: #fff;
}

.coreinfo-item {
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--primary-color-5-light);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  background-color: var(--primary-color-3-light);
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  margin-bottom: 20px;
}

.coreinfo-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-color-5-light);
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 50px;
  border-radius: 5px;
  margin-bottom: 20px;
}

textarea.form-control {
  height: 150px;
}

.form-check {
  margin-bottom: 20px;
}

/* Blog Section */
.blog-section {
  background-color: #fff;
}

.blog-card {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.blog-content p {
  margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
  background-color: var(--primary-color-5-light);
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: none;
}

.accordion-button {
  background-color: #fff;
  color: var(--primary-color-1-dark);
  font-weight: 600;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: #fff;
}

.accordion-body {
overflow-x: hidden;
  padding: 20px;
  background-color: #fff;
}

/* Gallery Section */
.gallery-section {
  background-color: #fff;
  padding: 80px 0;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 80px 0 20px;
}

footer h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

footer p {
  color: #bbb;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
}

.copyright small {
  color: #bbb;
} 