/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}


/* Slideshow Background */
.slideshow-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  /* Ensure it stacks block elements */
}

/* Top Bar Styles */
.top-bar {
  background-color: #000;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex !important;
  /* Force flex for layout */
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  /* Add padding for safety */
}

.contact-info a {
  color: #fff;
  margin-right: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #d41b74;
}

.social-icons a {
  color: #fff;
  margin-left: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #d41b74;
}

.main-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0px 15px;
}

/* Hide top bar on mobile */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo img {
  width: 140px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links li a {
  position: relative;
  font-weight: bold;
  font-size: 16px;
  color: white;
  padding: 5px 0;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: #d41b74;
  transition: width 0.3s ease-in-out;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #d41b74;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px 20px;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 2px #070808;
}

.hero-content {
  max-width: 700px;
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero p {
  font-size: 16px;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #d41b74;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(212, 27, 116, 0.4);
}

.btn:hover {
  background-color: #b01660;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 27, 116, 0.6);
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    flex-direction: column;
  }

  .nav.open {
    max-height: 600px;
  }

  .nav.open .mobile-contact-info {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    gap: 20px;
    text-align: center;
  }

  .nav-links li a {
    font-size: 18px;
    padding: 10px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

.our-promise {
  width: 100%;

  background: #d41b74;
  background: linear-gradient(301deg, #d41b74 0%, rgba(54, 61, 57, 0.57) 70%);
  color: white;
  padding: 80px 20px;
  text-shadow: 1px 1px 2px #070808;
}

#our-vision,
#our-team {
  background: linear-gradient(59deg, #d41b74 0%, rgba(54, 61, 57, 0.57) 70%);
}

.promise-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.promise-img {
  flex: 1 1 400px;
  margin-top: 20px;
}

.promise-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promise-text {
  flex: 1 1 400px;
}

.promise-text h2 {
  font-size: 40px;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 2px #070808;
  margin-bottom: 20px;
}

.founder-intro {
  text-align: center;
  margin-bottom: 20px;
}

.founder-intro h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: gold;
}

.founder-intro p {
  /* font-size: 1.2rem; */
  font-style: italic;
  color: #eee;
}

.promise-text p {
  font-size: 16px;
  color: #eee;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .promise-container {
    flex-direction: column;
    text-align: center;
  }

  .stats {
    flex-direction: column;
    gap: 15px;
  }

  .promise-text h2 {
    font-size: 40px;
  }

  .promise-text p,
  .stats p {
    font-size: 16px;
  }
}

.stats {
  display: flex;
  justify-content: center;
  /* Centering the awards list */
  flex-wrap: wrap;
  gap: 30px;
  margin: 20px 0;
  text-align: left;
  /* Keep list items left aligned if preferred, or center */
}

.awards-list {
  list-style-type: none;
  padding: 0 10px;
  /* Add some padding for safety */
  margin: auto;
  text-align: left;
  display: inline-block;
  max-width: 100%;
  /* Ensure it doesn't overflow parent */
  box-sizing: border-box;
  /* Include padding in width */
}

.awards-list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: gold;
  /* Ensure text wraps on small screens */
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.stats div {
  flex: 1;
  text-align: center;
  /* Centers the UL block */
}

.stats span {
  display: block;
  font-size: 2.5 rem;
  font-weight: bold;
}

.stats p {
  margin-top: 5px;
  font-size: 1rem;
}

.stats h3 {
  color: gold;
}

.event-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;

}

.event-stats div {
  text-align: center;
  flex: 1;
}

.event-stats span {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: gold;
}

.event-stats p {
  margin-top: 5px;
  font-size: 1rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .event-content {
    padding: 30px 20px;
  }

  .event-stats {
    flex-direction: column;
    align-items: center;
  }

  .event-content h2 {
    font-size: 2rem;
  }

  .event-stats span {
    font-size: 2rem;
  }
}

.moments-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.moments-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.moments-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moments-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(255, 255, 255, 0));
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.moments-text {
  max-width: 600px;
  color: #fff;
  margin-left: 30px;
  text-shadow: 1px 1px 2px #070808;
}

.moments-text h2 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.moments-text .highlight {
  color: #d41b74;
}

.moments-text p {
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .moments-overlay {
    justify-content: center;
    padding: 0 20px;
    text-align: center;
  }

  .moments-text h2 {
    font-size: 2.2rem;
    text-align: center;
  }

  .moments-text p {
    font-size: 1rem;
  }
}

