:root {
  /* Primary Color Palette */
  --primary-color-1: #3E5C76; /* Deep blue */
  --primary-color-2: #748CAB; /* Soft blue */
  --primary-color-3: #F0EBD8; /* Cream */
  --primary-color-4: #E98A15; /* Orange */
  --primary-color-5: #1D2D44; /* Dark navy */
  
  /* Shades and tints */
  --primary-color-1-light: #5A7A97;
  --primary-color-1-dark: #2A4158;
  --primary-color-2-light: #95ACCA;
  --primary-color-2-dark: #556E8D;
  --primary-color-3-light: #FBF9F1;
  --primary-color-3-dark: #DAD5C2;
  --primary-color-4-light: #F1A74A;
  --primary-color-4-dark: #C47211;
  --primary-color-5-light: #2E4366;
  --primary-color-5-dark: #0F1925;
}

/* Base Styles */
body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 800;
  position: relative;
  margin-bottom: 20px;
  color: var(--primary-color-5);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--primary-color-2);
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 20px 0;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary-color-5);
}

.nav-link {
  font-weight: 600;
  color: var(--primary-color-5);
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color-4);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-4);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background-color: var(--primary-color-3-light);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color-5);
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  color: var(--primary-color-5-light);
  margin-bottom: 30px;
}

.hero-section .hero-image {
  position: relative;
  z-index: 1;
}

.hero-section .shape {
  position: absolute;
  z-index: 0;
}

.hero-section .shape-1 {
  top: -5%;
  right: -5%;
  width: 300px;
  height: 300px;
  background-color: var(--primary-color-2-light);
  opacity: 0.5;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-section .shape-2 {
  bottom: -5%;
  left: -5%;
  width: 250px;
  height: 250px;
  background-color: var(--primary-color-4-light);
  opacity: 0.3;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* About Section */
.about-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-feature {
  margin-bottom: 30px;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-5);
}

.about-feature p {
  color: var(--primary-color-2-dark);
}

.about-feature i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color-4);
}

/* Services Section */
.services-section {
  background-color: var(--primary-color-3-light);
  position: relative;
  overflow: hidden;
}

.service-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-content h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-5);
}

.service-content p {
  color: var(--primary-color-2-dark);
  margin-bottom: 20px;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color-4);
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 20px;
}

.service-features ul {
  padding-left: 20px;
}

.service-features li {
  margin-bottom: 10px;
  color: var(--primary-color-5-light);
}

/* Features Section */
.features-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.feature-item {
  text-align: center;
  margin-bottom: 30px;
  padding: 40px 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color-4);
}

.feature-item h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-5);
}

.feature-item p {
  color: var(--primary-color-2-dark);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-color-3-light);
  position: relative;
  overflow: hidden;
}

.price-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  text-align: center;
  padding-bottom: 30px;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: 30px;
  background-color: var(--primary-color-5);
  color: #fff;
}

.price-header h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
}

.price-header p {
  color: rgba(255, 255, 255, 0.7);
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color-4);
  margin: 30px 0;
}

.price-features {
  padding: 0 30px;
  margin-bottom: 30px;
}

.price-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-features li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  color: var(--primary-color-5-light);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.team-member {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px 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.1);
}

.team-content {
  padding: 30px;
  text-align: center;
}

.team-content h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--primary-color-5);
}

.team-content p {
  color: var(--primary-color-4);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-color-3-light);
  position: relative;
  overflow: hidden;
}

.swiper-reviews {
  padding-bottom: 60px;
}

.review-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-size: 1.1rem;
  color: var(--primary-color-5-light);
  margin-bottom: 30px;
  position: relative;
}

.review-text:before {
  content: '\201C';
  font-size: 5rem;
  position: absolute;
  left: -20px;
  top: -30px;
  color: var(--primary-color-3-dark);
  font-family: Georgia, serif;
  opacity: 0.3;
}

.review-author {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color-5);
}

/* Core Info Section */
.coreinfo-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.coreinfo-item {
  margin-bottom: 30px;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-item h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-5);
}

.coreinfo-item p {
  color: var(--primary-color-2-dark);
}

.coreinfo-item i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color-4);
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-color-3-light);
  position: relative;
  overflow: hidden;
}

.contact-form {
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-4);
  box-shadow: none;
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.form-check-input:checked {
  background-color: var(--primary-color-4);
  border-color: var(--primary-color-4);
}

.btn-submit {
  background-color: var(--primary-color-4);
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--primary-color-4-dark);
}

/* Blog Section */
.blog-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.blog-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 250px;
  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: 30px;
}

.blog-content h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-5);
}

.blog-content p {
  color: var(--primary-color-2-dark);
  margin-bottom: 20px;
}

.blog-link {
  color: var(--primary-color-4);
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-color-4-dark);
}

/* FAQ Section */
.faq-section {
  background-color: var(--primary-color-3-light);
  position: relative;
  overflow: hidden;
}

.accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 20px;
}

.accordion-button {
  background-color: #fff;
  border-radius: 5px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color-5);
  padding: 20px 30px;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: var(--primary-color-4);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233E5C76'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E98A15'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  padding: 20px 30px;
  color: var(--primary-color-2-dark);
}

/* Gallery Section */
.gallery-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.gallery-grid {
  margin-bottom: 30px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 45, 68, 0.7);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  color: #fff;
  font-size: 2rem;
}

/* Footer */
footer {
  background-color: var(--primary-color-5);
  color: #fff;
  padding: 80px 0 30px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.footer-heading {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #fff;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color-4);
  text-decoration: none;
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
}

.copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 150px 0 100px;
  background-color: var(--primary-color-5);
  position: relative;
  overflow: hidden;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 1.2rem;
  font-weight: 600;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-color-4);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* Animation Elements */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* Additional helper classes */
.text-primary {
  color: var(--primary-color-4) !important;
}

.bg-primary {
  background-color: var(--primary-color-4) !important;
}

.text-secondary {
  color: var(--primary-color-1) !important;
}

.bg-secondary {
  background-color: var(--primary-color-1) !important;
}

.text-dark {
  color: var(--primary-color-5) !important;
}

.bg-dark {
  background-color: var(--primary-color-5) !important;
}

.text-light {
  color: var(--primary-color-3) !important;
}

.bg-light {
  background-color: var(--primary-color-3) !important;
} 