/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Inter", 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: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #273d4e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0d6efd; /* Changed to Bootstrap blue */
  --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: #430bfb; /* Changed to blue */
  --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: lab(#000080); /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0d6efd;
  /* Changed to blue */


  -primary: #ff6a3e;
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc; /* 13px - 16px */
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem); /* 31px - 49px */
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;  /* 60px - 100px top and bottom */
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
  margin: 0;
  padding: 0;
  /* overflow: auto; */
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}


/* 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: #f1f4fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --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: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

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

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

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

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

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

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

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

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 96px;
  margin-right: 8px;
}

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

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  font-size: 13px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid var(--contrast-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

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

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

  .header .navmenu {
    order: 3;
  }
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgb(0, 0, 128);
}

/*--------------------------------------------------------------
# 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: 13px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
  }

  .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;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #ffffff;
    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: color-mix(in srgb, var(--nav-color) 90%, white 15%);
  }

  .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;
  }
}
.bi-chevron-down::before{
  color: #ffffff;
}

/* 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: #000;
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 100px;
  margin-right: 8px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 3px;
  font-size: 13px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

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

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease-out;
}

/* New text-based loader */
.loader {
  width: fit-content;
  font-size: 40px;
  font-family: monospace;
  font-weight: bold;
  text-transform: uppercase;
  color: #0000;
  -webkit-text-stroke: 1px var(--accent-color);
  background: linear-gradient(90deg,
      #0000 33%,
      var(--accent-color) 0 67%,
      #0000 0) 100% / 300% 100% no-repeat text;
  animation: l12 0.6s steps(14) infinite;
}

.loader:before {
  content: "Loading";
}

@keyframes l12 {
  to {
    background-position: 0;
  }
}

/*--------------------------------------------------------------
# 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;
}

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
  display: block !important;
}

.section-title h2 {
  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 h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .section-title p {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 120px;
}

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

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

.hero .container {
  position: relative;
  z-index: 3;
  padding-bottom: 220px;
}

.hero h2 {
  margin: 0;
  font-size: 58px;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero p {
  /* color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px; */

  margin: 0;
  font-size: 38px;
  font-weight: 500;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .btn-get-started {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
}

.hero .btn-get-started {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 400;
  color: var(--default-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-watch-video {
  background: rgba(41, 167, 126, 0.8);
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  left: 50px;
}

.hero .btn-watch-video i {
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  background: #fff;
  color: #41A67E;
  /* border: 1px solid #41A67E; */
}

.hero .btn-watch-video:hover i {
  color: #41A67E;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

.hero .position-absolute .row{
    transition: .3s ease;
}

.hero .position-absolute .row:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,0,0,.25)!important;
}

/* Mobile */
@media (max-width:991px){

    .hero .position-absolute{
        position:relative !important;
        bottom:auto !important;
        margin-top:25px;
        padding:0 15px;
    }

    .hero .position-absolute .row{
        min-height:auto !important;
        text-align:center;
        padding:15px;
    }

    .hero .position-absolute .col-auto{
        width:100%;
        display:flex;
        justify-content:center;
        padding:0;
        margin-bottom:15px;
    }

    .hero .position-absolute .col-lg-auto{
        width:100%;
        display:flex;
        justify-content:center;
        margin-top:15px;
    }

    .hero .position-absolute h4{
        font-size:1.2rem;
    }
}

@media (max-width: 991.98px) {
    #hero{
        min-height:120vh;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

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

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

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

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

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

.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
  margin-top: 50px;

}

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

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

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

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/* Features images: keep inside right column, responsive and cropped if necessary */
.features .img-fit {
  width: 100%;
  max-width: 520px;     /* limit width on large screens */
  max-height: 340px;    /* limit height to keep layout balanced */
  object-fit: cover;    /* crop to fill without distortion */
  border-radius: 8px;
}

@media (max-width: 991.98px) {
  .features .img-fit {
    max-width: 100%;
    max-height: 260px;
  }
}
  
/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services-2 .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services-2 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services-2 .service-item .title a {
  color: var(--heading-color);
}

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

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

.services-2 .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

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

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

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 0rem) {
  #services-1724 {
    padding: var(--sectionPadding);
    /* removing the side paddings to allow the cards to fit the whole page width */
    padding-right: 0;
    padding-left: 0;
    position: relative;
  }

  #services-1724 .cs-container {
    width: 100%;
    max-width: 156.25rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }

  #services-1724 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 80rem;
    box-sizing: border-box;
    /* 16px - 40px */
    padding: 0 clamp(1rem, 3.8vw, 2.5rem);
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    gap: 1rem;
  }

  #services-1724 .cs-title {
    max-width: 12ch;
  }

  #services-1724 .cs-text {
    max-width: 39.5rem;
  }

  #services-1724 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }

  #services-1724 .cs-item {
    text-align: left;
    list-style: none;
    width: 100%;
    /* 220px - 480px */
    height: clamp(13.75rem, 32vw, 30rem);
    margin: 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0;
    background-color: #000;
    box-shadow: 0px 12px 80px 0px rgba(26, 26, 26, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    grid-column: span 12;
    position: relative;
    z-index: 1;
  }

  #services-1724 .cs-item:hover .cs-picture::after {
    opacity: 0.6;
  }

  #services-1724 .cs-item:hover .cs-picture img {
    transform: scale(1.2);
  }

  #services-1724 .cs-item:hover .cs-number {
    opacity: 1;
    /* 16px - 32px */
    top: clamp(1rem, 2.3vw, 2rem);
  }

  #services-1724 .cs-item:hover .cs-h3 {
    opacity: 1;
    /* 16px - 32px */
    bottom: clamp(1rem, 2.3vw, 2rem);
  }

  #services-1724 .cs-link {
    text-decoration: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    /* 16px - 32px */
    padding: clamp(1rem, 2.3vw, 2rem);
    /* we use flexbox here to grow the link to fit the whole item, making it clickable everywhere, no matter the size */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
  }

  #services-1724 .cs-link::after {
    /* hover overlay */
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    /* as we can't animate background gradients, we animate the change of opacity from 0 to 1 */
    transition: opacity 0.3s;
  }

  #services-1724 .cs-number {
    /* 49px - 84px */
    font-size: clamp(3.0625rem, 6vw, 4.25rem);
    font-weight: 900;
    /* sets the fill of the number to be transparent */
    color: rgba(0, 0, 0, 0);
    opacity: 0;
    position: absolute;
    top: 0;
    /* 16px - 32px */
    right: clamp(1rem, 2.3vw, 2rem);
    transition: opacity 0.3s, top 0.3s;
    /* provides a 1px white stroke to the text, outlining it */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--bodyTextColorWhite);
  }

  #services-1724 .cs-h3 {
    /* 20px - 31px */
    font-size: clamp(1.25rem, 2vw, 1.9375rem);
    font-weight: 900;
    line-height: 1.2em;
    white-space: nowrap;
    /* width, overflow, text-overflow and white-space all provide the ellipsis when the h3 content is too long */
    width: 80%;
    margin: 0;
    color: var(--bodyTextColorWhite);
    overflow: hidden;
    transition: opacity 0.3s, bottom 0.3s;
  }

  #services-1724 .cs-picture {
    width: 100%;
    height: 100%;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
  }

  #services-1724 .cs-picture:before {
    /* gradient overlay */
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, #000000 100%);
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
  }

  #services-1724 .cs-picture:after {
    /* background color overlay on hover */
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: opacity 0.3s;
  }

  #services-1724 .cs-picture img {
    width: 100%;
    height: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: transform 0.7s;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-1724 {
    padding-bottom: 0;
  }

  #services-1724 .cs-content {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2.5rem;
  }

  #services-1724 .cs-item {
    grid-column: span 4;
  }

  #services-1724 .cs-item:nth-of-type(4),
  #services-1724 .cs-item:nth-of-type(5) {
    grid-column: span 6;
  }

  #services-1724 .cs-text {
    width: 60%;
  }

  #services-1724 .cs-title {
    margin: 0;
  }
}

/* Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #services-1724 .cs-card-group {
    grid-template-columns: repeat(5, 1fr);
  }

  #services-1724 .cs-item {
    grid-column: span 1;
  }

  #services-1724 .cs-item:nth-of-type(4),
  #services-1724 .cs-item:nth-of-type(5) {
    grid-column: span 1;
  }
}

.carousel-inner {
  border-radius: 1rem;
  overflow: hidden;
}

.carousel-img {
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .carousel-img {
    height: 250px;
  }
}

/* Smooth 4s fade transition */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 4s ease-in-out;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
  z-index: 1;
}

/* Ensure overlapping fades, avoiding white gap */
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  opacity: 0;
  transition: opacity 4s ease-in-out;
}

.flag-icon {
  height: 1em;
  /* same height as text */
  width: auto;
  /* keep flag ratio */
  vertical-align: middle;
}

@media (min-width: 1850px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1750px;
  }
}

.cs-link {
  text-decoration: none;
  /* remove underline */
  color: inherit;
  /* keep normal color */
  transition: color 0.3s ease;
}

.cs-link:hover .cs-h3 {
  color: yellow;
  /* change text color on hover */
}

ul li {
  margin-bottom: 8px;
  transition: font-weight 0.2s ease, color 0.2s ease;
}

ul li:hover {
  font-weight: 600;
  /* makes text bold */
  color: #000000;
  /* optional: highlight color on hover */
}

ul li i {
  color: #000000;
  margin-right: 6px;
  transition: transform 0.2s ease;
}

ul li:hover i {
  transform: scale(1.1);
  /* slight zoom effect on icon */
}

#contact {
  position: relative;
}

.country-label {
  position: absolute;
  left: -80px;
  top: 90%;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: left center;
  font-weight: bold;
  color: gray;
  letter-spacing: 2px;
  font-size: 60px;
}

/* Center and style icons */
.info-item i {
  font-size: 28px;
  color: #0d6efd;
  /* Bootstrap primary color, adjust if needed */
  width: 60px;
  height: 60px;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* Align everything in info items */
.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Toggle visibility between forms */
.form-wrapper {
  display: none;
  position: relative;
}

.form-wrapper.active {
  display: block;
}

/* Style for arrow button */
#switch-btn {
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#switch-btn:hover {
  background-color: #f1f1f1;
}

.mylogo {
  width: 300px;
  /* optional — adjust to your preferred size */
  animation: flip 40s infinite linear;
  transform-style: preserve-3d;
}

@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }

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


/* Mobile - 360px */


.immigration {
  margin-top: 380px;
}

.img-equal {
  width: 100%;
  height: 220px; /* Adjust height as needed */
  object-fit: cover;
    border-radius: 10px;
  }

.custom-btn {
  background-color: #FFD700; /* Yellow */
  color: #000; /* Black text */
  border: none;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background-color: #000; /* Black background on hover */
  color: #FFD700; /* Yellow text on hover */
  font-weight: 700; /* Bold text on hover */
}

.food-img {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.food-img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

@media (max-width: 576px) {
  .food-img {
    max-width: 150px !important;
  }
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 0;
}

.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

.globaltext {
  font-size: 22.3px;
  font-style: oblique;
}
/*--------------------------------------------------------------

*/
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 20px;
    flex: 1;
}

.accordion-button {
    background-color: #ffffff;
    color: #333;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #0dcaf0;
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(35, 34, 138, 0.25);
}