.our-service {
  background: #d41b74;
  background: linear-gradient(301deg, #d41b74 0%, rgba(54, 61, 57, 0.57) 70%);
  color: white;
  /* Bright pink theme */
  padding: 60px 20px;
  text-align: center;
}

.promise-container.reverse {
  flex-direction: row-reverse;
}

.our-service h2 {
  color: white;
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
  text-shadow: 1px 1px 2px #070808;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

.service-item {
  position: relative;
  height: 460px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: white;
  border: 2px solid #d41b74;
  /* Adding border with brand color */
  border-radius: 10px;
  /* Optional: rounded corners */
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(212, 27, 116, 0.4);
  /* Glowing effect on hover */
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
  padding: 20px;
}

.service-item .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.service-item:hover .overlay {
  opacity: 1;
}

.service-item h3 {
  margin: 0;
  font-size: 1.5rem;
}

.service-item p {
  margin: 10px 0 0;
  font-size: 1rem;
}

.we-are-here-section {
  background-image: url('img/5.webp');
  /* Replace with actual image */
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  position: relative;
  color: white;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.we-are-here-content {
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.3);
  /* Slight overlay for readability */
  padding: 40px;
  border-radius: 10px;
}

.we-are-here-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 1px 1px 2px #070808;
}

.we-are-here-content h1 span {
  color: #d41b74;
  /* Pink "24/7" */
}

.we-are-here-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-btn {
  background-color: #d41b74;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 27, 116, 0.4);
}

.contact-btn:hover {
  background-color: #b01660;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 27, 116, 0.6);
}

/* 📱 Responsive for Mobile */
@media (max-width: 768px) {
  .we-are-here-section {
    padding: 60px 15px;
  }

  .we-are-here-content h1 {
    font-size: 2.5rem;
  }

  .we-are-here-content p {
    font-size: 1rem;
  }

  .contact-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

.footer {
  background-color: #4c4c4c;
  color: #ffffff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

/* Desktop grouping of middle columns */
@media (min-width: 769px) {
  .footer-container {
    justify-content: flex-start;
    gap: 30px;
  }

  .footer-column {
    flex: 0 1 auto;
    /* Don't grow, fit content */
  }

  .footer-column:nth-child(1) {
    margin-right: auto;
  }

  .footer-column:last-child {
    margin-left: auto;
    max-width: 300px;
    /* Prevent description from getting too wide */
  }
}

.footer-column {
  flex: 1 1 250px;
}

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-logo-text {
  font-size: 26px;
  margin: 0;
  font-weight: bold;
}

.footer-logo-text span {
  color: #d41b74;
}



.footer-contact i {
  margin-right: 10px;
  color: #d41b74;
}

.footer-contact p {
  margin: 8px 0;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 15px;
}

.footer-contact a:hover {
  color: #d41b74;
  padding-left: 5px;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-column p {
  font-size: 14px;
  color: #ccc;
}

.footer-social a {
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
  background: #333;
  padding: 8px;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: #d41b74;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 15px;
}

.footer-links a:hover {
  color: #00bcd4;
  padding-left: 5px;
}

/* for gallery */


.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  background-color: #d41b74;
  /* Theme color for gallery background */
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}


/* gallery end */

.we-are-here-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

.contact-form-box {
  flex: 1 1 500px;
  background-color: rgba(0, 0, 0, 0.3);
  /* Same style as left box */
  padding: 40px;
  border-radius: 10px;
  color: white;
}

.contact-form-box h2 {
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  font-size: 2.5rem;
  text-shadow: 1px 1px 2px #070808;
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: #000;
}

.contact-form-box button {
  align-self: flex-start;
}

/* Mobile Support */
@media (max-width: 768px) {
  .we-are-here-wrapper {
    flex-direction: column;
  }
}



/* for responsive */


@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    height: 350px;
  }
}


@media (max-width: 768px) {
  .our-promise .promise-container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 20px;
    padding: 0 15px;
  }

  .our-promise .promise-text {
    padding: 0 10px;
  }

  .our-promise .promise-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .our-promise .promise-text p {
    font-size: 1rem;
  }

  .stats {
    flex-direction: column;
    gap: 15px;
    margin: 0;
    align-items: center;
  }

  .stats div {
    text-align: center;
  }

  .stats h3 {
    font-size: 1.5rem;
  }
}





@media (max-width: 768px) {

  .event-stats {
    flex-direction: row !important;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
    /* Enable horizontal scroll if needed */
    padding: 0 10px;
  }

  .event-stats div {
    flex: 0 0 auto;
    /* Prevent shrinking */
    min-width: 100px;
    text-align: center;
  }

  .stats h3,
  .event-stats span {
    font-size: 1.3rem;
  }

  .stats p,
  .event-stats p {
    font-size: 0.9rem;
  }
}



