* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  color: #fff;
  min-height: 100vh;
}
.relative {
  position: relative;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
  z-index: 1000;
  transition: top 0.3s;
}
.header .logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1rem;
}
.header .logo {
  width: 100px;
  height: auto;
}
.header .login-section {
  position: absolute;
  right: 2rem;
  top: 1rem;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.header-nav {
  display: flex;
  gap: 2rem;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.header-nav a,
.header-actions a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.header-nav a:hover,
.header-actions a:hover {
  color: #aaa;
}
.header-nav {
  display: flex;
  gap: 2rem;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.header-nav a,
.header-actions a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.header-nav a:hover,
.header-actions a:hover {
  color: #aaa;
}
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: left;
  margin: 5vw 0vw;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 15vw !important;
  text-align: left;
  transition: opacity 0.3s ease-in-out;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-button {
  padding: 1rem 2rem;
  background-color: #ff0000;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero-button:hover {
  background-color: #ff0000;
}

.hidden {
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
}

  .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    gap: 2rem;
    padding: 10rem;
}
.main-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 0rem;
    transition: transform 0.5s ease-in-out;
}
.main-item img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s;
  border-radius: 20px;
  border-bottom: 2px solid black;
  border-left: black solid;
}
.main-item .overlay {
    position: absolute;
    top: 3.5rem;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.main-item .overlay .more {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: bold;
    font-size: 1rem;
    position: absolute;
    pointer-events: none;
}
.main-item:hover img {
    transform: scale(1.1);
}
.main-item:hover .overlay {
    opacity: 1;
}
.main-item:hover .overlay .more {
    opacity: 1;
}
.main-item-title {
    margin-bottom: 4rem;
    color: #000;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: left;
}
.main-item:nth-child(2n) {
    align-self: flex-end;
}
.main-item:nth-child(2n+1) {
    align-self: flex-start;
}
.main-item {
    transform: translateY(0);
    opacity: 1;
}
.main-item.hidden {
    transform: translateY(50px);
    opacity: 0;
}
.main-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
img.yacht {
  width: 100%;
  height: 450px;
}
@media (max-width: 768px) {
body {
    background-color: #000;
    color: #fff; 
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
  z-index: 1000;
  transition: top 0.3s;
}

.header .logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1rem;
  position: relative;
}

.header .logo {
  width: 100px;
  height: auto;
}

.header .login-section {
  position: absolute;
  right: 2rem;
  top: 1rem;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
}



.hero {
height: 49vh;
background-size: contain;
width: 95%;
margin: 34vw 3vw;
border-bottom: solid red 1px;
border-left: red solid;
border-radius: 15px 0px 15px 15px;
}
.hero-content {
display: none;
/* margin-top: 19vw; */
}
.hero-title {
  font-size: 1.5rem;
}

.hero-description {
    font-size: 1rem;
    display: none;
}

.hero-button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: white;
}

.main {
    padding: 2rem;
    margin-top: 0rem;
}

.main-item {
    margin-bottom: 1rem;
}

.main-item-title {
    font-size: 1rem;
    color: white;

}
img.yacht {
  width: 100%;
  height: 200px;
}
}
.language-switch {
position: absolute;
left: 2rem;
top: 1rem;
}

.language-switch a {
display: flex;
align-items: center;
color: #fff;
text-decoration: none;
transition: color 0.3s, transform 0.3s;
}

.language-switch a:hover {
color: #aaa;
transform: scale(1.1);
}

.language-switch .icon {
width: 20px;
height: 20px;
margin-right: 0.5rem;
transition: transform 0.3s;
}

.language-switch a:hover .icon {
transform: rotate(360deg);
}
@media (min-width: 769px) and (max-width: 1024px) {
.hero {
  height: 50vh;
  background-size: cover;
  width: 100%;
  margin: 0;
}

.hero-content {
  display: block;
  margin-top: 20vh;
}

.hero-title {
  font-size: 2rem;
}

.hero-description {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 1rem;
  color: white;
}

.hero-button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: white;
  background-color: #ff0000;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.main {
  padding: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.main-item {
  width: calc(50% - 1rem);
  margin-bottom: 1rem;
  position: relative;
}

.main-item img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s;
}

.main-item .item-text {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  color: white;
  font-size: 1rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.main-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.main-item:nth-child(even) {
  flex-direction: row;
}

.main-item:hover img {
  transform: scale(1.1);
}

}



.custom-hero {
background-image: url('https://img.freepik.com/free-photo/fighter-plane-soaring-high-sky-generated-by-ai_188544-33956.jpg'); 
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
display: flex;
align-items: flex-end; 
color: #fff;
text-align: left; 
position: relative;
}

