:root {
  --primary-1: #2c3e50; /* Deep blue-gray */
  --primary-2: #e74c3c; /* Soft red */
  --primary-3: #3498db; /* Sky blue */
  --primary-4: #f39c12; /* Amber */
  --primary-5: #1abc9c; /* Teal */
  
  --primary-1-light: #34495e;
  --primary-2-light: #e67e22;
  --primary-3-light: #5dade2;
  --primary-4-light: #f5b041;
  --primary-5-light: #48c9b0;
  
  --primary-1-dark: #1a252f;
  --primary-2-dark: #c0392b;
  --primary-3-dark: #2874a6;
  --primary-4-dark: #d35400;
  --primary-5-dark: #16a085;
  
  --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;
}

/* Base Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-800);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-1);
}

a {
  text-decoration: none;
  color: var(--primary-3);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-3-dark);
}

.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);
}

.btn-secondary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
}

section {
  padding: 80px 0;
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-1);
}

.nav-link {
  font-weight: 500;
  color: var(--gray-700);
  margin: 0 10px;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-3);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-3);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(26, 188, 156, 0.1);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: rgba(52, 152, 219, 0.1);
}

.hero-content {
  position: relative;
  z-index: 10;
}

/* About Section */
.about-section {
  position: relative;
  background-color: white;
}

.about-feature {
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--primary-3);
}

/* Services Section */
.services-section {
  background-color: var(--gray-100);
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 20px;
}

.service-price {
  display: inline-block;
  background-color: var(--primary-1);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.service-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-5);
  position: absolute;
  left: 0;
}

/* Features Section */
.features-section {
  position: relative;
}

.feature-card {
  text-align: center;
  padding: 40px 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 188, 156, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 30px;
  color: var(--primary-5);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--gray-100);
}

.price-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: 30px 20px;
  background-color: var(--primary-1);
  color: white;
}

.price-content {
  padding: 30px 20px;
}

.price-amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-1);
  margin: 20px 0;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  transition: all 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-role {
  color: var(--primary-3);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--gray-100);
  position: relative;
}

.swiper {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 60px;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-text {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

.review-text::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-3);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  opacity: 0.5;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-info {
  margin-left: 15px;
}

.review-author-name {
  font-weight: 600;
  margin-bottom: 0;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-3);
}

/* Core Info Section */
.coreinfo-section {
  background-color: white;
}

.coreinfo-card {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--primary-3);
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-check-input:checked {
  background-color: var(--primary-3);
  border-color: var(--primary-3);
}

/* Blog Section */
.blog-section {
  background-color: var(--gray-100);
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 20px;
}

.blog-read-more {
  display: inline-block;
  color: var(--primary-3);
  font-weight: 500;
  margin-top: 10px;
}

.blog-read-more:hover {
  color: var(--primary-3-dark);
}

/* FAQ Section */
.faq-section {
  background-color: white;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-3-light);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--gray-300);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--gray-100);
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.gallery-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--primary-1);
  color: white;
  padding: 60px 0 30px;
}

footer h5 {
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}

footer p {
  color: rgba(255, 255, 255, 0.7);
}

footer a {
  color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
  color: white;
}

footer .contact-info {
  margin-bottom: 20px;
}

footer .contact-info i {
  margin-right: 10px;
}

#site-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  display: block;
}

/* Shape elements */
.shape-blob1 {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 43% 57% 70% 30% / 30% 43% 57% 70%;
  background-color: rgba(52, 152, 219, 0.1);
  z-index: -1;
  animation: blob-animation 15s linear infinite alternate;
}

.shape-blob2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background-color: rgba(26, 188, 156, 0.1);
  z-index: -1;
  animation: blob-animation 20s linear infinite alternate;
}

@keyframes blob-animation {
  0% {
    border-radius: 43% 57% 70% 30% / 30% 43% 57% 70%;
  }
  50% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  100% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

/* Additional Pages */
.page-header {
  background-color: var(--primary-1);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}

.breadcrumb-item {
  display: flex;
}

.breadcrumb-item img {
  height: 24px;
  width: auto;
} 