/* General Styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap");

body {
    font-family: Georgia;
    margin: 0;
    padding: 0;
}

/* Add CSS for smooth scrolling */
html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Default state before scrolling */
section {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.8s ease-out,
        transform 0.8s ease-out;
}

/* Active state when the section is in view */
section.active {
    opacity: 1;
    transform: translateY(0);
}

/*------- Navigation -------*/

nav {
    border-top: 2px solid #efefef;
    border-bottom: 1px solid #efefef;
}
nav #mainMenuA {
    float: left;
    color: #efefef;
}
nav #mainMenuB {
    float: right;
    color: #efefef;
}

#headerSec {
    z-index: 1000;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
}

#mainNavBar {
    position: relative;
    height: 28px;
    padding: 10px;
    background-color: #ffffff;
    z-index: 1000;
}
#mainLogo {
    position: absolute;
    z-index: 1001;
    top: -2px;
    left: 50%;
    width: 400px;
    margin-left: -200px;
    background-color: #ffffff;
    text-align: center;
    line-height: 50px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}

#mainNavBar ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
#mainNavBar ul li {
    display: inline-block;
    margin: 0px 5px;
}
#mainNavBar ul li a {
    color: #999999;
    display: block;
    line-height: 20px;
    margin-top: 2px;
}
#mainNavBar ul li a:hover {
    color: #b93c42;
}

#mainNavBar ul li a.navBttn {
    border: 1px solid #999999;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 14px;
    margin-top: -1px;
}
#mainNavBar ul li a.navBttn:hover {
    border: 1px solid #b93c42;
}

#mainNavBar ul li.mobileNavItem {
    display: none;
}

#dropmenu {
    background-color: #ffffff;
    border: 1px solid #efefef;
    border-radius: 0px 0px 10px 10px;
    text-align: right;
}

.sideNav ul {
    list-style: none;
    padding: 0px;
    margin: 40px 20px 20px;
}
.sideNav ul li {
    border-bottom: 1px solid #efefef;
}
.sideNav ul li a {
    display: block;
    padding: 5px;
}

.accNav ul {
    list-style: none;
    padding: 0px;
    margin: 40px 20px 20px;
    text-align: center;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}
.accNav ul li {
    display: inline-block;
    margin-left: -4px;
}
.accNav ul li a {
    display: block;
    padding: 10px 20px;
    margin: -1px 0px;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    color: #cccccc;
}
.accNav ul li a:hover {
    color: #444444;
}
.accNav ul li a.active {
    border-top: 1px solid #b93c42;
    border-bottom: 1px solid #b93c42;
    color: #b93c42;
}

.dropit .dropit-trigger {
    position: relative;
}
.dropit #dropmenu {
    position: absolute;
    top: 35px;
    right: 0; /* dropdown left or right */
    z-index: 1000;
    display: none;
    min-width: 200px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.dropit .dropit-open .dropit-submenu {
    display: block;
}

.dropit .dropit-submenu li {
    width: 100%;
    border-bottom: 1px solid #efefef;
    margin: 0px !important;
}
.dropit .dropit-submenu li:last-child {
    border-bottom: 0px;
}
.dropit .dropit-submenu li a {
    display: block;
    padding: 5px 10px;
}
.dropit .dropit-submenu li a:hover {
}

.respMenu {
    display: none;
}
.fullMenu {
    display: block;
}

.nav-buttons {
    display: flex !important;
    gap: 20px;
    padding: 40px 40px 20px 40px !important;
    width: auto !important;
}

/* Logo and Navbar */
@keyframes slide-down {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Styling for the section background */
.heading-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    overflow: hidden;
    padding: 0;
    margin: 0;
    z-index: 1;
}

/* Parallax Background and Lightning Flash */
.header-parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

/* Wave Animation for Background */
.header-wave-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url("https://www.svgrepo.com/show/70256/wave.svg") repeat-x;
    background-size: cover;
    animation: waveMove 20s linear infinite;
}

/* Keyframe animation for moving waves */
@keyframes waveMove {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 100%;
    }
}

.heading {
    font-family: Georgia;
    font-size: 5em;
    color: white; /* Light gray color resembling engraving on metal */
    text-shadow:
        1px 1px 2px #aaa,
        /* Slight shadow for depth */ -1px -1px 2px #fff; /* Highlight for the engraved effect */
    letter-spacing: 0.1em; /* Spacing for a more classic look */

    white-space: nowrap;
    overflow: hidden;
    animation: typeIn 5s steps(40, end) forwards; /* Typing effect */
    text-align: center;
    z-index: 2;
}

@keyframes typeIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* General styling for the section */
.first-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    padding-right: 0;
    background: #e6e6e6;
    box-shadow:
        inset 2px 2px 5px rgba(0, 0, 0, 0.2),
        inset -2px -2px 5px rgba(255, 255, 255, 0.5); /* Engraved effect */
}

/* Styling and continuous animation for the text container */
#first-statement-container {
    flex: 1;
    padding-right: 20px;
    font-family: Georgia;
    justify-content: flex-start;
    align-items: flex-start;
}

#first-statement-container h3 {
    font-size: 3em; /* Slightly smaller than h1 */
    color: black; /* Light gray color resembling engraving on metal */
    text-shadow:
        1px 1px 2px #aaa,
        /* Slight shadow for depth */ -1px -1px 2px #fff; /* Highlight for the engraved effect */
    letter-spacing: 0.1em; /* Spacing for a more classic look */
    margin: 10px 0 10px; /* Spacing for visual separation */
    text-align: left;
}

#first-statement-container p {
    font-size: 2em; /* Clear, readable size for paragraph text */
    color: #666; /* Lighter gray for less emphasis */
    text-shadow:
        1px 1px 2px #aaa,
        /* Slight shadow for depth */ -1px -1px 2px #fff; /* Highlight for the engraved effect */
    letter-spacing: 0.1em; /* Spacing for a more classic look */
    text-align: left;
}

/* Styling for image container */
.first-image-container {
    flex: 1;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.5);
    animation: scaleInImage 1.5s 0.5s forwards ease-out;
    height: 100vh;
}

.first-image-container img {
    width: 100%;
    height: 100vh;
    transition: transform 0.3s ease-in-out;
}

.first-image-container img:hover {
    transform: scale(1.1);
}

/* Keyframes for image scaling in */
@keyframes scaleInImage {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* General styling for the second section */
.second-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    padding-left: 0;
    background: #f4f4f4;
    box-shadow:
        inset 2px 2px 5px rgba(0, 0, 0, 0.2),
        inset -2px -2px 5px rgba(255, 255, 255, 0.5); /* Engraved effect */
}

/* Styling for the second image container */
.second-image-container {
    flex: 1;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.5);
    animation: fadeInImage 2s 0.5s forwards ease-out; /* Fade and scale effect */
    height: 100%;
}

.second-image-container img {
    width: 100%;
    height: 100vh;
    transition: transform 0.3s ease-in-out;
}

.second-image-container img:hover {
    transform: scale(1.1);
}

/* Styling for the text container in the second section */
#second-statement-container {
    flex: 1;
    padding-left: 20px;
    font-family: Georgia;
}

#second-statement-container h2 {
    font-family: Georgia;
    font-size: 2em;
    color: black;
    text-shadow:
        1px 1px 2px #aaa,
        -1px -1px 2px #fff;
    letter-spacing: 0.1em;
    opacity: 0;
    animation: slideIn 1.5s ease-out forwards;
}

#second-statement-container ul {
    list-style-type: none;
    padding: 0;
}

