:root {
  /* Primary Color Palette */
  --primary-1: #ff5722; /* Vibrant orange for primary actions */
  --primary-2: #2e3b4e; /* Deep navy blue for text and backgrounds */
  --primary-3: #f9a826; /* Golden yellow for accents */
  --primary-4: #8d6e63; /* Earthy brown/copper tone */
  --primary-5: #43a047; /* Forest green for nature elements */
  
  /* Shades */
  --primary-1-light: #ff8a50;
  --primary-1-dark: #c41c00;
  --primary-2-light: #546e7a;
  --primary-2-dark: #102027;
  --primary-3-light: #ffd95b;
  --primary-3-dark: #c67800;
  --primary-4-light: #be9c91;
  --primary-4-dark: #5f4339;
  --primary-5-light: #76d275;
  --primary-5-dark: #00701a;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #757575;
  --black: #212121;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-2);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1-dark);
}

.btn {
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-1);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
}

.header.sticky {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 26px;
  color: var(--white);
}

.header.sticky .navbar-brand {
  color: var(--primary-2);
}

.nav-link {
  color: var(--white);
  margin: 0 15px;
  font-weight: 600;
  position: relative;
}

.header.sticky .nav-link {
  color: var(--primary-2);
}

.nav-link:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-1);
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

/* Hero Section Styles */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(46, 59, 78, 0.8), rgba(46, 59, 78, 0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 30px;
  max-width: 600px;
}

/* About Section */
.about-feature {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-1);
  margin-bottom: 20px;
}

.about-feature h4 {
  margin-bottom: 15px;
}

/* Services Section */
.services-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-item-img {
  height: 250px;
  overflow: hidden;
}

.services-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services-item:hover .services-item-img img {
  transform: scale(1.1);
}

.services-item-content {
  padding: 30px;
}

.services-item-content h4 {
  margin-bottom: 15px;
}

.services-item-price {
  display: inline-block;
  background-color: var(--primary-1);
  color: var(--white);
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.services-item-features {
  margin-top: 20px;
}

.services-item-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.services-item-features li:before {
  content: "\f00c";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-5);
}

/* Features Section */
.features-item {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--light-gray);
  transition: all 0.3s ease;
  height: 100%;
}

.features-item:hover {
  background-color: var(--primary-1);
  color: var(--white);
}

.features-item i {
  font-size: 3rem;
  color: var(--primary-1);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.features-item:hover i {
  color: var(--white);
}

.features-item h4 {
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.features-item:hover h4 {
  color: var(--white);
}

/* Price Plan Section */
.priceplan-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  border: 1px solid var(--medium-gray);
}

.priceplan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-1);
}

.priceplan-item-header {
  background-color: var(--primary-2);
  padding: 30px;
  color: var(--white);
  text-align: center;
}

.priceplan-item-content {
  padding: 30px;
}

.priceplan-item-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 20px;
  text-align: center;
}

.priceplan-item-features {
  margin-bottom: 30px;
}

.priceplan-item-features li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.priceplan-item-features li:before {
  content: "\f00c";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-5);
}

/* Team Section */
.team-member {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member-img {
  position: relative;
  overflow: hidden;
}

.team-member-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.team-member:hover .team-member-img img {
  transform: scale(1.1);
}

.team-member-content {
  padding: 20px;
  text-align: center;
}

.team-member-content h4 {
  margin-bottom: 5px;
}

.team-member-content p {
  color: var(--primary-1);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews-slider {
  position: relative;
}

.reviews-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  position: relative;
  text-align: center;
}

.reviews-item:before {
  content: "\f10d";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--medium-gray);
  font-size: 2rem;
  opacity: 0.3;
}

.reviews-item p {
  font-style: italic;
  margin-bottom: 20px;
}

.reviews-author {
  font-weight: 600;
  color: var(--primary-1);
}

/* Core Info Section */
.coreinfo-item {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.coreinfo-item:hover {
  background-color: var(--primary-1);
  color: var(--white);
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--primary-1);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.coreinfo-item:hover i {
  color: var(--white);
}

.coreinfo-item h4 {
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.coreinfo-item:hover h4 {
  color: var(--white);
}

/* Contact Form Section */
.contact-form {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid var(--medium-gray);
  margin-bottom: 20px;
}

textarea.form-control {
  height: 150px;
}

.form-check-input {
  margin-top: 0.25rem;
}

/* Blog Section */
.blog-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
  height: 250px;
  overflow: hidden;
}

.blog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}

.blog-item-content {
  padding: 30px;
}

.blog-item-content h4 {
  margin-bottom: 15px;
}

.blog-item-link {
  display: inline-block;
  color: var(--primary-1);
  font-weight: 600;
  margin-top: 20px;
}

.blog-item-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.blog-item-link:hover i {
  transform: translateX(5px);
}

/* FAQ Section */
.faq-accordion .accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--medium-gray);
}

.faq-accordion .accordion-button {
  padding: 20px;
  font-weight: 600;
  background-color: var(--light-gray);
  border: none;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--primary-1);
  color: var(--white);
}

.faq-accordion .accordion-body {
  padding: 20px;
}

/* Gallery Section */
.gallery-item {
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-2-dark);
  color: var(--white);
  padding: 80px 0 20px;
}

footer h4 {
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

footer h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-1);
}

footer p {
  margin-bottom: 10px;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--medium-gray);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-1);
  padding-left: 5px;
}

#site-copyright {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 120px 0 80px;
  background-color: var(--primary-2);
  position: relative;
}

.breadcrumb-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(46, 59, 78, 0.9), rgba(46, 59, 78, 0.7));
}

.breadcrumb-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Additional Page Styles */
.add-page-section {
  padding: 100px 0;
}

.add-page-section:nth-child(even) {
  background-color: var(--light-gray);
}

/* Space Page */
#space {
  min-height: 500px;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

/* Animation classes */
.fade-up {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Shape elements */
.shape {
  position: absolute;
  z-index: -1;
}

.shape-1 {
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 87, 34, 0.1);
  border-radius: 50%;
}

.shape-2 {
  top: 50px;
  right: 50px;
  width: 150px;
  height: 150px;
  background-color: rgba(249, 168, 38, 0.1);
  border-radius: 50%;
}

.shape-3 {
  bottom: 100px;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(67, 160, 71, 0.1);
  border-radius: 50%;
} 