:root {
  /* Main Color Palette */
  --color-primary: #FF6B6B;     /* Coral Red */
  --color-secondary: #4ECDC4;   /* Mint */
  --color-accent: #FFD166;      /* Mustard Yellow */
  --color-background: #F7FFF7;  /* Off-White */
  --color-dark: #292F36;        /* Dark Blue-Gray */
  
  /* Shades */
  --color-primary-light: #FF9E9E;
  --color-primary-dark: #E05A5A;
  --color-secondary-light: #7FDFD9;
  --color-secondary-dark: #3AABA4;
  --color-accent-light: #FFE199;
  --color-accent-dark: #E6BC5C;
  --color-background-dark: #E6EEE6;
  --color-dark-light: #474F57;
}

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--color-background);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--color-primary);
}

.section-title h3 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  color: white;
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-dark);
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
  color: var(--color-dark);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 0;
  background-color: white;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
}

.logo {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-dark);
}

.logo span {
  color: var(--color-primary);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  color: var(--color-dark);
  font-weight: 600;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-primary);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--color-dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--color-background);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

.hero-description {
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-img {
  position: relative;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--color-primary-light);
  opacity: 0.1;
  border-radius: 50%;
}

.shape-2 {
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background-color: var(--color-secondary-light);
  opacity: 0.1;
  border-radius: 50%;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img {
  flex: 1;
  position: relative;
}

.about-img img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 2rem;
}

.about-feature {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  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 20px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.about-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Services Section */
.services {
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 30px;
  background-color: var(--color-background);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 30px;
  color: var(--color-primary);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-description {
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 20px;
  text-align: left;
}

.service-features ul {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li i {
  color: var(--color-primary);
  margin-right: 10px;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: auto;
}

/* Features Section */
.features {
  position: relative;
  overflow: hidden;
}

.features-shape {
  position: absolute;
  z-index: 0;
}

.features-shape-1 {
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--color-accent-light);
  opacity: 0.1;
  border-radius: 50%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 30px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 25px;
  color: var(--color-primary);
}

.feature-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Price Plan Section */
.priceplan {
  background-color: white;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.price-card {
  padding: 40px 30px;
  background-color: var(--color-background);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--color-primary);
}

.price-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.price-description {
  margin-bottom: 25px;
  color: var(--color-dark-light);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 25px;
}

.price-amount span {
  font-size: 1rem;
  color: var(--color-dark-light);
}

.price-features {
  margin-bottom: 30px;
}

.price-features ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-features li i {
  color: var(--color-primary);
  margin-right: 10px;
}

/* Team Section */
.team {
  position: relative;
  overflow: hidden;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 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;
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-content {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--color-primary);
  font-weight: 600;
}

/* Reviews Section */
.reviews {
  background-color: white;
}

.reviews-slider {
  margin-top: 2rem;
  position: relative;
}

.review-card {
  padding: 30px;
  background-color: var(--color-background);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 20px 10px;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.review-text::before {
  content: '"';
  font-size: 5rem;
  position: absolute;
  top: -40px;
  left: -20px;
  opacity: 0.1;
  color: var(--color-primary);
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-name {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Core Info Section */
.coreinfo {
  position: relative;
  overflow: hidden;
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.coreinfo-card {
  padding: 30px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.coreinfo-icon i {
  font-size: 25px;
  color: var(--color-primary);
}

.coreinfo-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Contact Section */
.contact {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.contact-form {
  background-color: var(--color-background);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-container input {
  margin-right: 10px;
}

.services-select {
  margin-bottom: 20px;
}

.services-select-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.services-select-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.services-select-option {
  display: flex;
  align-items: center;
}

.services-select-option input {
  margin-right: 10px;
}

.contact-info {
  padding: 40px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h3 {
  color: white;
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-info-item i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--color-accent);
}

.contact-info-item p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

/* Blog Section */
.blog {
  position: relative;
  overflow: hidden;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 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;
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 20px;
}

.blog-link {
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
}

.blog-link::after {
  content: '→';
  margin-left: 5px;
  transition: all 0.3s ease;
}

.blog-link:hover::after {
  margin-left: 10px;
}

/* FAQ Section */
.faq {
  background-color: white;
}

.accordion {
  margin-top: 3rem;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  background-color: var(--color-background);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--color-background-dark);
}

.accordion-header h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.accordion-header i {
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.accordion-content {
  background-color: white;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-content-inner {
  padding: 20px;
}

.accordion-item.active .accordion-header {
  background-color: var(--color-primary-light);
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

/* Gallery Section */
.gallery {
  position: relative;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: white;
  padding: 5rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h2 {
  color: white;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  color: white;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-contact {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Space Page */
#space {
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-background);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Additional Pages */
.additional-section {
  padding: 5rem 0;
}

.additional-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}

.additional-img {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.additional-img img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.additional-img:hover img {
  transform: scale(1.05);
}

.additional-elements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.additional-element {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.additional-element:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.additional-element i {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 0.8s ease forwards;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--color-background);
  padding: 10px 0;
  margin-top: 80px;
}

.breadcrumb img {
  max-height: 30px;
} 