@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap");
:root {
  /**
   * colors
   */

  --gainsboro: hsl(0, 0%, 88%);
  --cultured: hsl(0, 0%, 98%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --mint: #bfcfbb;
  --ma-light: #8ea58c;
  --normal: #738a6e;
  --dark: #1f3521;
  
  /**
   * typography
   */

  --ff-poppins: "Poppins", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;
  --fonti: "Libre Franklin", serif;

  --fs-1: calc(20px + 2vw);
  --fs-2: calc(18px + 1.6vw);
  --fs-3: calc(16px + 0.45vw);
  --fs-4: 15px;
  --fs-5: 14px;
  --fs-6: 13px;
  --fs-7: 12px;
  --fs-8: 11px;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * transition
   */

  --transition: 0.25s ease-in-out;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * border-radius
   */

  --radius-15: 15px;
  --radius-25: 25px;
}

/*-----------------------------------*\
 * #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

body {
  overflow-x: hidden;
  box-sizing: border-box;
  max-width: 100%;
}




a {
  text-decoration: none;
}

a,
img,
span,
input,
label,
button,
ion-icon {
  display: block;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

button {
  cursor: pointer;
}

input {
  width: 100%;
}

ion-icon {
  pointer-events: none;
}

html {
  font-family: var(--ff-poppins);
  scroll-behavior: smooth;
}

body {
  background: var(--white);
}

/*-----------------------------------*\
 * #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}
.btn {
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--fs-5);
  border-radius: 100px;
  padding: var(--padding, 8px 18px);
  border: var(--border-width, 2px) solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  transform: scale(1);
}

.btn:is(:hover, :focus) {
  transform: scale(1.05);
}

.btn-primary {
  background: var(--normal);
  border-color: var(--normal);
}

.btn-primary:is(:hover, :focus) {
  background: var(--dark);
  border-color: var(--dark);
}

.btn-secondary {
  border-color: var(--white);
  color: #fff;
}

.btn-secondary:is(:hover, :focus) {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
}


.h1,
.h2,
.h3 {
  font-weight: var(--fw-800);
  font-family: var(--ff-montserrat);
  text-transform: uppercase;
}

.h1 {
  color: var(--white);
  font-size: var(--fs-1);
}

.h2,
.h3 {
  color: var(--gunmetal);
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
}

.section-subtitle {
  color: var(--bright-navy-blue);
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-family: var(--ff-montserrat);
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 15px;
}

.section-text {
  color: var(--black-coral);
  margin-bottom: 30px;
}

.card-text {
  color: var(--black-coral);
  font-size: var(--fs-5);
}

/*-----------------------------------*\
 * #HEADER
\*-----------------------------------*/

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 61px;
  z-index: 4;
}

.header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-block: 15px;
  z-index: 1;
  background: #d3d3d303;
}

.header.active .header-top {
  position: fixed;
  background: var(--dark);
}

.header-top .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: center;
}

.helpline-box .wrapper {
  display: none;
}

.helpline-box .icon-box {
  padding: 6px;
  border: 1px solid white;
  border-radius: 50%;
  color: var(--white);
}

.helpline-box .icon-box ion-icon {
  --ionicon-stroke-width: 40px;
}

.header-top .logo {
  margin-inline: auto;
}

.header-top .logo img {
  max-width: 100px;
}

.header-btn-group {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.search-btn,
.nav-open-btn {
  font-size: 30px;
  color: inherit;
}

.search-btn {
  font-size: 20px;
}

.header-bottom {
  border-bottom: 1px solid hsla(0, 5%, 12%, 0.1);
}

.header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 15px;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-link {
  color: var(--white);
  padding: 8px;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  font-size: 15px;
  transition: var(--transition);
}

.social-link:is(:hover, :focus) {
  background: hsla(0, 0%, 100%, 0.2);
}

.header .btn {
  --padding: 4px 20px;
}

.header .navbar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background: var(--white);
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s ease-in;
  z-index: 3;
}

