
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #065b5e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1dc8cd; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.6);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1dc8cd; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f4f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0ea8ac;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #12d6db;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/


a {
  color: #00506b;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #444040;
 font-family: "Philosopher", serif;

}

.philosopher-regular {
  font-family: "Philosopher", serif;
  font-weight: 400;
  font-style: normal;
}

.philosopher-bold {
  font-family: "Philosopher", serif;
  font-weight: 700;
  font-style: normal;
}

.philosopher-regular-italic {
  font-family: "Philosopher", serif;
  font-weight: 400;
  font-style: italic;
}

.philosopher-bold-italic {
  font-family: "Philosopher", serif;
  font-weight: 700;
  font-style: italic;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
 /*  background-color: var(--background-color); */
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.header .logo img {
    padding: 0;
    margin: 0;
    margin-top: 36px;
    z-index: 1000;
    position: absolute;
    height: 93px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--heading-color);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #059ea3;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #4f5051;
  background-color: var(--background-color);
  font-size: 15px;
  
  padding: 30px 0;
  position: relative;
}
.footer a{    color: #00506b;
}
a.twitter {
    background: #1DA1F2;
}
a.facebook {
    background: #3b5998;
}
a.instagram {
    background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}
a.linkedin {
    background: #0A66C2;
}
a.youtube {
    background: #d9350e;
}
.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {

  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: #2c328d;
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}
.title5 {
    font-family: "Philosopher", serif;
    font-size: 25px;
    font-weight: 600;    color: #00506b;

}
.title4 {
    font-size: 40px;
    font-weight: 700;
    color: #004e68;
}
ol, ul {
    padding-left: 0px;
    list-style: none;
}
#footer .footer-links ul em {
    padding-right: 2px;
       color: #00506b;
    font-size: 13px;
    line-height: 2.5;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #2d338f;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top em {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: #2d338f;
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;    color: #fff;

}

.section-title h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  /* overflow: hidden; */
  /* position: relative; */
  background: linear-gradient(0deg, #00506b 0%, color-mix(in srgb, #ffffff 90%, white 10%) 100%);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 70vh;
  padding-top: 60px;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  color: var(--default-color);
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .hero p {
    max-width: 60%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  .hero .carousel-container {
    min-height: 90vh;
  }

  .hero h2 {
    font-size: 28px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
  font-size: 54px;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about .inner-title {
   max-width: 87%;
        margin: 0 0 60px 0;  font-family: "Philosopher", serif;

  }
}

.about .our-story {
  padding: 40px;
  background-color:color-mix(in srgb, var(--default-color), #fefefc 96%);
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right:20%;    text-align: left;

  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h2 {
  color: #2d338f;
    font-size: 28px;
  font-weight: 700;
  
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: #343737;
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: #ef2127;
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: #ef2226;
}

.about .about-img {
  min-height: 400px;
  position: relative;
}


@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.about .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .features-image {
  position: relative;
}
section#features-2 {
    background: #00506b;
}
p.features-p {
    color: #d8d3d3;
}
.features-2 .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;    color: aliceblue;

}

.features-2 .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.features-2 .features-item p {
  font-size: 15px;
  color: color-mix(in srgb, #ffffff99, transparent 20%);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
.position-relative {
    position: relative !important;
   
}

.bg {
    background: #2d338f;
}
.agileits_reservation {
    z-index: 999;
    background-image: linear-gradient(to bottom, #f1f7f417 16%, #ffffff00 68%);
    padding: 1em;
    /* -webkit-box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%); */
    -moz-box-shadow: 0px 1px 8px 0px rgba(24, 24, 23, 0.42);
    /* box-shadow: 0px 5px 8px 5px rgb(24 24 23 / 42%); */
}
.span1_of_1 {
    float: left;
    list-style: none;
    /* width: 30.9%; */
    padding-top: 10px;padding-right: 15px;
    padding-left: 15px;
}
.agileits_reservation input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
    width: 100%;
    color: #1d6554;
    font-size: 16px;
    padding: 10px 20px 10px 20px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;    font-weight: 700;

}
.agileits_reservation em.bi {
    position: absolute;
    color: #555;
    font-size: 0.9em;
    margin-top: 14px;
    margin-left: 5px;
}
.date_btn input[type="submit"] {
    text-transform: capitalize;
    width: 100%;
    background:#ee2027;
    color: #ffffff;
    padding: 6px 0;
    border: none;
    font-size: 20px;
    outline: none;
    font-weight: 700;
    letter-spacing: 2px;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    transition: .5s all;
}
@media (max-width: 480px){
.agileits_reservation input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
    width: 100%;
    color: #1d6554;
    font-size: 15px;
    padding: 10px 46px 10px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;
}}

.title3 {
    text-align: center !important;
    font-size: 20px !important;
    font-family: "Philosopher", serif;
}
@media (min-width: 992px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }
}
.videoWrapper {
	position:relative;
	padding-bottom:56.25%;
	padding-top:25px;
	height:0
}
.videoWrapper iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%
}
#more {
    display: none;
    font-family: "Philosopher", serif;
    font-size: 18px;
    text-align: left;
}
button#myBtn {
    border: none;
    background-image: linear-gradient(to bottom, #00506b 11%, #00506b 132%);
    padding: 10px;
    color: #fff;
    width: 52%;
}
.title {
    font-weight: 600;
    color: #2d338f;
    font-family: "Philosopher", serif;
    font-size: 20px;
    padding-bottom: 5px;
}
@media (max-width: 480px) {
    .col-xs-12.span1_of_1.book_date {
        width: 100% !important;
    }
	.about .our-story h2 {
    color: #2d338f;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}
}
@media only screen and (max-width: 1024px) {
    #header .logo img {
        padding: 0;
        margin: 0;
        margin-top: 40px;
        z-index: 1000;
        position: absolute;
        max-height: 56px;
    }
}


















