:root {
  /* Color Palette */
  --primary-color-1: #FF6B6B; /* Coral red for highlighting */
  --primary-color-2: #4ECDC4; /* Turquoise for accents */
  --primary-color-3: #F7D488; /* Soft gold for atmosphere */
  --primary-color-4: #5D5C61; /* Slate for text and contrast */
  --primary-color-5: #7FB7BE; /* Sky blue for theme connection */
  
  /* Shades */
  --primary-color-1-light: #FF9B9B;
  --primary-color-1-dark: #D14545;
  --primary-color-2-light: #7EDBD4;
  --primary-color-2-dark: #2A9D95;
  --primary-color-3-light: #F9E2AD;
  --primary-color-3-dark: #DAB653;
  --primary-color-4-light: #7D7C82;
  --primary-color-4-dark: #3E3D41;
  --primary-color-5-light: #A6D2D7;
  --primary-color-5-dark: #5A969D;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--primary-color-4);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color-4-dark);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color-2);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-2-dark);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.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;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

/* Header */
header {
  padding: 20px 0;
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-weight: 700;
  color: white;
  font-size: 1.8rem;
}

.navbar-scrolled .navbar-brand {
  color: var(--primary-color-4-dark);
}

.nav-link {
  font-weight: 600;
  color: white;
  margin: 0 10px;
  position: relative;
}

.navbar-scrolled .nav-link {
  color: var(--primary-color-4);
}

.nav-link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color-2);
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-link:hover:before {
  visibility: visible;
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-color: var(--primary-color-5);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about-feature {
  padding: 2rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-2);
}

/* Services Section */
.services-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  background-color: white;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.services-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.services-content {
  padding: 1.5rem;
}

.services-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.services-features {
  list-style: none;
  padding: 0;
}

.services-features li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.services-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-item {
  text-align: center;
  padding: 2rem;
}

.features-item i {
  font-size: 3.5rem;
  color: var(--primary-color-3);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.price-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.price-card-header {
  background-color: var(--primary-color-3);
  padding: 2rem;
  text-align: center;
  color: var(--primary-color-4-dark);
}

.price-card-body {
  padding: 2rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  background-color: white;
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color-5);
  font-style: italic;
}

/* Reviews Section */
.reviews-slider {
  padding-bottom: 4rem;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-4-dark);
}

/* Core Info Section */
.core-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.core-info-icon {
  font-size: 2rem;
  color: var(--primary-color-2);
  margin-right: 1.5rem;
}

/* Contact Section */
.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-2);
  box-shadow: 0 0 0 0.25rem rgba(78, 205, 196, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
}

/* Blog Section */
.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  background-color: white;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.accordion-item {
  margin-bottom: 1rem;
  border: none;
}

.accordion-button {
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px !important;
  font-weight: 600;
  padding: 1.5rem;
  color: var(--primary-color-4-dark);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-3-light);
  color: var(--primary-color-4-dark);
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.accordion-body {
  padding: 1.5rem;
  background-color: white;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

/* Gallery Section */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-color-4-dark);
  color: white;
  padding: 4rem 0 2rem;
}
footer h4 {
 
  color: white;

}

footer a {
  color: white;
  opacity: 0.8;
}

footer a:hover {
  color: white;
  opacity: 1;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

#site-copyright {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Space Page */
#space {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animation Utilities */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Shape Elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  background-color: var(--primary-color-2-light);
  border-radius: 50%;
  opacity: 0.5;
}

.shape-2 {
  bottom: 10%;
  right: 10%;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color-3-light);
  border-radius: 50% 0 50% 50%;
  opacity: 0.3;
}

.shape-3 {
  top: 20%;
  right: 20%;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color-1-light);
  border-radius: 0 50% 50% 50%;
  opacity: 0.4;
  transform: rotate(45deg);
} 