.navbar.active {
  right: 0;
  visibility: visible;
  pointer-events: all;
  transition: 0.25s ease-out;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 15px;
}

.navbar-top .logo img {
  width: 150px;
}

.nav-close-btn {
  font-size: 20px;
  color: var(--dark);
}

.nav-close-btn ion-icon {
  --ionicon-stroke-width: 80px;
}

.navbar-list {
  border-top: 1px solid hsla(0, 0%, 0%, 0.1);
}

.navbar-list li {
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
}

.navbar-link {
  position: relative;
  display: inline-block;
  padding: 15px 20px;
  color: var(--dark);
  font-weight: var(--fw-500);
  font-size: var(--fs-4);
  text-transform: capitalize;
  margin-right: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-link::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 10px;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.navbar-link:hover::after {
  width: calc(100% - 40px); /* Adjusted for left/right padding */
}

.overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition);
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}

/*-----------------------------------*\
 * #HERO
\*-----------------------------------*/

.hero {
  background-image: url("../images/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: hsla(0, 0%, 0%, 0.5);
 
  background-blend-mode: overlay;
  display: grid;
  place-items: center;
  min-height: 600px;
  text-align: center;
  padding-top: 125px;



 /* animation: heroBackgroundFade 15s infinite;*/
}

/*@keyframes heroBackgroundFade {
  0% { background-image: url('../images/hero.jpg'); }
  44% { background-image: url('../images/contact1.jpg'); }
  66% { background-image: url('../images/about.jpg'); }
  100% { background-image: url('../images/hero1.jpg'); }
}*/

.hero-title {
  margin-bottom: 20px;
}

.hero-text {
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/*-----------------------------------*\
 * #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: #3b4b3a;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.5);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: var(--transition);
}

.go-top.active {
  opacity: 0.8;
  transform: translateY(0);
  visibility: visible;
}

.go-top:is(:hover, :focus) {
  opacity: 1;
}

/* Darker color on click (active state) */
.go-top:active {
  background: #4c5a47 !important; /* Darker background color when clicked */
  transform: translateY(2px); /* Slight movement down when clicked */
  outline: none; /* Remove the default blue outline */
}

/*-----------------------------------*\
 * #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 580px screen
 */

@media (min-width: 580px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 580px;
    margin-inline: auto;
  }

  .btn {
    --fs-5: 16px;
    --padding: 12px 30px;
  }

  section:not(.cta) :is(.section-subtitle, .section-title, .section-text) {
    text-align: center;
  }

  .section-text {
    margin-bottom: 40px;
  }

  .card-text {
    --fs-5: 15px;
  }

  /**
   * HEADER
   */

  .header {
    padding-top: 83px;
  }

  .helpline-box .icon-box {
    padding: 14px;
  }

  .header-top .logo img {
    max-width: unset;
  }

  .search-btn {
    font-size: 30px;
  }

  .nav-open-btn {
    font-size: 40px;
  }

  .header .btn {
    --fs-5: 14px;
    --padding: 6px 20px;
  }

  /**
   * HERO
   */

  .hero {
    min-height: 800px;
    padding-top: 85px;
  }

  .hero-text {
    --fs-5: 15px;
  }

  .btn-group {
    gap: 20px;
  }
}

/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-5: 15px;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 800px;
  }

  .section-text {
    max-width: 60ch;
    margin-inline: auto;
  }

  /**
   * HEADER
   */

  .helpline-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }

  .helpline-box .wrapper {
    display: block;
    color: var(--white);
    font-size: var(--fs-6);
  }

  .social-list {
    gap: 10px;
  }
}

