/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Raleway:100,400,600,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Baloo+Chettan&display=swap');

/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
 2) font-family: 'Poppins', sans-serif;
 ----------------------------------------*****/


/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(font-awesome.min.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(swiper.min.css);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

: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;
}

:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #B22862; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.5);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #B22862; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.transparent-background {
  --background-color: rgba(255, 255, 255, 0);
  --surface-color: rgba(255, 255, 255, 0.1);
}


* {
     box-sizing: border-box !important;
}


html {
     scroll-behavior: smooth;
}

body {
  color:#000;
  font-family: var(--default-font);
}



body > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 1366px) {
  body {
    background-attachment: fixed;
  }
}


a {
     color: #ffffff;
     text-decoration: none !important;
     outline: none !important;
     -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
     -ms-transition: all .3s ease-in-out;
     -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
     letter-spacing: 0;
     font-weight: normal;
     position: relative;
     padding: 0 0 10px 0;
     font-weight: normal;
     line-height: normal;
     color: #111111;
     margin: 0
}

h1 {
     font-size: 24px;
}

h2 {
     font-size: 22px;
}

h3 {
     font-size: 18px;
}

h4 {
     font-size: 16px
}

h5 {
     font-size: 14px
}

h6 {
     font-size: 13px
}

*,
*::after,
*::before {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
     color: #212121;
     text-decoration: none!important;
     opacity: 1
}

button:focus {
     outline: none;
}

ul,
li,
ol {
     margin: 0px;
     padding: 0px;
     list-style: none;
}

p {
     margin: 0px;
     font-weight: 500;
     font-size: 15px;
     line-height: 24px;
}

a {
     color: #222222;
     text-decoration: none;
     outline: none !important;
}

a,
.btn {
     text-decoration: none !important;
     outline: none !important;
     -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
     -ms-transition: all .3s ease-in-out;
     -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
}

img {
     max-width: 100%;
     height: auto;
}

 :focus {
     outline: 0;
}

.btn-custom {
     margin-top: 20px;
     background-color: transparent !important;
     border: 2px solid #ddd;
     padding: 12px 40px;
     font-size: 16px;
}

.lead {
     font-size: 18px;
     line-height: 30px;
     color: #767676;
     margin: 0;
     padding: 0;
}

.form-control:focus {
     border-color: #ffffff !important;
     box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
}

.navbar-form input {
     border: none !important;
}

.badge {
     font-weight: 500;
}

blockquote {
     margin: 20px 0 20px;
     padding: 30px;
}

.full {
     float: left;
     width: 100%;
}

.full {
     width: 100%;
     float: left;
     margin: 0;
     padding: 0;
}


/**-- heading section --**/

/* Top Bar */

.top-bar {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.top-bar a {
  color: #a39c9c !important;
  opacity: 1;
  font-weight: 500;
}

.top-bar a:hover{
  color: #B22862 !important;
  font-weight: 550;
  opacity: 1;
}



.top-bar i {
  color: #B22862;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #4d0523;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-left: 20px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #7a133e !important;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    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;
  }
}

/*--------------------------------------------------------------
# Heading Section 
--------------------------------------------------------------*/

.heading-hero {
  position: relative;
  height: 600px;
  background: url('../assets/img/site/eagleview.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heading-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.432);
  pointer-events: none;
}

.thank-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.heading-hero .container {
  position: relative;
  z-index: 2;
}

.heading-hero h1 {
  padding: 20px;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.breadcrumb {
  color: #ddd;
  font-size: 14px;
}


/*--------------------------------------------------------------
# Table Style
--------------------------------------------------------------*/
/* ===== PACKAGE BOX WITH BACKGROUND ===== */

.package-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.row > .col {
  margin-bottom: 20px;
}

.card {
  background: transparent;
  border: none;

}

/* BACKGROUND IMAGES */
.firstbox {
  background: url('../assets/img/site/waterpark_front.webp') center/cover no-repeat;
}

.secondbox {
  background: url('../assets/img/site/SwimmingPool.webp') center/cover no-repeat;
}

.thirdbox {
  background: url('../assets/img/site/bonfire.webp') center/cover no-repeat;
}
.thirdbox::before {
  background: rgba(0, 0, 0, 0.479);
}

.fourthbox {
  background: url('../assets/img/site/wada_traditional.webp') center/cover no-repeat;
}


/* DARK OVERLAY */
.package-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.85)
  );
  backdrop-filter: blur(6px);
}
/* CONTENT ABOVE OVERLAY */
.package-box * {
  position: relative;
  z-index: 1;
}

.package-box {
  padding: 30px 25px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.bi-arrow-right-square-fill {
  color: #B22862;
  font-size: 20px;
}

/* TEXT */
.pkg-title {
  font-size: 30px;
  letter-spacing: 0.5px;
  color: #fff;
  font-weight: 800;
}

.pkg-tagline {
  color: #ddd;
  margin-bottom: 20px;
  font-size: 14px;
  opacity: 0.85;
}

/* TABLE */
.package-table {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 
    0 8px 30px rgba(0,0,0,0.4),
    inset 0 0 20px rgba(255,255,255,0.05);

  padding: 10px;
    font-weight: 600;
  width: 100%;
  flex-grow: 1;          /* important */
  display: flex;
  flex-direction: column;
}

.package-table tbody {
  flex-direction: column;
  height: 100%;
}

.package-table tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex: 1;   /* distributes rows evenly */
}

.package-table tr:hover {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transform: scale(1.01);
  box-shadow: 0 5px 20px rgba(178, 40, 98, 0.3);
}