.custom-hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
}

.custom-hero-content {
position: relative;
z-index: 1;
padding: 6rem; 
}

.custom-hero-title {
font-size: 3rem;
margin-bottom: 1rem;
}

.custom-hero-description {
font-size: 1.5rem;
margin-bottom: 2rem;
}

.custom-hero-button {
padding: 1rem 2rem;
background-color: #ff0000;
color: #fff;
border: none;
cursor: pointer;
transition: background-color 0.3s;
}

.custom-hero-button:hover {
background-color: #ff0000;
}

@media (max-width: 768px) {
.custom-hero {
height: 50vh;
background-size: cover;
}

.custom-hero-title {
font-size: 2rem;
}

.custom-hero-description {
font-size: 1rem;
}

.custom-hero-button {
padding: 0.5rem 1rem;
font-size: 1rem;
}
.custom-hero-content {
position: relative;
z-index: 1;
padding: 1rem; 
}
.language-switch {
position: absolute;
left: 4rem;
top: 2rem;
}
}

@media (min-width: 769px) and (max-width: 1024px) {
.custom-hero {
height: 75vh;
background-size: cover;
}

.custom-hero-title {
font-size: 2.5rem;
}

.custom-hero-description {
font-size: 1.25rem;
}

.custom-hero-button {
padding: 0.75rem 1.5rem;
font-size: 1.25rem;
}
.custom-hero-content {
position: relative;
z-index: 1;
padding: 1rem; 
}
}

.follow-section {
width: 100%;
height: 100vh; 
padding: 4rem; 
background-color: #fff;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}

.follow-content {
max-width: 800px;
margin: 0 auto;
}

.follow-title {
font-size: 3rem; 
margin-bottom: 1rem;
color: black;
}

.follow-handle {
font-size: 1.5rem; 
margin-bottom: 2rem;
color: #555;
}

.social-icons {
display: flex;
justify-content: center;
gap: 2rem; 
}

.social-icon img {
width: 50px; 
height: 50px; 
transition: transform 0.3s;
}

.social-icon img:hover {
transform: scale(1.1);
}

@media (max-width: 768px) {
.follow-title {
font-size: 2rem; 
}

.follow-handle {
font-size: 1rem; 
}

.social-icon img {
width: 40px;
height: 40px;
}
}

@media (min-width: 769px) and (max-width: 1024px) {
.follow-title {
font-size: 2.5rem; 
}

.follow-handle {
font-size: 1.25rem; 
}

.social-icon img {
width: 45px;
height: 45px;
}
}

.faq-section {
width: 100%;
padding: 3rem;
background-color: #000;
color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
border-radius: 50px 50px 0px 0px;
}

.faq-title {
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
font-weight: bold;
}

.faq-container {
border-top: 1px solid #444;
}

.faq-item {
border-bottom: 1px solid #444;
padding: 1.5rem 0;
}

.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
transition: background-color 0.3s;
}

.faq-question:hover {
background-color: #222;
}

.faq-question h3 {
font-size: 1.75rem;
margin: 0;
}

.toggle-icon {
font-size: 2rem;
transition: transform 0.3s ease;
}

.faq-answer {
display: none;
margin-top: 1rem;
}

.faq-answer p {
margin: 0;
font-size: 1.25rem;
line-height: 1.6;
}

@media (max-width: 768px) {
.faq-title {
font-size: 2rem;
}

.faq-question h3 {
font-size: 1.5rem;
}

.toggle-icon {
font-size: 1.5rem;
}

.faq-answer p {
font-size: 1rem;
}
}

.hmam-footer {
padding: 20px;
background-color: #000;
color: #fff;
}
.hmam-footer .hmam-row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.hmam-footer .hmam-col {
margin: 10px;
min-width: 150px;
}
.hmam-footer h3 {
margin-bottom: 15px;
font-size: 18px;
}
.hmam-footer ul {
list-style: none;
padding: 0;
}
.hmam-footer ul li {
margin-bottom: 10px;
}
.hmam-footer ul li a {
color: #fff;
text-decoration: none;
}
.hmam-footer .hmam-bottom {
text-align: center;
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid #444;
}
.hmam-footer .hmam-bottom img {
width: 50px;
margin-bottom: 10px;
}