/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1050px;
  }

  /**
   * HEADER
   */

  .header.active .header-top {
    position: unset;
    background: unset;
  }

  .nav-open-btn,
  .navbar-top {
    display: none;
  }

  .header-bottom {
    border-bottom: none;
  }

  .header.active .header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    color: var(--onyx);
    box-shadow: 0 2px 5px hsla(0, 0%, 0%, 0.08);
    transition: var(--transition);
  }

  .header-bottom .container {
    padding-block: 0;
  }

  .header .navbar {
    all: unset;
  }

  .navbar-list {
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-list li {
    border-bottom: none;
  }

  .navbar-link {
    color: var(--white);
    --fs-4: 16px;
    font-weight: unset;
    text-transform: uppercase;
    padding: 20px 15px;
  }

  .header.active .navbar-link {
    color: var(--onyx);
  }

  .header.active .navbar-link:is(:hover, :focus) {
    color: var(--dark);
  }

  .header.active .social-link {
    color: var(--onyx);
    border-color: hsla(0, 0%, 0%, 0.15);
  }

  .overlay {
    display: none;
  }

  /**
   * HERO
   */

  .hero .container {
    max-width: 740px;
  }
}

/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * spacing
     */

    --section-padding: 100px;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1180px;
  }
}

/* ========================================================================== 
   ABOUT US SECTION
   ========================================================================== */
   .about-us {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px 50px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap-reverse; /* on small screens, image comes first */
  }

  /* Left side: Image */
  .about-us-image {
    flex: 1 1 400px;
    max-width: 600px;
    text-align: center;
    /* subtle shadow for elegance */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
  }

  .about-us-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .about-us-image img:hover {
    transform: scale(1.05);
  }

  /* Right side: Text */
  .about-us-text {
    flex: 1 1 400px;
    max-width: 600px;
    padding: 10px 20px;
    color: #1a1a1a;
  }

  .about-title {
    font-size: 1.1rem;
    margin: 20px 0;
    text-transform: uppercase;
    color: var(--dark);
    letter-spacing: 4px;
    transition: color 0.3s ease;
  }
  
  .about-intro {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: black;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  }  
  .about-us-paragraph {
    font-size: 1.2rem;
    font-family: var(--fa-font-solid);
    line-height: 1.8;
    color: #070707 !important;
    margin-bottom: 20px;
  }

  /* Responsive adjustments */
  @media (max-width: 900px) {
    .about-us {
      flex-direction: column;
      padding: 30px 15px 40px;
      gap: 30px;
    }
    .about-us-text, .about-us-image {
      max-width: 100%;
      flex-basis: 100%;
    }
    .about-intro {
      font-size: 1.8rem;
    }
  }

  @media (max-width: 500px) {
    .about-intro {
      font-size: 1.5rem;
    }
    .about-us-paragraph {
      font-size: 1rem;
    }
  }














/* Gallery Section */
.gallery-section {
  background-color: #fdf9f9; /* Light greenish-grey */
  padding: 60px 20px; /* Add padding around the section */
  text-align: center;
  margin-top: 50px;
  margin-top: 0;
}

/* Title styling */
.gallery-page-title {
  font-size: 3rem;
  margin: 20px 0;
  text-transform: uppercase;
  color: black;
  letter-spacing: 4px;
  transition: color 0.3s ease;
}

/* Gallery container */
.custom-gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 0;
}

.custom-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.custom-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.custom-gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.custom-gallery-item:hover img {
  transform: scale(1.1);
}
.view-more-button {
  /* Inherit styles from .btn */
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--fs-5);
  border-radius: 100px;
  padding: 13px 40px; /* Increase padding to make the button larger */

  transition: var(--transition);

  /* Specific styles for View More button */
  background: var(--normal);
  border-color: var(--normal);
  cursor: pointer;
  display: inline-block;
  margin-top: 50px; /* Add margin to move the button further down */
}

.view-more-button:hover {
  background: var(--dark); /* Optional: change color on hover */
}

