

@charset "UTF-8";

: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: #35211f; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #200f0d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f95e4d; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #f95e4d; /* 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: #35211f; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f95e4d; /* 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: #faf9f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #031013;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Cormorant Infant", serif!important;
}

a {
  color: #000000;
  text-decoration: none!important;
  transition: 0.3s;
}

a:hover {
  color: #000;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color:#612c3e;
      font-weight: 700;

}
h1 {
    font-family: "Cormorant Infant", serif !important;
    font-weight: 700;
    font-size: 50px;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
 
  color: #fff;
  background-color:#906a78;
  padding: 3px 0;
  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 a {
  color: #fff;
}

#header .logo img {
    padding: 10px;
    margin: 0;
    margin-top: 55px;
    z-index: 1000;
    position: absolute;
    max-height: 110px;
   
}

@media only screen and (max-width: 1024px) {
    #header .logo img {
        padding: 10px;
        margin: 0;
        margin-top: 12px;
        z-index: 1000;
        position: absolute;
        max-height: 72px;
    }
}
.img-fluid {
    max-width: 100%;
    height: auto;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #fff!important;
  background: #6c3043;
    font-size: 18px;
    padding: 7px 22px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: 600;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #6c3043;
  background:#e4c4d4;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

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

/*--------------------------------------------------------------
# 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: #fff;
    padding: 18px 15px;
    font-size: 19px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;font-family: "Cormorant Infant", serif;
  }

  .navmenu a em,
  .navmenu a:focus em {
    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: #421b28!important;
        font-weight: 700;
  }

  .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: #ffc107;
  }

  .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: #fff;
  background:#612c3e;
  font-size: 19px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.footer a{
color: #fff;}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color:#ffffff!important;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 18px;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a em {
  margin-right: 8px;
  font-size: 12px;
  color:#ffc107;
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size:18px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
   background-color: #ffc107;
  color: #000;
  transform: translateY(-3px);
}

.footer .social-links a em {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}
footer#footer .footer-content a {
    color: #fff;
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
 color: #000;
    background-color: #fff;
    font-size: 14px;
    border-color: color-mix(in srgb, #000, transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s 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:#602b3d;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top em {
 font-size: 22px;
    color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #ffb900, transparent 20%);
  color: #000;
}

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


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #000000;
  
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 20px;
  position: relative;
}

.section-title .ft {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title .ft::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  font-family: "Cormorant Infant", serif;
}


/* Default state: Hide the additional content */
    #additionalContent {
        display: none;
    }

  .about-2 {
  padding: 50px 0;
}
.about-2 .image-block {
  position: relative;
  padding: 20px;
}
.about-2 .image-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 65%;
  background-color:#906a78;
  border-radius: 16px;
  z-index: 0;
}
.about-2 .image-block img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
}
.about-2 .image-block .experience-badge {
  position: absolute;
  bottom: -10px;
  left: 30px;
  z-index: 2;
  background: linear-gradient(to right, #1f0b12, #612c3e);
  border-radius: 10px;
  padding: 18px 24px;
  max-width: 300px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}
@media (max-width: 992px) {
  .about-2 .image-block .experience-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
    max-width: none;
  }
}
.about-2 .image-block .experience-badge .badge-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.about-2 .image-block .experience-badge .badge-inner em {
  font-size: 28px;
  flex-shrink: 0;
}
.about-2 .image-block .experience-badge .badge-inner strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.about-2 .image-block .experience-badge .badge-inner span {
  font-size: 13px;
  opacity: 0.85;
}
.about-2 .info-panel .overline {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #181816;
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}
.about-2 .info-panel .overline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 2px;
  background-color:#612c3e;
}
.about-2 .info-panel h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  font-family: "Cormorant Infant", serif !important;
}
@media (max-width: 768px) {
  .about-2 .info-panel h2 {
    font-size: 28px;
  }
}
.about-2 .info-panel .intro {
  font-size: 21px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 20px;
  font-weight: 500;
}
.about-2 .info-panel .text-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 16px;
}
.about-2 .counter-row {
  margin-top: 40px;
  margin-bottom: 40px;
}
.about-2 .counter-row .counter-card {
  padding: 20px;
  border-left: 3px solid var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 0 8px 8px 0;
  transition: transform 0.3s ease;
}
.about-2 .counter-row .counter-card:hover {
  transform: translateY(-3px);
}
.about-2 .counter-row .counter-card .count {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
}
.about-2 .counter-row .counter-card .count-suffix {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}
.about-2 .counter-row .counter-card p {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #080808;
  margin: 8px 0 0 0;
}
.about-2 .discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: #612c3e;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.about-2 .discover-btn i {
  transition: transform 0.3s ease;
}
.about-2 .discover-btn:hover {
  background-color: #612c3e;
  color:#fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, #abcd04, transparent 50%);
}
.about-2 .discover-btn:hover i {
  transform: translateX(4px);
}
@media (max-width: 992px) {
  .about-2 .info-panel {
    margin-bottom: 50px;padding: 10px;
        text-align: justify;
  }
  .about-2 .counter-row {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

section#services {
    background: #906a78;
}

  .services .services-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}