.hmam-back-to-top {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
animation: bounce 2s infinite;
}
.hmam-back-to-top a {
display: flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
background-color: #00f;
color: #fff;
border-radius: 50%;
text-decoration: none;
font-size: 24px;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-20px);
}
60% {
transform: translateY(-10px);
}
}
@media (min-width: 769px) and (max-width: 1024px) {
.hmam-footer .hmam-col {
flex: 1 0 100%;
max-width: 100%;
text-align: center;
}
.hmam-footer h3 {
font-size: 16px;
}
}
@media (min-width: 769px) and (max-width: 1024px) {
.hmam-footer .hmam-col {
flex: 1 0 45%;
max-width: 45%;
}
.hmam-footer h3 {
font-size: 17px;
}
}




.contact-section {
width: 100%;
padding: 4rem 2rem;
box-sizing: border-box;
background-color: #fff;
color: #333;
transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.policy-section {
width: 100%;
padding: 4rem 2rem;
box-sizing: border-box;
background-color: #000;
color: #fff;
transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.contact-container, .policy-container {
max-width: 1200px;
margin: 0 auto;
}

.contact-title, .policy-title {
font-size: 2.5rem;
text-align: center;
margin-bottom: 2rem;
}

.contact-form .form-group {
margin-bottom: 1.5rem;
}

.contact-form .form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: bold;
color: #333;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
width: 100%;
padding: 0.75rem;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
}

.contact-form button {
display: inline-block;
padding: 0.75rem 2rem;
background-color: #333;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
}

.contact-form button:hover {
background-color: #555;
}

.policy-content .policy-item {
margin-bottom: 2rem;
padding: 2rem;
border: 1px solid #444;
border-radius: 4px;
background-color: #111;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
transition: transform 0.3s ease-in-out;
}

.policy-content .policy-item:hover {
transform: translateY(-5px);
}

.policy-content .policy-item h3 {
font-size: 1.75rem;
display: flex;
align-items: center;
margin-bottom: 1rem;
color: #fff;
}

.policy-content .policy-item h3 i {
margin-right: 1rem;
color: #fff;
}

.policy-footer {
text-align: center;
font-size: 1.2rem;
margin-top: 2rem;
color: #fff;
}

.policy-footer a {
color: #fff;
text-decoration: underline;
}

.policy-footer a:hover {
text-decoration: none;
}

@media (max-width: 768px) {
.contact-title, .policy-title {
  font-size: 2rem;
}

.policy-content .policy-item h3 {
  font-size: 1.5rem;
}
}

@media (max-width: 480px) {
.contact-title, .policy-title {
  font-size: 1.75rem;
}

.policy-content .policy-item h3 {
  font-size: 1.25rem;
}
}




/* WhatsApp Button */
#whatsapp-button {
position: fixed;
bottom: 20px;
left: 20px;
width: 60px;
height: 60px;
background-color: #25D366;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
z-index: 1000;
}

#whatsapp-button img {
width: 70%;
height: 70%;
}

/* WhatsApp Chat Box */
#whatsapp-chat {
position: fixed;
bottom: 100px;
left: 0px;
width: 300px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
display: none;
flex-direction: column;
z-index: 1000;
animation: fadeInUp 0.5s;
}

@keyframes fadeInUp {
from {
  opacity: 0;
  transform: translateY(20px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}

#whatsapp-chat .header {
background-color: #25D366;
color: #fff;
padding: 1rem;
text-align: center;
border-radius: 0px 0px 50px 50px;
}

#whatsapp-chat .header h2 {
margin-bottom: 0.5rem;
}

#whatsapp-chat .header span {
font-weight: bold;
}

#whatsapp-chat .content {
padding: 1rem;
}

#whatsapp-chat .contact {
display: flex;
align-items: center;
margin-bottom: 1rem;
}

#whatsapp-chat .contact img {
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 1rem;
}

#whatsapp-chat .contact-text h3, 
#whatsapp-chat .contact-text p {
color: #000;
}

#whatsapp-chat .contact-text h3 {
margin-bottom: 0.25rem;
}

#whatsapp-chat .contact a {
margin-left: auto;
color: #25D366;
}

#whatsapp-chat #close-chat {
background: none;
border: none;
color: #000;
font-size: 1.5rem;
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
}

/* Responsive for Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
#whatsapp-button {
  bottom: 30px;
  left: 30px;
}

#whatsapp-chat {
  bottom: 120px;
  left: 0px;
  width: 350px;
}
}

/* Responsive for Mobile Devices */
@media (max-width: 768px) {
#whatsapp-button {
  bottom: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
}

#whatsapp-button img {
  width: 60%;
  height: 60%;
}

#whatsapp-chat {
  bottom: 80px;
  left: 0px;
  width: 90%;
}

#whatsapp-chat .header {
  padding: 0.75rem;
}

#whatsapp-chat .content {
  padding: 0.75rem;
}
}