.accordion-body {
    background-color: #f8f9fa;
    border-left: 4px solid #0dcaf0;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-icon {
    margin-right: 10px;
    color: #edbe00;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}



 /* PH Section */
/* HERO MODERN LAYOUT */
.ph-hero-modern {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #0f1c2e;
}

/* Blurred Background */
.ph-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../img/philippines/phimage.jpeg') center/cover no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
    opacity: 0.4;
}

/* LEFT SIDE */
.ph-hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.ph-hero-heading h1{
    color: #ffffff;
}


.ph-hero-heading span {
    color: #ff8c00;
}

.ph-hero-description {
    margin: 25px 0;
    font-size: 2rem;
    line-height: 1.7;
    max-width: 600px;
    opacity: 0.9;
    font-weight: 800;
    letter-spacing: 1px;
}

.ph-hero-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.ph-hero-btn:hover {
    background: #ff8c00;
    border-color: #ff8c00;
    color: #fff;
}

/* RIGHT CARD */
.ph-hero-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.ph-hero-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.ph-card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

.ph-card-stats {
    font-weight: 600;
    font-size: 1rem;
}

/* SLIDER */
.ph-hero-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.ph-slider {
    position: relative;
    width: 100%;
    height: 450px;
}

.ph-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.ph-slide.active {
    opacity: 1;
}

.ph-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.ph-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.ph-slider-btn:hover {
    background: #ff8c00;
}

.ph-prev {
    left: 10px;
}

.ph-next {
    right: 10px;
}

/* WHITE ABOUT SECTION */
.ph-about-section-white {
    background: #ffffff;
    padding: 50px 0;
}

.ph-about-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
}

.ph-about-subtitle {
    max-width: 700px;
    margin: 15px auto;
    color: #777;
    line-height: 1.7;
}

.ph-about-line {
    width: 80px;
    height: 3px;
    background: #1a73e8;
    margin: 25px auto;
}

/* Tabs */
.ph-tabs {
    margin-bottom: 100px;
}

.ph-tab {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 12px 40px;
    cursor: pointer;
    margin: 0 -2px;
    transition: 0.3s;
    font-weight: 500;
}

.ph-tab:hover {
    background: #ff8c00;
    color: #fff;
    border-color: #ff8c00;
}

.ph-tab.active {
    background: #ff8c00;
    color: #fff;
    border-color: #ff8c00;
}

/* Images */
.ph-about-image-wrapper {
    position: relative;
    height: 420px;
}

.ph-about-img-back {
    position: absolute;
    width: 80%;
    top: 0;
    left: 0;
    border: 8px solid #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.ph-about-img-front {
    position: absolute;
    width: 85%;
    bottom: 0;
    right: 0;
    border: 8px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Text */
.ph-tab-content {
    display: none;
}

.ph-tab-content.active {
    display: block;
}

.ph-tab-content h3 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.ph-orange {
    color: #ff8c00;
    margin-bottom: 20px;
}

.ph-tab-content p {
    color: #666;
    line-height: 1.8;
}

/* LOCATIONS SECTION */
.ph-locations-section {
    background: #f9f9f9;
    padding: 100px 0;
}

.ph-location-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
}

.ph-location-subtitle {
    color: #777;
    margin: 15px auto;
    max-width: 600px;
}

.ph-location-line {
    width: 80px;
    height: 3px;
    background: #ff8c00;
    margin: 25px auto 60px;
}

/* Map */
.ph-map-wrapper {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Location Cards */
.ph-location-card {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #ff8c00;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: 0.3s ease;
}

.ph-location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.ph-location-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.ph-location-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.dggs-section {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 0px !important;
}

.content-box {
    background: linear-gradient(135deg, #4b78a8, #6fa3d6);
    color: #ffffff;
    padding: 80px 70px;
}

.content-box p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-block;
    margin-top: 20px;
    color: rgb(247, 247, 247);
    font-weight: 600;
    /* text-decoration: underline; */
}

.contact-link:hover {
    opacity: 0.85;
}

.image-box {
    text-align: center;
}

.food-collage {
    max-width: 100%;
    height: auto;
}

.immig-list {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

.food-bg-wrapper {
  position: relative;
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.food-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 95%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.90; /* adjust if needed */
}

/* FOREGROUND IMAGES */
.food-img {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

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

.button-79 {
  background: linear-gradient(135deg, #332cf2, #5f7cff);
  border: 0;
  border-radius: 8px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Circular, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 1rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(51, 44, 242, 0.20);
}

.button-79:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(51, 44, 242, 0.25);
  filter: brightness(1.05);
  color: #ffd700; /* Gold/Yellow */
}

.button-79:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(51, 44, 242, 0.20);
}

.button-79:focus {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(95, 124, 255, 0.25),
    0 10px 25px rgba(51, 44, 242, 0.20);
}

.button-79:disabled {
  background: #b5b5b5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

  /* ===== SERVICES DGGS SECTION ===== */
    .services-dggs {
      background-color: #f4efe6;
      padding: 60px 0;
    }

    .services-dggs .section-title h2 {
      font-weight: 700;
    }

    .services-dggs .section-title p {
      color: #555;
    }

    .services-dggs .service-card {
      background-color: #f4efe6;
      border: none;
      text-align: center;
      height: 100%;
    }

    .services-dggs .service-card img {
      width: 100%;
      height: 270px;
      object-fit: cover;
    }

    .services-dggs .service-text {
      padding: 20px;
      font-size: 14px;
      color: #333;
      min-height: 120px;
    }

    /* Navigation container */
.services-carousel .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
}

/* Buttons */
.services-carousel .owl-nav button {
  position: absolute;
  background: #007bff !important;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  border: none;
  transition: 0.3s;
}

/* Left button */
.services-carousel .owl-nav .owl-prev {
  left: -25px;
}

/* Right button */
.services-carousel .owl-nav .owl-next {
  right: -25px;
}

/* Arrow icon */
.services-carousel .arrow {
  font-size: 24px;
  color: #fff;
  line-height: 50px;
  display: block;
  text-align: center;
}

/* Hover effect */
.services-carousel .owl-nav button:hover {
  background: #0056b3 !important;
  transform: scale(1.1);
}

    .country-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    text-decoration: none;
}

.country-card img {
    width: 100%;
    display: block;
    transition: 0.4s ease;
}

/* Overlay */
.country-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 79, 115, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: 0.4s ease;
    padding: 20px;
}

