@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: 80vh;
  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;
}

/* .divider {
  position: relative;
  text-align: center;
  margin: 30px 0;
}

.divider:before,
.divider:after {
  content: "";
  display: inline-block;
  width: 30%;
  max-width: 200px;
  border-top: 1px solid #d1d9e6;
  vertical-align: middle;
}

.divider i {
  margin: 0 15px;
  color: #7a5c8d;
} */
/* =============================
   SECTION HEADING
   ============================= */
.section-heading {
  color: var(--primary);
  font-weight: 600;
  /* text-transform: uppercase; */
  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;
}

.section-heading-custom::before,
.section-heading-custom::after {
  content: "—";
  padding: 0 10px;
  color: var(--light-color);
}



/* =============================
   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(--gray);
}

#contact-us {
  background-color: whitesmoke;
  padding: 24px 0;
}


/* =============================
   FOOTER
   ============================= */

footer {
  background-color: #333333;
}

footer h5 {
  color: var(--primary);
  font-weight: bolder;
}
