:root {
  --bs-primary: #833801;
  --bs-secondary: #30251d;
  --bs-light-bg: #d47735;
  --bs-section-bg: #f7f5f2;
  --bs-blue: #046bd2;
  --bs-body-font-family: "Inter", sans-serif;
  --bs-heading-family: "Playfair Display", serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #333333;
  --bs-body-bg: #fff;

  --bs-black-color: #000000;
}

body,
html {
  height: 100%;
}

body {
  font-size: var(--bs-body-font-size);
  font-family: var(--bs-body-font-family);
  font-weight: 300;
  line-height: 1.5;
  color: var(--bs-body-color);
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}

/* Common CSS Start */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bs-heading-family);
  margin: 0px;
  font-weight: 500;
  color: var(--bs-black-color);
  line-height: 1.2;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}

label {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--bs-body-family);
}
.btn,
.btn:hover,
.btn:focus {
  border-radius: 35px;
  padding: 12px 30px;
  font-family: var(--bs-body-family);
  font-weight: 400;
  font-size: 16px;
  backdrop-filter: blur(10px); /* blur effect */
  -webkit-backdrop-filter: blur(10px);
  background: none;
  border-color: var(--bs-primary);
  color: var(--bs-white);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-primary {
  background: var(--bs-primary);
}
.btn-primary:hover,
.btn-primary:focus {
  background: none;
  border-color: var(--bs-primary);
  color: var(--bs-primary) !important;
}

.btn-secondary {
  background: none;
  background: var(--bs-secondary);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--bs-primary);
}

input.form-control,
input.form-control:hover,
input.form-control:focus {
  min-height: 45px;
  border-radius: 8px;
  box-shadow: none;
  font-family: var(--bs-body-family);
  font-weight: 400;
  background: rgba(255, 255, 255, 0.02);
}
select.form-select,
select.form-select:hover,
select.form-select:focus {
  min-height: 45px;
  border-radius: 8px;
  box-shadow: none;
  font-family: var(--bs-body-family);
  font-weight: 400;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='white' stroke='rgb(48, 55, 120)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-color: rgba(255, 255, 255, 0.02);
}
select.form-select:focus {
  border-color: #e3e3e3 !important;
}
textarea.form-control,
textarea.form-control:hover,
textarea.form-control:focus {
  min-height: 45px;
  border-radius: 8px;
  box-shadow: none;
  font-family: var(--bs-body-family);
  font-weight: 400;
  resize: none;
  background: rgba(255, 255, 255, 0.02);
}
.mb-6 {
  margin-bottom: 100px;
}
.gx-6 {
  --bs-gutter-x: 5rem;
}
a,
a:hover,
a:focus {
  text-decoration: none;
  transition: all 0.35s ease-in-out;
  color: var(--bs-body-color);
}
.card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}
hr {
  color: var(--bs-white);
}

.heading-ttl {
  margin-bottom: 30px;
}
.heading-ttl small {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--bs-secondary);
  margin-bottom: 10px;
  display: block;
}
.heading-ttl h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}
.heading-ttl h2 span {
  color: var(--bs-primary);
}
strong {
  color: var(--bs-black-color);
}
.g-4,
.gx-4 {
  --bs-gutter-x: 40px;
}
.gap-4 {
  gap: 30px !important;
}

img {
  border-radius: 16px;
}
p {text-align:justify;}
/* Header Section CSS Start */
header .navbar {
  background: #f5f5f5;
}
/* common nav link */
.navbar .navbar-nav .nav-link {
  color: var(--bs-black-color);
  font-size: 14px;
  padding: 0px 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
}

/* underline for NORMAL links */
.navbar .navbar-nav .nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--bs-primary);
  transition: width 0.35s ease;
}

.navbar .navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar .navbar-nav .nav-link:not(.dropdown-toggle):focus::after {
  width: calc(100% - 36px);
}

/* underline for DROPDOWN link (using ::before to avoid conflict) */
.navbar .navbar-nav .dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--bs-primary);
  transition: width 0.35s ease;
}

.navbar .navbar-nav .dropdown-toggle:hover::before,
.navbar .navbar-nav .dropdown-toggle:focus::before {
  width: calc(100% - 36px);
}

/* dropdown arrow alignment */
.navbar .navbar-nav .dropdown-toggle {
  display: inline-flex;
  align-items: center;
}

.dropdown-toggle::after {
  display: none;
}
.navbar .navbar-nav .dropdown-toggle i {
  margin-left: 8px;
  font-size: 12px;
}
/* color hover */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus {
  color: var(--bs-black-color);
}

.navbar a {
  color: var(--bs-white);
}
.navbar ul.dropdown-menu {
  padding: 0px;
  border-radius: 10px;
  overflow: hidden;
}
.navbar a.dropdown-item {
  color: var(--bs-black-color);
  padding: 10px 20px;
}
.navbar a.dropdown-item:hover,
.navbar a.dropdown-item:focus {
  background: var(--bs-light-bg);
  color: var(--bs-white);
}

