@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --neutral-bg: #f5f5f5;
  --primary: #0a66c2;
  --secondary: #3f37c9;
  --text-dark: #333333;
  --text-light: #ffffff;
  --light-color: #f8f9fa;
  --primary-pink: #ffe4e6;
  --grey: #666666;
  --bg-success: #2d6a4f;
  --bg-warning: #d97706;
  --highlight: #ffd700;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 10rem;
  --accent-color: #8338ec;
  --padding-lg: 5rem;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #f1f1f1;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  background-color: var(--primary-pink);
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h5,
h6,
h4 {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  line-height: 2;
  font-size: 1.2rem;
}

/*=====================

UTILITY CLASSES

======================*/
.modal-header {
  background-color: var(--primary) !important;
  color: white !important;
}

.text-primary,
.border-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-success {
  background-color: var(--bg-success) !important;
}

.bg-burnt {
  background-color: var(--bg-warning) !important;
}

.heading-1 {
  font-size: 4rem;
  font-weight: bolder;
}

.heading-2 {
  font-size: 3.2rem;
}

.primary-button {
  background-color: var(--primary);
  color: white;
  padding: 10px 16px;
  border-radius: 12px;
}

.carousel-image {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

.carousel-item {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.owl-carousel-image {
  border-radius: 12px;
}

.section-divider {
  width: 60px;
  border: 2px solid #fff;
  margin: 0 auto 10px;
}

.card {
  border-radius: 32px !important;
}

/* =============================
   SECTION HEADING
   ============================= */
.section-heading {
  color: var(--primary);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.section-heading::before,
.section-heading::after {
  content: "—";
  padding: 0 10px;
  color: var(--primary);
}

.section-heading-custom {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  font-size: clamp(1.2rem, 3vw, 2rem); 
}

/* Decorative dashes */
.section-heading-custom::before,
.section-heading-custom::after {
  content: "—";
  padding: 0 10px;
  color: var(--light-color);
  font-size: 0.9em; 
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .section-heading-custom::before,
  .section-heading-custom::after {
    padding: 0 5px; /* reduce spacing */
    font-size: 0.7em; /* smaller dashes */
  }
}

@media (max-width: 420px) {
  .section-heading-custom::before,
  .section-heading-custom::after {
    display: none; /* hide for very small screens */
  }
}

/* =============================
   HEAD BANNER
   ============================= */
#head-banner {
  background-color: var(--primary);
  color: var(--light-color);
}

#head-banner a,
i {
  color: var(--light-color);
}

/* =============================
   CONTACT US
   ============================= */
#contact-us i {
  color: var(--primary);
}

.contact-card {
  background-color: var(--primary);
}

.contact-card button {
  background-color: var(--light-color) !important; 
  color: black !important;
  border-radius: 50px;
}


#contact-us {
  background-color: whitesmoke;
  padding: 24px 0;
}

/* =============================
   FOOTER
   ============================= */

footer {
  background-color: #333333;
}

footer h5 {
  color: var(--primary);
  font-weight: bolder;
}

/* =================
BREAD CRUMB
================*/
.hero-header {
  position: relative;
  height: 280px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0a66c2 0%, #1e88e5 50%, #42a5f5 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 102, 194, 0.3) 0%,
    rgba(10, 102, 194, 0.7) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px 20px;
}

.hero-content h1 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

.breadcrumb-wrapper {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 0;
}

.breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.breadcrumb-item {
  font-size: 0.95rem;
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #ffe4e6;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: rgba(255, 255, 255, 0.7);
  padding: 0 10px;
  font-size: 1.2rem;
}

.breadcrumb-item i {
  margin-right: 5px;
}

/* Responsive design */
@media (max-width: 768px) {
  .hero-header {
    height: auto;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .breadcrumb-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-header {
    height:auto;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }
}