#second-statement-container ul li {
    font-size: 1.3em;
    color: #333;
    margin: 10px 0;
    padding-left: 10px; /* Space for the border-left */
    border-left: 5px solid; /* Border color will be added below */
    text-shadow:
        1px 1px 2px #aaa,
        -1px -1px 2px #fff;
    opacity: 0;
    transform: translateY(-50px);
    animation: slideInFromTop 0.8s ease forwards; /* Adjusted animation duration */
}

/* Apply different colors for the border-left of each list item */
#second-statement-container ul li:nth-child(1) {
    border-color: #007bff; /* Bright blue */
    animation-delay: 0.5s; /* Delay for each item */
}

#second-statement-container ul li:nth-child(2) {
    border-color: #28a745; /* Green */
    animation-delay: 1s;
}

#second-statement-container ul li:nth-child(3) {
    border-color: #ffc107; /* Yellow */
    animation-delay: 1.5s;
}

#second-statement-container ul li:nth-child(4) {
    border-color: #dc3545; /* Red */
    animation-delay: 2s;
}

#second-statement-container ul li:nth-child(5) {
    border-color: #17a2b8; /* Cyan */
    animation-delay: 2.5s;
}

#second-statement-container ul li:nth-child(6) {
    border-color: #6f42c1; /* Purple */
    animation-delay: 3s;
}

#second-statement-container ul li:nth-child(7) {
    border-color: #fd7e14; /* Orange */
    animation-delay: 3.5s;
}

#second-statement-container ul li:nth-child(8) {
    border-color: #20c997; /* Teal */
    animation-delay: 4s;
}

#second-statement-container ul li:nth-child(9) {
    border-color: #6610f2; /* Indigo */
    animation-delay: 4.5s;
}

#second-statement-container ul li:nth-child(10) {
    border-color: #e83e8c; /* Pink */
    animation-delay: 5s;
}

#second-statement-container ul li:nth-child(11) {
    border-color: #343a40; /* Dark Gray */
    animation-delay: 5.5s;
}

#second-statement-container ul li:nth-child(12) {
    border-color: #adb5bd; /* Light Gray */
    animation-delay: 6s;
}

#second-statement-container ul li:nth-child(13) {
    border-color: #198754; /* Dark Green */
    animation-delay: 6.5s;
}

/* Keyframes for sliding in the heading */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Keyframes for list items sliding in from top */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keyframes for the image scaling and fading in */
@keyframes fadeInImage {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Styling for the quote at the bottom of the section */
#second-statement-container .quote {
    font-family: Georgia;
    font-style: italic;
    color: #555; /* Subtle gray for emphasis */
    text-align: left; /* Aligns the quote to the right for a refined look */
    margin-top: 20px;
    font-size: 1.2em;
    padding-right: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1); /* Adds a thin border for separation */
    padding-top: 10px;
    animation: fadeInQuote 25s ease-out forwards; /* Fade-in effect */
    opacity: 0; /* Hidden initially */
}

/* Keyframes for quote fade-in */
@keyframes fadeInQuote {
    from {
        opacity: 0;
        transform: translateY(20px); /* Subtle upwards motion */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    background-image: url("images/llogo.png"); /* Subtle background pattern */
    background-position: center; /* Align image to the left */
    background-size: contain;
    background-repeat: no-repeat;
    font-family: Georgia;
    height: 100vh; /* Make the section full height */
}

.hero-content {
    display: flex;
    align-items: stretch; /* Stretch content vertically */
    justify-content: space-between;
    width: 100%;
    height: 100vh;
}

.hero-left {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 2.5rem;
    color: #000;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-left h3 {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 20px;
}

/* Perks list styling */
.perks-list {
    list-style-type: none;
    padding: 0;
    font-size: 1.2em;
    margin-bottom: 30px;
    cursor: pointer;
}

.perks-list li {
    margin-bottom: 15px;
    border-left: 5px solid #555; /* Blue border */
    padding-left: 15px;
    transition: border-color 0.3s;
}

.perks-list li:hover {
    border-color: black; /* Green border on hover */
}

/* Styling for the perks quote */
.perks-quote {
    font-size: 1.1em;
    font-style: italic;
    color: black;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-left: 0;
}

.cta-button {
    font-size: 1rem;
    color: #b22e2f;
    text-decoration: none;
    border-bottom: 2px solid #b22e2f;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    color: #d13940;
    border-color: #d13940;
}

.hero-right {
    width: 50%;
    height: 100vh; /* Full height of the section */
    object-fit: cover;
}

/* General Styling */
.features-carousel {
    margin: 40px;
    position: relative;
    max-width: 100%;
    height: 500px;
    background-color: #fff; /* Change as needed */
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.carousel-content {
    display: flex;
    width: 100%;
    position: relative;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.feature-item {
    min-width: 100%;
    height: 100%;
    background-size: 60% 130%; /* Ensures the background image covers the section */
    background-position: right center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents image tiling */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 30px;
    position: relative;
}

/* Text Container Styling */
.text-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.text-container h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #444;
}

.text-container h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.text-container p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.explore-link {
    color: #d45a00;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.explore-link::after {
    content: ">";
    margin-left: 8px;
    font-size: 1.2rem;
}

/* Squared Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 5px; /* Squared corners */
    border: 2px solid rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background 0.3s ease,
        border 0.3s ease;
}

.carousel-arrow:hover {
    transform: scale(1.2); /* Magnify effect */
    background: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 0, 0, 0.5); /* Slightly bolder border */
}

/* Left and Right Arrow Positioning */
.left-arrow {
    left: 15px;
}

.right-arrow {
    right: 15px;
}

.feature-icon {
    width: 100px;
    height: 100px;
    display: block;
    margin-bottom: 15px;
    margin: auto;
}
/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/* Destinations Section */
.destinations {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: black;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1200px;
}

.banner-text {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 1s forwards ease-in-out;
}

.banner-button {
    padding: 10px 20px;
    background-color: white;
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition:
        background-color 0.3s,
        transform 0.3s;
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 1.2s forwards ease-in-out;
    text-decoration: none;
}

