
/* Global Styles */
:root {
  --primary-color: #0a2463;
  --secondary-color: #e6b31e;
  --accent-color: #3BAFDA;
  --dark-color: #212529;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Montserrat', sans-serif;
}

body {
  font-family: var(--body-font);
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #071a4a;
  border-color: #071a4a;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

.text-primary {
  color: var(--primary-color) !important;
}

/* Top Bar */
.top-bar {
  font-size: 0.9rem;
}

.top-bar i {
  color: var(--secondary-color);
}

.top-bar a:hover {
  opacity: 0.8;
}

/* Navbar */
.navbar {
  padding: 15px 0;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
}

.brand-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--gray-color);
  letter-spacing: 0.5px;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
  left: 15%;
}

/* Hero Section */
.hero-section {
  background: url('https://images.unsplash.com/photo-1563986768817-257bf91c5f9e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
  height: 460px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.9) 0%, rgba(10, 36, 99, 0.7) 100%);
}

/* Page Headers */
.page-header {
  background-color: #f5f5f5;
  padding: 80px 0;
  margin-bottom: 0;
  position: relative;
}

.about-header {
  background: url('images/header.jpg') center/cover no-repeat;
  position: relative;
}

.about-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.services-header {
  background: url('https://images.unsplash.com/photo-1600880292089-90a7e086ee0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
  position: relative;
}

.services-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.contact-header {
  background: url('images/contact.jpg') center/cover no-repeat;
  position: relative;
}

.contact-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.page-header h1 {
  font-size: 2.5rem;
  color: white;
  position: relative;
}

.page-header .breadcrumb {
  background: transparent;
  position: relative;
}

.page-header .breadcrumb-item a {
  color: var(--secondary-color);
}

.page-header .breadcrumb-item.active {
  color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: white;
}

/* Feature Cards */
.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f8ff;
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 2rem;
}

/* Service Cards */
.service-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f8ff;
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 2.5rem;
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.service-features li {
  margin-bottom: 8px;
}

.service-icon-sm {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f8ff;
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.additional-service h4 {
  margin-bottom: 10px;
}

/* Value Cards */
.value-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f8ff;
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 2rem;
}

/* Why Choose Us */
.why-choose-us {
  background-color: #f8f9fa;
}

.icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8f4ff;
  color: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Mission & Vision Cards */
.mission-card, .vision-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-color);
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--secondary-color);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Testimonials */
.testimonial-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonial-content {
  position: relative;
  padding: 10px 0;
}

.testimonial-content::before {
  content: '\201C';
  font-size: 4rem;
  color: #e6e6e6;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
}

.avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* About Page Styles */
.about-image {
  position: relative;
}

.experience-badge {
  position: absolute;
  bottom: -15px;
  right: 30px;
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge .number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.75rem;
}

/* Counter Boxes */
.counter-box {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
  position: relative;
}

.counter::after {
  content: '+';
  position: absolute;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
}

/* Contact Form */
.contact-form-container {
  height: 100%;
}

.form-label {
  font-weight: 500;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(10, 36, 99, 0.25);
}

/* Map Container */
.map-container {
  background-color: white;
  padding: 20px;
  height: 100%;
}

.office-hours {
  padding-left: 0;
}

.office-hours li {
  padding: 5px 0;
  border-bottom: 1px dashed #e6e6e6;
}

.office-hours li:last-child {
  border-bottom: none;
}

/* Contact Info Cards */
.contact-info-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f8ff;
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 2rem;
}

/* Call To Action Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a8f 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -75px;
  right: -75px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
}

/* Footer */
footer a:hover {
  text-decoration: underline !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-section {
    height: 500px;
  }

  .experience-badge {
    width: 80px;
    height: 80px;
  }

  .experience-badge .number {
    font-size: 1.5rem;
  }

  .experience-badge .text {
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 0;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .hero-section {
    height: 400px;
  }

  .counter {
    font-size: 2rem;
  }

  .counter::after {
    font-size: 1.5rem;
  }

  .experience-badge {
    right: 20px;
    bottom: -10px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 350px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 0.5s ease forwards;
}

/* Modal Styles */
.modal-header {
  background-color: var(--primary-color);
  color: white;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}
.indexz {
  z-index: 1;
}