/* Media queries for responsiveness */
@media (max-width: 1024px) {
  .custom-gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .custom-gallery-container {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/* Unique Gallery Wrapper */
.ultra-gallery-section {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Masonry-style Grid */
.ultra-gallery {
  column-count: 3;
  column-gap: 15px;
}

.ultra-gallery-item {
  position: relative;
  margin-bottom: 15px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.ultra-gallery-item:hover {
  transform: scale(1.03);
}

.ultra-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .ultra-gallery {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .ultra-gallery {
    column-count: 1;
  }
}








/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.gallery-item:hover img {
  transform: scale(1.1); /* Zoom effect */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .gallery-header h1 {
    font-size: 36px;
  }


}

.faq-section {
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 2em;
  color: #333;
  margin-bottom: 30px;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  flex: 1 1 calc(50% - 20px); /* Two columns with gap compensation */
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 2%;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: 3px solid var(--normal);
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--normal);
  color: var(--white);
}

.faq-answer {
  padding: 20px;
  display: none;
  background-color: #f1f1f1;
  font-size: 0.95em;
  color: #555;
}

.toggle-icon {
  font-size: 1.5em;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .toggle-icon {
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 30px 10px;
  }

  .faq-container {
    gap: 15px;
  }

  .faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .faq-item {
    flex: 1 1 100%;
  }
}

/* Modern Footer Styling */
.modern-footer {
  background-color: #1f3521;
  color: #fcfcfc;
  font-family: "Segoe UI", sans-serif;
  padding: 4rem 1rem 2rem;
  border-top: 2px solid #181d19;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fcfcfc;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-social a {
  color: #fcfcfc;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #8ea58c;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #fcfcfc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #8ea58c;
}

.footer-newsletter-text {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-newsletter-form {
  display: flex;
  justify-content: center;
  border: 1px solid #d6e1da;
  border-radius: 30px;
  overflow: hidden;
  max-width: 300px;
  margin: 0 auto;
}

.footer-newsletter-form input {
  border: none;
  padding: 0.75rem 1rem;
  flex: 1;
  outline: none;
  font-size: 0.95rem;
}

.footer-newsletter-form button {
  background-color: #fcfcfc;
  color: #1f3521;
  border: none;
  padding: 0 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-newsletter-form button:hover {
  background-color: #3a5644;
  color: #fcfcfc;
}

.footer-bottom {
  border-top: 1px solid #181d19;
  margin-top: 3rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #fbfbfb;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}


/* Hero Banner Styling */
.hero-banner {
  position: relative;
  width: 100%;
  height: 50vh; /* Adjust height as needed for more space */
  display: flex;
  flex-direction: column; /* Stack text and paragraph vertically */
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white; /* Text color */
  font-family: var(--fonti);
  letter-spacing: 1px; /* Slight letter spacing for modern typography */
}

.hero-banner .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/banner.jpg"); /* Replace with your image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Enables parallax effect */
  filter: brightness(0.6); /* Lower exposure for the background image */
  z-index: 1;
}

/* Dark overlay to improve text visibility */
.hero-banner .background-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text contrast */
  z-index: 2;
}

/* Main Heading */
.banner-text {
  position: relative; /* Keeps text above overlay */
  font-size: 2.2rem; /* Larger heading size */
  font-weight: bold;
  z-index: 3;
  padding: 20px;
  line-height: 1.2; /* Improve readability */
  margin-bottom: 15px; /* Space between heading and paragraph */
  text-transform: uppercase; /* Make the heading stand out */
  letter-spacing: 2px; /* Additional spacing for a bold look */
}

/* Paragraph under the heading */
.banner-paragraph {
  position: relative;
  font-size: 1.2rem; /* Smaller size for paragraph */
  z-index: 3;
  line-height: 1.5; /* Better line spacing for readability */
  max-width: 800px; /* Limit width for long lines of text */
  margin: 0 auto; /* Center align the paragraph */
  padding: 0 20px;
  font-weight: 300; /* Lighter weight for contrast with heading */
  opacity: 0.9; /* Slight transparency to balance with background */
}

@media (max-width: 768px) {
  .hero-banner {
    height: 30vh; /* Reduce height on smaller screens */
  }

  .banner-text {
    font-size: 1rem; /* Slightly smaller font for mobile */
  }

  .banner-paragraph {
    font-size: 0.8rem; /* Smaller paragraph font for mobile */
    max-width: 90%; /* Ensure text doesn’t overflow on small screens */
  }
}

/* Hero Banner Styling */
.hero-banner1 {
  position: relative;
  width: 100%;
  height: 50vh; /* Adjust height as needed for more space */
  display: flex;
  flex-direction: column; /* Stack text and paragraph vertically */
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white; /* Text color */
  font-family: var(--fonti); /* Set a clean font-family */
  letter-spacing: 1px; /* Slight letter spacing for modern typography */
}

.hero-banner1 .background-image1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/banner2.jpg"); /* Replace with your image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Enables parallax effect */
  filter: brightness(0.6); /* Lower exposure for the background image */
  z-index: 1;
}

/* Dark overlay to improve text visibility */
.hero-banner1 .background-image1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text contrast */
  z-index: 2;
}

/* Main Heading */
.banner-text1 {
  position: relative; /* Keeps text above overlay */
  font-size: 2.2rem; /* Larger heading size */
  font-weight: bold;
  z-index: 3;
  padding: 20px;
  line-height: 1.2; /* Improve readability */
  margin-bottom: 15px; /* Space between heading and paragraph */
  text-transform: uppercase; /* Make the heading stand out */
  letter-spacing: 2px; /* Additional spacing for a bold look */
}

/* Paragraph under the heading */
.banner-paragraph1 {
  position: relative;
  font-size: 1.2rem; /* Smaller size for paragraph */
  z-index: 3;
  line-height: 1.5; /* Better line spacing for readability */
  max-width: 800px; /* Limit width for long lines of text */
  margin: 0 auto; /* Center align the paragraph */
  padding: 0 20px;
  font-weight: 300; /* Lighter weight for contrast with heading */
  opacity: 0.9; /* Slight transparency to balance with background */
}

@media (max-width: 768px) {
  .hero-banner1 {
    height: 30vh; /* Reduce height on smaller screens */
  }

  .banner-text1 {
    font-size: 1rem; /* Slightly smaller font for mobile */
  }

  .banner-paragraph1 {
    font-size: 0.8rem; /* Smaller paragraph font for mobile */
    max-width: 90%; /* Ensure text doesn’t overflow on small screens */
  }
}

/* Contact Section */
/* Reservation Contact Section */
.reservation-contact-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  background-color: #1f3521;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.reservation-contact-map {
  flex: 1;
  min-width: 300px;
  height: auto;
  overflow: hidden;
  display: flex;
}

.reservation-contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  flex-grow: 1;
  border: 0;
  display: block;
}

