/* =====================================================
   PROFESSIONAL MODERN HEADER & FOOTER STYLES
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-color: #17a8a8;
  --primary-dark: #0d8787;
  --primary-light: #26d4d4;
  --secondary-color: #2c3e50;
  --accent-color: #f39c12;
  --dark-bg: #1a2a2e;
  --light-bg: #f0fffe;
  --white: #ffffff;
  --text-dark: #0d3d3d;
  --text-light: #4a7d7d;
  --text-subtle: #7a9999;
  --border-color: #c8e5e5;
  --shadow-sm: 0 2px 8px rgba(23, 168, 168, 0.08);
  --shadow-md: 0 4px 16px rgba(23, 168, 168, 0.12);
  --shadow-lg: 0 8px 24px rgba(23, 168, 168, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Poppins', 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
}

/* =====================================================
   GLOBAL TYPOGRAPHY
   ===================================================== */
body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 400;
}

body, p, li, span {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.2px;
}
/* =====================================================
   TOP BAR STYLING
   ===================================================== */
.top-bar {
  background: linear-gradient(135deg, #0d3d3d 0%, #1a5a5a 100%);
  padding: 14px 0;
  border-bottom: 3px solid var(--primary-color);
}

.top-info {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  justify-content: center;
}

.top-info li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-info i {
  color: var(--primary-color);
  font-size: 18px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-text {
  color: var(--white);
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.info-text a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.info-text a:hover {
  color: var(--primary-light);
  border-bottom-color: var(--primary-color);
}

/* =====================================================
   HEADER STYLING
   ===================================================== */
#header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 20px 0;
  transition: var(--transition);
  position: relative;
  z-index: 100;
}

#header.sticky {
  padding: 12px 0;
  box-shadow: var(--shadow-lg);
}

.header-one {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  flex: 0 0 50%;
  padding: clamp(6px, 1.2vw, 12px) clamp(12px, 1.8vw, 24px);
  padding-left: clamp(15px, 3.5vw, 45px);
  max-width: 50%;
}

.logo img {
  /* Fully responsive sizing across all screen sizes */
  height: clamp(28px, 4.5vw, 55px);
  width: auto;
  transition: all 0.3s ease;
  object-fit: contain;
  margin-left: 13%;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-left: auto;
}

.logo a:hover img {
  transform: scale(1.08);
  opacity: 0.95;
}

/* Info Box Container */
.top-info-box {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
  justify-content: flex-end;
}

.top-info-box li {
  display: flex;
  align-items: center;
  min-width: fit-content;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(0, 102, 204, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.info-box:hover {
  background: rgba(0, 102, 204, 0.1);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.info-box i {
  color: var(--primary-color);
  font-size: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  border-radius: 6px;
}

.info-box-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-box-title {
  margin: 0;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.info-box-subtitle {
  margin: 0;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
}

.header-get-a-quote {
  display: flex;
  align-items: center;
}

.header-get-a-quote .btn {
  background: linear-gradient(135deg, #17a8a8, #0d8787);
  border: none;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 6px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(23, 168, 168, 0.3);
  text-transform: capitalize;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--white);
}

.header-get-a-quote .btn:hover {
  background: linear-gradient(135deg, #26d4d4, #17a8a8);
  box-shadow: 0 8px 20px rgba(23, 168, 168, 0.4);
  transform: translateY(-2px);
  color: #0d3d3d;
}

/* =====================================================
   PREMIUM NAVIGATION BAR STYLING (NEW LOGO IN NAVBAR)
   ===================================================== */
.navbar-premium {
  background: #ffffff !important;
  padding: 5px 0 !important;
  position: relative;
  border-bottom: 3px solid #17a8a8;
  box-shadow: 0 4px 15px rgba(23, 168, 168, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: auto;
}

.navbar-premium.sticky {
  padding: 4px 0 !important;
  box-shadow: 0 6px 25px rgba(23, 168, 168, 0.15);
  border-bottom-width: 4px;
}

.navbar-premium .navbar-brand {
  font-size: 18px;
  font-weight: 700;
  color: #0d3d3d !important;
  padding: 0 16px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  flex-shrink: 0;
}

.navbar-premium .navbar-brand:hover {
  color: #17a8a8 !important;
  transform: scale(1.03);
}

.navbar-premium .navbar-brand img {
  height: 30px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(23, 168, 168, 0.1));
}

.navbar-premium .navbar-brand:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 8px rgba(23, 168, 168, 0.2));
}

.navbar-premium .navbar-brand > span {
  display: none !important;
}

/* Navbar Collapse Menu */
.navbar-premium .navbar-collapse {
  display: none !important;
}

.navbar-premium .navbar-nav {
  display: flex;
  gap: 0;
  margin: 0;
  width: 100%;
  justify-content: center;
}

.navbar-premium .nav-item {
  position: relative;
}

.navbar-premium .nav-link {
  color: #0d3d3d !important;
  padding: 10px 18px !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
  line-height: 1.2;
}

.navbar-premium .nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #17a8a8, #26d4d4);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.navbar-premium .nav-link:hover {
  color: #17a8a8 !important;
  background: rgba(23, 168, 168, 0.08);
  border-radius: 4px;
}

.navbar-premium .nav-link:hover::after {
  width: 80%;
}

.navbar-premium .nav-link i {
  font-size: 15px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-premium .nav-link:hover i {
  transform: scale(1.15) rotate(5deg);
  color: #17a8a8;
}

.navbar-premium .nav-item.active .nav-link {
  color: #17a8a8 !important;
  font-weight: 700;
  background: rgba(23, 168, 168, 0.12);
  border-radius: 4px;
}

.navbar-premium .nav-item.active .nav-link::after {
  width: 80%;
  box-shadow: 0 2px 8px rgba(23, 168, 168, 0.3);
}

/* Premium Button in Navbar */
.navbar-premium .btn-primary.btn-premium {
  background: linear-gradient(135deg, #17a8a8, #0d8787) !important;
  border: 2px solid #17a8a8 !important;
  color: #ffffff !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  font-size: 13px;
  border-radius: 6px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 12px rgba(23, 168, 168, 0.2) !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  white-space: nowrap;
  letter-spacing: 0.3px;
  margin-left: 12px;
  line-height: 1.2;
}

.navbar-premium .btn-primary.btn-premium:hover {
  background: linear-gradient(135deg, #26d4d4, #17a8a8) !important;
  border-color: #26d4d4 !important;
  box-shadow: 0 8px 24px rgba(23, 168, 168, 0.35) !important;
  transform: translateY(-3px) !important;
}

.navbar-premium .btn-primary.btn-premium:active {
  transform: translateY(-1px) !important;
}

.navbar-premium .btn-icon {
  display: flex;
  align-items: center;
  font-size: 13px;
}

.navbar-premium .btn-text {
  display: inline;
}

/* Mobile Navigation Toggler */
.navbar-premium .navbar-toggler {
  border: 2px solid #17a8a8 !important;
  padding: 4px 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: 8px;
  display: none !important;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  min-width: 40px;
  min-height: 40px;
}

.navbar-premium .navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(23, 168, 168, 0.2);
  border-color: #26d4d4 !important;
}

.navbar-premium .navbar-toggler:hover {
  background-color: rgba(23, 168, 168, 0.1);
  border-color: #26d4d4 !important;
}

.navbar-premium .navbar-toggler:active {
  background-color: rgba(23, 168, 168, 0.15);
}

.navbar-premium .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2317a8a8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 24px !important;
  height: 24px !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.navbar-premium .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317a8a8' stroke-width='2.5'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e") !important;
}

/* Navbar Container for mobile */
.navbar-premium .container {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Ensure proper collapse behavior */
.navbar-premium .navbar-collapse {
  display: none !important;
}

.navbar-premium .navbar-collapse.show {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  order: 3;
}

.navbar-premium .navbar-collapse.collapsing {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
}

/* Responsive Navbar for Tablets and Mobile */
@media (max-width: 1200px) {
  .navbar-premium .nav-link {
    padding: 10px 14px !important;
    font-size: 13px;
  }

  .navbar-premium .btn-primary.btn-premium {
    padding: 8px 16px !important;
    font-size: 12px;
  }
}

/* LARGE SCREENS - 992px and above (Desktop) */
@media (min-width: 992px) {
  .navbar-premium {
    padding: 10px 0 !important;
  }

  .navbar-premium .navbar-brand img {
    height: 36px;
  }

  .navbar-premium .navbar-collapse {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 1;
  }

  .navbar-premium .navbar-toggler {
    display: none !important;
  }

  .navbar-premium .nav-link {
    padding: 12px 22px !important;
    font-size: 15px;
  }

  .navbar-premium .btn-primary.btn-premium {
    padding: 10px 26px !important;
    font-size: 14px;
  }
}

/* TABLETS - 768px to 991px */
@media (max-width: 991px) {
  .navbar-premium {
    padding: 8px 0 !important;
  }

  .navbar-premium .container {
    padding: 0 12px !important;
    flex-wrap: wrap;
  }

  .navbar-premium .navbar-brand {
    padding: 0 12px !important;
    order: 2;
    flex: 1;
  }

  .navbar-premium .navbar-brand img {
    height: 32px;
  }

  .navbar-premium .navbar-toggler {
    display: flex !important;
    order: 1;
    margin-right: 0;
    margin-left: 0;
  }

  .navbar-premium .navbar-collapse {
    order: 3;
    flex-direction: column;
    align-items: stretch !important;
    margin-top: 8px;
    background: rgba(23, 168, 168, 0.05);
    border-top: 2px solid #e0f2f2;
    padding: 8px 0;
    width: 100%;
    display: none !important;
  }

  .navbar-premium .navbar-collapse.show {
    display: flex !important;
  }

  .navbar-premium .navbar-nav {
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    width: 100%;
    margin: 0 !important;
  }

  .navbar-premium .nav-item {
    width: 100%;
    border-bottom: 1px solid #e0f2f2;
  }

  .navbar-premium .nav-link {
    padding: 12px 20px !important;
    text-align: left !important;
    justify-content: flex-start !important;
    background: transparent !important;
    font-size: 14px;
  }

  .navbar-premium .nav-link::after {
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    border-radius: 0;
    transform: none;
  }

  .navbar-premium .nav-link:hover::after {
    width: 4px;
    height: 100%;
  }

  .navbar-premium .nav-item.active .nav-link {
    background: rgba(23, 168, 168, 0.15) !important;
    border-left: 4px solid #17a8a8;
    padding-left: 16px !important;
  }

  .navbar-premium .nav-item.active .nav-link::after {
    width: 4px;
    height: 100%;
    bottom: 0;
    left: 0;
  }

  .navbar-premium .btn-primary.btn-premium {
    margin: 10px 16px;
    width: calc(100% - 32px);
    padding: 10px 20px !important;
    font-size: 13px;
  }
}

/* MOBILE - up to 767px */
@media (max-width: 767px) {
  .navbar-premium {
    padding: 6px 0 !important;
  }

  .navbar-premium .container {
    padding: 0 10px !important;
  }

  .navbar-premium .navbar-brand {
    padding: 0 10px !important;
  }

  .navbar-premium .navbar-brand img {
    height: 30px;
  }

  .navbar-premium .navbar-toggler {
    padding: 3px 6px;
    min-width: 38px;
    min-height: 38px;
  }

  .navbar-premium .navbar-toggler-icon {
    width: 22px !important;
    height: 22px !important;
  }

  .navbar-premium .navbar-collapse {
    display: none !important;
  }

  .navbar-premium .nav-link {
    padding: 11px 18px !important;
    font-size: 13px;
  }

  .navbar-premium .btn-primary.btn-premium {
    margin: 8px 16px;
    width: calc(100% - 32px);
    padding: 9px 18px !important;
    font-size: 12px;
  }
}

/* SMALL MOBILE - up to 576px */
@media (max-width: 576px) {
  .navbar-premium {
    padding: 6px 0 !important;
  }

  .navbar-premium .container {
    gap: 6px;
    padding: 0 8px !important;
  }

  .navbar-premium .navbar-brand {
    padding: 0 6px !important;
  }

  .navbar-premium .navbar-brand img {
    height: 28px;
  }

  .navbar-premium .navbar-toggler {
    padding: 3px 5px;
    border-width: 1.5px !important;
    min-width: 36px;
    min-height: 36px;
  }

  .navbar-premium .navbar-toggler-icon {
    width: 20px !important;
    height: 20px !important;
  }

  .navbar-premium .navbar-collapse {
    margin-top: 6px;
    padding: 6px 0;
    display: none !important;
  }

  .navbar-premium .nav-link {
    padding: 10px 16px !important;
    font-size: 12px;
  }

  .navbar-premium .nav-link i {
    font-size: 13px;
  }

  .navbar-premium .btn-primary.btn-premium {
    margin: 8px 12px;
    width: calc(100% - 24px);
    padding: 8px 14px !important;
    font-size: 11px;
    gap: 4px !important;
  }

  .navbar-premium .btn-icon {
    font-size: 11px;
  }

  .navbar-premium .nav-item {
    border-bottom: 1px solid #f0f0f0;
  }
}

/* EXTRA SMALL MOBILE - up to 480px */
@media (max-width: 480px) {
  .navbar-premium {
    padding: 5px 0 !important;
  }

  .navbar-premium .container {
    padding: 0 6px !important;
  }

  .navbar-premium .navbar-brand {
    padding: 0 4px !important;
  }

  .navbar-premium .navbar-brand img {
    height: 24px;
  }

  .navbar-premium .navbar-toggler {
    padding: 2px 4px;
    min-width: 34px;
    min-height: 34px;
  }

  .navbar-premium .navbar-toggler-icon {
    width: 18px !important;
    height: 18px !important;
  }

  .navbar-premium .nav-link {
    padding: 9px 14px !important;
    font-size: 11px;
  }

  .navbar-premium .btn-primary.btn-premium {
    padding: 7px 12px !important;
    font-size: 10px;
    margin: 6px 10px;
    width: calc(100% - 20px);
  }
}

/* =====================================================
   NAVIGATION STYLING
   ===================================================== */
.site-navigation {
  background: linear-gradient(135deg, #17a8a8 0%, #0d8787 100%);
  padding: 0;
  position: relative;
  border-bottom: 3px solid #0d8787;
  box-shadow: 0 6px 25px rgba(13, 135, 135, 0.2);
}

.site-navigation .navbar {
  padding: 0;
}

.site-navigation .container {
  padding: 0 15px;
}

.navbar-nav {
  display: flex;
  gap: 0;
  margin-left: auto;
  width: auto;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link {
  color: #232323;
  padding: 14px 42px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-bottom: 3px solid transparent;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
}

.navbar-nav .nav-link i {
  font-size: 18px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #26d4d4, #4effff, #26d4d4);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover {
  color: #f2ecec;
  background: rgba(38, 212, 212, 0.12);
  text-shadow: 0 1px 2px rgba(13, 135, 135, 0.15);
  font-weight: 700;
}

.navbar-nav .nav-link:hover i {
  transform: scale(1.15);
}

.navbar-nav .nav-link:hover::before {
  width: 100%;
  box-shadow: 0 2px 6px rgba(38, 212, 212, 0.4);
}

.navbar-nav .nav-item.active .nav-link {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(38, 212, 212, 0.25) 0%, rgba(26, 180, 180, 0.15) 100%);
  border-bottom-color: transparent;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(13, 135, 135, 0.2);
}

.navbar-nav .nav-item.active .nav-link::before {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1abc9c, #26d4d4, #1abc9c);
  box-shadow: 0 2px 8px rgba(26, 212, 212, 0.7);
}

/* =====================================================
   RESPONSIVE NAVIGATION - MOBILE DESIGN
   ===================================================== */
@media (max-width: 991px) {
  /* .navbar-collapse {
  } */

  .navbar-nav {
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-nav .nav-link {
    padding: 14px 24px;
    text-align: left;
    justify-content: flex-start;
    border-bottom: none;
  }

  .navbar-nav .nav-link::before {
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(38, 212, 212, 0.3), transparent);
    transition: width 0.3s ease;
  }

  .navbar-nav .nav-link:hover::before {
    width: 100%;
  }

  .navbar-nav .nav-item.active .nav-link {
    background: rgba(38, 212, 212, 0.2);
    box-shadow: inset 4px 0 0 #26d4d4;
    color: #ffffff;
  }

  .navbar-nav .nav-item.active .nav-link::before {
    width: 100%;
    height: 100%;
    box-shadow: none;
    background: linear-gradient(90deg, rgba(38, 212, 212, 0.3), transparent);
  }
}

@media (max-width: 768px) {
  .navbar-nav .nav-link {
    padding: 12px 20px;
    font-size: 15px;
  }

  .site-navigation {
    padding: 0;
  }

  .navbar-toggler {
    padding: 6px 8px;
    border: 2px solid var(--primary-light);
  }
}

@media (max-width: 576px) {
  .navbar-nav .nav-link {
    padding: 12px 16px;
    font-size: 14px;
  }

  .navbar-nav .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar-nav .nav-item.active .nav-link {
    box-shadow: inset 4px 0 0 #26d4d4;
  }
}

/* Mobile Navigation Toggler */
.navbar-toggler {
  border: 2px solid var(--primary-color);
  padding: 6px 10px;
  transition: var(--transition);
  margin-right: 0;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(28, 188, 156, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:hover {
  background: rgba(0, 102, 204, 0.1);
  border-color: var(--primary-light);
}

/* Collapse Animation */
.navbar-collapse {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   FOOTER STYLING
   ===================================================== */
.footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #0f1820 100%);
  color: var(--white);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.footer {
  background: linear-gradient(135deg, #1a2332 0%, #253345 100%);
  color: var(--white);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-widget {
  margin-bottom: 50px;
  padding: 0 20px;
}

.footer-widget h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-left: 3px solid transparent;
  padding-left: 10px;
}

.footer-widget ul li a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}

.footer-widget ul li a:hover {
  color: var(--primary-light);
  border-left-color: var(--primary-color);
  padding-left: 12px;
}

.footer-widget ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Info Styling */
.footer-widget strong {
  color: var(--primary-light);
  font-weight: 600;
}

.footer-widget a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-widget a:hover {
  text-decoration: underline;
  letter-spacing: 0.5px;
}

/* Copyright Section */
.copyright {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.copyright-info {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  letter-spacing: 0.3px;
}

.footer-menu {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  position: relative;
}

.footer-menu li:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -8px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-menu li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  padding: 0 16px;
  transition: var(--transition);
  display: inline-block;
}

.footer-menu li a:hover {
  color: var(--primary-light);
}

/* =====================================================
   BACK TO TOP BUTTON
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 99;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--primary-dark), #117a65);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28, 188, 156, 0.3);
}

.back-to-top button,
.back-to-top button:focus {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.back-to-top button:hover {
  transform: scale(1.1);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Tablet (768px and up) */
@media (max-width: 991px) {
  .top-info {
    gap: 15px;
    justify-content: center;
  }

  .top-info li {
    flex: 0 1 auto;
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    flex: 0 0 50%;
    padding: 20px 40px;
    padding-left: 65px;
    max-width: 60%;
  }

  .logo img {
    height: clamp(50px, 3.5vw, 44px);
    /* height: clamp(32px, 4vw, 50px); */
    width: auto;
    transition: all 0.3s ease;
    object-fit: contain;
    margin-left: -15%;
  }

  .top-info-box {
    gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
  }

  .top-info-box li {
    min-width: auto;
  }

  .info-box {
    gap: 12px;
    padding: 10px 12px;
    flex: 1 1 auto;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0;
  }

  .navbar-nav .nav-link {
    padding: 12px 16px;
    border-bottom: none;
  }

  .navbar-nav .nav-link::before {
    display: none;
  }

  .navbar-nav .nav-item.active .nav-link {
    background: rgba(28, 188, 156, 0.2);
    border-left: 4px solid var(--primary-color);
    border-bottom: none;
    padding-left: 12px;
  }
}

/* Mobile (576px and up) */
@media (max-width: 576px) {
  .top-bar {
    padding: 12px 0;
  }

  .top-info {
    gap: 10px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .top-info li {
    justify-content: center;
  }

  .info-text {
    font-size: 13px;
  }

  #header {
    padding: 12px 0;
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    flex: 0 0 50%;
    padding: 40px 600px;
    padding-left: 40px;
    max-width: 40%;
  }

  .logo img {
    /* height: clamp(25px, 3vw, 34px); */
    height: clamp(45px, 3vw, 34px);
    margin-left: 25%;
  }

  .top-info-box {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    gap: 8px;
  }

  .info-box {
    gap: 8px;
    padding: 8px 10px;
    flex: 1 1 auto;
    min-width: 100px;
  }

  .info-box i {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .info-box-title {
    font-size: 11px;
  }

  .info-box-subtitle {
    font-size: 13px;
  }

  .header-get-a-quote {
    display: none;
  }

  .navbar-nav .nav-link {
    font-size: 12px;
    padding: 10px 14px;
  }

  .footer-widget {
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .footer-widget h4 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer-menu {
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    text-align: center;
  }

  .footer-menu li:not(:last-child)::after {
    display: none;
  }

  .footer-menu li a {
    padding: 4px 0;
  }

  .back-to-top {
    bottom: 20px;
    right: 15px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .copyright {
    padding: 20px 0;
  }

  .copyright-info {
    font-size: 12px;
    text-align: center;
    margin-bottom: 12px;
  }
}

/* Extra Small Mobile (360px and up) */
@media (max-width: 360px) {
  .top-info {
    gap: 8px;
  }

  .info-text {
    font-size: 12px;
  }

  .navbar-nav .nav-link {
    font-size: 11px;
    padding: 8px 10px;
  }

  .footer-widget h4 {
    font-size: 14px;
  }

  .footer-widget p,
  .footer-widget ul li a {
    font-size: 13px;
  }
}

/* =====================================================
   ANIMATIONS & TRANSITIONS
   ===================================================== */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#header {
  animation: fadeInDown 0.6s ease-out;
}

.footer {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

@media (max-width: 768px) {
  #header {
    padding: 15px 0;
  }
  
  .top-info-box {
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
  }
  
  .navbar-nav .nav-link {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .footer-widget {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  #header {
    padding: 12px 0;
  }
  
  .top-info {
    gap: 16px;
    flex-direction: column;
  }
  
  .top-info-box {
    flex-direction: column;
    gap: 10px;
  }
  
  .info-box {
    padding: 10px 12px;
    gap: 12px;
  }
  
  .navbar-nav .nav-link {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .info-box-title {
    font-size: 11px;
  }
  
  .info-box-subtitle {
    font-size: 13px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
  
  .footer-widget h4 {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

/* ==============================================
   RESPONSIVE BANNER OPTIMIZATION
   ============================================== */

/* Banner Carousel - Index Page Slider */
.banner-carousel,
.banner-carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-carousel-item {
  min-height: clamp(250px, 40vw, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-attachment: fixed;
  overflow: hidden;
}

/* Fallback aspect ratio for modern browsers */
@supports (aspect-ratio: 1) {
  .banner-carousel-item {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }
}

/* Static Banner - Other Pages */
#banner-area {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: clamp(250px, 40vw, 500px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Aspect ratio for modern browsers */
@supports (aspect-ratio: 1) {
  #banner-area {
    aspect-ratio: auto;
    /* min-height: auto; */
  }
}

/* Banner Text Content Styling */
.banner-text {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.banner-heading {
  color: white;
}

.banner-title {
  font-size: clamp(1.8rem, 10vw, 4rem);
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
}

/* Breadcrumb styling in banner */
.banner-heading nav {
  margin-top: clamp(10px, 2vw, 20px);
}

.banner-heading .breadcrumb {
  background: transparent;
  padding: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.banner-heading .breadcrumb-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.75rem, 4vw, 1.5rem);
}

.banner-heading .breadcrumb-item.active {
  color: white;
  font-weight: 600;
}

.banner-heading .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.banner-heading .breadcrumb-item a:hover {
  color: white;
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .banner-carousel-item,
  #banner-area {
    background-attachment: scroll; /* Disable parallax on mobile for better performance */
  }
  
  .banner-title {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
}

/* ==============================================
   GALLERY GRID - ABOUT PAGE
   ============================================== */

.gallery-grid {
  width: 100%;
}

.gallery-card {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(23, 168, 168, 0.2);
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 4 / 3;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(23, 168, 168, 0.85) 0%, rgba(13, 135, 135, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
  text-align: center;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: white;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive gallery adjustments */
@media (max-width: 992px) {
  .gallery-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  
  .gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(23, 168, 168, 0.15);
  }
}

@media (max-width: 576px) {
  .gallery-image-wrapper {
    aspect-ratio: 16 / 12;
  }
  
  .gallery-title {
    font-size: 1.1rem;
  }
}