.package-table th {
  width: 25%;
  padding: 12px;
  text-align: left;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.package-table td {
  font-size: 14px;
  line-height: 1.6;  
  padding: 12px;
  color: #fff;
}

/* BOOK SECTION */

.book-section {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* BUTTONS */

.btn-book,
.btn-details {
  width: 300px;          /* fixed clean width */
  max-width: 90%;        /* mobile safe */
  text-align: center;
}


.btn-book:hover,
.btn-book:focus {
    box-shadow: inset -9.9em 0 0 0 var(--hover), inset 9.9em 0 0 0 var(--hover);
}

.btn-book {
    --color: #ffffff;
    --hover: #ffffff;
}

.btn-book {
    padding: 10px;
    font-size: 1rem;
    border: none;
    background-color: #a61c5a;
    border-radius: 0.375rem;
    color: var(--color);
    transition: 0.59s;
}

.btn-book:hover,
.btn-book:focus {
    border-color: 2px solid#a61c5a;
    color: #a61c5a;
}



.btn-details:hover,
.btn-details:focus {
    box-shadow: inset -9.9em 0 0 0 var(--hover), inset 9.9em 0 0 0 var(--hover);
}

.btn-details {
    --color: #ffffff;
    --hover: #ffffff;
}

.btn-details {
    padding: 10px;
    font-size: 1rem;
    border: none;
    background-color: #a61c5a;
    border-radius: 0.375rem;
    color: var(--color);
    transition: 0.59s;
}
.btn-details:hover,
.btn-details:focus {
    border-color: 2px solid#a61c5a;
    color: #a61c5a;
}

.tc-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-top: 15px;
  letter-spacing: 0.3px;
}

/*--------------------------------------------------------------
/* GET DETAILS BUTTON */
/* FIX MODAL VISIBILITY */
/* Control modal size 
--------------------------------------------------------------*/

#detailsModal .modal-dialog {
  max-width: 500px;
}

/* Limit height of modal */
#detailsModal .modal-content {
  max-height: 90vh;
  overflow: hidden;
  border-radius: 15px;
}

/* Make only body scrollable */
#detailsModal .modal-body {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 10px;
}

/* Fix logo section */
#detailsModal .mlogo {
  text-align: center;
  padding: 15px !important;
}

/* Reduce spacing between fields */
#detailsModal .mb-3 {
  margin-bottom: 12px !important;
}




.modal-dialog {
  max-width: 450px;
}

.mlogo {
  background-color: #881846;
  display: flex;
  justify-content: center;
}

.modal-title{
  color: #881846;
  font-weight: 600;
}


.modal-content {
  background: #ffffff;   /* makes modal white */
  color: #000;           /* text visible */
  border-radius: 12px;
}

/* INPUT FIELDS FIX */
.modal-body input,
.modal-body textarea,
.modal-body select {
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  border: 2px solid #881846;
}

/* PLACEHOLDER COLOR */
.modal-body input::placeholder,
.modal-body textarea::placeholder {
  color: #777;
}

/* BUTTON STYLE */
.btn-submit {
  width: 100%;
  background: #B22862;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
}

.btn-submit:hover {
  background: #881846;
}


.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}


/* Modal Center Look */
.modal-content {
  border-radius: 15px;
  padding: 10px;
}

/* Card inside modal */
.form-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Logo */
.form-logo {
  max-width: 200px;
}

/* Labels */
.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

/* Inputs */
.custom-input {
  border-radius: 12px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.custom-input:focus {
  border-color: #881846;
  box-shadow: 0 0 0 0.2rem rgba(136, 24, 70, 0.2);
}

/* Button */
.submit-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #333;
}



/* FLOATING GET DETAILS BUTTON */
#floating-details-btn {
  font-size: larger;
  font-weight: 700;
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  background: #B22862;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px 20px 0 0;
  z-index: 9999;
  border: none;
}

/* Hover Effect */
#floating-details-btn:hover {
  background: #881846;
  color: #ffffff;
}

#floating-details-btn {
  animation: slideIn 1s ease;
}

@keyframes slideIn {
  from {
    right: -150px;
  }
  to {
    right: 0;
  }
}


#toastMsg {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #881846;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease;
  z-index: 9999;
}

#toastMsg.show {
  opacity: 1;
  transform: translateY(0);
}



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-active {
  background: #fff !important;
  color: #881846 !important;
  border: 2px solid #881846;
}

.footer-active i {
  color: #881846 !important;
}

.custom-footer {
  background: linear-gradient(25deg, #4d0523,#7a133e, #a0256d);
  color: #fff;
  padding: 50px 0 20px;
}

.footer-logo {
  font-size: 26px;
  font-weight: 700;
}

.footer-sub {
  margin-bottom: 15px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffd6ec;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 14px;
  opacity: 0.8;
}






.footer-bottom .copyright p {
  margin-bottom: 0;
}

.footer-bottom .social-links {
  margin-top: 20px;
}

.footer-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  color: #ffffff;
  margin: 0 5px;
  transition: 0.3s;
}

.footer-bottom .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

.footer-bottom .credits a {
  color: #fff;
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}


.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}




/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



#whatsapp-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #25D366;
  color: #fff;
  font-size: 22px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Pulse Effect */
#whatsapp-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

#whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/**  inner page css **/
.back_re {
     background-color: #0f1521;
}
.back_re .title {
     text-align: center;
}
.back_re .title h2 {
color:#fff;
font-size: 40px;
padding: 40px 0;
font-weight: 600;
text-transform: uppercase;
line-height: 35px;
}
.margin_0 {
     margin:0 !important;
}


.inner_page .gallery {
     padding-top: 90px;
}
.inner_page .blog {
     margin-top: 90px;
}