.services .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services .services-image .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(97 44 62 / 53%) 0%, rgb(15 42 68 / 0%) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.services .services-image .image-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}
.services .services-image .image-overlay .overlay-link {
  color: #ffc107;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.services .services-image .image-overlay .overlay-link:hover {
  gap: 12px;
}
.services .service-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: all 0.3s ease;
}
.services .service-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.services .service-item:hover .service-icon {
  background: #906a78;
}
.services .service-item:hover .service-icon em {
  color:#c6dd55;
}
.services .service-item .service-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 8px;
  background: color-mix(in srgb, #aacb04, transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.services .service-item .service-icon i {
  font-size: 24px;
  color: #044450;
  transition: all 0.3s ease;
}
.services .service-item .service-body h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.services .service-item .service-body p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}
@media (max-width: 991px) {
  .services .services-image {
    min-height: 300px;
    margin-bottom: 8px;
  }
}
@media (max-width: 575px) {
  .services .service-item {
    flex-direction: column;
    padding: 24px;
  }
} 

} .section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;    font-size: 18px;
    color:#181816;
    font-weight: 800;
}

.section-title p::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background:#044450;
    margin: 4px 10px;
}
@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .section-title span {
    font-size: 38px;
  }
}
.bg {
    background: #f95e4d;
}

.filter-bar {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
@media (max-width: 768px) {
.filter-bar {
    margin-bottom: 35px;
    padding-bottom: 20px;
  }
}
 
.cta-banner {
  margin-top: 80px;
  padding: 50px 45px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 16px;
  border-left: 4px solid #ffc107;
}
@media (max-width: 992px) {
  .cta-banner {
    padding: 40px 30px;
    margin-top: 60px;
  }
}
@media (max-width: 576px) {
 .cta-banner {
    padding: 30px 24px;
    margin-top: 50px;
  }
}
.cta-banner .banner-content h4 {
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
  line-height: 1.3;
}
@media (max-width: 768px) {
 .cta-banner .banner-content h4 {
    font-size: 1.35rem;
  }
}
.cta-banner .banner-content p {
  font-size: 18px;
    color: #000;
  line-height: 1.7;
  margin-bottom: 0;
}
@media (max-width: 992px) {
.cta-banner .banner-content p {
    margin-bottom: 30px;
  }
}
 .cta-banner .banner-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}