.country-overlay h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.country-button {
    border: 2px solid #fff;
    padding: 12px 35px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Hover Effects */
.country-card:hover img {
    transform: scale(1.05);
}

.country-card:hover .country-overlay {
    opacity: 1;
}

.custom-img-dggs {
    width: 100%;
    height: 600px; /* adjust as needed */
    object-fit: cover; /* prevents stretching */
}


.no-bold-hover:hover,
.no-bold-hover:hover span,
.no-bold-hover:hover i {
    font-weight: 400 !important;
}

#imageSlider {
  height: 400px; /* adjust this height */
}

.slider-img {
  height: 400px;
  object-fit: cover; /* keeps image nice without stretching */
}

/* smoother fade */
.carousel-fade .carousel-item {
  transition: opacity 1.2s ease-in-out;
}

.slider-img {
  object-fit: cover;
}

.same-height-slider {
  height: 500px; /* match your other sliders */
}

.slider-img {
  object-fit: cover;
}

.ph-dining-section {
  background: #f4f4f4;
  padding: 80px 0;
}

.ph-dining-wrapper {
  position: relative;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
}

/* Left Image */
.ph-dining-image {
  width: 65%;
}

.ph-dining-image img {
  width: 100%;
  height: 715px;
  object-fit: cover;
  border-radius: 10px;
}

/* Floating Card */
.ph-dining-card {
  position: absolute;
  right: 0;
  width: 45%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Text Styling */
.ph-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c89b3c;
  font-weight: 600;
}

.ph-dining-card h2 {
  font-size: 32px;
  margin: 10px 0 15px;
  font-weight: 700;
}

.ph-dining-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Button */
.ph-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  border: 1px solid #c89b3c;
  color: #c89b3c;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.ph-btn:hover {
  background: #c89b3c;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .ph-dining-wrapper {
    flex-direction: column;
  }

  .ph-dining-image,
  .ph-dining-card {
    width: 100%;
    position: relative;
  }

  .ph-dining-card {
    margin-top: -60px;
  }
}

/* Alternate layout (image right, card left) */
.ph-dining-alt {
  flex-direction: row-reverse;
}

/* Move overlay card to left */
.ph-dining-alt .ph-dining-card {
  left: 0;
  right: auto;
}

/* Base Wrapper */
.ph-dining-wrapper {
  position: relative;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}

/* Image */
.ph-dining-image {
  width: 65%;
}

/* .ph-dining-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 10px;
} */

/* Card */
.ph-dining-card {
  position: absolute;
  right: 0;
  width: 45%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 2;
}

/* Alternate Layout */
.ph-dining-alt {
  flex-direction: row-reverse;
}

.ph-dining-alt .ph-dining-card {
  left: 0;
  right: auto;
}

/* ========================= */
/* 📱 RESPONSIVE SECTION */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
  .ph-dining-wrapper {
    flex-direction: column;
  }

  .ph-dining-image {
    width: 100%;
  }

  .ph-dining-image img {
    height: 350px;
  }

  .ph-dining-card {
    position: relative;
    width: 90%;
    margin: -60px auto 0;
    right: auto;
    left: auto;
    padding: 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .ph-dining-card {
    width: 95%;
    padding: 25px;
  }

  .ph-dining-card h2 {
    font-size: 22px;
  }

  .ph-dining-card p {
    font-size: 13px;
  }

  .ph-dining-image img {
    height: 250px;
  }
}

/* .ph-dining-image img {
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
} */

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1); /* makes arrows visible on light images */
}

