/* Global Styles */
:root {
  --primary-color: #062286;
  --secondary-color: #d9a10e;
  --accent-color: #28a745;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  padding-top: 80px;
}


.bg-primary {
  background-color: var(--primary-color) !important;
}
/* Navbar Enhancements */
.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-color) !important;
}

.lang-btn {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 3px 8px;
  margin-left: 5px;
  transition: background-color 0.2s ease;
}

.lang-btn:hover {
  background-color: var(--primary-color);
  color: #fff !important;
  border-color: var(--primary-color);
}

.btn-accent {
  background-color: var(--accent-color);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 16px;
  transition: background-color 0.2s ease;
}

.btn-accent:hover {
  background-color: #218838;
  color: #fff;
}
/* Hero secton */
.hero-section {
  background-color: var(--primary-color);
  color: #ffffff;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-section h1 {
  line-height: 1.3;
}

.hero-section ul {
  padding-left: 1.2rem;
}

.hero-section .btn-light {
  background-color: #ffffff;
  color: var(--primary-color);
  border: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.hero-section .btn-light:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
/* Maps Section Styles */
#maps .btn_cont {
  display: flex;
  margin-bottom: 1rem;
}

#maps .std_btn {
  flex: 1;
  padding: 10px 15px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
  color: #495057;
}

#maps .std_btn:hover {
  background-color: #e9ecef;
}

#maps .std_btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

#maps .txt {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 1rem;
}

#maps .route a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Responsive adjustments for maps section */
@media (max-width: 768px) {
  #maps .btn_cont {
    flex-direction: column;
  }
  
  #maps .std_btn {
    margin-bottom: 10px;
  }
}

/* Hide/Show Location Sections */
.spb.txt, .spb.map, .spb_photo {
  display: block;
}

.msk.txt, .msk.map, .msk_photo {
  display: none;
}

.msk.txt.d-block, .msk.map.d-block, .msk_photo.d-block {
  display: block !important;
}

.spb.txt.d-none, .spb.map.d-none, .spb_photo.d-none {
  display: none !important;
}

/* Utility Classes */
.text-accent {
  color: var(--accent-color);
}

.bg-soft-primary {
  background-color: rgba(0, 123, 255, 0.1);
}

/* Section Global Styles */
section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

section h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

/* Hero Section Styles */
.hero-section {
  background-color: #f4f7fa;
  padding: 5rem 0;
}

.hero-section h2 {
  color: #2c3e50;
  line-height: 1.4;
}

.hero-section ul {
  list-style-type: none;
  padding-left: 0;
}

.hero-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.75rem;
}

.hero-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.hero-section img {
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

/* Services Section */
#services {
  background-color: #ffffff;
}

#services .service-item {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

#services .service-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Pricing Section */
#pricing {
  background-color: #f4f7fa;
}

#pricing .pricing-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#pricing .pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

#pricing .pricing-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

#pricing .pricing-card .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-color);
}

/* About Section */
#about {
  background-color: white;
}

#about .about-content {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
}

/* FAQ Section */
#faq .accordion-button {
  background-color: #f8f9fa;
  color: #2c3e50;
}

#faq .accordion-button:not(.collapsed) {
  background-color: rgba(0, 123, 255, 0.1);
  color: var(--primary-color);
}

/* Responsive Typography */
@media (max-width: 768px) {
  section {
    padding: 2rem 0;
  }
  
  section h2 {
    font-size: 1.75rem;
  }
}
.carousel-fixed-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}