/* FORM SECTION */
.reservation-contact-form {
  flex: 1;
  background: linear-gradient(135deg, #1b2e1d, #2e4930, #202f22);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
}

.reservation-contact-form h5 {
  font-size: 14px;
  color: #cfcfcf;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.reservation-contact-form h2 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.4;
}

.reservation-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reservation-contact-form input,
.reservation-contact-form textarea {
  padding: 14px 16px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
  color: #2e4731;
  background-color: white;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.reservation-contact-form input:focus,
.reservation-contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #c0dbc0;
}

.reservation-contact-form input::placeholder,
.reservation-contact-form textarea::placeholder {
  color: #aaaaaa;
}

.reservation-contact-form textarea {
  resize: vertical;
  height: 120px;
}

.reservation-contact-row {
  display: flex;
  gap: 20px;
}

.reservation-contact-row input {
  flex: 1;
}

.reservation-contact-form button {
  background-color: #f5f1e8;
  color: #102312;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  align-self: flex-start;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.reservation-contact-form button:hover {
  background-color: #e3e0d3;
  transform: scale(1.02);
}

/* Optional: Message after submission */
#form-message {
  display: none;
  padding: 12px;
  margin-top: 10px;
  background-color: #2e4731;
  color: #ffffff;
  border-radius: 6px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .reservation-contact-container {
    flex-direction: column;
  }

  .reservation-contact-map {
    height: auto;
    min-height: 300px;
  }

  .reservation-contact-map iframe {
    height: 300px;
  }

  .reservation-contact-form {
    padding: 40px 20px;
  }

  .reservation-contact-row {
    flex-direction: column;
  }

  .reservation-contact-form h2 {
    font-size: 22px;
  }
}

