* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: rgba(129, 117, 117, 0.2);
    background-size: cover;
    background-position: center;
    font-family: 'Poppins', sans-serif;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(58, 55, 55, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

header .topbar {
    display: flex;
    align-items: center;
    width: 100%;
}

header .topbar img.royalpointlogoimg {
    width: 100px;
    height: auto;
}

header nav {
    flex-grow: 2;
    text-align: center;
    font-size: 10%;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    display: inline;
    margin: 0 1rem;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

header .topbar nav ul li a {
    font-size: 1rem;
}

header .call-btn {
    background-color: transparent;
    border: 1px solid white; /* Added white border */
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

header .call-btn i {
    font-size: 1.5rem;
}

header .call-btn:hover {
    background-color: #ff4500;
}

header .call-btn h1 {
    font-size: 1.0rem;
}

header .topbar a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1.5rem;
}

header .topbar a:hover {
    color: #25D366; /* WhatsApp green color */
}

/* Ensure the hero image takes up the full viewport height */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Ensure the image is behind the content */
}

.hero-details {
    position: relative;
    color: #fff;
    text-align: center;
    background: transparent;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
}

/* Scroll container for side-by-side images */
.scroll-container {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    width: 90%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar {
    height: 8px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.image-container {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    width: 200px; /* Adjust width as necessary */
}

.side-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.text-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    text-align: left;
}


#contactForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(37, 35, 35, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contactForm label {
    width: 100%;
    margin-bottom: 5px;
}

#contactForm input, #contactForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

#contactForm button {
    width: 100%;
    padding: 10px;
    background-color: #ff6600;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

#contactForm button:hover {
    background-color: #ff4500;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: relative;
    width: 100%;
}

a.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

a.whatsapp-button i {
    display: inline-block;
    vertical-align: middle;
}

a.whatsapp-button:hover {
    background-color: #128C7E;
    color: white;
}