.banner-button:hover {
    background-color: #ccc;
    transform: scale(1.05);
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonial Cube Section */
section.testimonial-cube {
    position: relative;
    background: linear-gradient(
        135deg,
        whitesmoke 0%,
        #b0bec5 100%
    ); /* Gradient background */
    padding: 100px 50px;
    text-align: center;
    color: #333; /* Darker text color for contrast */
    overflow: hidden;
    margin-top: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Shimmer Effect */
section.testimonial-cube::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: shimmer 5s infinite;
    z-index: 0;
}

@keyframes shimmer {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

section.testimonial-cube h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    position: relative; /* Positioning for z-index */
    z-index: 1; /* Make sure heading is above shimmer */
    color: black;
    text-shadow:
        1px 1px 2px #aaa,
        /* Slight shadow for depth */ -1px -1px 2px #fff; /* Highlight for the engraved effect */
    font-family: Georgia;
}

/* Cube Container */
.cube-container {
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

/* Cube Styling */
.cube {
    width: 300px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 12s infinite ease-in-out;
    transform: rotateX(-15deg) rotateY(0deg); /* Added tilt for depth */
    transition: all 0.5s ease;
    z-index: 1; /* Make sure cube is above shimmer */
}

.cube:hover {
    animation-play-state: paused; /* Pause rotation on hover */
}

/* Face Design */
.face {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(
        180,
        190,
        197,
        0.8
    ); /* Light gray translucent background */
    border: 2px solid #333; /* Darker border for contrast */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    backface-visibility: hidden;
    color: #333; /* Darker text color */
    transition: box-shadow 0.3s ease; /* Shadow effect */
}

/* Hover effect on the cube faces */
.face:hover {
    box-shadow: 0 0 15px 5px #666; /* Subtle glow effect on hover */
}

/* Cube Faces Positions */
.front {
    transform: rotateY(0deg) translateZ(150px);
}
.back {
    transform: rotateY(180deg) translateZ(150px);
}
.left {
    transform: rotateY(-90deg) translateZ(150px);
}
.right {
    transform: rotateY(90deg) translateZ(150px);
}
.top {
    transform: rotateX(90deg) translateZ(150px);
}
.bottom {
    transform: rotateX(-90deg) translateZ(150px);
}

/* Cube Rotation Animation */
@keyframes rotateCube {
    0% {
        transform: rotateX(-15deg) rotateY(0deg);
    }
    25% {
        transform: rotateX(-15deg) rotateY(90deg);
    }
    50% {
        transform: rotateX(-15deg) rotateY(180deg);
    }
    75% {
        transform: rotateX(-15deg) rotateY(270deg);
    }
    100% {
        transform: rotateX(-15deg) rotateY(360deg);
    }
}

/* Reflection Styling */
.reflection {
    position: absolute;
    width: 300px;
    height: 150px;
    background: rgba(192, 192, 192, 0.2); /* Subtle silver reflection */
    top: 480px;
    left: 50%;
    transform: translateX(-50%) skewY(10deg);
    filter: blur(3px);
    opacity: 0.6;
    z-index: -1;
}

/* Cube Shadow */
.cube-container:before {
    content: "";
    position: absolute;
    top: 400px;
    left: 50%;
    width: 320px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transform: translateX(-50%);
    filter: blur(10px);
    z-index: -1;
}

/* Custom Animation for AOS */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 1s ease,
        transform 1s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Section Styling */
.hotel-toggle-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInSection 1s ease-in-out forwards;
}

/* Fade-in animation for the entire section */
@keyframes fadeInSection {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.toggle-buttons {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInButtons 1.5s ease-in-out forwards;
}

/* Fade-in effect for buttons */
@keyframes fadeInButtons {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.toggle-btn {
    background-color: transparent;
    border: none;
    font-size: 1.2rem;
    margin: 0 1rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: #333;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.toggle-btn.active {
    border-bottom: 2px solid #333;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    opacity: 0;
    animation: fadeInGrid 2s ease-in-out forwards;
}

/* Grid fade-in effect */
@keyframes fadeInGrid {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    background-color: transparent;
    padding: 1.5rem;
    text-align: left;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.card p {
    font-size: 1rem;
    color: #666;
}

.discover-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 15px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.discover-btn:hover {
    background-color: #555;
    transform: scale(1.05);
}

/* Full-Collection and More-Regions Divs Styling */
.full-collection,
.more-regions {
    text-align: center;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInCollection 2.5s ease-in-out forwards;
}

.full-collection-btn,
.more-btn {
    background-color: #000;
    color: #000;
    padding: 10px 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid transparent;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
    background: #e6e6e6;
    box-shadow:
        inset 2px 2px 5px rgba(0, 0, 0, 0.2),
        inset -2px -2px 5px rgba(255, 255, 255, 0.5); /* Engraved effect */
}

.full-collection-btn:hover,
.more-btn:hover {
    background-color: #555;
    transform: scale(1.05);
}

/* Fade-in effect for Full-Collection and More-Regions */
@keyframes fadeInCollection {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.toggle-content {
    display: none;
}

.toggle-content.active {
    display: block;
    opacity: 0;
    animation: fadeInContent 1s ease-in-out forwards;
}

/* Fade-in effect for content sections */
@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#toggle3 img {
    width: 100%;
    object-fit: contain;
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General Footer Styling */
footer {
    background: black;
    padding: 60px 20px;
    color: white;
    text-align: right;
    position: relative;
    overflow: hidden;
}

/* Footer Text with Underline Animation */
.footer-text {
    font-size: 18px;
    color: #f8f9fa;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.footer-text a {
    color: #f8f9fa;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: #ffdc00;
}

/* Underline animation */
.footer-text a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffdc00;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.footer-text a:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

/* Parallax Background and Lightning Flash */
.footer-parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.wave-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url("https://www.svgrepo.com/show/70256/wave.svg") repeat-x;
    background-size: cover;
    animation: waveMove 20s linear infinite;
}

@keyframes waveMove {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 100%;
    }
}

.lightning {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 200px;
    height: 400px;
    background: linear-gradient(white, transparent);
    opacity: 0;
    transform: translateX(-50%) skewX(20deg);
    filter: blur(3px);
    animation: lightningFlash 15s infinite;
}

@keyframes lightningFlash {
    0%,
    90% {
        opacity: 0;
    }
    91% {
        opacity: 1;
    }
    93% {
        opacity: 0.8;
    }
    94%,
    100% {
        opacity: 0;
    }
}

/* Partners Logos */
.footer-partners {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(120px, 1fr)
    ); /* Grid system for logos */
    gap: 20px; /* Consistent gap between items */
    justify-items: center;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 2px solid #555;
}

.footer-partners img {
    width: 150px; /* Keep images a bit smaller for better scaling */
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.footer-partners img:hover {
    transform: scale(1.2); /* A subtle scale-up on hover */
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.5); /* Slight shadow on hover */
}

@keyframes floatRotate {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(-10deg);
    }
}

@keyframes glowTrail {
    0% {
        box-shadow:
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 30px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow:
            0 0 30px rgba(255, 255, 255, 1),
            0 0 60px rgba(255, 255, 255, 0.5);
    }
}

/* Social Media Icons */
.social-media {
    margin-bottom: 30px;
}

.social-icon {
    margin: 0 20px;
    font-size: 40px;
    color: #f8f9fa;
    position: relative;
    transition:
        color 0.3s ease,
        transform 0.5s ease;
}

.social-icon:hover {
    color: #ffdc00;
    transform: scale(1.5);
}

.social-icon:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 220, 0, 0.5);
    transform: translate(-50%, -50%) scale(1);
    animation: particleExplosion 0.7s forwards;
}

