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

:root {
  --green-color: #662D91;
  --blue-color: #662D91;
  --dark-blue :#FCB041;
  --light-bg: #FFF1DD ;
}

.text-center{
  text-align: center !important;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
}


/* Top Bar Styles */
.top-bar {
  background: var(--green-color);
  color: white;
  padding: 12px 0;
  font-size: 14px;
}

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

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__discount {
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  color: #fff;
}
.top-bar__discount p {
  font-size: 16px;
}
.top-bar__socials {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 0px 10px;
  border-left: 2px solid #d4a715;
  margin-left: 10px;
}
.hero-wrap hero-wrap-2{
  background-position: left;
}
.top-bar__socials a {
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  display: inline-block;
}

.top-bar__socials a:hover svg {
  transform: translateY(-2px);
  /* opacity: 0.8; */
  fill: #FCB041;
}

.top-bar__contact {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: nowrap;
  
}

@media (max-width: 768px) {
    .top-bar__content {
        flex-direction: column;
        gap: 10px;
    }
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  border-left: 1px solid #d4a715;
}

.contact-info-item:first-child {
  padding-left: 0;
  border-left: none;
}

.contact-label {
    text-decoration: none;
    color: #ffffff; /* Default color */
    transition: color 0.3s ease;
    cursor: pointer;
}

.contact-label:hover {
    color: #FCB041; /* Yellow on hover */
}

.contact-info-item {
    display: flex;
    flex-direction: column; /* Number will be on next line */
    gap: 5px;
}

.contact-value a{
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}
.contact-value a:hover{
  color: #FCB041;
}






/* Main Header Styles */
.main-header {
  background: white;
  /* padding: 15px 0; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 95px;
  width: auto;
}

/* Navigation Styles */
.main-nav {
  background: transparent;
  padding: 0;
}

.main-nav__menu {
  list-style: none;
  display: flex;
  align-items: center;
  margin: -32px;
  padding: 14px;
  gap: 6px;
}

.main-nav__menu > li {
  position: relative;
}

.main-nav__menu > li > a {
  display: block;
  padding: 10px 14px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.main-nav__menu > li > a:hover {
  color: var(--blue-color);
}

.main-nav__menu > li.active > a {
  color: var(--blue-color);
}

.arrow {
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.has-dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown Styles */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  list-style: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border-radius: 0 0 5px 5px;
  margin-top: 5px;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 7px 20px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  font-size: 16px;
}

.dropdown li a:hover {
  color: var(--blue-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--blue-color);
  transition: all 0.3s ease;
  border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .top-bar__contact {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 110px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 110px);
    background: white;
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .main-nav.nav-open {
    left: 0;
  }

  .main-nav__menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .main-nav__menu > li {
    width: 100%;
  }

  .main-nav__menu > li > a {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--blue-color);
  }

  .main-nav__menu > li > a:hover {
    color: var(--blue-color);
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f8f8;
    display: none;
    min-width: 100%;
    border-radius: 0;
    margin-top: 0;
  }

  .has-dropdown.active .dropdown {
    display: block;
  }

  .dropdown li a {
    color: #333;
    padding-left: 40px;
    border-bottom: 1px solid #e0e0e0;
  }

  .dropdown li a:hover {
    background: var(--green-color);
    color: white;
    padding-left: 45px;
  }

  .top-bar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .site-logo img {
    height: 55px;
  }

  .top-bar__discount {
    font-size: 13px;
  }

  .top-bar__socials a {
    font-size: 16px;
  }
}


/* Main Footer */
.site-footer {
  background: var(--blue-color);
  color: white;
  padding: 60px 10px 0px 10px;
  position: relative;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* About Column */
.footer-logo {
  /* margin-bottom: 25px; */
}

.footer-logo img {
  height: 100px;
  width: auto;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-list li svg {
  width: 20px;
  height: 20px;
  /* color: var(--green-color); */
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: #FCB041;
}

.footer-legal-links {
  margin-bottom: 25px;
}

.footer-legal-links a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #FCB041;
}

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

.footer-social-icons a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background: #FCB041;
  transform: translateY(-3px);
}

.footer-social-icons svg {
  width: 22px;
  height: 22px;
  fill: white;
}

/* Links Column */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

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

/* Facebook Column */
.fb-widget-container {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.fb-widget-header {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fb-widget-logo {
  width: 40px;
  height: 40px;
}

.fb-widget-info h5 {
  margin: 0;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 600;
}

.fb-widget-info p {
  margin: 3px 0 0;
  color: #666;
  font-size: 13px;
}

.fb-widget-actions {
  padding: 12px 15px;
  background: #f5f5f5;
  display: flex;
  gap: 10px;
}

.fb-btn {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fb-btn-follow {
  background: var(--blue-color);
  color: white;
}

.fb-btn-follow:hover {
  background: var(--dark-blue);
}

.fb-btn-share {
  background: #f0f0f0;
  color: #333;
}

.fb-btn-share:hover {
  background: #e0e0e0;
}

.fb-widget-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Footer Skyline */
.footer-skyline {
  height: 60px;
  background-image: url('{{ asset("img/footer-buildings.png") }}');
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: auto 100%;
  margin-bottom: 0;
  opacity: 0.3;
}

/* Footer Bottom */
.footer-bottom {
  background: #FCB041;
  border-top: 3px solid var(--green-color);
  padding: 20px 0;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-bottom a {
  color: var(--green-color);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--green-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--blue-color);
  transform: translateY(-5px);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .fb-widget-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {

  .footer-heading {
    font-size: 18px;
  }

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




/* Breadcrumb Section */
.hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-wrap-2 {
  min-height: 300px;
  display: flex;
  align-items: center;
  /* padding: 60px 0 40px; */
}

@media (max-width: 425px) {
  .hero-wrap-2 {
    min-height: 160px;
    /* padding: 60px 0 40px; */
  }
}


.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
  width: 100%;
}

.hero-content {
  width: 100%;
}

.breadcrumbs {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.breadcrumbs a {
  color: white;
  text-decoration: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  transition: color 0.3s ease;    text-align: center;
}

.breadcrumbs a:hover {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  color: var(--green-color);
}

.breadcrumbs .separator {
  font-size: 14px;
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs span {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  margin-right: 8px;
}

.page-title {
  color: white;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);    text-align: center;
}