@import url("https://fonts.googleapis.com/css2?family=Castoro+Titling&family=DM+Sans:wght@300;400;500;600;700&display=swap");
:root {
  --bg-dark: #0b2a53;
  --bg-black: #000;
  --primary-color: #1aa4b7;
  --accent-red: #e63946;
  --golden-color: #6a4f2c;
  --maroon-color: #631015;
  --text-dark: #222;
  --text-light: #fff;
}
:root {
  --cyan: #14c6d1;
  --cyan-lt: #e0f8fa;
  --navy: #000137;
  --blue: #00194c;
  --text: #3a4a6b;
  --border: #c9e8ed;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(10, 35, 80, 0.09);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/*Top-bar Section Start*/
.topbar {
  background: #18a9c6;
  overflow: visible;
}
.topbar .container-fluid {
  padding: 0 40px;
  max-width: 1620px;
}
/* .container-fluid{
  max-width: 1950px;
} */

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 13px;
  white-space: nowrap;
}
.info-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.emergency-pill {
  position: absolute;
  left: 68%;
  transform: translateX(-50%);
  width: 335px;
  height: 48px;
  background: #ef3e42;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: white;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}

.plus-icon {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/*Emergency slow glow*/
@keyframes emergencyFlash {
  0% {
    background: #ef3e42;
    color: #ffffff;
    box-shadow: 0 0 0px rgba(239, 62, 66, 0);
  }
  40% {
    background: #ef3e42;
    color: #ffffff;
    box-shadow:
      0 0 18px 6px rgba(239, 62, 66, 0.7),
      0 4px 24px 4px rgba(0, 0, 0, 0.25);
  }
  50% {
    background: #ffffff;
    color: #ef3e42;
    box-shadow:
      0 0 22px 8px rgba(255, 255, 255, 0.65),
      0 4px 28px 6px rgba(239, 62, 66, 0.35),
      0 6px 20px 2px rgba(0, 0, 0, 0.2);
  }
  90% {
    background: #ffffff;
    color: #ef3e42;
    box-shadow:
      0 0 18px 6px rgba(255, 255, 255, 0.5),
      0 4px 20px 4px rgba(239, 62, 66, 0.3);
  }
  100% {
    background: #ef3e42;
    color: #ffffff;
    box-shadow: 0 0 0px rgba(239, 62, 66, 0);
  }
}

.emergency-pill {
  animation: emergencyFlash 3s ease-in-out infinite;
  overflow: visible !important;
  z-index: 10;
}

.topbar-right a svg {
  width: 14px;
  height: 14px;
  opacity: 0.95;
  transition: 0.2s;
}

.topbar-right a:hover svg {
  opacity: 0.7;
}

.topbar-row {
  height: 48px;
  position: relative;
  overflow: visible;
}
/*Top-bar Section End*/

/*Nav-bar Section Start*/
.med-navbar {
  background: linear-gradient(135deg, #0b2a53 0%, #0b2a53 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.container-fluid {
  max-width: 1550px;
}

.nav-brand img {
  height: 100px;
  width: auto;
}

/* Desktop Menu Styles */
.nav-menu .nav-link {
  color: white !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
  border-radius: 8px;
}

.nav-menu .dropdown-menu {
  background: #00b4d8;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin-top: 0.5rem;
}

.nav-menu .dropdown-item {
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s;
}

.nav-menu .dropdown-item:hover {
  background: #02164b;
  color: white;
}

/* Phone Box Styles */
.phone-box {
  display: flex;
  align-items: center;
  gap: 12px;
  /* background: rgba(255, 255, 255, 0.15); */
  padding: 10px 20px;
  border-radius: 10px;
  color: white;
}

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

.phone-text span {
  display: block;
  font-size: 12px;
  opacity: 0.9;
}

.phone-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

/* Offcanvas Toggle Button */
.offcanvas-toggle {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s;
  /* margin-left: 50px; */
}

.offcanvas-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Offcanvas Customization */
.offcanvas {
  background: linear-gradient(135deg, #0b2a53 0%, #0b2a53 100%);
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
}

.offcanvas-title {
  color: white;
  font-weight: 700;
}

.btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

/* Offcanvas Menu Styles */
.offcanvas-body {
  padding: 1.5rem;
}

.offcanvas .nav-menu {
  flex-direction: column;
  gap: 0.5rem;
}

.offcanvas .nav-link {
  color: white !important;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
  background: rgba(255, 255, 255, 0.2);
}

.offcanvas .dropdown-menu {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  margin-left: 1rem;
  margin-top: 0.5rem;
  border-radius: 8px;
}

.offcanvas .dropdown-item {
  background: #00b4d8;
  padding: 10px 16px;
  border-radius: 6px;
  margin: 4px 0;
}

.offcanvas .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Submenu Styles */
.submenu-panel {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.offcanvas .phone-box {
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
}

/* Dropdown Arrow Rotation */
.dropdown-toggle::after{
  display: none;
}
.dropdown-toggle svg {
  transition: transform 0.3s;
}

.dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* Desktop Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/*Nav-bar Section End*/

/*Footer Section Start*/
.footer {
  background: radial-gradient(120% 120% at 100% 0%, #0d3c7d 0%, #040b3b 60%);
  color: #fff;
  padding: 90px 0 40px;
  font-family: "Inter", sans-serif;
}

.footer .container {
  max-width: 1350px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  /* gap: 14px; */
  margin-bottom: 22px;
}
.footer-brand .logo > img {
  height: 66px;
  width: auto;
  margin-bottom: -10px;
}

.footer-brand span {
  font-size: 22px;
  font-weight: 700;
}
.footer-brand small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #19c6d1;
}
.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: #cdd6e5;
  margin-bottom: 28px;
}

.socials {
  display: flex;
  gap: 14px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-col {
  cursor: pointer;
}
.footer-col:hover {
  color: #04b5d8;
}
.footer-col h4 {
  font-size: 20px;
  margin-bottom: 24px;
  position: relative;
}
.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #19c6d1;
  position: absolute;
  left: 0;
  bottom: -8px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  font-size: 15px;
  color: #cdd6e5;
  margin-bottom: 14px;
}
.hours li {
  display: flex;
  justify-content: space-between;
}
.closed {
  color: #19c6d1;
}

.footer-contact {
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin: 60px 0 40px;
}
.footer-contact .contact-item {
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-contact .contact-item:last-child {
  border-right: none;
}
.footer-contact span {
  font-size: 18px;
}
.footer-contact .foot-num {
  padding-left: 0;
  font-size: 30px;
  display: block;
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #cdd6e5;
}
.footer-bottom span {
  color: #00b4d8;
  cursor: pointer;
}
.footer-bottom .links {
  display: flex;
  gap: 30px;
  cursor: pointer;
}
.footer-bottom a {
  color: #cdd6e5;
  text-decoration: none;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 40px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #0b1a45;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
  z-index: 999;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: #14c6d1;
  color: #ffffff;
  transform: translateY(-3px);
}
.scroll-top svg {
  width: 22px;
  height: 22px;
}
.footer-col > ul > li:hover {
  color: #14c6d1;
}

/* Footer Section End*/

/*Media Queries*/

@media (max-width: 1200px) {
  /*Topbar*/
  .topbar .container-fluid {
    padding: 0;
    overflow-x: hidden;
  }

  .topbar-row {
    height: auto;
    position: static;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  /* Emergency pill — full width top row */
  .emergency-pill {
    position: static;
    transform: none;
    width: 100% !important;
    height: 44px;
    order: 1;
    justify-content: center;
    text-align: center;
  }

  /* Info left — centered row */
  .topbar-left {
    order: 2;
    justify-content: center !important;
    padding: 10px 24px !important;
    gap: 24px !important;
    flex-wrap: wrap;
  }

  /* Socials — bottom row */
  .topbar-right {
    order: 3;
    justify-content: center !important;
    padding: 8px 24px !important;
    gap: 20px !important;
    background: #1398b3;
  }
  /*Nabbar*/
  .nav-right {
    display: none;
  }
  /*Footer Section */
  .footer .container {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 992px) {
  /*Topbar*/
  .emergency-pill {
    height: 44px;
    font-size: 13px;
    gap: 10px;
    width: 100% !important;
    justify-content: center;
  }

  .topbar-left {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 !important;
  }

  .info-item {
    width: 100%;
    justify-content: center;
    padding: 11px 20px;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .topbar-right {
    padding: 11px 20px !important;
    gap: 22px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .topbar-right a svg {
    width: 18px;
    height: 18px;
  }
  /*Footer Section */
  .footer {
    padding: 60px 0 30px;
  }

  .col-brand {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 36px;
  }

  .col-service {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .footer-contact .contact-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .footer-contact .contact-item:last-child {
    border-bottom: none;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-bottom .links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /*Topbar*/
  .emergency-pill {
    height: 42px;
    font-size: 13px;
    gap: 10px;
    width: 100% !important;
    justify-content: center;
  }

  .info-item {
    padding: 10px 16px;
    font-size: 13px;
  }

  .topbar-right {
    padding: 10px 16px !important;
    gap: 22px !important;
  }
  .topbar-right a svg {
    width: 18px;
    height: 18px;
  }

  /*Footer Section */
  .col-service {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 36px;
  }
  .footer-contact .col-contact {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-contact {
    margin: 40px 0 30px;
  }
}

@media (max-width: 576px) {
  /*Topbar*/
  .emergency-pill {
    height: 40px;
    font-size: 12px;
    gap: 8px;
    width: 100% !important;
    justify-content: center;
  }
  .plus-icon {
    width: 18px;
    height: 18px;
  }

  .info-item {
    padding: 9px 14px;
    font-size: 12px;
  }

  .topbar-right {
    padding: 9px 16px !important;
    gap: 20px !important;
  }
  .topbar-right a svg {
    width: 16px;
    height: 16px;
  }

  /*Footer Section */
  .footer {
    padding: 48px 0 24px;
  }
  .col-service {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-contact .contact-item {
    padding: 20px 16px;
  }
  .footer-bottom .links {
    flex-direction: column;
  }
}

@media (max-width: 320px) {
  /*Topbar*/
  .emergency-pill {
    height: 40px;
    font-size: 11px;
    gap: 6px;
    width: 100% !important;
    justify-content: center;
  }
  .plus-icon {
    width: 16px;
    height: 16px;
  }

  .info-item {
    padding: 8px 12px;
    font-size: 11px;
  }

  .topbar-right {
    padding: 8px 16px !important;
    gap: 18px !important;
  }
  .topbar-right a svg {
    width: 16px;
    height: 16px;
  }

  /*Footer Section */
  .footer {
    padding: 36px 0 20px;
  }
  .footer-brand span {
    font-size: 18px;
  }
  .footer-col h4 {
    font-size: 17px;
  }
  .footer-contact .foot-num {
    font-size: 22px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