@keyframes particleExplosion {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

@keyframes text-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes text-slide-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.offer-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.latest-offers {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin: 20px 0;
    color: black; /* Light gray color resembling engraving on metal */
    text-shadow:
        1px 1px 2px #aaa,
        /* Slight shadow for depth */ -1px -1px 2px #fff; /* Highlight for the engraved effect */
    letter-spacing: 0.1em; /* Spacing for a more classic look */
}

/* Style for "Belmond Stories" section */
.stories-section {
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.stories-section img {
    width: 50%;
    height: auto;
}

.stories-content {
    padding: 0 20px;
    width: 50%;
}

.stories-content h2 {
    font-size: 3em;
    margin-bottom: 10px;
    color: black; /* Light gray color resembling engraving on metal */
    text-shadow:
        1px 1px 2px #aaa,
        /* Slight shadow for depth */ -1px -1px 2px #fff; /* Highlight for the engraved effect */
    letter-spacing: 0.1em; /* Spacing for a more classic look */
}

.stories-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 2.8rem;
}

.explore-button {
    background-color: black;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
}

.explore-button:hover {
    background-color: gray;
}

/* Animation for modal slide on mobile */
@keyframes slide-down-mobile {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-up-mobile {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.hotel-resort-header {
    font-size: 3.5rem; /* Extra-large size for dramatic impact */
    color: transparent;
    background-image: linear-gradient(90deg, #000 0%, #333 50%, #1a1a1a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    letter-spacing: 5px; /* Increased spacing for high-end vibe */
    text-align: center;
    text-transform: uppercase;
    padding: 30px 0;
    position: relative;
    line-height: 1.2;

    /* Text Shadow for Glass Effect */
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 255, 255, 0.05),
        5px 5px 20px rgba(0, 0, 0, 0.5),
        -5px -5px 15px rgba(255, 255, 255, 0.3);

    /* Border and inner glow */
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.05),
        0 0 20px rgba(0, 0, 0, 0.7);

    /* 3D Text Hover Effect */
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.hotel-resort-header:hover {
    transform: scale(1.1) rotateX(10deg); /* Slight hover scaling */
    text-shadow:
        0 0 30px rgba(255, 255, 255, 0.3),
        0 0 50px rgba(255, 255, 255, 0.2),
        10px 10px 30px rgba(0, 0, 0, 0.8);
    box-shadow:
        inset 0 0 30px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(0, 0, 0, 1); /* Extra depth on hover */
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }
}

.hotel-resort {
    display: flex;
}

/* Sidebar Styling */
.sidebar {
    width: 250px;
    padding: 20px;
    background-color: #2c3e50;
    height: 100vh;
    position: fixed;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sidebar:hover {
    width: 270px;
}

.sidebar-link {
    display: block;
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
    color: white;
    border-left: 5px solid transparent;
    background-color: #34495e;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: left;
    align-items: center; /* Center items horizontally */
}

.sidebar-link:nth-child(1) {
    border-left-color: #e74c3c;
}

.sidebar-link:nth-child(2) {
    border-left-color: #f39c12;
}

.sidebar-link:nth-child(3) {
    border-left-color: #2ecc71;
}

.sidebar-link:nth-child(4) {
    border-left-color: #3498db;
}

.sidebar-link:hover {
    background-color: #1abc9c;
    padding-left: 30px;
}

/* Content Styling */
/* Style for the content container */
.content {
    margin-left: 280px;
    padding: 30px;
    flex-grow: 1;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease;
    height: 100vh;
    overflow-y: scroll;
    background-color: #f7f7f7; /* Light background for contrast */
    -webkit-overflow-scrolling: auto; /* Prevents WebKit from hiding the scrollbar */
}

/* WebKit-based browser scrollbar */
.content::-webkit-scrollbar {
    width: 14px; /* Slightly wider for a more unique feel */
    background-color: transparent; /* Make the track background transparent */
}

/* Track (background of the scrollbar) */
.content::-webkit-scrollbar-track {
    background: linear-gradient(
        180deg,
        #333,
        #222
    ); /* Dark gradient for the track */
    border-radius: 12px; /* Smooth rounded edges */
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); /* Inner shadow for depth */
}

/* Handle (scrollbar thumb) */
.content::-webkit-scrollbar-thumb {
    background-image: linear-gradient(
        135deg,
        #89fffd,
        #0055ff
    ); /* Vibrant blue to teal gradient */
    border-radius: 10px;
    border: 3px solid rgba(0, 0, 0, 0.2); /* Transparent border with a slight shadow */
    box-shadow: 0 2px 6px rgba(0, 85, 255, 0.5); /* Glowing shadow for a unique effect */
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease; /* Smooth hover transition */
}

/* Handle on hover */
.content::-webkit-scrollbar-thumb:hover {
    background-image: linear-gradient(
        135deg,
        #00d4ff,
        #0082ff
    ); /* Shift to more electric blue tones */
    box-shadow:
        0 4px 10px rgba(0, 150, 255, 0.7),
        0 0 5px #00d4ff; /* Glow effect intensifies on hover */
}

/* Corners of the scrollbar (for scrollbars with both vertical and horizontal) */
.content::-webkit-scrollbar-corner {
    background: #111; /* Dark corner for a seamless look */
}

/* Firefox Scrollbar */
.content {
    scrollbar-width: thin;
    scrollbar-color: #89fffd #333; /* Custom colors for Firefox (thumb and track) */
}

.container {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.container.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header and Text Styling */
.container h2 {
    font-size: 2.5rem;
    font-family: Georgia;
    color: #1abc9c;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.container h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background-color: #e74c3c;
    position: absolute;
    left: 0;
    bottom: 0;
}

.location h1,
.location h3,
.location h5 {
    margin: 0;
    padding: 10px;
    text-align: center;
    transition:
        color 0.3s ease,
        text-shadow 0.3s ease;
}

.location h1 {
    font-size: 2.2rem;
    font-weight: bold;
    color: black;
    text-shadow:
        2px 2px 5px #ccc,
        /* Soft shadow for depth */ -1px -1px 3px #fff; /* Light highlight */
}

.location h1:hover {
    color: #3498db; /* Change to a cool blue on hover */
    text-shadow:
        3px 3px 7px #bbb,
        /* Deeper shadow */ -2px -2px 4px #fff;
}

.location h3 {
    font-size: 2rem;
    font-style: italic;
    color: #6a5e5e;
    margin-bottom: 10px;
    text-shadow:
        1px 1px 2px #aaa,
        /* Slight shadow for depth */ -1px -1px 2px #fff;
}

.location h3:hover {
    color: #e74c3c; /* Warm red on hover */
}

.location h5 {
    font-size: 1.8rem;
    color: #7f8c8d;
    font-weight: 500;
    text-shadow:
        1px 1px 2px #ddd,
        -1px -1px 2px #fff;
}

.location h5:hover {
    color: #2ecc71; /* Green on hover */
}

p {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
}

/* Locations Grid Styling */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.location {
    background: #e6e6e6;
    box-shadow:
        inset 2px 2px 5px rgba(0, 0, 0, 0.2),
        inset -2px -2px 5px rgba(255, 255, 255, 0.5); /* Engraved effect */
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.location:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.location img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.location:hover img {
    transform: scale(1.05);
}

.explore-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.explore-btn:hover {
    background-color: #c0392b;
}

/* Smooth transitions between sections */
.container.active {
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-link.active {
    background-color: #e6e6e6;
    box-shadow:
        inset 2px 2px 5px rgba(0, 0, 0, 0.2),
        inset -2px -2px 5px rgba(255, 255, 255, 0.5); /* Change this to your preferred active background color */
    color: #1abc9c; /* Change this to your preferred active text color */
    font-weight: bold; /* Optional: Make the active link stand out */
}

/* Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.pagination button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination button.active {
    background-color: #0056b3;
}

.pagination button:hover {
    background-color: #0056b3;
}

.collections {
    position: relative;
    background: linear-gradient(135deg, whitesmoke 0%, #b0bec5 100%);
    padding: 100px 50px;
    text-align: center;
    color: #333;
    overflow: hidden;
    margin-top: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.collections::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: shimmer 5s infinite;
    z-index: 0;
}

@keyframes shimmer {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.collections .content-wrapper {
    position: relative;
    z-index: 2;
}

.collections h2 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #757575, #90a4ae);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 2s ease-out;
}

.collections p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    animation: fadeIn 2.5s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-link {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 25px;
    background: linear-gradient(to right, #757575, #90a4ae);
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    animation: fadeIn 3s ease-out;
}

.cta-link i {
    margin-right: 10px;
}

.cta-link:hover {
    background: #90a4ae;
}

/* Toggle Button */
.menu-toggle {
    font-size: 1.5rem;
    padding: 10px 20px;
    border: none;
    display: none;
    cursor: pointer;
    background: linear-gradient(
        90deg,
        #000 0%,
        #333 50%,
        #1a1a1a 100%
    ); /* Same gradient from the header */
    color: #fff; /* Text color for contrast */
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Button shadow for depth */
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
    margin: auto;
}

.menu-toggle:hover {
    background: linear-gradient(
        90deg,
        #1a1a1a 0%,
        #333 50%,
        #000 100%
    ); /* Reverse gradient on hover */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8); /* Stronger shadow on hover */
}

@media (max-width: 480px) {
    .nav-buttons {
        flex-direction: column;
        gap: 0;
    }
}

/* Mobile View Styling */
@media (max-width: 768px) {
    * {
        margin: 0;
        padding: 0;
    }

    body {
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }

    .first-container {
        padding: 20px;
        padding-top: 0;
        position: relative;
        display: flex;
        flex-direction: column-reverse;
    }

    .first-image-container {
        float: right; /* Floats the image to the right side */
        width: 100%; /* The image takes half of the screen width */
        margin-bottom: 15px; /* Adds spacing below the image */
        height: 550px;
    }

    .second-image-container {
        float: left;
        width: 100%;
        margin-bottom: 15px;
        height: 600px;
    }

    .first-image-container img {
        width: 100%;
        height: 200px; /* Maintains aspect ratio */
        object-fit: cover;
        image-rendering: auto;
    }

    .second-image-container img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        image-rendering: auto;
    }

    #first-statement-container {
        text-align: center;
        padding: 20px;
    }

    #first-statement-container h3 {
        font-size: 23.5px;
        padding-bottom: 20px;
        text-align: center;
    }

    #first-statement-container p {
        font-size: 1.4rem;
        line-height: 3rem;
        text-align: center;
    }

    .second-container {
        flex-direction: column;
        padding: 20px;
        padding-top: 0;
        position: relative;
        display: flex;
    }

    #second-statement-container {
        padding-left: 0;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #second-statement-container h2 {
        font-size: 1.6rem;
        opacity: 1;
        border-bottom: 1px solid #333;
        padding-bottom: 10px;
    }

    #second-statement-container ul li {
        font-size: 1.2rem;
    }

    .browse-link {
        font-size: 0.7rem;
    }

    section.testimonial-cube h2 {
        font-size: 2rem;
    }

    .cube-container {
        perspective: 800px; /* Reduce perspective for smaller screens */
        height: 200px; /* Adjust container height */
    }

    .cube {
        width: 150px;
        height: 150px;
        transform: rotateX(-15deg) rotateY(0deg); /* Maintain tilt */
    }

    .face {
        width: 150px;
        height: 150px;
        font-size: 1rem; /* Adjust font size for better readability */
        padding: 10px; /* Reduce padding */
    }

    /* Adjust the positions for smaller cube faces */
    .front {
        transform: rotateY(0deg) translateZ(75px);
    }
    .back {
        transform: rotateY(180deg) translateZ(75px);
    }
    .left {
        transform: rotateY(-90deg) translateZ(75px);
    }
    .right {
        transform: rotateY(90deg) translateZ(75px);
    }
    .top {
        transform: rotateX(90deg) translateZ(75px);
    }
    .bottom {
        transform: rotateX(-90deg) translateZ(75px);
    }

    /* Adjust reflection and shadow */
    .reflection {
        width: 150px;
        height: 75px;
        top: 240px;
        filter: blur(2px);
    }

    .cube-container:before {
        width: 160px;
        height: 20px;
        top: 200px;
        filter: blur(5px);
    }

    footer {
        padding: 1rem; /* Ensures consistent padding */
    }

    footer p {
        font-size: 0.75em; /* Further reduced font size for very small screens */
    }

    .stories-section {
        display: flex;
        flex-direction: column;
        padding: 0;
        padding-bottom: 50px;
    }

    .stories-section img {
        width: 100%;
        height: 40vh;
        margin-bottom: 10px;
    }

    .stories-content {
        width: 100%;
        text-align: center;
    }

    .stories-content h2 {
        font-size: 1.8rem;
        text-align: center;
        border-bottom: none;
    }

    .stories-content p {
        font-size: 1.2rem;
        text-align: center;
        text-emphasis: none;
        padding: 0 40px;
    }

    .destinations {
        height: 100px;
    }

    .banner-text {
        font-size: 12px;
    }

    .hero {
        background-position: center center;
        background-size: 280% 50%;
        padding-bottom: 0;
    }

    .hero-content {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .hero-right {
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .hero-left {
        width: 88%;
        align-items: center;
        padding-left: 25px;
        height: 100vh;
    }

    .hero-left h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero-left h3 {
        font-size: 1.2rem;
        color: #555;
        text-align: center;
    }

    .hero-left h2,
    .hero-left h1,
    .hero-left h3 {
        text-align: center;
    }

    .perks-list {
        border-top: 1px solid #555;
        padding-top: 20px;
        font-size: 1.2rem;
    }

    .perks-quote {
        font-size: 0.9em;
    }

    .heading {
        font-size: 1.2rem;
        padding: 40px;
    }

    .hotel-resort-header {
        font-size: 1rem; /* Smaller font size for mobile */
        letter-spacing: 2px; /* Reduced spacing for better readability */
        padding: 20px 0;
        line-height: 1.3; /* Adjust line height */
        text-shadow:
            0 0 5px rgba(255, 255, 255, 0.05),
            0 0 10px rgba(255, 255, 255, 0.02),
            3px 3px 10px rgba(0, 0, 0, 0.4),
            -3px -3px 10px rgba(255, 255, 255, 0.2); /* Subtler shadow */

        /* Reduced inner glow and box-shadow for mobile */
        box-shadow:
            inset 0 0 10px rgba(255, 255, 255, 0.02),
            0 0 10px rgba(0, 0, 0, 0.4);

        /* Simplified hover effect for mobile */
        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
    }

    .hotel-resort-header:hover {
        transform: scale(1.05); /* Slight scaling on hover */
        text-shadow:
            0 0 15px rgba(255, 255, 255, 0.15),
            0 0 20px rgba(255, 255, 255, 0.1),
            5px 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow:
            inset 0 0 15px rgba(255, 255, 255, 0.05),
            0 0 20px rgba(0, 0, 0, 0.7);
    }

    .hotel-resort {
        display: flex;
        flex-direction: column; /* Stacking for mobile by default */
    }

    /* Sidebar */
    .sidebar {
        width: 100%; /* Full width on mobile */
        padding: 15px;
        background-color: #2c3e50;
        box-shadow: none;
        height: auto; /* Automatic height adjustment */
        position: relative; /* No fixed position for mobile */
        box-shadow: none;
        margin-bottom: 20px; /* Adds spacing below sidebar */
    }

    .sidebar-link {
        font-size: 14px;
        text-align: center; /* Center align buttons on mobile */
        padding: 10px 15px;
    }

    .sidebar:hover {
        width: 100%; /* Prevent sidebar width expansion on hover for mobile */
    }

    /* Content section adjustments */
    .content {
        margin: 0; /* Remove the left margin */
        padding: 20px 0;
        padding-top: 0;
        margin-top: 60px; /* Offset content below the sidebar toggle button */
        text-align: center;
        overflow-y: scroll !important; /* Force scrollbar visibility */
        -webkit-overflow-scrolling: auto; /* Prevent smooth scrolling to disable hiding */
    }

    .container h2 {
        font-size: 2rem;
    }

    /* Ensure the grid is responsive */
    .locations-grid {
        grid-template-columns: 1fr; /* Stack all items in a single column */
        gap: 1rem;
        padding: 10px;
    }

    /* Adjust images in locations */
    .location img {
        height: 200px;
    }

    /* Define the slide from top animation */
    @keyframes slidefromtop {
        0% {
            transform: translateY(-100%);
        }
        100% {
            transform: translateY(0);
        }
    }

    /* Define the slide to top animation */
    @keyframes slidetotop {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-100%);
        }
    }

    .collections {
        padding: 80px 20px;
    }

    .collections h2 {
        font-size: 1.5rem;
    }

    .collections p {
        font-size: 1rem;
    }

    .cta-link {
        font-size: 1.2rem;
    }

    footer {
        opacity: 1;
    }

    .footer-partners img {
        width: 70px;
    }

    .lightning {
        width: 100px;
        height: 300px;
    }

    .footer-text {
        font-size: 7px;
    }

    .social-icon {
        font-size: 20px;
    }
}