.video-section {
  position: relative;
  margin: auto;
  max-width: 90%;
  padding-bottom: 40px;
}

.heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 40px;
  font-family: "Playfair Display", serif; /* Aesthetic font */

  letter-spacing: 2px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 90vh; /* Keep the video height as 60% of the viewport height */
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .heading {
    font-size: 2.5rem;
  }

  .video-container {
    height: 50vh;
  }
}

/* === Services Section Enhanced === */
/* === Services Section Enhanced === */
.svx-section {
  padding: 5rem 1rem;
  background: #1f3521;
  color: white;
  font-family: "Inter", sans-serif;
}

.svx-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.svx-section h4.about-intro {
  font-size: 1.25rem;
  font-weight: 500;
  color: #d0d0d0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.svx-title {
  font-size: 2.75rem;
  text-align: center;
  background: linear-gradient(90deg, #ffffff, #cfcfcf, #ffffff);
  
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
  font-weight: 700;
}

.svx-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* === Card Styling === */
.svx-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 10px 30px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: svx-fadeup 0.6s ease forwards;
  width: 100%;
  max-width: 100%;
}

.svx-card:nth-child(1) {
  animation-delay: 0.1s;
}
.svx-card:nth-child(2) {
  animation-delay: 0.3s;
}
.svx-card:nth-child(3) {
  animation-delay: 0.5s;
}

.svx-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* === Icon Styling === */
.svx-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #1b281d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}

.svx-card:hover .svx-icon {
  background: #3b5f40;
}

.svx-svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #ffffff;
}

/* === Text Styling === */
.svx-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #f1f1f1;
}

.svx-card-text {
  font-size: 0.95rem;
  color: #c2c2c2;
  line-height: 1.7;
}

/* === Animation === */
@keyframes svx-fadeup {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive Tweaks === */
@media (max-width: 640px) {
  .svx-section {
    padding: 3rem 1rem;
  }

  .svx-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .svx-card {
    padding: 1.5rem;
  }

  .svx-card-title {
    font-size: 1.2rem;
  }
}

#svxintro {
  font-size: 1.8rem;
}




/* testimonials */
 .container{
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
}

section .testimonials{
  padding: 10px;
}

.testimonials{
  padding: 60px 0;
  background: var(--dark);
  font-family: "Inter", sans-serif;
} 
.testimonials-item{
  background-color: hsl(0, 0%, 100%);
  padding: 30px;
  border-radius: 30px;
}
.testimonials-item .info{
display: flex;

align-items: center;
}
.testimonials-item img{
  max-width: 80px;
  border-radius: 50%;
  margin-right: 20px;
  vertical-align: middle;
}

.testimonials-item .name{
  font-size: 24px;
  text-transform: capitalize;

  font-weight: 600;
  color: black ;
  line-height: 1.2;
}
.testimonials-item p{
margin-top: 20px;
color:#333;

}

.testimonials-item .rating{
  margin-top: 15px;
  font-size: 14px;
  color: hsl(36, 88%, 66%);
}

.testimonials .swiper-pagination{
  position: relative;
  margin-top: 40px;
  bottom: auto;
}

.testimonials .swiper-pagination-bullet{
  height: 12px;
  width: 12px;
  background-color: white;
}























