* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* marquee */
.marquee-container {
  overflow: hidden;
  background-color: #244cab;
  color: #00ffcc;
  padding: 10px 0;
  border-radius: 8px;
  width: 100%;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
  font-weight: 500;
  font-size: 20px;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
/* end marquee */


/* Navbar background */
.custom-navbar {
    background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
}

/* Logo */
.logo-img {
    height: 45px;
    border-radius: 50%;
}

/* Nav links */
.custom-navbar .nav-link {
    color: #f1f1f1;
    font-weight: 500;
    margin: 0 6px;
    position: relative;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #00ffcc;
}

/* Underline hover animation */
.custom-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #00ffcc;
    transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 12px;
}

/* Search button */
.btn-pretty {
    background: #00ffcc;
    color: #000;
    font-weight: 600;
    border: none;
}

.btn-pretty:hover {
    background: #00ccaa;
}

/* White toggler icon */
.navbar-toggler-icon {
    filter: invert(1);
}



/* Footer */
.footer {
  font-family: Arial, sans-serif;
}

.footer h5 {
  font-weight: bold;
  margin-bottom: 15px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-link {
  color: #00ffcc;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  margin-bottom: 6px;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.social-icons a {
  font-size: 18px;
  margin-right: 15px;
}

.social-icons a:hover {
  color: #00ccaa;
  transform: scale(1.2);
  transition: all 0.3s;
}

hr.bg-light {
  opacity: 0.2;
}

/* end footer  */



/* Google Map location  */
.map-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.map-title {
  font-size: 32px;
  font-weight: 800;
  color: #0d6efd;
  margin-bottom: 15px;
}

.map-address {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.map-responsive {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  
}

.google-map {
    border: 0;
}

/* end of google map location  */



body {
    font-family: 'Segoe UI', sans-serif;
    background: #f8f9fa;
}

/* Hero */
.gallery-hero {
    background: linear-gradient(135deg, #3e75c7, #854fdc);
    color: #fff;
    padding: 80px 0;
}

/* Filter Buttons */
.filter-btn {
    margin: 5px;
}

.filter-btn.active {
    background-color: #0d6efd;
    color: #fff;
}

/* Gallery */
.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.lightbox-img {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}