@media (min-width: 780px) and (min-height: 600px) {
    .first-container {
        display: flex;
        flex-direction: column-reverse;
        padding: 0;
        padding-bottom: 150px;
    }

    .first-container {
        display: flex;
        flex-direction: column-reverse;
        padding: 0;
        padding-bottom: 150px;
    }

    .first-image-container {
        margin-bottom: 20px;
    }

    .first-image-container img {
        height: 40vh;
    }

    .second-image-container img {
        height: 40vh;
    }

    #first-statement-container {
        align-items: center;
    }

    #first-statement-container h3 {
        font-size: 3rem;
        padding-bottom: 20px;
        text-align: center;
    }

    #first-statement-container p {
        font-size: 2.2rem;
        text-align: center;
    }

    .second-container {
        flex-direction: column;
        padding: 0;
    }

    #second-statement-container {
        padding-left: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #second-statement-container h2 {
        font-size: 2rem;
        opacity: 1;
        border-bottom: 1px solid #333;
        text-align: center;
    }

    #second-statement-container ul li {
        font-size: 1.5rem;
    }

    .browse-link {
        font-size: 1.1rem;
    }

    section.testimonial-cube h2 {
        font-size: 3rem;
    }

    .cube-container {
        perspective: 800px;
    }

    .cube,
    .face {
        width: 300px;
        height: 300px;
    }

    .reflection {
        width: 300px;
    }

    footer {
        padding: 1rem; /* Ensures consistent padding */
    }

    footer p {
        font-size: 0.75em; /* Further reduced font size for very small screens */
    }

    .stories-section {
        display: flex;
        flex-direction: column;
        padding: 0;
        padding-bottom: 50px;
    }

    .stories-section img {
        width: 100%;
        height: 40vh;
    }

    .stories-content {
        width: 100%;
        text-align: center;
    }

    .stories-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .stories-content p {
        text-align: center;
        text-emphasis: none;
    }

    .destinations {
        height: 100px;
    }

    .banner-text {
        font-size: 12px;
    }

    .hero {
        background-position: bottom center;
        background-size: contain;
    }

    .hero-content {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .hero-right {
        width: 100%;
        height: 50vh;
    }

    .hero-left {
        width: 88%;
        align-items: center;
    }

    .hero-left h2,
    .hero-left h1,
    .hero-left h3 {
        text-align: center;
    }

    .perks-list {
        border-top: 1px solid #555;
        padding-top: 30px;
        font-size: 1.5rem;
    }

    .perks-quote {
        text-align: center;
        margin: auto;
        margin-left: 80px;
    }

    .features-carousel {
        border: 2px solid black;
        width: 100%;
        margin: 0;
    }

    .carousel-wrapper {
        height: 100%;
    }

    .carousel-content {
        width: 300%; /* Adjust the content width to accommodate multiple slides */
        overflow-x: scroll; /* Allow horizontal scrolling on mobile */
        scroll-snap-type: x mandatory; /* Optional snapping behavior */
    }

    .carousel-arrow {
        display: none; /* Hide arrows on smaller screens if necessary */
    }

    .feature-item {
        min-width: 100%; /* Each item should take full width */
        padding: 20px;
        background-size: 100% 100%;
        background-position: center;
        scroll-snap-align: center;
    }

    .text-container {
        max-width: 90vw; /* Ensure text container doesn't overflow on mobile */
    }

    .text-container h2 {
        font-size: 1rem;
    }

    .text-container h3 {
        font-size: 1.2rem;
    }

    .text-container p {
        font-size: 0.8rem;
    }

    .hotel-toggle-section {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem 0;
    }

    .toggle-content {
        width: 100%;
        justify-content: flex-start;
    }

    .card img {
        object-fit: cover;
        width: 110%;
    }

    #toggle3 img {
        width: 100%;
        object-fit: cover;
    }

    .grid-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
    }

    .card {
        padding: 0;
        width: 100%;
    }

    .toggle-buttons {
        display: flex;
        flex-direction: row;
    }

    .toggle-btn {
        font-size: 15px;
    }

    .heading {
        font-size: 1.2rem;
        padding: 40px;
    }

    .collections {
        padding: 80px 20px;
    }

    .collections h2 {
        font-size: 1.5rem;
    }

    .collections p {
        font-size: 1rem;
    }

    .cta-link {
        font-size: 1.2rem;
    }

    .hotel-resort-header {
        font-size: 2rem; /* Smaller font size for mobile */
        letter-spacing: 2px; /* Reduced spacing for better readability */
        padding: 20px 0;
        line-height: 1.3; /* Adjust line height */
        text-shadow:
            0 0 5px rgba(255, 255, 255, 0.05),
            0 0 10px rgba(255, 255, 255, 0.02),
            3px 3px 10px rgba(0, 0, 0, 0.4),
            -3px -3px 10px rgba(255, 255, 255, 0.2); /* Subtler shadow */

        /* Reduced inner glow and box-shadow for mobile */
        box-shadow:
            inset 0 0 10px rgba(255, 255, 255, 0.02),
            0 0 10px rgba(0, 0, 0, 0.4);

        /* Simplified hover effect for mobile */
        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
    }

    .hotel-resort-header:hover {
        transform: scale(1.05); /* Slight scaling on hover */
        text-shadow:
            0 0 15px rgba(255, 255, 255, 0.15),
            0 0 20px rgba(255, 255, 255, 0.1),
            5px 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow:
            inset 0 0 15px rgba(255, 255, 255, 0.05),
            0 0 20px rgba(0, 0, 0, 0.7);
    }

    .hotel-resort {
        display: flex;
        flex-direction: column; /* Stacking for mobile by default */
    }

    /* Sidebar */
    .sidebar {
        width: 100%; /* Full width on mobile */
        padding: 15px;
        background-color: #2c3e50;
        box-shadow: none;
        height: auto; /* Automatic height adjustment */
        position: relative; /* No fixed position for mobile */
        box-shadow: none;
        margin-bottom: 20px; /* Adds spacing below sidebar */
    }

    .sidebar-link {
        font-size: 14px;
        text-align: center; /* Center align buttons on mobile */
        padding: 10px 15px;
    }

    .sidebar:hover {
        width: 100%; /* Prevent sidebar width expansion on hover for mobile */
    }

    /* Content section adjustments */
    .content {
        margin: 0; /* Remove the left margin */
        padding: 20px 0;
        margin-top: 60px; /* Offset content below the sidebar toggle button */
        text-align: center;
    }

    .container h2 {
        font-size: 3rem;
    }

    /* Ensure the grid is responsive */
    .locations-grid {
        grid-template-columns: 1fr; /* Stack all items in a single column */
        gap: 1rem;
        padding: 30px;
    }

    /* Adjust images in locations */
    .location img {
        height: 600px;
    }

    /* Define the slide from top animation */
    @keyframes slidefromtop {
        0% {
            transform: translateY(-100%);
        }
        100% {
            transform: translateY(0);
        }
    }

    /* Define the slide to top animation */
    @keyframes slidetotop {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-100%);
        }
    }

    footer {
        opacity: 1;
    }

    .footer-partners img {
        width: 100px;
    }

    .lightning {
        width: 100px;
        height: 300px;
    }

    .footer-text {
        font-size: 7px;
    }

    .social-icon {
        font-size: 20px;
    }

    .heading {
        font-size: 1.8rem;
        padding: 40px;
    }
}