.coming {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #0d6efd, #3a8bfd);
            overflow: hidden;
            position: relative;
        }

        .coming .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 12s infinite ease-in-out;
        }

        .coming .bg-circle:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 15%;
            left: 12%;
        }

        .coming .bg-circle:nth-child(2) {
            width: 280px;
            height: 280px;
            bottom: 12%;
            right: 12%;
            animation-delay: 3s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .coming .card {
            text-align: center;
            padding: 60px 70px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(15px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            color: #fff;
            max-width: 420px;
            width: 90%;
            animation: fadeIn 0.8s ease forwards;
        }

        .coming h1 {
            font-size: 34px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .coming p {
            font-size: 15px;
            opacity: 0.9;
            margin-bottom: 28px;
            line-height: 1.6;
        }

        .coming .btn {
            display: inline-block;
            padding: 10px 28px;
            border-radius: 25px;
            background: #ffffff;
            color: #0d6efd;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .coming .btn:hover {
            background: #e6ecff;
            transform: translateY(-2px);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(15px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

.payment-section {
   background: linear-gradient(135deg, #f4f7fb 0%, #eef3f9 100%); 
   padding: 90px 0; 
   position: relative; overflow: hidden; 
  } 

.payment-section::before { 
  content: ""; 
  position: absolute; 
  top: -180px; 
  right: -180px; 
  width: 450px; 
  height: 450px; 
  border-radius: 50%; 
  background: rgba(13, 110, 253, 0.05); 
} 
  
.payment-section::after { 
    content: ""; 
    position: absolute; 
    bottom: -200px; 
    left: -200px; 
    width: 500px; 
    height: 500px;
     border-radius: 50%; 
     background: rgba(25, 135, 84, 0.05); 
} 

.payment-container { 
  position: relative; 
  z-index: 2; 
} 

.payment-logo { 
  max-height: 90px; 
} 

.payment-title { 
  font-size: 2.2rem; 
  font-weight: 700; 
  color: #16324f; 
} 
  
.payment-subtitle { 
  color: #6c757d; 
  font-size: 1rem; 
} 

.payment-icon { 
  max-height: 120px; 
} 

.payment-bank-icon { 
  max-height: 130px; 
}

.payment-card { 
  border: 0; 
  border-radius: 18px; 
  overflow: hidden; 
  background: #fff;
  box-shadow: 0 10px 35px rgba(0,0,0,.08); 
  transition: all .3s ease; 
} 

.payment-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 16px 45px rgba(0,0,0,.12); 
} 

.payment-card-header { 
  background: linear-gradient(135deg, #16324f, #244e78); 
  color: #fff; padding: 18px 24px; 
} 

.payment-card-header h5 { 
  margin: 0; font-weight: 600; 
} 

.payment-secure-title { 
  font-weight: 700;
   color: #16324f; 
} 

.payment-table { 
  margin: 0; 
} 

.payment-table th { 
  width: 35%; background: #f8fafc;
  color: #16324f; 
  font-weight: 600; 
  padding: 15px 20px; 
  vertical-align: middle; 
} 

.payment-table td { 
  padding: 15px 20px; 
  color: #495057;
  vertical-align: middle; 
} 

.payment-reference-alert { 
  background: #ffffff;
  border: 1px solid #dbe5f0; 
  border-left: 5px solid #16324f; 
  border-radius: 12px; 
  padding: 18px 20px; 
  color: #495057; 
  box-shadow: 0 5px 15px rgba(0,0,0,.05); 
} 

.payment-footer { 
  margin-top: 60px; 
  padding-top: 30px; 
  border-top: 1px solid rgba(0,0,0,.08); 
} 

.payment-footer h6 { 
  color: #16324f; 
  font-weight: 700; 
  margin-bottom: 15px; 
} 

.payment-footer a { 
  color: #0d6efd; 
  text-decoration: none; 
} 

.payment-footer a:hover { 
  text-decoration: underline; 
} 
@media (max-width: 768px) {
   .payment-section { padding: 60px 0; } 
   .payment-title { font-size: 1.7rem; } 
   .payment-table th, .payment-table td { padding: 12px; font-size: 14px; } 
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-link i {
    font-size: 1.2rem;
}

.hotel-warning {
    background: #fff8e1;
    border-left: 5px solid #f4c430;
    color: #856404;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
    animation: warningPulse 2.5s infinite;
}

@keyframes warningPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 196, 48, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(244, 196, 48, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 196, 48, 0);
    }
}

.click-me-badge {
    margin-left: 8px;
    padding: 3px 8px;
    background: #ffc107;
    color: #000;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    animation: pulseFade 1.8s infinite;
}

@keyframes pulseFade {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* Floating WhatsApp */
.whatsapp-float{
    position: fixed;
    right: 3px;
    bottom: 85px;
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    height: 64px;
    width: 64px;
    padding: 0 18px;

    background: #25D366;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;

    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    transition: width .35s ease,
                background .35s ease,
                transform .25s ease;
}

.whatsapp-float:hover{
    width: 290px;
    color: #fff;
    background: #1EBE5D;
    transform: translateY(-3px);
}

.whatsapp-float i{
    font-size: 34px;
    flex-shrink: 0;
}

.whatsapp-text{
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    font-weight: 600;
    font-size: 15px;
    transition: all .35s ease;
}

.whatsapp-float:hover .whatsapp-text{
    opacity: 1;
    max-width: 220px;
}

/* Tablet */
@media (max-width: 991px){

    .whatsapp-float{
        width: 58px;
        height: 58px;
        right: 18px;
        bottom: 70px;
    }

    .whatsapp-float:hover{
        width: 255px;
    }

    .whatsapp-float i{
        font-size: 30px;
    }

    .whatsapp-text{
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 767px){

    .whatsapp-float{
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        right: 16px;
        bottom: 70px;
    }

    .whatsapp-float:hover{
        width: 56px;
        transform: none;
    }

    .whatsapp-text{
        display: none;
    }

    .whatsapp-float i{
        font-size: 28px;
    }
}

/* Floating Signal Button */
.signal-float {
    position: fixed;
    right: 3px;
    bottom: 160px;
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    height: 64px;
    width: 64px;
    padding: 0 18px;

    background: #3A76F0;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;

    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    transition: width .35s ease,
                transform .25s ease;
}

/* Hover */
.signal-float:hover {
    width: 290px;
    color: #fff;
    background: #3A76F0; /* Keep same color */
    transform: translateY(-3px);
}

.signal-float img,
.signal-float i {
    width: 40px;
    height: 50px;
    font-size: 34px;
    flex-shrink: 0;
}

/* Hover text */
.signal-text {
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    font-weight: 600;
    font-size: 15px;
    transition: all .35s ease;
}

.signal-float:hover .signal-text {
    opacity: 1;
    max-width: 220px;
}

/* Tablet */
@media (max-width: 991px) {

    .signal-float {
        width: 58px;
        height: 58px;
        right: 18px;
        bottom: 135px;
    }

    .signal-float:hover {
        width: 255px;
    }

    .signal-float img,
    .signal-float i {
        width: 30px;
        height: 40px;
        font-size: 30px;
    }

    .signal-text {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .signal-float {
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        right: 16px;
        bottom: 125px;
    }

    .signal-float:hover {
        width: 56px;
        transform: none;
    }

    .signal-text {
        display: none;
    }

    .signal-float img,
    .signal-float i {
        width: 28px;
        height: 38px;
        font-size: 28px;
    }
}

/* Leave space below hero */
.hero{
    padding-bottom:140px;
}

/* =========================================
   HERO BANNER
========================================= */

.hero-info-banner{
    position:absolute;
    right:3%;
    left:auto;
    bottom:-200px;
    width:51%;
    z-index:20;
}

.info-banner{
    background:#171a46;
    color:#fff;
    border-radius:18px;
    padding:25px 35px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:35px;

    box-shadow:0 18px 40px rgba(0,0,0,.25);
}

/* =========================================
   LEFT SIDE
========================================= */

.banner-left{
    display:flex;
    align-items:center;
    gap:20px;
    flex:2;
    min-width:0;
}

.banner-icon{
    width:clamp(50px,5vw,80px);
    height:clamp(50px,5vw,80px);

    border:2px solid rgba(255,255,255,.25);
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;
}

.banner-icon i{
    font-size:clamp(22px,2vw,38px);
    color:#fff;
}

.banner-text{
    flex:1;
    min-width:0;
}

.banner-text h3{
    margin:0;
    font-size:clamp(.9rem,1.5vw,2rem);
    line-height:1.25;
    font-weight:800;
    text-transform:uppercase;
    word-break:break-word;
}

.banner-text span{
    color:#f4c542;
}

/* =========================================
   RIGHT SIDE
========================================= */

.banner-right{
    text-align:center;
    flex:1;
    max-width:320px;
}

.banner-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    background:#f4c542;
    color:#1a1a1a;

    padding:clamp(10px,1vw,15px)
            clamp(18px,2vw,35px);

    border-radius:10px;
    text-decoration:none;
    font-weight:700;

    font-size:clamp(12px,1vw,18px);

    transition:.3s;
}

.banner-btn:hover{
    background:#ffd54f;
    transform:translateY(-2px);
}

.banner-btn i{
    font-size:clamp(16px,1.5vw,22px);
}

.banner-right p{
    margin-top:15px;
    font-size:clamp(11px,.9vw,15px);
    color:#d8d8d8;
}

/* =========================================
   1400px
========================================= */

@media (max-width:1400px){

.hero-info-banner{
    width:55%;
}

}

/* =========================================
   1200px
========================================= */

@media (max-width:1200px){

.hero-info-banner{
    width:60%;
}

.info-banner{
    gap:20px;
    padding:20px 25px;
}

}

/* =========================================
   992px
========================================= */

@media (max-width:992px){

.hero{
    padding-bottom:250px;
}

.hero-info-banner{
    width:70%;
    bottom:-160px;
}

.info-banner{
    gap:20px;
}

}

/* =========================================
   768px
========================================= */

@media (max-width:768px){

.hero{
    padding-bottom:290px;
}

.hero-info-banner{
    width:90%;
    right:5%;
    bottom:-180px;
}

.info-banner{
    flex-direction:column;
    text-align:center;
    padding:20px;
}

.banner-left{
    flex-direction:column;
    text-align:center;
}

.banner-right{
    max-width:100%;
}

.banner-btn{
    width:100%;
}

}

/* =========================================
   576px
========================================= */

@media (max-width:576px){

.hero{
    padding-bottom:320px;
}

.hero-info-banner{
    width:95%;
    right:2.5%;
    bottom:-190px;
}

.info-banner{
    padding:18px;
    gap:18px;
}

}

/* =========================================
   400px
========================================= */

@media (max-width:400px){

.hero{
    padding-bottom:340px;
}

.hero-info-banner{
    bottom:-210px;
}

.info-banner{
    padding:15px;
}

}

/* ==========================================
   CONTACT PERSONS
========================================== */

.contact{
    position: relative;
    z-index: 100;
    overflow: visible !important;
}

.contact .container,
.contact .container-xxl,
.contact .row{
    overflow: visible !important;
}

.contact-persons{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:40px;
    flex-wrap:wrap;
    margin-top:20px;
    position:relative;
    z-index:1000;
}

.person-item{
    position:relative;
    width:90px;
    text-align:center;
    cursor:pointer;
}

.person-icon{
    width:65px;
    height:65px;
    margin:auto;
    border-radius:50%;
    border:2px solid #0d6efd;
    background:#fff;
    color:#0d6efd;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;
    transition:.35s;
}

.person-item:hover .person-icon{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(13,110,253,.25);
}

.person-item small{
    display:block;
    margin-top:10px;
    font-weight:600;
    color:#555;
    font-size:13px;
}

/* ================= Tooltip ================= */

.person-tooltip{

    position:absolute;

    left:50%;
    bottom:90px;

    transform:translateX(-50%) translateY(10px);

    width:270px;

    background:#fff;

    border-radius:16px;

    padding:18px;

    box-shadow:0 18px 45px rgba(0,0,0,.18);

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:999999;

    pointer-events:none;

}

.person-item:hover .person-tooltip{

    opacity:1;
    visibility:visible;

    transform:translateX(-50%) translateY(0);

}

.person-tooltip::after{

    content:"";

    position:absolute;

    top:100%;
    left:50%;

    transform:translateX(-50%);

    border:10px solid transparent;
    border-top-color:#fff;

}

.tooltip-header{

    display:flex;
    align-items:center;
    gap:12px;

}

.avatar{

    width:50px;
    height:50px;

    border-radius:50%;

    background:#0d6efd;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:22px;

    flex-shrink:0;

}

.tooltip-header h6{
    margin:0;
    font-size:16px;
}

.tooltip-header small{
    color:#888;
}

.person-tooltip hr{
    margin:12px 0;
}

.person-tooltip p{

    margin:8px 0;

    display:flex;
    align-items:center;
    gap:10px;

    font-size:14px;
}

.person-tooltip i{
    color:#0d6efd;
    width:18px;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width:991px){

    .contact-persons{

        gap:30px;

    }

    .person-tooltip{

        width:240px;

    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:767px){

    .contact-persons{

        /* overflow-x:auto; */
        flex-wrap:nowrap;

        justify-content:flex-start;

        padding-bottom:15px;

        gap:25px;

        scrollbar-width:none;

    }

    .contact-persons::-webkit-scrollbar{
        display:none;
    }

    .person-item{

        flex:0 0 auto;

    }

    .person-tooltip{

        position:fixed;

        left:50%;
        top:50%;

        bottom:auto;

        transform:translate(-50%,-50%) scale(.95);

        width:90%;
        max-width:320px;

    }

    .person-item:hover .person-tooltip{

        transform:translate(-50%,-50%) scale(1);

    }

    .person-tooltip::after{
        display:none;
    }

}

/* ==========================================
   NEXT SECTION
========================================== */

.services-dggs{

    position:relative;

    z-index:1;

}



/* ===========================================
   PHILIPPINES SECTION
=========================================== */

.philippines-section{
    background:#fff;
    padding:90px 0;
    overflow:hidden;
}

/* ===========================
   TITLE
=========================== */

.phil-title{
    font-size:48px;
    font-weight:800;
    color:#0b4a8f;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.title-line{
    width:340px;
    height:3px;
    background:#0b4a8f;
    margin:auto;
    border-radius:20px;
}

/* ===========================
   LEFT SIDE
=========================== */

.left-title{
    font-size:36px;
    font-weight:800;
    color:#0b4a8f;
    margin-bottom:25px;
    text-transform:uppercase;
}

.left-description{
    color:#555;
    font-size:16px;
    line-height:2;
    margin-bottom:25px;
}

/* ===========================
   SERVICES
=========================== */

.service-grid{
    margin-top:40px;
}

.service-item{
    margin-bottom:35px;
    transition:.35s;
}

.service-item h5{
    color:#0b4a8f;
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
}

.service-item p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin:0;
}

.service-item:hover{
    transform:translateY(-5px);
}

/* ===========================
   IMAGE CARD
=========================== */

.phil-image-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.15);
}

.phil-image{
    width:100%;
    height:520px;
    object-fit:cover;
    display:block;
}

/* ===========================
   BLUE INFO BAR
=========================== */

.info-row{
    background:#0b4a8f;
}

.info-box{
    color:#fff;
    text-align:center;
    padding:35px 25px;
    border-right:1px solid rgba(255,255,255,.15);
    transition:.35s;
    height:100%;
}

.info-box:last-child{
    border-right:none;
}

.info-box h5{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
}

.info-box p{
    font-size:14px;
    line-height:1.8;
    color:#f5f5f5;
    margin:0;
}

.info-box:hover{
    background:#08396f;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1400px){

    .phil-title{
        font-size:42px;
    }

    .phil-image{
        height:480px;
    }

}

@media(max-width:1200px){

    .phil-title{
        font-size:36px;
    }

    .left-title{
        font-size:30px;
    }

    .phil-image{
        height:440px;
    }

}

@media(max-width:991px){

    .philippines-section{
        padding:70px 0;
    }

    .phil-title{
        font-size:32px;
    }

    .title-line{
        width:220px;
    }

    .left-title{
        text-align:center;
    }

    .left-description{
        text-align:center;
    }

    .service-item{
        text-align:center;
    }

    .phil-image{
        height:380px;
    }

    .info-box{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.15);
    }

    .info-box:last-child{
        border-bottom:none;
    }

}

@media(max-width:768px){

    .phil-title{
        font-size:26px;
        line-height:1.4;
    }

    .left-title{
        font-size:24px;
    }

    .left-description{
        font-size:15px;
    }

    .service-item h5{
        font-size:18px;
    }

    .service-item p{
        font-size:14px;
    }

    .phil-image{
        height:300px;
    }

    .info-box{
        padding:25px 20px;
    }

}

@media(max-width:576px){

    .philippines-section{
        padding:50px 0;
    }

    .phil-title{
        font-size:22px;
    }

    .title-line{
        width:170px;
    }

    .service-grid .col-6{
        width:100%;
    }

    .service-item{
        margin-bottom:25px;
    }

    .phil-image{
        height:230px;
    }

    .info-box h5{
        font-size:16px;
    }

    .info-box p{
        font-size:13px;
    }

}
/* =========================================
   PHILIPPINES ARRIVAL BANNER
========================================= */
.ph-arrival-banner {
    width: min(90%, 900px);
    margin: 40px auto 0;

    min-height: 195px;

    padding: clamp(15px, 2.5vw, 25px);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: clamp(15px, 3vw, 40px);

    background: #191d50;

    border-radius: clamp(12px, 2vw, 20px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    position: relative;
    z-index: 5;

    box-sizing: border-box;
}


/* =========================================
   LEFT SIDE
========================================= */

.ph-arrival-banner .banner-left {
    display: flex;
    align-items: center;

    gap: clamp(10px, 2vw, 20px);

    flex: 1;
    min-width: 0;
}


/* =========================================
   CIRCLE ICON
========================================= */

.ph-arrival-banner .banner-icon {
    width: clamp(50px, 7vw, 80px);
    height: clamp(50px, 7vw, 80px);

    min-width: clamp(50px, 7vw, 80px);

    border: 2px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: clamp(20px, 3vw, 32px);

    box-sizing: border-box;
}


/* =========================================
   TEXT
========================================= */

.ph-arrival-banner .banner-text {
    min-width: 0;
}

.ph-arrival-banner .banner-text h3 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(15px, 2.2vw, 27px);

    font-weight: 800;

    line-height: 1.25;

    letter-spacing: 0.2px;

    overflow-wrap: break-word;
}


/* YELLOW PHILIPPINES */

.ph-arrival-banner .banner-text h3 span {
    display: inline-block;

    color: #f8c83e;
}


/* =========================================
   RIGHT SIDE
========================================= */

.ph-arrival-banner .banner-right {
    width: clamp(170px, 25vw, 285px);

    min-width: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: clamp(8px, 1.5vw, 14px);
}


/* =========================================
   BUTTON
========================================= */

.ph-arrival-banner .banner-btn {
    width: clamp(150px, 20vw, 220px);

    height: clamp(45px, 6vw, 64px);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(6px, 1vw, 10px);

    background: #f8c83e;

    color: #111111;

    border-radius: clamp(7px, 1vw, 10px);

    text-decoration: none;

    font-size: clamp(12px, 1.5vw, 16px);

    font-weight: 800;

    transition: all 0.3s ease;

    box-sizing: border-box;
}


.ph-arrival-banner .banner-btn i {
    font-size: clamp(16px, 2vw, 22px);
}


.ph-arrival-banner .banner-btn:hover {
    background: #ffffff;

    color: #191d50;

    transform: translateY(-2px);
}


/* =========================================
   DESCRIPTION
========================================= */

.ph-arrival-banner .banner-right p {
    margin: 0;

    color: #ffffff;

    font-size: clamp(10px, 1.3vw, 14px);

    line-height: 1.4;

    font-weight: 600;

    max-width: 280px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .ph-arrival-banner {
        width: 92%;

        padding: 20px;

        gap: 20px;
    }

    .ph-arrival-banner .banner-right {
        width: 210px;
    }

}


/* =========================================
   SMALL TABLET / LARGE PHONE
========================================= */

@media (max-width: 700px) {

    .ph-arrival-banner {
        flex-direction: column;

        align-items: stretch;

        width: 90%;

        padding: 20px;

        gap: 20px;
    }

    .ph-arrival-banner .banner-left {
        width: 100%;
    }

    .ph-arrival-banner .banner-right {
        width: 100%;
    }

    .ph-arrival-banner .banner-btn {
        width: min(220px, 80%);
    }

    .ph-arrival-banner .banner-right p {
        max-width: 400px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    .ph-arrival-banner {
        width: 94%;

        margin-top: 25px;

        padding: 16px;

        gap: 16px;

        border-radius: 14px;
    }

    .ph-arrival-banner .banner-left {
        gap: 10px;
    }

    .ph-arrival-banner .banner-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;

        font-size: 20px;
    }

    .ph-arrival-banner .banner-text h3 {
        font-size: 15px;

        line-height: 1.3;
    }

    .ph-arrival-banner .banner-right {
        gap: 8px;
    }

    .ph-arrival-banner .banner-btn {
        width: 180px;

        height: 48px;

        font-size: 13px;
    }

    .ph-arrival-banner .banner-right p {
        font-size: 11px;

        line-height: 1.35;
    }

}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 360px) {

    .ph-arrival-banner {
        width: 96%;

        padding: 13px;

        gap: 13px;
    }

    .ph-arrival-banner .banner-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;

        font-size: 18px;
    }

    .ph-arrival-banner .banner-left {
        gap: 8px;
    }

    .ph-arrival-banner .banner-text h3 {
        font-size: 13px;
    }

    .ph-arrival-banner .banner-btn {
        width: 160px;

        height: 44px;

        font-size: 12px;
    }

    .ph-arrival-banner .banner-right p {
        font-size: 10px;
    }

}

/* =========================================
   LOCATION MODAL
========================================= */

.location-modal {
    border: none;
    border-radius: 16px;
    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}


/* HEADER */

.location-modal .modal-header {
    padding: 24px 28px 12px;
    border-bottom: none;
}

.location-modal .modal-title {
    margin: 0;

    color: #191d50;

    font-size: 22px;
    font-weight: 800;
}

.location-subtitle {
    margin: 4px 0 0;

    color: #777;

    font-size: 13px;
}


/* BODY */

.location-modal .modal-body {
    padding: 15px 28px 28px;
}


/* ONE ROW */

.location-options {
    display: flex;

    flex-direction: row;

    gap: 12px;

    width: 100%;
}


/* LOCATION OPTION */

.location-option {
    flex: 1;

    min-width: 0;

    height: 70px;

    padding: 10px 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    background: #f7f8fc;

    border: 1px solid #e2e3e9;

    border-radius: 10px;

    color: #191d50;

    text-decoration: none;

    transition: all 0.25s ease;
}


/* FLAG */

.location-option .flag {
    font-size: 25px;

    line-height: 1;
}


/* NAME */

.location-name {
    font-size: 14px;

    font-weight: 800;

    white-space: nowrap;
}


/* ARROW */

.location-option i {
    font-size: 13px;

    color: #888;

    transition: transform 0.25s ease;
}


/* HOVER */

.location-option:hover {
    background: #191d50;

    border-color: #191d50;

    color: #ffffff;

    transform: translateY(-2px);
}

.location-option:hover i {
    color: #f8c83e;

    transform: translateX(3px);
}


/* =========================================
   SMALL SCREEN
========================================= */

@media (max-width: 480px) {

    .location-modal .modal-header {
        padding: 20px 18px 10px;
    }

    .location-modal .modal-body {
        padding: 12px 18px 20px;
    }

    .location-modal .modal-title {
        font-size: 19px;
    }

    .location-subtitle {
        font-size: 11px;
    }

    .location-options {
        gap: 8px;
    }

    .location-option {
        height: 58px;

        padding: 8px 6px;

        gap: 5px;
    }

    .location-option .flag {
        font-size: 20px;
    }

    .location-name {
        font-size: 12px;
    }

    .location-option i {
        font-size: 11px;
    }

}
