* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #e6e6e6;
    font-family: 'Cairo', sans-serif;
}

header {
    position: relative;
    background-color: white;
}

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url("../images/home.webp");
    background-repeat: no-repeat;
    background-size: cover;
    height: 85vh;
    gap: 5%;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(270deg, #222222 0%, rgba(34, 34, 34, 0.33) 100%);
}

a {
    text-decoration: none;
}

.fixed-nav {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 220px;
    width: 100%;
    background-color: white;
    box-shadow: 5px 10px 18px #888888;
    animation: fadeInDown 0.3s ease-in-out;
    z-index: 2;
}

@media screen and (max-width: 734px) {
    .fixed-nav {
        padding: 1.5rem;
    }
}

.fixed-nav a {
    color: black;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.initial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
    margin: 0 10%;
}

.initial-nav a {
    color: black;
}

nav {
    height: 97px;
}

nav img {
    width: 150px;
    height: 57px;
}

nav ul {
    padding-left: 0;
}

a:hover {
    color: #ffb200;
}

.initial-ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    color: black;
}

.fixed-ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    color: black;
}

header div {
    position: relative;
}

header div h1 {
    margin-right: 12%;
    font-size: 3rem;
    color: #dbb585;
    z-index: 2;
}

header div h3 {
    margin-right: 12%;
    color: white;
    font-size: 1.5rem;
    z-index: 2;
}

header div h1 span {
    color: white;
    font-size: 2.5rem;
}

header div h1 span.contact-hero-span {
    color: white;
    font-size: 1.8rem;
}

header div h1 span.contact-hero-span span {
    color: #dbb585;
    font-size: 1.8rem;
}

header div a {
    z-index: 2;
}

header div button {
    font-family: 'Cairo', sans-serif;
    color: #e6e6e6;
    background-color: #111f2a;
    border-radius: 15px;
    padding: 20px 40px;
    margin-right: 12%;
    max-width: 10%;
}

@media screen and (max-width: 1064px) {
    header div button {
        max-width: 15%;
    }
}

@media screen and (max-width: 734px) {
    header div button {
        max-width: unset;
    }
}

/* Initial styles for the burger icon */
.burger-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px; /* Width of the burger */
    height: 25px; /* Height of the burger */
}

/* Styles for the burger icon bars */
.burger-icon span {
    width: 100%;
    height: 3px;
    background-color: black;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

/* Styling for when the burger icon is clicked (transformed into 'X') */
.burger-icon.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-icon.open span:nth-child(2) {
    opacity: 0;
}

.burger-icon.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Media query for screens with a maximum width of 1064px */
@media screen and (max-width: 1100px) {
    .burger-icon {
        display: flex; /* Show burger icon for smaller screens */
    }

    .initial-nav {
        margin: 0 140px;
    }
    
    /* Styles for the dropdown menu when it's visible */
    .initial-ul, .fixed-ul {
        display: none; /* Initially hidden */
        flex-direction: column; /* Stack items vertically */
        background-color: #ffffff; /* Solid background color */
        margin: 0; /* Remove any default margin */
        padding: 1em; /* Add some padding */
        width: 100%; /* Full width of the container */
        position: absolute; /* Position it on top of other content */
        top: 97px; /* Position below the nav bar */
        left: 0; /* Align to the left side */
        z-index: 100; /* Keep it on top of other content */
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); /* Optional: Add shadow for depth */
        transition: opacity 0.3s ease; /* Transition for the menu appearance */
    }

    /* Show the menu when the 'show' class is added via JavaScript */
    .initial-ul.show, .fixed-ul.show {
        display: flex; /* Change to flex to show the menu */
        opacity: 1; /* Make the menu opaque */
    }

    /* Styles for menu items */
    .initial-ul li, .fixed-ul li {
        padding: 10px 0; /* Add padding to each item */
        border-bottom: 1px solid #e6e6e6; /* Optional: Add a border between items */
    }

    /* Remove the border for the last item */
    .initial-ul li:last-child, .fixed-ul li:last-child {
        border-bottom: none;
    }

    /* Styles for the links within the menu items */
    .initial-ul a, .fixed-ul a {
        color: #333333; /* Set text color for items */
        padding: 10px 20px; /* Add padding inside the links */
        display: block; /* Make the link fill the li element */
    }
}