@media only screen and (min-width: 768px) and (min-height: 1024px) and (max-width: 768px) and (max-height: 1024px) {
    .first-image-container,
    .second-image-container {
        height: 50vh;
    }

    .first-image-container img,
    .second-image-container img {
        height: 50vh;
    }

    #first-statement-container h3 {
        font-size: 3rem;
        text-align: center;
    }

    #first-statement-container p {
        font-size: 2.2rem;
        text-align: center;
    }

    #second-statement-container h2,
    #second-statement-container ul li,
    .quote {
        font-size: 2rem;
        margin-left: 50px;
    }
    .hero-left {
        align-items: center;
        justify-content: center;
        padding-top: 0;
        padding-left: 50px;
    }

    .hero-left h1 {
        font-size: 2.3rem;
    }

    .hero-left h3 {
        font-size: 1.5rem;
    }

    .perks-list {
        font-size: 1.8rem;
    }

    .perks-quote {
        font-size: 1.5rem;
    }

    .stories-content h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .stories-content p {
        font-size: 2.5rem;
    }

    /* Testimonial Cube Section */
    section.testimonial-cube {
        position: relative;
        background: linear-gradient(
            135deg,
            whitesmoke 0%,
            #b0bec5 100%
        ); /* Gradient background */
        padding: 100px 50px;
        text-align: center;
        color: #333; /* Darker text color for contrast */
        overflow: hidden;
        margin-top: 10px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    /* Shimmer Effect */
    section.testimonial-cube::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: rgba(255, 255, 255, 0.1);
        transform: rotate(45deg);
        animation: shimmer 5s infinite;
        z-index: 0;
    }

    @keyframes shimmer {
        0% {
            transform: rotate(45deg) translateX(-100%);
        }
        100% {
            transform: rotate(45deg) translateX(100%);
        }
    }

    section.testimonial-cube h2 {
        font-size: 3rem;
        margin-bottom: 50px;
        position: relative; /* Positioning for z-index */
        z-index: 1; /* Make sure heading is above shimmer */
        color: black;
        text-shadow:
            1px 1px 2px #aaa,
            /* Slight shadow for depth */ -1px -1px 2px #fff; /* Highlight for the engraved effect */
        font-family: Georgia;
    }

    /* Cube Container */
    .cube-container {
        perspective: 1200px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 400px;
    }

    /* Cube Styling */
    .cube {
        width: 300px;
        height: 300px;
        position: relative;
        transform-style: preserve-3d;
        animation: rotateCube 12s infinite ease-in-out;
        transform: rotateX(-15deg) rotateY(0deg); /* Added tilt for depth */
        transition: all 0.5s ease;
        z-index: 1; /* Make sure cube is above shimmer */
    }

    .cube:hover {
        animation-play-state: paused; /* Pause rotation on hover */
    }

    /* Face Design */
    .face {
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(
            180,
            190,
            197,
            0.8
        ); /* Light gray translucent background */
        border: 2px solid #333; /* Darker border for contrast */
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.2rem;
        text-align: center;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
        backface-visibility: hidden;
        color: #333; /* Darker text color */
        transition: box-shadow 0.3s ease; /* Shadow effect */
    }

    /* Hover effect on the cube faces */
    .face:hover {
        box-shadow: 0 0 15px 5px #666; /* Subtle glow effect on hover */
    }

    /* Cube Faces Positions */
    .front {
        transform: rotateY(0deg) translateZ(150px);
    }
    .back {
        transform: rotateY(180deg) translateZ(150px);
    }
    .left {
        transform: rotateY(-90deg) translateZ(150px);
    }
    .right {
        transform: rotateY(90deg) translateZ(150px);
    }
    .top {
        transform: rotateX(90deg) translateZ(150px);
    }
    .bottom {
        transform: rotateX(-90deg) translateZ(150px);
    }

    /* Cube Rotation Animation */
    @keyframes rotateCube {
        0% {
            transform: rotateX(-15deg) rotateY(0deg);
        }
        25% {
            transform: rotateX(-15deg) rotateY(90deg);
        }
        50% {
            transform: rotateX(-15deg) rotateY(180deg);
        }
        75% {
            transform: rotateX(-15deg) rotateY(270deg);
        }
        100% {
            transform: rotateX(-15deg) rotateY(360deg);
        }
    }

    /* Reflection Styling */
    .reflection {
        position: absolute;
        width: 300px;
        height: 150px;
        background: rgba(192, 192, 192, 0.2); /* Subtle silver reflection */
        top: 480px;
        left: 50%;
        transform: translateX(-50%) skewY(10deg);
        filter: blur(3px);
        opacity: 0.6;
        z-index: -1;
    }

    /* Cube Shadow */
    .cube-container:before {
        content: "";
        position: absolute;
        top: 400px;
        left: 50%;
        width: 320px;
        height: 40px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        transform: translateX(-50%);
        filter: blur(10px);
        z-index: -1;
    }

    .hotel-resort-header {
        font-size: 2rem;
    }

    .content {
        padding: 30px;
        width: 100%;
        transition: all 0.3s ease;
        animation: fadeIn 1s ease;
        height: 100vh;
        overflow-y: scroll;
        background-color: #f7f7f7; /* Light background for contrast */
        -webkit-overflow-scrolling: auto; /* Prevents WebKit from hiding the scrollbar */
    }

    .location img {
        height: 500px;
    }
}