/* Unique Room Slider Section */
.unique-room-slider {
  background: var(--light-gray);
  padding: 60px 20px;
  text-align: center;
}

.unique-slider-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Unique Room Cards */
.unique-rooms-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 0 auto;
  width: 90%;
}

.unique-room-card {
  display: flex;
  flex-direction: column;
  background: var(--background-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unique-room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Unique Room Image */
.unique-room-image img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eaeaea;
}

/* Unique Room Details */
.unique-room-details {
  padding: 20px;
  text-align: left;
}

.unique-room-details h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.unique-room-details .unique-price {
  font-size: 1.2rem;
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 15px;
}

.unique-room-details .unique-description {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.unique-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.unique-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-color);
}

.unique-features li i {
  color: var(--accent-color);
  margin-right: 10px;
}

/* Unique Book Now Button */
.unique-book-btn {
  padding: 10px 20px;
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.unique-book-btn:hover {
  background: var(--hover-color);
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .unique-rooms-container {
      grid-template-columns: 1fr;
  }

  .unique-room-details {
      text-align: center;
  }

  .unique-book-btn {
      width: 100%;
  }
}


/* Gallery Section */
.elegant-photo-gallery {
  padding: 60px 5%;
  background: var(--background-color);
  text-align: center;
  
}

.gallery-title {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Gallery Container */
.gallery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.gallery-main {
  width: 85%;
  height: 450px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px var(--shadow-light);
  background: var(--background-color);
}

.main-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease-in-out, box-shadow 0.3s ease;
}

.main-image::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--caption-bg);
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.main-image:hover {
  transform: scale(1.03);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
}

.main-image:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Thumbnails */
.gallery-thumbnails {
  display: flex;
  gap: 20px;
}

.thumbnail {
  width: 110px;
  height: 110px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 5px 15px var(--shadow-light);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 3px solid transparent;
}

.thumbnail:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 20px var(--hover-highlight);
  border-color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-main {
      width: 100%;
      height: 350px;
  }

  .gallery-thumbnails {
      width: 100%;
      gap: 15px;
  }

  .thumbnail {
      width: 90px;
      height: 90px;
  }
}


