:root {
  --primary-1: #6fc3df; /* Light blue */
  --primary-2: #e2c0a5; /* Warm beige */
  --primary-3: #8fd9a8; /* Mint green */
  --primary-4: #d0a2f7; /* Lavender */
  --primary-5: #f4b99e; /* Peach */
  
  --dark-1: #1a4e5c;
  --dark-2: #7a5c47;
  --dark-3: #3a6d4b;
  --dark-4: #5d4978;
  --dark-5: #8a573c;
  
  --light-1: #e0f3f8;
  --light-2: #f8f0e8;
  --light-3: #e8f6ed;
  --light-4: #f2eaf8;
  --light-5: #fae9e0;
  
  --white: #ffffff;
  --black: #121212;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
}

/* General Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
}

section {
  padding: 80px 0;
  position: relative;
}

/* Section Title Styling */
.section-title {
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-1);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

/* Decorative Elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.05;
  z-index: -1;
  background-image: url('../NEG_images/pattern.png');
}

/* Header */
.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.header.scrolled .navbar-brand {
  color: var(--black);
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
  position: relative;
}

.header.scrolled .nav-link {
  color: var(--gray-700);
}

.nav-link:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-1);
  transition: width 0.3s ease;
}

.nav-link:hover:before {
  width: 100%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--dark-1);
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 650px;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* About Section */
.about-section {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-feature {
  margin-bottom: 30px;
  padding: 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: var(--gray-100);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-1);
}

/* Services Section */
.services-section {
  background-color: var(--light-1);
  position: relative;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 25px;
}

.service-name {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark-1);
}

.service-desc {
  margin-bottom: 15px;
  color: var(--gray-700);
}

.service-features {
  margin-bottom: 20px;
}

.service-features ul {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-3);
}

.service-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-1);
}

/* Features Section */
.features-section {
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  background-color: var(--light-3);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-3);
}

.feature-name {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-4);
  position: relative;
}

.price-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  padding: 40px 30px;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.price-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-4);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--primary-4);
}

.price-desc {
  margin-bottom: 25px;
  color: var(--gray-600);
}

.price-features {
  text-align: left;
  margin-bottom: 30px;
}

.price-features ul {
  list-style: none;
  padding-left: 0;
}

.price-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.price-features li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-4);
}

/* Team Section */
.team-section {
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
  background-color: var(--white);
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.team-role {
  color: var(--gray-600);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-2);
  position: relative;
}

.reviews-slider {
  overflow: hidden;
  padding: 30px 0;
}

.review-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin: 20px 10px;
  transition: all 0.3s ease;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.review-text:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  color: var(--primary-2);
  opacity: 0.5;
}

.review-author {
  font-weight: 700;
  color: var(--dark-2);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--white);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.coreinfo-item {
  padding: 30px;
  background-color: var(--light-5);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-5);
  margin-bottom: 15px;
}

.coreinfo-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-5);
}

/* Contact Form Section */
.contact-section {
  background-color: var(--light-1);
  position: relative;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid var(--gray-300);
  padding: 10px 15px;
  font-size: 1rem;
}

textarea.form-control {
  height: 120px;
}

.contact-btn {
  height: 50px;
  background-color: var(--primary-1);
  border: none;
  color: var(--white);
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: var(--dark-1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-item {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 1rem;
  color: var(--primary-1);
  margin-right: 15px;
  margin-top: 3px;
}

.contact-info-content h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: var(--gray-600);
}

/* Blog Section */
.blog-section {
  background-color: var(--white);
}

.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.08);
  transition: all 0.3s ease;
  background-color: var(--white);
}

.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: transform 0.5s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-excerpt {
  margin-bottom: 15px;
  color: var(--gray-600);
}

.blog-link {
  color: var(--primary-1);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.blog-link:after {
  content: '\f061';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.blog-link:hover:after {
  transform: translateX(5px);
}

/* Footer */
.footer {
  background-color: var(--dark-1);
  color: var(--white);
  padding: 70px 0 20px;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-desc {
  color: var(--gray-400);
  margin-bottom: 30px;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-1);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-1);
}

.footer-contact-item {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact-icon {
  font-size: 1.2rem;
  color: var(--primary-1);
  margin-right: 15px;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* Space Page */
#space {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-1);
  position: relative;
  overflow: hidden;
}

/* Additional Pages */
.page-header {
  height: 60vh;
  min-height: 400px;
  background-color: var(--dark-1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-title {
  font-size: 3rem;
  color: var(--white);
  position: relative;
  z-index: 10;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.add-page-section {
  padding: 80px 0;
}

.add-page-section:nth-child(even) {
  background-color: var(--light-1);
}

.add-page-section:nth-child(odd) {
  background-color: var(--white);
}

/* Animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .fade-up {
    opacity: 1;
    transform: none;
  }
} 