@media (max-width: 992px) {
   .cta-banner .banner-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 576px) {
  .cta-banner .banner-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.cta-banner .banner-actions .btn-start {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: #612c3e;
  color: #fff!important;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.cta-banner .banner-actions .btn-start em {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
 .cta-banner .banner-actions .btn-start:hover {
  background-color: #906a78;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.cta-banner .banner-actions .btn-start:hover em {
  transform: translateX(3px);
}
 .cta-banner .banner-actions .btn-browse {
  color: #451b29;
      font-size: 16px;
    font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}
.cta-banner .banner-actions .btn-browse::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.cta-banner .banner-actions .btn-browse:hover {
  color: #5f2b3d;
}
.cta-banner .banner-actions .btn-browse:hover::after {
  transform: scaleX(1);
  transform-origin: left;
} 
.cta {
   font-weight: 700;
    padding: 1px 0;
    background: #451b29;
    color: #ffffff;
    font-size: 20px;
}
.cta a {
   color: #fff!important;
    
}
.attraction-section { padding: 60px 0; background: #f8f9fa; }
    .carousel-item { transition: transform 0.6s ease; }
    .attraction-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
    }
    .attraction-card:hover {
      transform: translateY(-15px) scale(1.03);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    .card-img-top { height: 220px; object-fit: cover; transition: transform 0.5s ease; }
    .attraction-card:hover .card-img-top { transform: scale(1.1); }
	.title4 {
    font-size: 35px;
    font-weight: 700;
    color: #602b3d;
    text-transform: uppercase;
}
.post-slider {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}
.post-slider .blog-posts-slider .swiper-wrapper {
  height: auto !important;
}
.post-slider .blog-posts-slider .swiper-pagination {
  position: relative;
  margin-top: 50px;
}
.post-slider .blog-posts-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  transition: all 0.3s ease;
}
.post-slider .blog-posts-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background:#602b3d;
  transform: scale(1.2);
}
.post-slider .blog-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.post-slider .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}
.post-slider .blog-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.post-slider .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-slider .blog-image .category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background:#602b3d;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}
.post-slider .blog-image:hover img {
  transform: scale(1.05);
}
.post-slider .blog-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .post-slider .blog-content {
    padding: 25px;
  }
}
.post-slider .author-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.post-slider .author-info .author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}
.post-slider .author-info .author-details {
  display: flex;
  flex-direction: column;
}
.post-slider .author-info .author-details .author-name {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 14px;
  margin-bottom: 2px;
}
.post-slider .author-info .author-details .publish-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.post-slider h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .post-slider h3 {
    font-size: 18px;
  }
}
.post-slider h3 a {
 color: #2c121b;
    transition: color 0.3s ease;
    font-size: 25px;
}
.post-slider h3 a:hover {
  color: #2c121b;
}
.post-slider p {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 25px;
  flex: 1;
}
.post-slider .blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
@media (max-width: 576px) {
  .post-slider .blog-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.post-slider .reading-time {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.post-slider .reading-time i {
  margin-right: 5px;
  font-size: 14px;
}
.post-slider .btn-read-more {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 10%));
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.post-slider .btn-read-more span {
  margin-right: 8px;
}
.post-slider .btn-read-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.post-slider .btn-read-more:hover {
  transform: translateX(5px);
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), #000 10%), var(--accent-color));
  color: var(--contrast-color);
}
.post-slider .btn-read-more:hover i {
  transform: translateX(3px);
}
@media (max-width: 576px) {
  .post-slider .btn-read-more {
    align-self: flex-end;
  }
}
/* Modal Styles */
    .modal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 10000; /* Sit on top */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: auto; /* Enable scroll if needed */
        background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
        justify-content: center;
        align-items: center;
    }

    .modal-content {
        background-color: #fefefe;
        margin: auto;
       padding: 60px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
    text-align: justify;    font-size: 18px;

    }

    .close-btn {
        color: #aaa;
        position: absolute;
        top: 15px;
        right: 25px;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
    }

    .close-btn:hover,
    .close-btn:focus {
        color: black;
        text-decoration: none;
    }

    .modal-content ul {
        list-style: none;
        padding-left: 0;
    }

    .modal-content ul li {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
        padding-left: 30px;
        position: relative;
    }
    
    .modal-content .ri-check-double-line {
        color: #024d89;
        font-size: 24px;
        position: absolute;
        left: 0;
        top: 2px;
    }

    .modal-content h2 {
        text-align: center;
        margin-bottom: 20px;
    }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
@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;
    }
}
ol, ul {
    padding-left: 0em!important;
    list-style: none;
    font-size: 18px;
}
.title2 {
    font-size: 25px;
    font-weight: 800;
    color: #411c28;
}.content.divider p {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
}
.content.divider a {
    color: #000;
}
p.faq {
    font-size: 19px;
    color: #000;
    font-weight: 500;
}
.faq a {
    color: #000 !important;
}
.title3 {
    font-size: 35px;
    font-weight: 600;
}
.card-text:last-child {
    margin-bottom: 0;
    color: #000;
}
.title3 a {
    color: #fff !important;
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #451b29;
    border: 1px solid #612c3e;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
}

.text-center {
    text-align: center!important;
}
.gpdn {
    padding-top: 10px;
    color: #fff;
}
a.btn.btn-primary.form-control {
    background: #ffc107;
    border: 1px solid #612c3e;
    color: #000;
    font-weight: 700;
    font-size: 16px;
}.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}