:root {
  /* Color palette */
  --primary-color-1: #2a4b8c; /* Deep blue */
  --primary-color-2: #38b6ff; /* Bright blue */
  --primary-color-3: #f26430; /* Orange */
  --primary-color-4: #17262a; /* Dark slate */
  --primary-color-5: #d0e1f9; /* Light blue */
  
  /* Light/dark shades */
  --primary-color-1-light: #3a5b9c;
  --primary-color-1-dark: #1a3b7c;
  --primary-color-2-light: #48c6ff;
  --primary-color-2-dark: #28a6ef;
  --primary-color-3-light: #f27440;
  --primary-color-3-dark: #e25420;
  --primary-color-4-light: #27363a;
  --primary-color-4-dark: #07161a;
  --primary-color-5-light: #e0f1ff;
  --primary-color-5-dark: #c0d1e9;
  
  /* Font sizes */
  --font-size-base: 16px;
  --font-size-h1: 3.5rem;
  --font-size-h2: 2.5rem;
  --font-size-h3: 1.75rem;
  --font-size-h4: 1.25rem;
}

/* General styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-footer h3, h4, h5 {
  color: #fff !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  font-size: var(--font-size-h2);
  color: var(--primary-color-4);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background-color: #fff;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
}

.nav-link {
  color: var(--primary-color-4);
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color-3);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-5-light);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.4;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--primary-color-2);
  top: -100px;
  right: -100px;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-color-3);
  bottom: -50px;
  left: 10%;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  background-color: var(--primary-color-1);
  top: 30%;
  right: 20%;
}

.hero-title-1 {
  font-size: var(--font-size-h1);
  font-weight: 800;
  color: var(--primary-color-1);
  margin-bottom: 1.5rem;
}

.hero-subtitle-1 {
  font-size: var(--font-size-h3);
  color: var(--primary-color-4);
  margin-bottom: 2rem;
}

.hero-desc-1 {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* About Section */
.about-section {
  background-color: #fff;
  position: relative;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding: 2rem 0;
}

.about-feature-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color-3);
  margin-bottom: 1rem;
}

.about-feature-title {
  font-size: var(--font-size-h4);
  margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
  background-color: var(--primary-color-5-light);
  position: relative;
}

.service-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color-3);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: var(--font-size-h4);
  color: var(--primary-color-4);
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.5rem;
  color: var(--primary-color-1);
  font-weight: 700;
  margin: 1rem 0;
}

.service-features {
  margin: 1.5rem 0;
}

.service-features li {
  margin-bottom: 0.5rem;
  list-style-type: none;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color-3);
  position: absolute;
  left: 0;
}

/* Features Section */
.features-section {
  background-color: #fff;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 30px;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color-2);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: var(--font-size-h4);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.price-plan-section {
  background-color: var(--primary-color-5-light);
}

.price-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 3rem 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-title {
  font-size: var(--font-size-h3);
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-3);
  margin: 1.5rem 0;
}

.price-features {
  margin: 1.5rem 0;
}

.price-features li {
  margin-bottom: 0.5rem;
  list-style-type: none;
  position: relative;
  padding-left: 1.5rem;
}

.price-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color-2);
  position: absolute;
  left: 0;
}

/* Team Section */
.team-section {
  background-color: #fff;
}

.team-member {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  transition: all 0.5s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
  background-color: #fff;
}

.team-name {
  font-size: var(--font-size-h4);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color-3);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-color-5-light);
  position: relative;
}

.review-item {
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 0 10px 30px;
  position: relative;
}

.review-item::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary-color-5);
  position: absolute;
  top: 1rem;
  left: 1rem;
  opacity: 0.3;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Core Info Section */
.core-info-section {
  background-color: #fff;
}

.core-info-item {
  padding: 2rem;
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.core-info-icon {
  font-size: 3rem;
  color: var(--primary-color-2);
  margin-bottom: 1.5rem;
}

.core-info-title {
  font-size: var(--font-size-h4);
  color: var(--primary-color-4);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-color-4);
  color: #fff;
}

.contact-section .section-title h2 {
  color: #fff;
}

.contact-section .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form {
  background-color: #fff;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
}

.form-check {
  margin-bottom: 1.5rem;
}

.btn-submit {
  background-color: var(--primary-color-3);
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--primary-color-3-dark);
}

.contact-info {
  color: #fff;
  margin-top: 3rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color-2);
  margin-right: 1rem;
}

/* Blog Section */
.blog-section {
  background-color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-h4);
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-color-3);
  font-weight: 600;
  text-decoration: none;
}

.blog-link:hover {
  color: var(--primary-color-3-dark);
}

/* FAQ Section */
.faq-section {
  background-color: var(--primary-color-5-light);
}

.accordion {
  margin-top: 3rem;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--primary-color-4);
  background-color: #fff;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 1.5rem;
  background-color: #fff;
}

/* Gallery Section */
.gallery-section {
  background-color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.site-footer {
  background-color: var(--primary-color-4);
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color-2);
}

.footer-contact-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--primary-color-2);
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 20px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 0.9rem;
}

/* Space Page */
.space-container {
  min-height: calc(100vh - 200px);
}

/* Shapes & Decorative Elements */
.shape-blob {
  position: absolute;
  z-index: 0;
  border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background-color: var(--primary-color-2-light);
  opacity: 0.1;
  top: -200px;
  right: -200px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background-color: var(--primary-color-3-light);
  opacity: 0.1;
  bottom: -150px;
  left: -150px;
}

/* Additional pages */
.page-header {
  padding: 150px 0 80px;
  background-color: var(--primary-color-1);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-title {
  font-size: var(--font-size-h1);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.additional-section {
  padding: 100px 0;
}

.additional-section:nth-child(even) {
  background-color: var(--primary-color-5-light);
}

.additional-section:nth-child(odd) {
  background-color: #fff;
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 10px 0;
  background-color: var(--primary-color-5-light);
}

.breadcrumb {
  margin-bottom: 0;
  padding: 0;
}

/* Animations & Transitions */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 1s ease-in-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 1s ease-in-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.zoom-in {
  animation: zoomIn 1s ease-in-out;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
} 