body {
  background: linear-gradient(175deg, rgb(255 255 255 / 90%), rgb(178 178 178 / 28%)), url('assets/img/gallery/pattern.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #FAFAFA;
}
























/* General Section Styling */
.map-video-section {
  padding: 40px 20px;
  background-color: #f7f7f7;
  color: #333;
}

.map-video-container {
  display: flex;
  gap: 30px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

/* Equal Size for Both Sections */
.google-map-section, .video-section {
  flex: 1;
  min-width: 300px;
  background-color: #2c328d;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-map-section:hover, .video-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

/* Map Container Styling */
.map-container h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 10px;
}

.map-container p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 15px;
}

/* Equal Aspect Ratio for Both Containers */
.map-iframe, .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio for both */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

.map-iframe iframe, .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Information Styling */
.contact-info p {
  margin: 12px 0;
  color: white;
}

.contact-info i {
  margin-right: 10px;
}

/* Video Container Styling */
.video-container h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .map-video-container {
      flex-direction: column;
      gap: 20px;
  }

  .google-map-section, .video-section {
      width: 100%;
  }

  .google-map-section h2,
  .video-container h2 {
      font-size: 1.8rem;
  }

  .map-container p {
      font-size: 0.95rem;
  }
}




/* Default alignment (for larger screens) */
.inner-title {
  text-align: left;
}

/* Center the text on mobile and tablet screens */
@media (max-width: 1180px) {
  .inner-title {
      text-align: center;
  }
}









/*--------------------------------------------------------------
# Inner About Section (Proper Center Alignment)
--------------------------------------------------------------*/

/* Wrapper Settings */
.inner-about-section {
  padding: 4px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff; /* Pura background clean */
}

/* Constrained Center Container */
.inner-about-container {
  width: 100%;
  margin: 0 auto;
  text-align: center; /* Ensures entire container aims to center text */
}

/* Main Title styling */
.inner-about-main-title {
  font-size: 52px;
  font-weight: 700;
  font-family: "Philosopher", serif;
  color: #212529; /* Text Color */
  text-align: center;
}

/* Content Box Boxed Settings */
.inner-about-content-box {
  padding: 50px 40px;
  background-color: #fcfcf9; /* Subtle tint similar to your purana srgb */
  border-radius: 12px; /* Slightly rounded edge  */
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05); /* Modern soft float shadow */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Sub-heading Text */
.inner-about-sub-title {
  color: #2d338f;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 25px;
  text-align: center;
}

/* Center Aligned Paragraph */
.inner-about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #4d4f53;
  margin-bottom: 20px;
  text-align: center; 
}

/* Flex Properties Used for List to perfectly lock in center */
.inner-about-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center; /* Horizontally items are centered */
  width: 100%;
}

.inner-about-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #343737;
  font-weight: 500;
}

/* Icon Design Points */
.inner-about-list i {
  font-size: 1.4rem;
  margin-right: 12px;
  color: #2d338f;
}

/* Button & Link Setup for Video */
.inner-about-video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  text-decoration: none;
}

.inner-about-video-link i {
  font-size: 2.2rem;
  color: #ef2127;
  transition: 0.3s;
  cursor: pointer;
}