@media screen and (max-width: 734px) {
    .initial-nav {
        margin: 0;
    }
}


.initial-ul.show, .fixed-ul.show {
    display: flex;
}

.about-us {
    display: flex;
    gap: 120px;
    margin: 100px 220px;
}

@media screen and (max-width: 1064px) {
    .about-us {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 1064px) {
    .about-us {
        margin: unset;
        padding: 3rem;
    }
}

.about-us h2 {
    position: relative;
    color: #dbb585;
    margin-bottom: 75px;
}

@media screen and (max-width: 1064px) {
    .about-us h2 {
        position: relative;
        color: #dbb585;
        margin-bottom: 50px;
    }
}

.about-us h2::before {
    content: "";
    width: 70px;
    height: 4px;
    background-color: #dbb585;
    border-radius: 20px;
    top: -20px;
    right: 0px;
    position: absolute;
}

.about-us img {
    border-radius: 20px;
    width: 340px;
    height: 530px;
    z-index: 1;
}

.about-us .img-container {
    position: relative;
}

.about-us .img-container::before {
    content: "";
    width: 340px;
    height: 530px;
    background-color: #dbb585;
    border-radius: 20px;
    top: -20px;
    right: 20px;
    position: absolute;
    z-index: -1;
}

.about-us button {
    font-family: 'Cairo', sans-serif;
    color: #e6e6e6;
    background-color: #111f2a;
    border-radius: 15px;
    padding: 20px 40px;
    margin: 10px 0px;
}

.about-us p {
    margin-bottom: 40px;
    text-align: justify;
}

.statistics {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: white;
    box-shadow: 5px 10px 18px #888888;
    border-radius: 10px;
    height: 320px;
    width: 85%;
    padding: 100px 0px;
    margin: auto;
}

@media screen and (max-width: 734px) {
    .statistics {
        flex-direction: column;
        height: auto;
    }

    .margin-top {
        margin-top: 3rem;
    }
}

.far,
.statistics .fa-solid,
.statistics .fas {
    color: #dbb585;
    margin-bottom: 20px;
}

.statistics .statistics-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 160px 220px 0px 220px;
}

.services h2 {
    position: relative;
    color: #dbb585;
}

.services .gallery h2 {
    margin-bottom: 5%;
}

@media screen and (max-width: 734px) {
    .services .gallery h2 {
        margin-top: 5%;
    }
}

.services>h2::before {
    content: "";
    width: 70px;
    height: 4px;
    background-color: #dbb585;
    border-radius: 20px;
    top: -30px;
    right: 0px;
    position: absolute;
}

.services p {
    font-size: 1rem;
    text-align: justify;
}

.services button {
    font-family: 'Cairo', sans-serif;
    color: #e6e6e6;
    background-color: #111f2a;
    border-radius: 15px;
    padding: 20px 40px;
    margin-top: 5%;
    margin-left: auto;
}

/* start here */

.gallery {
    display: flex;
    gap: 30px;
    margin-top: -20px;
}

.left {
    width: 50%;
}

.right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    width: 50%;
}

.desktopContent {
    margin: auto;
    width: 80%;
}

.desktopContentSection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}


.desktopPhotos {
    width: 30vw;
    height: 30vw;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
}

.desktopPhoto {
    position: absolute;
    width: 100%;
    height: 100%;
}




