/*==============================
ROOT VARIABLES
==============================*/
:root {
  --primary: #0b2046;
  --primary-dark: #0b2046;
  --secondary: #8a1538;
  --secondary-dark: #8a1538a0;
  --white: #ffffff;
  --light: #f8fafc;
  --gray: #6b7280;
  --border: #e5e7eb;
  --heading: #111827;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
  --radius: 10px;
  --transition: 0.35s ease;
  --font-family: "Inter", sans-serif;
}

body,
.navbar-custom,
.nav-link,
.topbar,
.dropdown-menu,
.custom-menu,
.dropdown-item,
.book-btn {
  font-family: var(--font-family);
}

/*==============================
TOP BAR
==============================*/
.topbar {
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}
.topbar a {
  color: #fff;
  text-decoration: none;
  margin-right: 25px;
  transition: 0.3s;
}
.topbar a:hover {
  color: var(--secondary);
}
.topbar i {
  margin-right: 8px;
}

/* Fixed Header */

#siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Top Bar */

.topbar {
  background: var(--primary);
  padding: 10px 0;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.topbar a:hover {
  color: #fff;
}

/* Navbar */

.navbar-custom {
  background: #fff;
  transition: all 0.3s ease;
}

/* Page Content Offset */

/* body{
    padding-top: 130px;
} */
.header-scrolled .topbar {
  padding: 6px 0;
}

.header-scrolled .navbar-brand img {
  height: 55px;
}

.header-scrolled .navbar-custom {
  padding-top: 8px;
  padding-bottom: 8px;
}

.navbar-brand img {
  height: 80px;
  transition: all 0.3s ease;
}
/*==============================
NAVBAR
==============================*/
.navbar-custom {
  background: #fff;
  padding: 18px 0;
  transition: 0.4s;
  z-index: 999;
}
.navbar-brand img {
  height: 65px;
}
.navbar-nav {
  gap: 15px;
}
/*==============================
MENU
==============================*/
.nav-link {
  color: var(--heading);
  font-weight: 500;
  /* padding:15px 18px !important; */
  position: relative;
  transition: 0.3s;
  font-size: 16px;
}
.nav-link:hover {
  color: var(--secondary);
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.active:hover,
.navbar-nav .dropdown-toggle.active,
.navbar-nav .dropdown-toggle.active:hover {
  color: var(--secondary);
  font-weight: 500 !important;
}

.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item.active:hover {
  color: var(--secondary);
  background-color: rgba(138, 21, 56, 0.08);
  font-weight: 600;
}
/* animated underline */
.nav-link::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: 0.4s;
}
.nav-link:hover::before,
.nav-link.active::before {
  width: 55%;
}
/*==============================
BUTTON
==============================*/
.book-btn {
  background: var(--secondary);
  color: #fff;
  border-radius: 8px;
  padding: 10px 28px;
  font-weight: 600;
  transition: 0.3s;
}
.book-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/*==============================
STICKY NAVBAR
==============================*/
/* .sticky-nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    animation:slideDown .4s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
} */
/* @keyframes slideDown{
from{
    transform:translateY(-100%);
}
to{
    transform:translateY(0);
}
} */
/*==============================
HAMBURGER
==============================*/
.navbar-toggler {
  padding: 0;
}
.menu-icon {
  width: 32px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-icon span {
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 20px;
  transition: 0.4s;
}
.navbar-toggler.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.navbar-toggler.active span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/*==============================
DROPDOWN
==============================*/
.dropdown-toggle::after {
  margin-left: 8px;
}

.custom-dropdown .custom-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}
/*==============================
RESPONSIVE
==============================*/
@media (max-width: 991px) {
  .topbar {
    display: none;
  }
  .navbar-brand img {
    height: 55px;
  }
  .navbar-collapse {
    margin-top: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }
  .navbar-nav {
    gap: 0;
  }
  .nav-link {
    padding: 14px 0 !important;
  }
  .book-btn {
    width: 100%;
    margin-top: 20px;
  }
  .dropdown-menu {
    border: none;
  }
}
/*==============================
MOBILE
==============================*/
@media (max-width: 576px) {
  .navbar {
    padding: 12px 0;
  }
  .navbar-brand img {
    height: 48px;
  }
  .nav-link {
    font-size: 15px;
  }
  .nav-link:hover::before,
  .nav-link.active::before {
    width: 30%;
    margin-left: -20px;
  }
  .book-btn {
    padding: 12px;
  }
}
@media (max-width: 991px) {
  .topbar {
    display: block;
    padding: 8px 0;
  }
  .topbar .d-flex {
    flex-direction: column;
    align-items: center !important;
    gap: 8px;
    text-align: center;
  }
  .topbar a {
    display: inline-block;
    margin: 4px 8px;
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .topbar {
    padding: 6px 0;
  }
  .topbar .d-flex {
    flex-direction: row;
    gap: 6px;
  }
  .topbar a {
    display: block;
    margin: 4px 0;
    font-size: 12px;
  }
}

/* Custom Dropdown Like Screenshot */

.custom-dropdown {
  position: relative;
}

.custom-menu {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;

  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 15px 0;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

  opacity: 0;
  /* Footer style */
}
/* Show on hover only for the About Us dropdown */
@media (min-width: 992px) {
  .custom-dropdown:hover .custom-menu,
  .custom-dropdown:focus-within .custom-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.custom-menu li {
  margin: 0;
}

.custom-menu .dropdown-item {
  padding: 10px 18px;
  text-align: left;

  font-size: 16px;
  font-weight: 500;

  color: #000000;
  background: transparent;

  transition: all 0.3s ease;
}

.custom-menu .dropdown-item:hover {
  background: rgba(138, 21, 56, 0.06);
  color: var(--secondary);
}
@media (max-width: 991px) {
  .custom-menu {
    position: static;
    display: none !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none !important;

    min-width: 100%;
    margin-top: 10px;

    background: #f8f8f8;

    border-radius: 15px;
    box-shadow: none;

    padding: 10px 0;
  }

}
@media (max-width: 991px) {

  .custom-menu {
    display: none !important;
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;

    min-width: 100%;
    margin-top: 8px;

    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: none;

    padding: 8px 0;
  }

  .custom-menu.show {
    display: block !important;
  }

  .custom-menu .dropdown-item {
    padding: 12px 20px;
    font-size: 15px;
  }

  .mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* Footer style */
/* ==========================
FOOTER
========================== */

.kbs-footer {
  background: var(--primary);
  color: #fff;
  padding-top: 80px;
}

.footer-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.footer-contact .footer-item {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.footer-contact i {
  font-size: 20px;
  color: var(--secondary);
}

.footer-contact p,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 18px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
  font-size: 18px;
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.footer-newsletter {
  display: flex;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 35px;
}

.footer-newsletter input {
  flex: 1;
  border: none;
  padding: 16px;
  outline: none;
}

.footer-newsletter button {
  border: none;
  background: var(--secondary);
  color: #fff;
  padding: 0 25px;
  font-weight: 600;
}

.follow-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 70px;
  background: #07152f;
  padding: 25px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

.footer-bottom a {
  color: #fff;
}

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

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .footer-title {
    font-size: 24px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .kbs-footer {
    padding-top: 60px;
  }

  .footer-title {
    font-size: 22px;
  }

  .footer-contact p,
  .footer-contact a,
  .footer-links a {
    font-size: 16px;
  }

  .footer-newsletter {
    flex-direction: column;
  }

  .footer-newsletter button {
    height: 55px;
  }

  .footer-social {
    justify-content: center;
  }
}

/*====================================
1000px - 1300px Responsive
====================================*/
@media (min-width: 1000px) and (max-width: 1400px) {
  .container,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 98%;
  }

  .navbar-custom {
    padding: 12px 0;
  }

  .navbar-brand {
    margin-right: 15px;
  }

  .navbar-brand img {
    height: 58px;
    width: auto;
  }

  .navbar-nav {
    gap: 6px;
    align-items: center;
  }

  .nav-link {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 6px !important;
    white-space: nowrap;
  }

  .dropdown-toggle::after {
    margin-left: 4px;
  }

  .book-btn {
    padding: 9px 18px;
    font-size: 14px;
    white-space: nowrap;
  }

  .topbar a {
    font-size: 13px;
  }
}