/* ========== ACTIVE LINK UNDERLINE ========== */
.navbar .navbar-nav .nav-link.active::after,
.navbar .navbar-nav .nav-link.active::before {
  width: calc(100% - 36px);
}

/* ========== DROPDOWN OPEN STATE ========== */
.navbar .navbar-nav .dropdown.show > .dropdown-toggle::before {
  width: calc(100% - 36px);
}

/* ========== MOBILE DISABLE UNDERLINE ========== */
@media (max-width: 991px) {
  .navbar .navbar-nav .nav-link::after,
  .navbar .navbar-nav .dropdown-toggle::before {
    display: none;
  }
}

header .contact .btn {
  color: var(--bs-white);
}

.fixed-header .navbar {
  background: var(--bs-white);
  box-shadow:
    rgba(14, 63, 126, 0.04) 0px 0px 0px 1px,
    rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px,
    rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
    rgba(42, 51, 70, 0.04) 0px 6px 6px -3px,
    rgba(14, 63, 126, 0.04) 0px 12px 12px -6px,
    rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}
.fixed-header .navbar .nav-link {
  color: var(--bs-black-color);
}

.fixed-header .navbar .nav-link:hover,
.fixed-header .navbar .nav-link:focus {
  color: var(--bs-black-color);
}

/* Hero Banner Section CSS Start */
.hero-slider {
  position: relative;
}
.hero-slider .carousel-item {
  position: relative;
  height: 100vh;
}

.carousel-indicators {
  z-index: 1000;
}
.carousel-indicators button.active {
  background-color: var(--bs-primary);
}

.hero-slider img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: bottom;
  border-radius: 0px;
}
/* .hero-slider .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  z-index: 1;
} */
.carousel-caption {
  top: 0;
  bottom: 0;
  left: 0;
  text-align: left;
  max-width: 700px;
  inset: 0;
  z-index: 2;
  padding-top: 5rem;
  display: none;
}

.carousel-caption h1 {
  font-size: 60px;
  color: var(--bs-white);
  margin-bottom: 30px;
}
.carousel-caption h1 span {
  color: var(--bs-secondary);
}
.carousel-caption h3 {
  color: var(--bs-primary);
}
.carousel-caption a i {
  margin-left: 10px;
}

.carousel-caption p {
  font-size: 1.1rem;
  margin-top: 10px;
}

.hero-slider video.hero-video {
  height: 100%;
  object-fit: cover;
}

/* Program Section CSS Start */
.program-sec .swiper img {
  height: 200px;
  object-fit: cover;
}
/* About Section CSS Start */
.abt-sec {
  background: var(--bs-section-bg);
  padding: 50px 0px;
}
/* What We Offer Section CSS Star */
.offer-sec .swiper img {
  height: 200px;
  object-fit: cover;
}
/* About Page CSS Start */
/* Common Banner Section CSS Start */
.common-banner {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.common-banner .banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Who We Are Page CSS Start */
.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
}
.swiper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Gallery Page CSS Start */
.gallery-section {
  padding: 80px 0;
}

.gallery-swiper {
  padding-bottom: 50px;
}

.gallery-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.gallery-swiper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

/* center slide highlight */
.gallery-swiper .swiper-slide-active {
  transform: scale(1.05);
}

/* dots */
.gallery-pagination {
  bottom: 0 !important;
}

.gallery-pagination .swiper-pagination-bullet {
  background: #d0d0d0;
  opacity: 1;
}

.gallery-pagination .swiper-pagination-bullet-active {
  background: var(--bs-primary);
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-swiper img {
    height: 220px;
  }
}

/* Blog Listing Page CSS Start */
.blog-box h4 {
  margin-top: 16px;
  margin-bottom: 12px;
}
.blog-box small {
  margin-bottom: 16px;
  display: block;
  color: var(--bs-blue);
  font-weight: 500;
}
.blog-box span {
  color: var(--bs-blue);
  font-weight: 500;
}
.blog-box figure img {
  height: 250px;
  object-fit: cover;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
/* Blog Detail Page CSS Start */
.next-prev-box a {
  text-transform: uppercase;
}
/* Upcoming Events Section CSS Start */
.event-box, .event-box p {text-align:center;}
.event-box img {
  height: 250px;
  object-fit: cover;
}
/* Footer Section CSS Start */

footer {
  background: var(--bs-section-bg);
  padding: 50px 0 0px 0px;
}
footer ul {
  margin-bottom: 0px;
}
footer ul li a {
  font-size: 14px;
}
footer i {
  margin-right: 8px;
  color: var(--bs-secondary);
}
i.fa-phone {
  transform: rotate(90deg) !important;
}
footer a,
footer a:hover,
footer a:focus {
  text-decoration: none;
  color: var(--bs-secondary);
}

.footer-bottom {
  background: #1c244b;
  padding: 10px 0px;
  margin-top: 20px;
  color: var(--bs-white);
}

.social-icons li a {
  width: 35px;
  height: 35px;
  background: var(--bs-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bs-white) !important;
  font-size: 14px;
  transition: all 0.3s ease;
}
.social-icons li a i {
  margin-right: 0px;
  color: var(--bs-white);
}