.red {
    background-image: url('../images/red.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.green {
    background-image: url('../images/green.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.pink {
    background-image: url('../images/pink.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.blue {
    background-image: url('../images/blue.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.white {
    background-image: url('../images/white.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.black {
    background-image: url('../images/black.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.rose {
    background-image: url('../images/rose.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* small screen / mobile layout */
.mobileContent {
    display: none;
    width: 80vw;
}

.mobilePhoto {
    width: 80vw;
    height: 80vw;
    margin-top: 5em;
    border-radius: 6vw;
}

/* defines styles for screens up to 599px wide */
@media screen and (max-width: 599px) {
    .left {
        display: none;
    }

    .right {
        height: auto;
        width: 100%;
        align-items: center;
        margin-bottom: 4rem;
    }

    .desktopPhotos {
        display: none;
    }

    .mobileContent {
        display: block;
    }
}

.membership {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    width: 100%;
    padding-top: unset;
    padding-bottom: 20px;
}

.membership.first {
    padding-top: 105px;
    padding-bottom: 105px;
}

.membership h2 {
    position: relative;
    color: #dbb585;
    margin-bottom: 20px;
}

.membership>h2::before {
    content: "";
    width: 55px;
    height: 4px;
    background-color: #dbb585;
    border-radius: 20px;
    top: -25px;
    right: 8px;
    position: absolute;
}

.membership.first>h2::before {
    content: "";
    width: 70px;
    height: 4px;
    background-color: #dbb585;
    border-radius: 20px;
    top: -25px;
    right: 15px;
    position: absolute;
}

.membership p {
    max-width: 50%;
    text-align: center;
}

@media screen and (max-width: 734px) {
    .membership p {
        max-width: 75%;
    }
}

.membership .gallery {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    max-width: 755px;
    /* Set the maximum width as per your design */
    margin-left: auto;
    margin-right: auto;
}

.gallery-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* overflow-x: hidden;
    scroll-snap-type: x mandatory; */
}

#prev-btn,
#next-btn {
    display: none;
}

@media screen and (max-width: 734px) {
    .gallery-container {
        flex-direction: column;
    }
}

.gallery-item {
    scroll-snap-align: start;
    flex: 0 0 auto;
    margin: 0.4rem;
}

.gallery-btn {
    background: #00274c;
    /* Background color */
    color: #fff;
    /* Text color */
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    /* Add padding for better appearance */
    border-radius: 5px;
    /* Add some border-radius for rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Add a smooth transition */
}

.gallery-btn:hover {
    background-color: #0056b3;
    /* Darker background color on hover */
}

@media screen and (max-width: 734px) {
    .gallery-btn {
        display: none;
    }
}

.gallery-item img {
    filter: grayscale(100%);
    /* Convert images to black and white */
    transition: filter 0.3s ease;
    /* Add a smooth transition effect */
}

.gallery-item:hover img {
    filter: grayscale(0%);
    /* Revert to color on hover */
}

iframe {
    width: 100%;
}

.location {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.location h2 {
    position: relative;
    color: #dbb585;
    margin-bottom: 50px;
}

.location h2::before {
    content: "";
    width: 70px;
    height: 4px;
    background-color: #dbb585;
    border-radius: 20px;
    top: -30px;
    right: 25px;
    position: absolute;
}

.contact-info {
    position: relative;
    background-color: #111f2a;
    border-radius: 10px;
    color: #e6e6e6;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 30px 0px;
    width: 70%;
    height: 250px;
    bottom: 8rem;
}

@media screen and (max-width: 1064px) {
    .contact-info {
        width: 85%;
    }
}

@media screen and (max-width: 734px) {
    .contact-info {
        height: auto;
        flex-direction: column;
    }

    .contact-info-item {
        padding: 30px 50px;
    }
}

.contact-info-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.location .fas {
    color: #dbb585;
    margin-bottom: 35px;
}

.location h4 {
    font-size: 1.2rem;
    margin-bottom: 3%;
}

.location .phone-number {
    direction: ltr;
}

.contact-info .contact-info-item:first-child::before {
    content: "";
    width: 2px;
    height: 160px;
    background-color: gray;
    border-radius: 20px;
    top: 0px;
    left: 0px;
    position: absolute;
}

.contact-info .contact-info-item:nth-child(2)::before {
    content: "";
    width: 2px;
    height: 160px;
    background-color: gray;
    border-radius: 20px;
    top: 15px;
    left: -40px;
    position: absolute;
}

@media screen and (max-width: 734px) {
    .contact-info .contact-info-item:first-child::before,
    .contact-info .contact-info-item:nth-child(2)::before {
        display: none;
    }
}

.contact-us {
    display: flex;
    justify-content: center;
    gap: 10%;
}

@media screen and (max-width: 734px) {
    .contact-us {
        flex-direction: column;
        padding: 0 3rem;
    }
}

.contact-us h2 {
    position: relative;
    color: #dbb585;
    margin-bottom: 30px;
}

.contact-us h2::before {
    content: "";
    width: 70px;
    height: 4px;
    background-color: #dbb585;
    border-radius: 20px;
    top: -30px;
    right: 0px;
    position: absolute;
}

.contact-us button {
    font-family: 'Cairo', sans-serif;
    color: #e6e6e6;
    background-color: #111f2a;
    border-radius: 15px;
    padding: 20px 40px;
}

@media screen and (max-width: 734px) {
    .contact-us-form-div {
        margin-top: 6rem;
    }
}

.flex-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.formbold-mb-5 {
    margin-bottom: 20px;
}

.formbold-pt-3 {
    padding-top: 12px;
}

.formbold-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.formbold-form-wrapper {
    margin: 0 auto;
    max-width: 550px;
    width: 100%;
}

.formbold-form-label {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #07074d;
    margin-bottom: 12px;
}

.formbold-form-label-2 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.formbold-form-input {
    width: 100%;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background: white;
    font-weight: 500;
    font-size: 16px;
    color: #6b7280;
    outline: none;
    resize: none;
}

.formbold-form-input:focus {
    border-color: #6a64f1;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-btn {
    text-align: center;
    font-size: 16px;
    border-radius: 6px;
    padding: 14px 32px;
    border: none;
    font-weight: 600;
    background-color: #6a64f1;
    color: white;
    width: 100%;
    cursor: pointer;
}

.formbold-btn:hover {
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold--mx-3 {
    margin-left: -12px;
    margin-right: -12px;
}

.formbold-px-3 {
    padding-left: 12px;
    padding-right: 12px;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.w-full {
    width: 100%;
}

@media (min-width: 540px) {
    .sm\:w-half {
        width: 50%;
    }
}

textarea.fclassormbold-form-input {
    width: 100%;
    height: 4rem;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    resize: none;
    padding: 12px 20px;
    box-sizing: border-box;
}

footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6%;
    height: 600px;
    width: 100%;
    background-color: #111f2a;
    margin-top: 5%;
}

@media screen and (max-width: 734px) {
    footer {
        text-align: center;
    }
}

footer img {
    width: 100px;
    height: 170px;
}

footer p,
footer p a {
    color: #e6e6e6;
}

@media screen and (max-width: 734px) {
    footer p {
        padding: 0 1.5rem;
    }

    .small {
        display: none;
    }
}

footer p a {
    text-decoration: underline;
}

footer ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

@media screen and (max-width: 734px) {
    footer ul {
        gap: 1.2rem;
    }
}

footer ul a {
    color: #e6e6e6;
}


footer ul a:nth-child(5) {
    color: #dbb585;
}

footer i {
    margin: 0px 0.5rem;
}

footer p:last-child {
    position: relative;
    font-size: x-small;
}

footer .social-icons {
    padding-bottom: 4%;
    border-bottom: 1px solid gray;
}

.fa-square-whatsapp {
    position: fixed;
    bottom: 5rem;
    left: 2.5rem;
    font-size: 4rem !important;
    z-index: 1;
}