:root {
  /* Primary Colors - Pastel Palette */
  --primary-color-1: #e6a4b4; /* Soft Rose */
  --primary-color-2: #c3d5b0; /* Sage Green */
  --primary-color-3: #f8e1b4; /* Mellow Yellow */
  --primary-color-4: #b6ccfe; /* Periwinkle Blue */
  --primary-color-5: #d4b2d8; /* Lavender */
  
  /* Light and Dark Shades */
  --primary-color-1-light: #f5d6de;
  --primary-color-1-dark: #c27889;
  --primary-color-2-light: #e1ebd7;
  --primary-color-2-dark: #a1b88b;
  --primary-color-3-light: #fcefda;
  --primary-color-3-dark: #d9ba75;
  --primary-color-4-light: #dae4ff;
  --primary-color-4-dark: #8aa0d4;
  --primary-color-5-light: #ead7ec;
  --primary-color-5-dark: #ad8bb2;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #4a4a4a;
  --black: #212121;
  
  /* Font Sizes */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-md: 1.125rem;
  --font-lg: 1.5rem;
  --font-xl: 2rem;
  --font-xxl: 2.5rem;
  --font-hero: 3.5rem;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 50%;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-2-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-2);
}

.section-padding {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

/* Section Titles */
.section-title {
  margin-bottom: 2.5rem;
}

.section-title h2 {
  color: var(--primary-color-2-dark);
  font-size: var(--font-xl);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 50px;
  height: 3px;
  background: var(--primary-color-1);
}

.subtitle {
  font-size: var(--font-md);
  color: var(--primary-color-5-dark);
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-2-dark);
  border-color: var(--primary-color-2-dark);
  color: var(--white);
}

/* Header */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: var(--font-lg);
  color: var(--primary-color-2-dark);
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color-2-dark);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  height: 90vh;
  min-height: 600px;
}

.hero-slide {
  height: 90vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: var(--font-hero);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-content p {
  font-size: var(--font-md);
  margin-bottom: 2rem;
}

/* About Section */
.about-section {
  background-color: var(--light-gray);
}

.about-content {
  padding: 2rem;
}

.about-feature {
  text-align: center;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 1.5rem;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 1.5rem;
}

.about-feature h3 {
  font-size: var(--font-md);
  margin-bottom: 1rem;
}

.about-feature p {
  font-size: var(--font-sm);
}

/* Services Section */
.services-section {
  position: relative;
}

.services-item {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  background-color: var(--white);
  height: 100%;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-item i {
  font-size: 2.5rem;
  color: var(--primary-color-3);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.services-item h3 {
  font-size: var(--font-lg);
  margin-bottom: 1rem;
  color: var(--primary-color-2-dark);
}

.services-item p {
  margin-bottom: 1.5rem;
}

.services-item .price {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.services-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.services-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--medium-gray);
}

.services-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background-color: var(--primary-color-2-light);
}

.features-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.features-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.features-item i {
  font-size: 2.5rem;
  color: var(--primary-color-4);
  margin-bottom: 1.5rem;
}

.features-item h3 {
  font-size: var(--font-md);
  margin-bottom: 1rem;
  color: var(--primary-color-4-dark);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--white);
}

.priceplan-item {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  margin-bottom: 2rem;
  background-color: var(--white);
  border: 2px solid var(--medium-gray);
}

.priceplan-item:hover {
  transform: translateY(-15px);
  border-color: var(--primary-color-3);
}

.priceplan-item h3 {
  font-size: var(--font-lg);
  margin-bottom: 1.5rem;
  color: var(--primary-color-5-dark);
}

.priceplan-item .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color-3-dark);
  margin-bottom: 2rem;
}

.priceplan-item p {
  margin-bottom: 2rem;
}

.priceplan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.priceplan-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--medium-gray);
}

.priceplan-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: var(--light-gray);
}

.team-item {
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  transition: all 0.5s ease;
}

.team-item:hover .team-img img {
  transform: scale(1.1);
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-content h3 {
  font-size: var(--font-md);
  margin-bottom: 0.5rem;
  color: var(--primary-color-4-dark);
}

.team-content p {
  color: var(--primary-color-1-dark);
  font-size: var(--font-sm);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.reviews-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../ART_images/bg-pattern.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.reviews-slider {
  position: relative;
  z-index: 1;
}

.review-item {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  margin: 1rem;
  position: relative;
}

.review-item:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--primary-color-3-light);
  font-size: 2rem;
  opacity: 0.3;
}

.review-text {
  margin-bottom: 2rem;
  font-style: italic;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-2-dark);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--primary-color-5-light);
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  margin-bottom: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--primary-color-5);
  margin-bottom: 1.5rem;
}

.coreinfo-item h3 {
  font-size: var(--font-md);
  margin-bottom: 1rem;
  color: var(--primary-color-5-dark);
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-form {
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-size: var(--font-base);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-2);
  box-shadow: 0 0 0 0.2rem rgba(195, 213, 176, 0.25);
}

.contact-info {
  padding: 2rem;
  background-color: var(--primary-color-2-light);
  border-radius: var(--radius-md);
  height: 100%;
}

.contact-info h3 {
  color: var(--primary-color-2-dark);
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-info i {
  color: var(--primary-color-2-dark);
  margin-right: 0.5rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-gray);
}

.blog-item {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-img {
  position: relative;
  overflow: hidden;
}



.blog-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  font-size: var(--font-md);
  margin-bottom: 1rem;
}

.blog-content p {
  margin-bottom: 1rem;
  font-size: var(--font-sm);
}



.blog-link {
  color: var(--primary-color-1-dark);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;

}

.blog-link:hover {
  color: var(--primary-color-1);
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer h3 {
  color: var(--primary-color-3-light);
  margin-bottom: 1.5rem;
  font-size: var(--font-lg);
}

.footer p {
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--medium-gray);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color-3-light);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-xs);
  color: var(--medium-gray);
}

/* Shape Elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.shape-divider .shape-fill {
  fill: var(--white);
}

/* Swiper Customization */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color-3);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.5);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1rem;
}

/* AOS Animation Library Customization */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Special Page */
#space {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
}

/* Additional Pages */
.add-page-section {
  padding: 5rem 0;
}

.add-page-section:nth-child(odd) {
  background-color: var(--light-gray);
}

.add-page-section:nth-child(even) {
  background-color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@media (prefers-reduced-motion: reduce) {
  .fadeInUp, [data-aos], .swiper-slide {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
} 