@media only screen and (min-width: 540px) and (min-height: 720px) and (max-width: 540px) and (max-height: 720px) {
    .first-image-container,
    .second-image-container {
        height: 50vh;
    }

    .first-image-container img,
    .second-image-container img {
        height: 50vh;
    }

    .location img {
        height: 400px;
    }
}

@media only screen and (min-width: 1024px) and (min-height: 600px) and (max-width: 1024px) and (max-height: 600px) {
    /* General styling for the section */
    .first-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        padding-right: 0;
        background: #e6e6e6;
        box-shadow:
            inset 2px 2px 5px rgba(0, 0, 0, 0.2),
            inset -2px -2px 5px rgba(255, 255, 255, 0.5); /* Engraved effect */
    }

    /* Styling and continuous animation for the text container */
    #first-statement-container {
        flex: 1;
        padding-right: 20px;
        font-family: Georgia;
        justify-content: flex-start;
        align-items: flex-start;
    }

    #first-statement-container h3 {
        font-size: 3.5rem; /* Slightly smaller than h1 */
        color: black; /* Light gray color resembling engraving on metal */
        text-shadow:
            1px 1px 2px #aaa,
            /* Slight shadow for depth */ -1px -1px 2px #fff; /* Highlight for the engraved effect */
        letter-spacing: 0.1em; /* Spacing for a more classic look */
        margin: 10px 0 10px; /* Spacing for visual separation */
        text-align: center;
    }

    #first-statement-container p {
        font-size: 2.8rem; /* Clear, readable size for paragraph text */
        color: #666; /* Lighter gray for less emphasis */
        text-shadow:
            1px 1px 2px #aaa,
            /* Slight shadow for depth */ -1px -1px 2px #fff; /* Highlight for the engraved effect */
        letter-spacing: 0.1em; /* Spacing for a more classic look */
        text-align: center;
    }

    /* Styling for image container */
    .first-image-container {
        flex: 1;
        overflow: hidden;
        opacity: 0;
        transform: scale(0.5);
        animation: scaleInImage 1.5s 0.5s forwards ease-out;
        height: 100vh;
    }

    .first-image-container img {
        width: 100%;
        height: 100vh;
        transition: transform 0.3s ease-in-out;
    }

    .first-image-container img:hover {
        transform: scale(1.1);
    }

    /* General styling for the second section */
    .second-container {
        display: flex;
        justify-content: space-between;
        padding-left: 0;
        background: #f4f4f4;
        box-shadow:
            inset 2px 2px 5px rgba(0, 0, 0, 0.2),
            inset -2px -2px 5px rgba(255, 255, 255, 0.5); /* Engraved effect */
    }

    /* Styling for the second image container */
    .second-image-container {
        flex: 1;
        overflow: hidden;
        opacity: 0;
        transform: scale(0.5);
        animation: fadeInImage 2s 0.5s forwards ease-out; /* Fade and scale effect */
        height: 100%;
    }

    .second-image-container img {
        width: 100%;
        height: 100vh;
        transition: transform 0.3s ease-in-out;
    }

    .second-image-container img:hover {
        transform: scale(1.1);
    }

    /* Styling for the text container in the second section */
    #second-statement-container {
        flex: 1;
        padding-left: 20px;
        font-family: Georgia;
        padding-left: 50px;
    }

    #second-statement-container h2 {
        font-family: Georgia;
        font-size: 3rem;
        color: black;
        text-shadow:
            1px 1px 2px #aaa,
            -1px -1px 2px #fff;
        opacity: 0;
        animation: slideIn 1.5s ease-out forwards;
        text-align: left;
    }

    #second-statement-container ul {
        list-style-type: none;
        padding: 0;
    }

    #second-statement-container ul li {
        font-size: 2.5rem;
        color: #333;
        margin: 10px 0;
        padding-left: 10px; /* Space for the border-left */
        border-left: 5px solid; /* Border color will be added below */
        text-shadow:
            1px 1px 2px #aaa,
            -1px -1px 2px #fff;
        opacity: 0;
        transform: translateY(-50px);
        animation: slideInFromTop 0.8s ease forwards; /* Adjusted animation duration */
    }

    .quote {
        font-size: 3rem;
    }

    .hero-right {
        display: none;
    }

    .hero {
        background-position: center center;
        background-size: 250% 100%;
    }

    .stories-section img {
        height: 100vh;
    }

    .stories-content h2 {
        font-size: 3.5rem;
    }

    .stories-content p {
        font-size: 2.5rem;
        text-align: center;
    }
}

