:root {
  --primary-color: #1B2B5E;
  --secondary-color: #f8f9fa;
  --dark-color: #212529;
  --light-color: #ffffff;
  --accent-color: #D1AA67;
}

body {
  font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.text-primary {
  --bs-text-opacity: 1;
  color: var(--primary-color) !important;
}
h1, h2, h3, h4, h5 {
  font-weight: 600;
  color: var(--dark-color);
}

.py-6 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.btn-shine {
  position: relative;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(145deg, #d4af72, #c49647);
  border: none;
  padding: 12px 32px;
  font-size: 1.1rem;
  border-radius: 6px;
  box-shadow: 0 0 0 transparent;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
}

.btn-shine:hover {
  color: #fff;
  box-shadow: 0 0 20px rgba(209, 170, 103, 0.6), 0 0 40px rgba(209, 170, 103, 0.4);
  transform: scale(1.05);
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(25deg);
  transition: all 0.6s ease;
  z-index: 0;
}

.btn-shine:hover::before {
  left: 100%;
  top: 100%;
}


.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  z-index: 1;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 4px;
  left: 20%;
  bottom: 0;
  background: var(--accent-color);
  border-radius: 2px;
}

.page-section {
  padding: 4rem 0;
}

.page-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  z-index: 1;
}

.page-title::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  left: 0;
  bottom: 0;
  background: var(--accent-color);
  border-radius: 2px;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  z-index: 1;
}

.pricing-title::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  left: 0;
  bottom: 0;
  background: var(--accent-color);
  border-radius: 2px;
}






.navbar {
  background-color: var(--light-color);
  padding: 1rem 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.navbar-brand span {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--dark-color);
  margin-left: 1.25rem;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--accent-color) !important;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 3px;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}









.hero-section {
  background: linear-gradient(to right, var(--primary-color), #2a3e7a);
  /* Slightly lighter primary for gradient */
  color: var(--light-color);
  padding: 100px 0;
  text-align: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  margin-bottom: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.25rem;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 30px;
}







.hero-slider {
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(27, 43, 94, 0.7), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 0 1rem;
}

.hero-slide h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--light-color);
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-slide p {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .hero-slide h1 {
    font-size: 2rem;
  }

  .hero-slide p {
    font-size: 1rem;
  }
}







/* Home text carousel */
/* --- Home Text Carousel UI --- */
#homeTextCarousel {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  padding: 1.25rem 1.25rem 2.75rem; /* space for progress bar & indicators */
}

#homeTextCarousel .carousel-inner { min-height: 230px; } /* prevents layout jump */
@media (min-width: 992px) {
  #homeTextCarousel .carousel-inner { min-height: 210px; }
}

#homeTextCarousel .carousel-item {
  transition: opacity .5s ease-in-out;
}

#homeTextCarousel .text-slide { max-width: 46rem; }
#homeTextCarousel .slide-title {
  line-height: 1.2;
  letter-spacing: .2px;
  color: var(--dark-color, #212529);
}
#homeTextCarousel .slide-body {
  line-height: 1.75;
  color: #495057;
}

#homeTextCarousel .slide-count {
  background: var(--secondary-color, #f8f9fa);
  color: #0d0f12;
  border: 1px solid rgba(0,0,0,.06);
  padding: .4rem .6rem;
  border-radius: 999px;
  font-weight: 600;
}

/* Indicators aligned left & subtle */
#homeTextCarousel .carousel-indicators.indicators-start {
  justify-content: flex-start;
  margin: 0; padding: 0;
  position: absolute; bottom: .65rem; left: 1.25rem; right: auto;
}
#homeTextCarousel .carousel-indicators [data-bs-target] {
  width: .55rem; height: .55rem; border-radius: 50%;
  background-color: rgba(0,0,0,.2);
}
#homeTextCarousel .carousel-indicators .active {
  background-color: var(--accent-color, #D1AA67);
}

/* Controls contrast */
#homeTextCarousel .carousel-control-prev,
#homeTextCarousel .carousel-control-next {
  width: 2.5rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.15));
}

/* Progress bar at bottom */
#homeTextCarousel .carousel-progress {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px; background: rgba(0,0,0,.06);
  border-bottom-left-radius: 1rem; border-bottom-right-radius: 1rem;
  overflow: hidden;
}
#homeTextCarousel .carousel-progress-bar {
  height: 100%; width: 0%;
  background: var(--accent-color, #D1AA67);
  transition: width .2s linear;
}






/* General Card Style */
.card-feature {
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.card-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Why Choose Us Section */
.why-choose .card-feature .feature-icon {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Our Services Section */
.services-preview .card-feature .feature-icon {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.services-preview .card-feature:hover .feature-icon {
  transform: scale(1.2);
  color: var(--accent-color);
}



.cta-section {
  background: linear-gradient(to right, var(--primary-color), #101e4e);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -50%;
  width: 200%;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 5%, transparent 60%);
  animation: shimmerGlow 10s linear infinite;
  z-index: 0;
}

@keyframes shimmerGlow {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}









.breadcrumb-area h2 {
  font-size: 2rem;
}

.breadcrumb a:hover {
  color: var(--accent-color);
}

.breadcrumb-area .breadcrumb-item + .breadcrumb-item::before {
  color: var(--accent-color);
}
.breadcrumb-area h1 {
  font-size: 2.5rem;
  color:#fff;
}

.breadcrumb a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}







/* Services Page */
/* === Services Section === */
.service-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background-color: var(--light-color);
  border: 1px solid #ddd;
  border-radius: 10px;
  height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-box:hover {
  border-color: var(--accent-color);
  /* box-shadow: 0 0 0 2px rgba(27, 43, 94, 0.15); */
}

.service-box .icon {
  font-size: 36px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 4px;
  transition: color 0.3s ease;
}

.service-box:hover .icon {
  color: var(--accent-color);
}

.service-box .content {
  flex: 1;
}

.service-box .title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.service-box:hover .title {
  color: var(--accent-color) !important;
}

.service-box .desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
  list-style: none;
  padding: 0;
  line-height: 34px;
}

.service-box .read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.service-box .read-more i {
  transition: transform 0.2s ease-in-out;
}

.service-box .read-more:hover {
  text-decoration: underline;
}

.service-box .read-more:hover i {
  transform: translateX(4px);
}







.footer {
  font-size: 1.05rem;
  line-height: 1.8;
  background-color: var(--dark-color);
  color: var(--light-color);
}

.footer h5,
.footer h6 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--light-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer a {
  color: var(--light-color);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.footer a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li i {
  width: 18px;
  text-align: center;
  color: var(--accent-color);
}

.footer .text-accent {
  color: var(--accent-color);
}

.footer .small {
  font-size: 0.95rem;
}

.footer .social-icons a {
  font-size: 1.25rem;
  margin-right: 1rem;
  color: var(--light-color);
}

.footer .social-icons a:hover {
  color: var(--accent-color);
}






.btn-primary, .btn-danger, .btn-info {
  width: 40px;
  height: 40px;
  text-align: center;
  padding: 8px 0;
  font-size: 16px;
}

.btn-light:hover {
  background-color: var(--accent-color);
  color: var(--dark-color);
  border-color: var(--accent-color);
}

.card-title {
  color: var(--primary-color);
}



/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader .loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #007B5E;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}