:root {
  /* Color Palette */
  --primary-color-1: #2d4059; /* Deep blue */
  --primary-color-2: #ea5455; /* Coral red */
  --primary-color-3: #f07b3f; /* Orange */
  --primary-color-4: #ffd460; /* Mustard yellow */
  --primary-color-5: #f6f6f6; /* Light grey */
  
  /* Shades */
  --primary-color-1-light: #3a526e;
  --primary-color-1-dark: #1e2c3e;
  --primary-color-2-light: #ee7676;
  --primary-color-2-dark: #d13c3d;
  --primary-color-3-light: #f3966b;
  --primary-color-3-dark: #d66226;
  --primary-color-4-light: #ffdd83;
  --primary-color-4-dark: #eabf3d;
  --primary-color-5-light: #ffffff;
  --primary-color-5-dark: #e0e0e0;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--primary-color-5-light);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color-1);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-2);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color-2);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color-2-dark);
  color: white;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color-2);
}

/* Header / Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: white;
}

.navbar {
  padding: 20px 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-1);
}

.navbar-nav .nav-link {
  padding: 10px 15px;
  font-weight: 600;
  color: var(--primary-color-1);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color-2);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-1);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title-1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle-1 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-desc-1 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-color-4-light);
  opacity: 0.2;
  border-radius: 50%;
  z-index: -1;
}

.about-feature {
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: white;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color-3);
}

/* Services Section */
.services {
  background-color: var(--primary-color-5);
}

.services-item {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-item-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color-2);
}

.services-item-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 15px 0;
  color: var(--primary-color-3);
}

.services-item-features {
  margin: 20px 0;
}

.services-item-features li {
  margin-bottom: 10px;
}

/* Features Section */
.features {
  position: relative;
  overflow: hidden;
}

.features-shape {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background-color: var(--primary-color-3-light);
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
}

.features-item {
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.features-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-item i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color-4);
}

/* Price Plan Section */
.priceplan {
  background-color: var(--primary-color-5);
}

.priceplan-item {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.priceplan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.priceplan-item-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 20px 0;
  color: var(--primary-color-2);
}

.priceplan-item-features {
  margin: 20px 0;
}

.priceplan-item-features li {
  margin-bottom: 10px;
}

/* Team Section */
.team {
  background-color: white;
}

.team-member {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-member-img {
  position: relative;
  overflow: hidden;
}

.team-member-img img {
  transition: all 0.5s ease;
  width: 100%;
}

.team-member:hover .team-member-img img {
  transform: scale(1.1);
}

.team-member-info {
  padding: 20px;
  text-align: center;
  background-color: white;
}

.team-member-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-member-role {
  color: var(--primary-color-3);
  font-size: 0.9rem;
}

/* Reviews Section */
.reviews {
  background-color: var(--primary-color-5);
  position: relative;
  overflow: hidden;
}

.reviews-shape {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-color-2-light);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.swiper-container {
  padding: 30px 0;
}

.reviews-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 20px 10px;
}

.reviews-item-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.reviews-item-text::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -15px;
  color: var(--primary-color-2-light);
  opacity: 0.2;
}

.reviews-item-author {
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Core Info Section */
.coreinfo {
  background-color: white;
}

.coreinfo-item {
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: var(--primary-color-5-light);
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color-1);
}

/* Contact Form Section */
.contact {
  position: relative;
  overflow: hidden;
}

.contact-shape {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-color-1-light);
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
}

.contact-form {
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: white;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  padding: 10px 15px;
  width: 100%;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-2);
  box-shadow: none;
}

textarea.form-control {
  height: 150px;
  resize: none;
}

/* Blog Section */
.blog {
  background-color: var(--primary-color-5);
}

.blog-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: white;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
  height: 200px;
  overflow: hidden;
}

.blog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}

.blog-item-content {
  padding: 20px;
}

.blog-item-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-item-excerpt {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  background-color: white;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #e9e9e9;
}

.accordion-header {
  background-color: var(--primary-color-5-light);
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.accordion-header.active::after {
  content: '-';
}

.accordion-body {
  padding: 15px 20px;
  display: none;
}

.accordion-body.active {
  display: block;
}

/* Gallery Section */
.gallery {
  overflow: hidden;
  background-color: var(--primary-color-5);
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-color-1);
  color: white;
  padding: 70px 0 30px;
}

footer a {
  color: var(--primary-color-5-light);
}

footer a:hover {
  color: var(--primary-color-4);
}

.footer-menu h4 {
  color: white;
  margin-bottom: 25px;
  position: relative;
}

.footer-menu h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color-2);
}

.footer-menu ul {
  list-style: none;
  padding: 0;
}

.footer-menu ul li {
  margin-bottom: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px;
}

/* Additional Pages */
.page-header {
  height: 400px;
  background-color: var(--primary-color-1);
  color: white;
  display: flex;
  align-items: center;
  position: relative;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item {
  display: inline-block;
}

.breadcrumb-item a {
  color: white;
}

.breadcrumb-item.active {
  color: var(--primary-color-4);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: '/';
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.5);
}

/* Space Page */
.space-container {
  min-height: 500px;
  padding: 100px 0;
} 