@media only screen and (min-width: 1280px) and (min-height: 800px) and (max-width: 1280px) and (max-height: 800px) {
    /* General styling for the section */
    .first-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        padding-right: 0;
        background: #e6e6e6;
        box-shadow:
            inset 2px 2px 5px rgba(0, 0, 0, 0.2),
            inset -2px -2px 5px rgba(255, 255, 255, 0.5); /* Engraved effect */
    }

    /* Styling and continuous animation for the text container */
    #first-statement-container {
        flex: 1;
        padding-right: 20px;
        font-family: Georgia;
        justify-content: flex-start;
        align-items: flex-start;
    }

    #first-statement-container h3 {
        font-size: 3.5rem; /* Slightly smaller than h1 */
        color: black; /* Light gray color resembling engraving on metal */
        text-shadow:
            1px 1px 2px #aaa,
            /* Slight shadow for depth */ -1px -1px 2px #fff; /* Highlight for the engraved effect */
        letter-spacing: 0.1em; /* Spacing for a more classic look */
        margin: 10px 0 10px; /* Spacing for visual separation */
        text-align: center;
    }

    #first-statement-container p {
        font-size: 2.8rem; /* Clear, readable size for paragraph text */
        color: #666; /* Lighter gray for less emphasis */
        text-shadow:
            1px 1px 2px #aaa,
            /* Slight shadow for depth */ -1px -1px 2px #fff; /* Highlight for the engraved effect */
        letter-spacing: 0.1em; /* Spacing for a more classic look */
        text-align: center;
    }

    /* Styling for image container */
    .first-image-container {
        flex: 1;
        overflow: hidden;
        opacity: 0;
        transform: scale(0.5);
        animation: scaleInImage 1.5s 0.5s forwards ease-out;
        height: 100vh;
    }

    .first-image-container img {
        width: 100%;
        height: 100vh;
        transition: transform 0.3s ease-in-out;
    }

    .first-image-container img:hover {
        transform: scale(1.1);
    }

    /* General styling for the second section */
    .second-container {
        display: flex;
        justify-content: space-between;
        padding-left: 0;
        background: #f4f4f4;
        box-shadow:
            inset 2px 2px 5px rgba(0, 0, 0, 0.2),
            inset -2px -2px 5px rgba(255, 255, 255, 0.5); /* Engraved effect */
    }

    /* Styling for the second image container */
    .second-image-container {
        flex: 1;
        overflow: hidden;
        opacity: 0;
        transform: scale(0.5);
        animation: fadeInImage 2s 0.5s forwards ease-out; /* Fade and scale effect */
        height: 100%;
    }

    .second-image-container img {
        width: 100%;
        height: 100vh;
        transition: transform 0.3s ease-in-out;
    }

    .second-image-container img:hover {
        transform: scale(1.1);
    }

    /* Styling for the text container in the second section */
    #second-statement-container {
        flex: 1;
        padding-left: 20px;
        font-family: Georgia;
        padding-left: 50px;
    }

    #second-statement-container h2 {
        font-family: Georgia;
        font-size: 3rem;
        color: black;
        text-shadow:
            1px 1px 2px #aaa,
            -1px -1px 2px #fff;
        opacity: 0;
        animation: slideIn 1.5s ease-out forwards;
        text-align: left;
    }

    #second-statement-container ul {
        list-style-type: none;
        padding: 0;
    }

    #second-statement-container ul li {
        font-size: 2.5rem;
        color: #333;
        margin: 10px 0;
        padding-left: 10px; /* Space for the border-left */
        border-left: 5px solid; /* Border color will be added below */
        text-shadow:
            1px 1px 2px #aaa,
            -1px -1px 2px #fff;
        opacity: 0;
        transform: translateY(-50px);
        animation: slideInFromTop 0.8s ease forwards; /* Adjusted animation duration */
    }

    .quote {
        font-size: 3rem;
    }

    .hero-right {
        display: none;
    }

    .hero {
        background-position: center center;
        background-size: 250% 100%;
    }

    .stories-section img {
        height: 100vh;
    }

    .stories-content h2 {
        font-size: 3.5rem;
    }

    .stories-content p {
        font-size: 2.5rem;
        text-align: center;
    }
}
