:root {
  /* Primary Color Palette */
  --primary-1: #a8c7e9; /* Soft blue */
  --primary-2: #f5c3b8; /* Soft peach */
  --primary-3: #c5d8b9; /* Soft green */
  --primary-4: #e9d3b9; /* Soft beige */
  --primary-5: #d4bbde; /* Soft purple */

  /* Shade variations */
  --primary-1-light: #d9e6f7;
  --primary-1-dark: #6a96c8;
  --primary-2-light: #fce1db;
  --primary-2-dark: #d4917e;
  --primary-3-light: #e6f0df;
  --primary-3-dark: #94b77f;
  --primary-4-light: #f7ece0;
  --primary-4-dark: #c7a47e;
  --primary-5-light: #eee4f4;
  --primary-5-dark: #a784bb;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #6c757d;
  --black: #212529;
  
  /* Font sizes */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
  --font-size-xxxl: 2.5rem;
  
  /* Spacing */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 1rem;
  --spacing-4: 1.5rem;
  --spacing-5: 3rem;
}

/* General Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: var(--font-size-xxxl);
  margin-bottom: 0.5rem;
  position: relative;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

/* Decorative SVG Elements */
.shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

.logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-1-dark);
}

.navbar-nav .nav-link {
  margin: 0 0.5rem;
  color: var(--black);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-1-dark);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-color: var(--primary-1-light);
  overflow: hidden;
  background-image: url('../HOM_images/hero2.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: var(--white);
}

.hero-title {
  font-size: var(--font-size-xxxl);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: 1.5rem;
  color: var(--primary-2-light);
}

.hero-description {
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
  color: var(--white);
}

.hero-image-container {
  position: relative;
  z-index: 2;
  padding: 1rem;
}

.hero-image {
  max-height: 450px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

/* Hiding the old swiper styles */
.swiper-container, .swiper-slide, .slide-overlay {
  display: none;
}

/* About Section */
.about-section {
  background-color: var(--white);
}

.about-feature {
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--light-gray);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-1-dark);
  margin-bottom: 1rem;
}

.about-feature-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
  background-color: var(--primary-3-light);
  position: relative;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: var(--font-size-xl);
  margin-bottom: 0.5rem;
  color: var(--black);
}

.service-price {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary-1-dark);
  margin-bottom: 1rem;
}

.service-features {
  margin-top: 1rem;
}

.service-features ul {
  padding-left: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

/* Features Section */
.features-section {
  background-color: var(--white);
}

.feature-box {
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--primary-2-light);
  margin-bottom: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-2-dark);
  margin-bottom: 1rem;
}

.feature-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-5-light);
}

.price-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-title {
  font-size: var(--font-size-xl);
  margin-bottom: 1rem;
  color: var(--black);
}

.price-value {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  color: var(--primary-5-dark);
  margin-bottom: 1.5rem;
}

.price-features {
  margin: 1.5rem 0;
}

.price-features ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.price-features li {
  margin-bottom: 0.5rem;
}

/* Team Section */
.team-section {
  background-color: var(--white);
}

.team-card {
  background-color: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-1-dark);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-4-light);
  position: relative;
}

.review-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin: 0 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.review-text {
  font-size: var(--font-size-base);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.review-text:before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  left: -10px;
  top: -20px;
  color: var(--primary-4);
  opacity: 0.5;
}

.review-author {
  font-weight: 600;
  color: var(--primary-4-dark);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--white);
}

.info-box {
  padding: 2rem;
  background-color: var(--primary-1-light);
  border-radius: 10px;
  margin-bottom: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-10px);
}

.info-icon {
  font-size: 2.5rem;
  color: var(--primary-1-dark);
  margin-bottom: 1rem;
}

.info-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-2-light);
}

.contact-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 1px solid var(--medium-gray);
  padding: 0.75rem 1rem;
  border-radius: 5px;
}

.form-control:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 0.2rem rgba(168, 199, 233, 0.25);
}

.form-check {
  margin-bottom: 1rem;
}

.btn-submit {
  background-color: var(--primary-2-dark);
  color: var(--white);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--primary-1-dark);
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info i {
  color: var(--primary-2-dark);
  margin-right: 0.5rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-gray);
}

.blog-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

/* Footer */
footer {
  background-color: var(--primary-1-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-1-light);
}

.footer-bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animation Classes for AOS */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.active {
  opacity: 1;
}

/* Special Space Page */
#space {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Media queries will be in responsive.css */ 