@media (max-width: 768px) {
  .event-stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 10px;
  }

  .event-stats div {
    flex: 1 1 30%;
    min-width: 100px;
    text-align: center;
    word-break: break-word;
  }

  .event-stats span {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .event-stats p {
    font-size: 1rem;
    margin-top: 5px;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {

  /* General container adjustments */
  .promise-container,
  .promise-container.reverse {
    flex-direction: column !important;
    padding: 0 15px;
    align-items: center;
    text-align: center;
  }

  .promise-img,
  .promise-text {
    width: 100%;
    flex: 1 1 auto;
    margin: 0;
  }

  .promise-text h2 {
    font-size: 1.8rem;
    margin: 20px 0 10px;
  }

  .promise-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Our Vision and Event Stats (About page) */
  .event-stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
  }

  .event-stats div {
    width: 100%;
    text-align: center;
  }

  .event-stats span {
    font-size: 1.5rem;
  }

  .stats {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .stats div {
    text-align: center;
  }

  .stats h3 {
    font-size: 1.3rem;
  }

  .stats p {
    font-size: 0.95rem;
  }

  /* About page custom padding */
  #our-vision,
  #our-promise {
    padding: 40px 15px;
  }

  .our-promise {
    padding: 40px 15px;
  }

  .footer-column,
  .footer-contact,
  .footer-social {
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .our-service h2 {
    font-size: 1.8rem;
    padding: 20px 10px;
    text-shadow: 1px 1px 2px #070808;
  }
}




/* for footer spacing */


@media (max-width: 768px) {
  .footer {
    padding: 30px 15px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-column {
    flex: 1 1 100%;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .footer-logo-group {
    justify-content: center;
    margin-bottom: 10px;
  }

  .footer-logo-text {
    font-size: 22px;
  }

  .footer-contact p {
    font-size: 0.95rem;
    margin: 5px 0;
  }

  .footer-social {
    margin-top: 10px;
  }

  .footer-social a {
    font-size: 14px;
    padding: 6px;
    margin-right: 6px;
  }

  .footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .footer-column p {
    font-size: 0.9rem;
  }
}

/* for about us page meet the founder section */


/* meet the founder section mobile layout cleanup */
@media (max-width: 768px) {
  .founder-intro {
    text-align: center;
    margin-bottom: 20px;
  }
}




/* for grid in our page autoplay grid */


/* Mobile: force overlay visible when .show is active */
@media (max-width: 768px) {
  .service-item .overlay {
    opacity: 0;
    pointer-events: none;
  }

  .service-item .overlay.show {
    opacity: 1 !important;
    pointer-events: auto;
  }
}



/* slides align little left */

@media (max-width: 768px) {
  #slideshow {
    background-position: 60% center !important;
  }
}


/**
 * Header CSS - Extracted from Ambed Theme
 * This CSS is designed to work with the provided HTML header structure
 * 
 * Dependencies required:
 * - Font Awesome 5 (for icons)
 * - Google Fonts (Rubik)
 */

/*===============================================
  CSS Variables
===============================================*/
:root {
  --ambed-font: 'Rubik', sans-serif;
  --ambed-reey-font: "reeyregular";
  --ambed-gray: #8b827d;
  --ambed-gray-rgb: 139, 130, 125;
  --ambed-white: #ffffff;
  --ambed-white-rgb: 255, 255, 255;
  --ambed-black: #3c3531;
  --ambed-black-rgb: 60, 53, 49;
  --ambed-base: #a47c68;
  --ambed-base-rgb: 164, 124, 104;
  --ambed-primary: #f2eeeb;
  --ambed-primary-rgb: 242, 238, 235;
  --ambed-bdr-color: #e2ddda;
  --ambed-bdr-color-rgb: 226, 221, 218;
}

/*===============================================
  Base Reset & Common Styles
===============================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--ambed-font, "Rubik", sans-serif);
  color: var(--ambed-gray, #8b827d);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
}

a {
  color: var(--ambed-gray, #8b827d);
  text-decoration: none;
  transition: all 500ms ease;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/*===============================================
  Button Styles (.thm-btn)
===============================================*/
.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  background-color: var(--ambed-black, #3c3531);
  color: var(--ambed-white, #ffffff);
  font-size: 14px;
  font-weight: 700;
  padding: 15px 50px 15px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.thm-btn:hover {
  color: var(--ambed-white, #ffffff);
}

.thm-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--ambed-base, #a47c68);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  opacity: 1;
  z-index: -1;
}

.thm-btn:hover:after {
  opacity: 1;
  width: 100%;
}

/*===============================================
  Main Header Styles
===============================================*/
.main-header {
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 99;
  position: relative;
}

.full-width-header-content {
  width: 100%;
}

/* Header Top Section */
.main-header__top {
  position: relative;
  display: block;
  background-color: var(--ambed-white, #ffffff);
  padding-bottom: 35px;
  margin-bottom: -35px;
}

.main-header__top:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  width: 50%;
  content: "";
  background-color: #483e39;
}

.main-header__top:after {
  position: absolute;
  top: 0;
  right: 0;
  height: 8px;
  width: 50%;
  content: "";
  background-color: var(--ambed-base, #a47c68);
}

.main-header__top-inner {
  position: relative;
  display: block;
  padding: 36px 110px 3px;
}

/* Logo Styles */
.main-header__logo {
  position: relative;
  display: block;
  float: left;
}

.main-header__logo .dark-logo {
  display: block;
}

.main-header__logo .light-logo {
  display: none;
}

.main-header__logo img {
  max-width: 100%;
  height: auto;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-crisp-edges;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

/* Header Top Right */
.main-header__top-right {
  position: relative;
  display: block;
  float: right;
}

.main-header__top-right-content {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 0 2px;
}

/* Address Box */
.main-header__top-address-box {
  position: relative;
  display: block;
}

.main-header__top-address {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__top-address li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__top-address li:before {
  position: absolute;
  top: -4px;
  bottom: -5px;
  right: -28px;
  content: "";
  width: 1px;
  background-color: var(--ambed-bdr-color, #e2ddda);
  transform: rotate(12deg);
}

.main-header__top-address li:last-child:before {
  display: none;
}

.main-header__top-address li+li {
  margin-left: 54px;
}

.main-header__top-address li .icon {
  position: relative;
  display: flex;
  align-items: center;
  top: -3px;
}

.main-header__top-address li .icon span {
  font-size: 30px;
  color: var(--ambed-base, #a47c68);
  display: flex;
  align-items: center;
}

.main-header__top-address li .icon--location span {
  font-size: 48px;
  margin-left: -12px;
  margin-right: -12px;
}

.main-header__top-address li .content {
  margin-left: 20px;
}

.main-header__top-address li .content p {
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  color: var(--ambed-gray, #8b827d);
}

.main-header__top-address li .content h5 {
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  margin: 0;
}

.main-header__top-address li .content h5 a {
  color: var(--ambed-black, #3c3531);
  transition: all 500ms ease;
}

.main-header__top-address li .content h5 a:hover {
  color: var(--ambed-base, #a47c68);
}

/* Social Icons */
.main-header__top-right-social {
  display: flex;
  align-items: center;
  margin-left: 40px;
  margin-top: -3px;
}

.main-header__top-right-social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ambed-black, #3c3531);
  font-size: 15px;
  background-color: var(--ambed-primary, #f2eeeb);
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
  z-index: 1;
}

.main-header__top-right-social a:hover {
  color: var(--ambed-white, #ffffff);
}

.main-header__top-right-social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--ambed-base, #a47c68);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .4s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.main-header__top-right-social a:hover:after {
  opacity: 1;
  transform: scaleY(1);
}

.main-header__top-right-social a+a {
  margin-left: 10px;
}

/*===============================================
  Main Menu Styles
===============================================*/
.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  display: block;
  background-color: white;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  padding-left: 40px;
  padding-right: 5px;
}

.main-menu__left {
  display: block;
  float: left;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__right {
  position: relative;
  display: block;
  float: right;
}

.main-menu__search-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.main-menu__search-box {
  position: relative;
  display: flex;
  margin-right: 30px;
}

.main-menu__search-box:before {
  position: absolute;
  top: -8px;
  bottom: -7px;
  left: -30px;
  content: "";
  width: 1px;
  background-color: var(--ambed-bdr-color, #e2ddda);
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 25px;
  color: var(--ambed-black, #3c3531);
  transition: all 500ms ease;
  cursor: pointer;
}

.main-menu__search:hover {
  color: var(--ambed-base, #a47c68);
}

.main-menu__btn-box {
  position: relative;
}

/* Menu List */
.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 44px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--ambed-gray, #8b827d);
  position: relative;
  transition: all 500ms ease;
  font-weight: 400;
}

.main-menu .main-menu__list>li>a>.main-menu-border,
.stricky-header .main-menu__list>li>a>.main-menu-border {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  opacity: 0;
  visibility: hidden;
  height: 0px;
  width: 12px;
  border-left: 2px solid #3b3430;
  border-right: 2px solid #3b3430;
  transition: all 500ms ease;
}

.main-menu .main-menu__list>li>a>.main-menu-border:before,
.stricky-header .main-menu__list>li>a>.main-menu-border:before {
  position: absolute;
  top: -7px;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--ambed-base, #a47c68);
  content: "";
  transform: translateX(-50%);
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--ambed-black, #3c3531);
}

.main-menu .main-menu__list>li.current>a>.main-menu-border,
.main-menu .main-menu__list>li:hover>a>.main-menu-border,
.stricky-header .main-menu__list>li.current>a>.main-menu-border,
.stricky-header .main-menu__list>li:hover>a>.main-menu-border {
  transform: translateX(-50%) translateY(0px);
  opacity: 1;
  visibility: visible;
  height: 11px;
}

/* Dropdown Menu */
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 10px 0;
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: 1px solid rgba(var(--ambed-black-rgb, 60, 53, 49), 0.1);
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  font-size: 16px;
  line-height: 30px;
  color: var(--ambed-gray, #8b827d);
  letter-spacing: 0;
  font-weight: 400;
  display: flex;
  padding: 10px 25px;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--ambed-base, #a47c68);
  color: var(--ambed-white, #ffffff);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

/* Megamenu */
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
}

.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

/* Mobile Nav Toggler */
.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--ambed-base, #a47c68);
  cursor: pointer;
  transition: 500ms;
  display: none;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--ambed-black, #3c3531);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/* Sticky Header */
.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  transform: translateY(-120%);
  transition: visibility 500ms ease, transform 500ms ease;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  transform: translateY(0);
  visibility: visible;
}

.stricky-header.main-menu {
  padding: 0px 0px;
  background-color: var(--ambed-white, #ffffff);
}

.stricky-header .main-menu__main-menu-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stricky-header .main-menu__wrapper-inner {
  box-shadow: none;
  padding-left: 0px;
  padding-right: 0px;
}

/*===============================================
  Mobile Navigation Styles
===============================================*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: visibility 500ms ease 500ms, transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: visibility 500ms ease 0ms, transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--ambed-black, #3c3531);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding: 30px 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--ambed-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--ambed-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--ambed-base, #a47c68);
  border: none;
  outline: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--ambed-black, #3c3531);
}

/* Mobile Nav Contact Info */
.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
}

.mobile-nav__contact li {
  color: var(--ambed-gray, #8b827d);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--ambed-base, #a47c68);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--ambed-base, #a47c68);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__social {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--ambed-white, #ffffff);
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--ambed-base, #a47c68);
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--ambed-white, #ffffff);
  cursor: pointer;
}

/*===============================================
  Responsive Styles
===============================================*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-header__top-address-box {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-header__top-address-box {
    display: none;
  }

  .main-header__top-right {
    display: none;
  }

  .main-header__logo {
    float: none;
  }
}

/*===============================================
  Utility Classes
===============================================*/
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Icon font styles (using Font Awesome) */
[class^="icon-"],
[class*=" icon-"] {
  font-family: 'ambed-icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Note: You'll need to include Font Awesome for social icons */
/* Add this to your HTML head: */
/* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"> */

/* Mobile Contact Info Styles */
.mobile-contact-info {
  display: none;
  flex-direction: column;
  align-items: center;
  /* Center align */
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  padding-left: 0;
  width: 100%;
}

.contact-item {
  margin-bottom: 12px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  /* Center content */
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.contact-item i {
  width: 25px;
  /* Fixed width for alignment */
  color: #d41b74;
  font-size: 16px;
  text-align: center;
  /* Ensure icon is centered in its box if needed */
}

.contact-item a:hover {
  color: #d41b74;
}

.mobile-socials {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  /* Center icons */
  gap: 20px;
}

.mobile-socials a {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s;
}

.mobile-socials a:hover {
  color: #d41b74;
}

/* Responsive visibility */
@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav.open .mobile-contact-info {
    display: flex;
    flex-basis: 100%;
  }
}



.about-page {
  background-image: url('img/parallax-06.webp');

}
/* Center the last item if it's the 5th one (or any single orphan in the last row) */
.service-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: center;
  width: 100%; /* Ensures it fills the max-width */
}
@media (max-width: 768px) {
  .service-item:last-child:nth-child(odd) {
    max-width: 100%;
  }
}

/* Slideshow Background */
/* Hero Video Background */
.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  /* Fallback */
}

.hero-video.mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-video.desktop {
    display: none;
  }

  .hero-video.mobile {
    display: block;
  }
}




