* {
    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/hero-about2.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: 15;
}

@media screen and (min-width: 734px) and (max-width: 1064px) {
    .fixed-nav {
        padding: 0 15%;
    }
}

@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;
}

.our-office {
    position: relative;
}

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: 1064px) {
    .burger-icon {
        display: flex; /* Show burger icon for smaller screens */
    }

    .initial-nav {
        margin: 0;
    }
    
    /* 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 10%;
}

@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 {
    object-fit: cover;
    border-radius: 20px;
    width: 500px;
    height: 530px;
    z-index: 1;
}

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

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

.about-us .img-container.second::before {
    right: -20px;
}

.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;
}

.contact-info {
    position: relative;
    top: 90px;
    gap: 5rem;
    border-radius: 10px;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 250px;
}

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

.contact-info-item {
    background-color: #ffffff;
    width: 22%;
    height: 100%;
    padding: 25px;
    box-shadow: 5px 10px 18px #888888;
}

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

.contact-info-item h4 {
    margin-bottom: 10px;
}

.contact-info-item p {
    font-size: smaller;
}

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

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

.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;
}

.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;
}

.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: 756px) {
    .gallery-container {
        flex-direction: column;
    }
    .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 */
}

.testimonial {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

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

.page-width {
    max-width: 1200px;
    margin: auto;
}
.text-left {
    text-align: left;
}
.quotes {
    display: flex;
    padding: 2rem 2rem;
    align-items: center;
    min-height: 100vh;
}

.quotes-slide {
    width: 33%;
    padding: 3rem;
    background-color: white;
    opacity: .4;
    cursor: pointer;
    box-shadow: 0px 0px 0px 1px #d5d5d5;
    line-height: 1.75;
    font-family: 'Roboto', sans-serif;
    transition: all .5s ease;
    outline: none;
}

@media screen and (max-width: 960px) {
    .quotes {
        flex-direction: column;
        margin: 5% 0;
    }

    .quotes-slide {
        width: 90%;
    }
}

.quotes-slide--active {
    transform: scale(1.2);
    z-index: 10;
    opacity: 1;
    border: none;
    box-shadow: 1px 0px 10px 5px #eaeaea;
    color: #222222;
}
blockquote {
    margin: 0;
}
cite{
    font-style: normal;
    font-family: 'Roboto', sans-serif;
    font-size: .9rem;
}
cite::before {
    content: '\2014 \0020';
}
.icon {
    width: 25px;
    height: 25px;
    fill: #1a73e8;
}

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%;
    z-index: 15;
}

@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;
}