/* Reset and general styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body,
html {
  font-family: "Poppins", sans-serif;
  height: 100%;
  font-weight: 600;
  flex-direction: column;
}

a {
  color: #fca311;
  transition: 0.3s;
}

a:hover,
a:active,
a:focus {
  color: #14213d;
  outline: none;
  text-decoration: none;
}

.btn:focus {
  box-shadow: none;
}

.wrapper {
  position: relative;
  width: 100%;
  background: #d5d5d5;
}
.back-to-top {
  position: fixed;
  display: none;
  background: #fca311;
  color: #1f386e;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 22px;
  border-radius: 50%;
  right: 20px;
  bottom: 20px;
  transition: background 0.5s;
  z-index: 9;
}

.back-to-top:hover {
  color: #fca311;
  background: #14213d;
}

.back-to-top i {
  padding-top: 10px;
}

.btn {
  transition: 0.3s;
}

/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
  height: 90px;
  background: #0c1f31;
  padding: 0 60px;
}

.top-bar .logo {
  padding: 15px 0;
  text-align: left;
}

.top-bar .logo img {
  max-height: 60px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-bar-icon {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
}

.top-bar-text {
  padding-left: 15px;
  color: #fff;
}

.top-bar-text h3,
.top-bar-text p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
}

/* General Navbar Styling */
/* Navbar Styling */
/* Navigation Bar */
.nav-bar {
  position: relative;
  transition: 0.3s;
  background: #e5e5e5;
  z-index: 998;
}

.nav-bar.nav-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 1366px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.nav-bar .navbar {
  background: #e5e5e5 !important;
}

.navbar-nav {
  margin-left: 0;
}

.navbar-dark .navbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #14213d;
  text-decoration: none;
}

.navbar-nav .nav-link img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  filter: brightness(0);
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #fca311;
  text-decoration: underline;
  text-decoration-color: #fca311;
}

.phone {
  color: #14213d;
  border: 2px solid #fca311;
  border-radius: 20px;
  padding: 5px 10px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.btn-call span {
  padding: 2px;
}

.btn-call:hover {
  color: #fca311;
  background: #1f386e;
  border-color: #1f386e;
  border-radius: 5px;
}

.pp1:hover {
  color: #fca311;
}

/* Hide MENU brand on large screens */
@media (min-width: 992px) {
  .navbar-brand {
    display: none !important;
  }
}

/* Responsive Mobile Styling */
@media (max-width: 991.98px) {
  .nav-bar .navbar {
    padding: 15px;
  }

  .nav-bar .nav-link {
    padding: 8px 15px;
    margin-right: 0;
  }

  .phone {
    display: none !important;
  }

  .navbar-nav {
    width: 100%;
  }

  .nav-item {
    text-align: left;
  }
}

.navbar-dark .navbar-brand {
  color: black;
}
/* --------------------------------------*/
.container-main {
  background: #14213d;
  width: 100%;
  text-align: center;
  padding: 20px;
  margin-bottom: -45px;
  box-shadow: 1px 1px 20px 1px gray;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #e5e5e5;
  font-weight: 700;
}
/* Styles for the new gallery layout */
.gallery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
.back{
  color: white;
}
.back:hover{
color: #fca311;
}
.main-image {
  width: 90%;
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper {
  width: 90%;
  max-width: 800px;
  padding: 20px 0;
}

.swiper-slide {
  width: 150px;
  height: 100px;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
}

.swiper-slide-active,
.swiper-slide:hover {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  color: #14213d !important;
  background-color: #fca311;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px !important;
  font-weight: bold;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

#slideshow-button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-image {
      width: 95%;
  }

  .swiper {
      width: 95%;
  }

  .swiper-slide {
      width: 120px;
      height: 80px;
  }
}

.footer h2 {
  font-size: 30px;
}

.footer a#contact {
  font-size: 16px;
}
.footer a#contact:hover {
  font-size: 17px;
}