.inner-about-video-link a {
  font-size: 17px;
  font-weight: 600;
  color: #555555;
  margin-left: 10px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

/* Link Hover Actions */
.inner-about-video-link:hover a {
  color: #ef2226;
}

.inner-about-video-link:hover i {
  transform: scale(1.1); /* Subtle Pop Effect on Video Button */
  color: #d11e22;
}

/* --------------------
Responsive Behavior Setup
----------------------*/
@media (max-width: 991px) {
  .inner-about-main-title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .inner-about-section {
    padding: 60px 15px;
  }
  .inner-about-content-box {
    padding: 30px 20px;
  }
  .inner-about-main-title {
    font-size: 34px;
  }
  .inner-about-sub-title {
    font-size: 24px;
  }
  .inner-about-text {
    font-size: 15px;
  }
}



/* ===================================================================
   --- 1. UNIQUE AMENITIES SECTION ---
   =================================================================== */

.amenities-unique {
  position: relative;
  padding: 50px 20px;
  /* UPDATED: New background using the primary color */
  background: #2d338f; 
  overflow: hidden;
  /* Optional: Animation for background */
  animation: gradientShift 12s ease infinite;
}

.amenities-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Style */
.amenity-item {
  background: #fff;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
}

.amenity-item:hover {
  transform: translateY(-12px) scale(1.02);
  /* UPDATED: Hover border now uses the new accent color */
  border-top: 4px solid #ee2027;
  /* UPDATED: Hover shadow uses a subtle version of the new primary color */
  box-shadow: 0 20px 45px rgba(30, 30, 42, 0.2); 
}

/* Icon Circle */
.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  /* UPDATED: Icon background uses the new accent color */
  background: #ee2027; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  /* UPDATED: Icon color for contrast with the new background */
  color: #000000; 
  transition: all 0.4s ease;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.amenity-item:hover .icon-circle {
  /* UPDATED: Icon hover background uses the new primary color */
  background: #2d338f;
  /* UPDATED: Icon hover color for contrast */
  color: #fff;
  /* UPDATED: Hover shadow effect using the new accent color for a 'glow' */
  box-shadow: 0 0 25px rgba(238, 32, 39, 0.6); 
}

.amenity-item h3 {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.amenity-item p {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.6;
}

/* Background decorative overlay */
.amenities-unique::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  /* UPDATED: Overlay with a transparent version of the new accent color */
  background: rgba(238, 32, 39, 0.1); 
  border-radius: 50%;
  z-index: 0;
}

.amenities-unique::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  /* UPDATED: Overlay with a transparent version of the new accent color */
  background: rgba(238, 32, 39, 0.15); 
  border-radius: 50%;
  z-index: 0;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== Responsive for Unique Amenities ===== */
@media (max-width: 992px) {
    .amenities-grid-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .amenities-grid-page {
        grid-template-columns: 1fr;
    }
    .amenity-item h3 {
        font-size: 1.2rem;
    }
    .amenity-item {
        padding: 30px 20px;
    }
}

/* ===================================================================
   --- 2. ROOM AMENITIES SHOWCASE ---
   =================================================================== */

/* General styling for the section */
.room-amenities-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

/* Styling for the main heading */
.room-amenities-section h2 {
    font-size: 3em;
    /* UPDATED: New primary color for heading */
    color: #2d338f; 
    margin: 0 0 20px 0;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

/* The orange underline for the heading */
.room-amenities-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    /* UPDATED: New accent color for underline */
    background-color: #ee2027;
}

/* Flex container for the columns */
.room-amenities-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

/* Styling for the text columns */
.room-amenities-column {
    flex: 1;
    max-width: 250px;
}

.room-amenities-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-amenities-column li {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 25px;
}

/* Align text away from the central image */
.room-amenities-column.left {
    text-align: right;
}

.room-amenities-column.right {
    text-align: left;
}

/* Container for the central image */
.room-amenities-image-container {
   flex-shrink: 0;
}

/* Styling for the circular room image */
.room-amenities-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ===== Responsive for Room Amenities ===== */
@media (max-width: 768px) {
    .room-amenities-section h2 {
        font-size: 2.2em;
    }
    .room-amenities-layout {
        gap: 30px;
        flex-direction: column;
    }
    .room-amenities-image {
        width: 250px;
        height: 250px;
        margin-bottom: 20px;
    }
    .room-amenities-column {
        max-width: 100%;
        text-align: center !important; /* Center text on mobile */
    }
    .room-amenities-column li {
        font-size: 1.1em;
        margin-bottom: 15px;
    }
    /* Reverse the order to show left text, then image, then right text */
    .room-amenities-layout .room-amenities-column.left {
        order: 1;
    }
    .room-amenities-layout .room-amenities-image-container {
        order: 2;
    }
     .room-amenities-layout .room-amenities-column.right {
        order: 3;
    }
}

/* ===== Location Section Hero ===== */
.location-section-hero {
  background: #f9f9f9; /* soft neutral tone */
  padding: 60px 20px;
}

.location-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* ===== Left Content Box ===== */
.location-info-box {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info-box h2 {
  font-size: 2.6rem;
  color: #2d338f;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-info-box p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* ===== Coordinates & Directions Panels ===== */
.coordinates-area,
.directions-area {
  background: #fff8e6;
  padding: 22px;
  border-left: 5px solid #ee2027; 
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coordinates-area:hover,
.directions-area:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(238, 32, 39, 0.25);
}

.coordinates-area h4,
.directions-area h4 {
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #000000;
}

.coordinates-area ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* ===== Form Styling ===== */
.directions-area form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.directions-area form button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #2d338f, #ee2027);
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.directions-area form button:hover {
  background: linear-gradient(90deg, #ee2027, #2d338f);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(45, 51, 143, 0.25);
}

/* ===== Map Box (Right Side) ===== */
.location-map-box {
  flex: 1;
  background: #fff6db;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid #ee2027;
  min-height: 400px;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-info-box {
    padding: 30px 25px;
  }
  
  .location-map-box {
    height: 350px;
    min-height: auto;
    border-left: none;
    border-top: 3px solid #ee2027;
  }

  .location-info-box h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
    .location-section-hero {
        padding: 40px 15px;
    }
    .location-info-box h2 {
        font-size: 2rem;
    }
    .location-info-box p {
        font-size: 1rem;
    }
    .location-map-box {
        height: 300px;
    }
}


/* ===== Contact Header Section (Oxford Theme) ===== */
.custom-contact-header {
  text-align: center;
  padding: 20px 20px;
  background-color: #f9f9f9;
}

/* ===== Title Styling ===== */
.custom-contact-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2d338f; 
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

/* Elegant orange-gold underline accent */
.custom-contact-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2d338f, #ee2027);
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== Description Text ===== */
.custom-contact-description {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  max-width: 1100px;
  margin: 30px auto 0;
  font-weight: 400;
}

/* Highlighted text emphasis */
.custom-contact-description strong {
  color: #2d338f;
  font-weight: 600;
}

/* ===== Inline Links ===== */
.custom-contact-description a {
  color: #2d338f;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.custom-contact-description a:hover {
  color: #ee2027;
  text-decoration: none;
}

/* ===== Responsive Design ===== */
@media (max-width: 767px) {
  .custom-contact-header {
    padding: 40px 15px;
  }

  .custom-contact-title {
    font-size: 2rem;
  }

  .custom-contact-description {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* ===== Main Contact Info Section (Oxford Theme) ===== */
.contact-section-hero {
  background: #f9f9f9;
  padding: 20px 20px;
}

/* Wrapper Box */
.contact-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* ===== Left Content Box ===== */
.contact-info-box {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h2 {
  font-size: 2.6rem;
  color: #2d338f; 
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-box p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.8;
  font-weight: 400;
}

/* ===== Contact Details Box ===== */
.contact-details-area {
  background: #fff8e6; 
  padding: 22px;
  border-left: 5px solid #ee2027;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details-area:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(238, 32, 39, 0.25);
}

.contact-details-area h4 {
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-details-area ul {
  list-style: none;
  padding-left: 0;
  color: #000000;
}

.contact-details-area ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== Links ===== */
.contact-details-area a {
  color: #2d338f;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details-area a:hover {
  color: #ee2027;
  text-decoration: underline;
}

/* ===== Right Side Image ===== */
.contact-image-box {
  flex: 1;
  background: #fff6db;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid #ee2027;
  min-height: 400px;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }

  .contact-info-box {
    padding: 30px 25px;
  }

  .contact-image-box {
    height: 350px;
    min-height: auto;
    border-left: none;
    border-top: 3px solid #ee2027;
  }

  .contact-info-box h2 {
    font-size: 2.2rem;
  }

  .contact-info-box p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
    .contact-image-box {
        height: 300px;
    }
     .contact-info-box h2 {
        font-size: 2rem;
    }
}


/* ===== Comfort Inn & Suites, Oxford Sitemap Section ===== */
.sitemap-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff, #f9f9f9, #ffffff);
  text-align: center;
}

/* ===== Container ===== */
.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Title ===== */
.sitemap-title {
  font-size: 3rem;
  color: #2d338f; 
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

.sitemap-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2d338f, #ee2027);
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== Subtitle ===== */
.sitemap-subtitle {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 50px;
  font-weight: 400;
  line-height: 1.8;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Sitemap Links Grid ===== */
.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== Sitemap Blocks ===== */
.sitemap-block {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(10, 32, 80, 0.08);
  border: 1px solid rgba(238, 32, 39, 0.25);
  text-align: left;
}

.sitemap-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(45, 51, 143, 0.2); 
}

/* ===== Headings ===== */
.sitemap-block h2 {
  font-size: 1.8rem;
  color: #2d338f;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===== List Styles ===== */
.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-block ul li {
  margin-bottom: 15px;
}

/* ===== Link Styles ===== */
.sitemap-block ul li a {
  font-size: 18px;
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
  font-weight: 500;
}

.sitemap-block ul li a em { /* This selects the icon tag if you're using <em> for icons */
  margin-right: 10px;
  font-size: 1.2rem;
  color: #ee2027;
  transition: color 0.3s ease;
}
.sitemap-block ul li a i { /* This selects <i> if using Font Awesome */
    margin-right: 10px;
    font-size: 1rem;
    color: #ee2027;
    transition: color 0.3s ease;
    width: 20px;
    text-align: center;
}


.sitemap-block ul li a:hover {
  color: #2d338f;
  transform: translateX(5px);
}

.sitemap-block ul li a:hover em,
.sitemap-block ul li a:hover i {
  color: #2d338f;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .sitemap-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .sitemap-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sitemap-title {
    font-size: 2.2rem;
  }
  .sitemap-subtitle {
      font-size: 1rem;
      margin-bottom: 30px;
  }

  .sitemap-block {
      padding: 30px;
  }

  .sitemap-block h2 {
    font-size: 1.4rem;
  }

  .sitemap-block ul li a {
    font-size: 16px;
  }
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap; 
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: #2d338f;
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #2d338f, #ee2027);
    border-radius: 2px;
}

.faq-header p {
    color: #000000;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #ee2027;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #2d338f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.faq-answer {
    padding: 25px;
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

.faq-answer a {
    color: #2d338f;
    font-weight: 600;
    text-decoration: underline;
    transition: color .3s ease;
}

.faq-answer a:hover {
    color: #ee2027;
    text-decoration: none;
}

.faq-answer .fa-caret-right {
    color: #ee2027;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 15px;
    }
    .faq-grid {
        /* Change auto-fit to make cards full width */
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }

     .faq-header p {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px;
    }

     .faq-question-text {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 20px;
    }
}

/* ====== New Attraction Section ====== */
/* App Layout */
.New-attraction-app-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.New-attraction-attraction-quality-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .New-attraction-attraction-quality-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- MODIFIED DESKTOP STYLES --- */
@media (min-width: 1024px) {
    .New-attraction-attraction-quality-cards {
        /* Create a 6-column grid to allow for precise placement */
        grid-template-columns: repeat(6, 1fr);
    }

    /* First 3 items (top row): make each span 2 columns */
    .New-attraction-card:nth-child(-n+3) {
        grid-column: span 2;
    }
    
    /* 4th item: start at column 2 and span 2 columns */
    .New-attraction-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    /* 5th item: start at column 4 and span 2 columns */
    .New-attraction-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}
/* --- END OF MODIFIED STYLES --- */

/* Card Styles */
.New-attraction-card {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.New-attraction-card:hover {
    transform: translateY(-5px);
    /* New primary color with transparency for shadow */
    box-shadow: 0 8px 12px rgba(45, 51, 143, 0.1);
}

.New-attraction-card-image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.New-attraction-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.New-attraction-card:hover .New-attraction-card-image {
    transform: scale(1.05);
}

.New-attraction-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.New-attraction-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    /* New primary color */
    color: #2d338f;
}

.New-attraction-card-description {
    font-size: 1rem;
    /* Changed to black for contrast on white background */
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.New-attraction-card-details {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.9rem;
    /* Changed to black for contrast on white background */
    color: #000000;
}

.New-attraction-card-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.New-attraction-card-details li + li {
    margin-top: 0.75rem;
}

/* --- UPDATED STYLES FOR ICONS AND LINKS --- */

/* Style for new Font Awesome icons */
.New-attraction-card-details i {
    /* New primary color */
    color: #2d338f;
    font-size: 16px;
    width: 16px; /* Ensures alignment is consistent with old SVGs */
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Style for the link text */
.New-attraction-card-details a {
    color: inherit; /* Use the default text color (black) */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

/* Change the link text color on hover */
.New-attraction-card-details a:hover {
    /* New accent color */
    color: #ee2027;
}

/* ===================================================================
   --- 3. NEARBY ATTRACTIONS SECTION ---
   =================================================================== */

.attractions-section {
  background: white; /* Keep as white */
  padding: 39px 8% 80px 8%;
  color: #333; /* Kept for general section text if not overridden */
}

/* Header */
.attractions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.attractions-title {
  font-size: 2.8rem;
  font-weight: 500;
  text-transform: uppercase;
  /* Changed to black for contrast on white background */
  color: #000000;
  margin: 0;
  position: relative;
}

.attractions-title span {
  /* UPDATED: Using new accent color */
  color: #ee2027; 
}

.attractions-title::after {
  content: "";
  width: 80px;
  height: 4px;
  /* UPDATED: New accent color */
  background: #ee2027; 
  display: block;
  margin: 12px 0 0;
  border-radius: 2px;
}

/* Attractions Grid */
.attractions-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0; /* Remove padding here, controlled by section */
    max-width: 1500px;
}

.attractions-container .category {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1;
}

.attractions-container .category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.attractions-container .category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    /* UPDATED: New accent color border */
    border-bottom: 4px solid #ee2027;
}

.attractions-container .category-header {
    padding: 20px;
    /* UPDATED: New primary color background */
    background-color: #2d338f; 
    color: white; /* White text on new primary background */
    text-align: center;
}

.attractions-container .category-header h2, .title2 {
    color: white; /* Ensure title is white on dark background */
    margin: 0;
    font-size: 24px;
}

.attractions-container .attraction-list {
    padding: 20px;
}

.attractions-container .attraction {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee; /* Kept light grey for separation */
}

.attractions-container .attraction:last-child {
    border-bottom: none;
}
.attractions-container .attraction-details {
    flex-grow: 1;
    padding-right: 15px;
}
.attractions-container .attraction-name, .title3-attraction {
    margin-bottom: 4px;
    font-size: 16px;
    /* Changed to black for contrast on white background */
    color: #000000;
}

.attractions-container .attraction-type {
    /* Keep black for contrast on white background */
    color: #000000;
}

.attractions-container .attraction-distance {
    /* UPDATED: New accent color */
    background-color: #ee2027; 
    color: white; /* Changed to white for better contrast with accent yellow */
    padding: 5px 12px;
    border-radius: 20px;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.attractions-container .attraction:hover .attraction-distance {
    /* UPDATED: New primary color on hover */
    background-color: #2d338f; 
    transform: scale(1.05);
    color: white; /* Keep white on new primary background */
}

/* ===== Responsive for Nearby Attractions ===== */
@media (max-width: 992px) {
    .attractions-container {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .attractions-section {
        padding: 40px 15px;
    }
    .attractions-header {
        justify-content: center;
        text-align: center;
    }
    .attractions-title {
        font-size: 2.2rem;
    }
    .attractions-title::after {
        margin: 12px auto 0;
    }
    .attractions-container {
        gap: 30px;
    }
}


/* ====== Gallery and Lightbox ====== */

/* Gallery Grid Styling */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 0px auto;
    padding: 20px;
    margin-top: -40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the container without distortion */
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Hover effect on gallery thumbnails */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Lightbox Styling --- */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Semi-transparent background */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* Animation: Fade-in effect */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

/* This class will be added by JavaScript to show the lightbox */
.lightbox.active {
    visibility: visible;
    opacity: 1;
}

/* Animation: Zoom-in effect for the image */
#lightbox-img {
    max-width: 90vw;
    max-height: 80vh;  /* Adjusted max-height to make room for caption */
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active #lightbox-img {
    transform: scale(1);
}

/* ▼▼▼ THIS IS THE NEW CSS FOR THE CAPTION ▼▼▼ */
#lightbox-caption {
    text-align: center;
    color: #f1f1f1;
    padding: 10px 0;
    margin-top: 10px;
    font-size: 1.1em;
    transition: opacity 0.4s ease-in-out; /* Fades in with lightbox */
    max-width: 80vw;
}


/* Navigation & Close Buttons */
.close-btn, .prev-btn, .next-btn {
    position: absolute;
    color: white;
    cursor: pointer;
    font-weight: bold;
    user-select: none; /* Prevents text selection */
    transition: color 0.2s ease;
}

.close-btn:hover, .prev-btn:hover, .next-btn:hover {
    color: #bbb;
}

.close-btn {
    top: 20px;
    right: 35px;
    font-size: 40px;
}

.prev-btn, .next-btn {
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    padding: 16px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* ===== Responsive for Gallery and Lightbox ===== */
@media (max-width: 768px) {
    .gallery-container {
        /* Adjust for smaller screens */
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        padding: 10px;
        margin-top: -20px;
    }
    #lightbox-img {
        max-width: 95vw;
        max-height: 75vh;
    }
    .close-btn {
        top: 10px;
        right: 20px;
        font-size: 35px;
    }
    .prev-btn, .next-btn {
        font-size: 24px;
        padding: 10px;
    }
    .prev-btn {
        left: 5px;
    }
    .next-btn {
        right: 5px;
    }
     #lightbox-caption {
        font-size: 1em;
    }
}