* {
    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;
}

h1,
h2 {
    font-weight: 600;
}

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url("../images/hero-image-services.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    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: 100;
}

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

/* 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;
}

.services-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 50px;
}

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

.services-main > h2::before {
    content: "";
    width: 110px;
    height: 4px;
    background-color: #dbb585;
    border-radius: 20px;
    top: -25px;
    right: 290px;
    position: absolute;
}

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

.services-main .parent-grid p {
    max-width: 100%;
    text-align: justify;
}

.parent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 1rem;
}

@media screen and (max-width: 1390px) {
    .parent-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.child-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px;
    padding: 25px;
    width: 425px;
    height: 260px;
    background-color: rgb(245, 247, 248);
    border-radius: 12px;
}

.child-grid {
    grid-column: span 1; /* Each child occupies one column */
}

.child-grid:last-child {
    grid-column: 2 / 4; /* Position the last child in the second and third columns */
}

.child-grid h4 {
    margin-top: 10px;
    margin-bottom: 20px;
}

.child-grid img {
    width: 50px;
    height: 50px;
}

.child-grid .fa-solid {
    margin-top: 15px;
    margin-bottom: 15px;
}

.model-h2 {
    margin-right: 1%;
    margin-top: 2%;
}

.modal-body-1 > ul,
.modal-body-2 > ul,
.modal-body-3 > ul, 
.modal-body-4 > ul,
.modal-body-5 > ul,
.modal-body-6 > ul,
.modal-body-7 > ul {
    margin-right: 2%;
    margin-top: 3%;
    margin-bottom: 3%;
}

.modal-body-1 > ul li,
.modal-body-2 > ul li,
.modal-body-3 > ul li,
.modal-body-4 > ul li,
.modal-body-5 > ul li,
.modal-body-6 > ul li,
.modal-body-7 > ul li {
    margin: 1rem;
}

.modal-content-1,
.modal-content-2,
.modal-content-3,
.modal-content-4,
.modal-content-5,
.modal-content-6,
.modal-content-7 {
    border-radius: 15px;
}

/* The Modal (background) */
.modal-1 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 8%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content-1 {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 75%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
#myBtn-1,
#close-1 {
    cursor: pointer;
}

#close-1 {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1;
} 

.modal-header-1 {
    position: relative;
    padding: 2px 16px;
    background-color: black;
    color: white;
}

.modal-body-1, 
.modal-body-2,
.modal-body-3,
.modal-body-4,
.modal-body-5,
.modal-body-6,
.modal-body-7 {
    padding: 4px 32px;
    margin-top: 3%;
}



#myBtn-1 {
    position: absolute;
    left: 20px;
    bottom: 15px;
    border: none;
}

/* Model 2 */
/* The Modal (background) */
.modal-2 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding: 8%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content-2 {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 75%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
#myBtn-2,
#close-2 {
    cursor: pointer;
}

#close-2 {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1;
} 

.modal-header-2 {
    position: relative;
    padding: 2px 16px;
    background-color: black;
    color: white;
}

#myBtn-2 {
    position: absolute;
    left: 20px;
    bottom: 15px;
    border: none;
}
/* Mdeel 2 END */

/* Model 3 */
/* The Modal (background) */
.modal-3 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 8%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content-3 {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 75%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
#myBtn-3,
#close-3 {
    cursor: pointer;
}

#close-3 {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1;
} 

.modal-header-3 {
    position: relative;
    padding: 2px 16px;
    background-color: black;
    color: white;
}

.modal-body-3 {
    padding: 2px 16px;
}



#myBtn-3 {
    position: absolute;
    left: 20px;
    bottom: 15px;
    border: none;
}
/* Mdeel 3 END */


/* Model 4 */
/* The Modal (background) */
.modal-4 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 8%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content-4 {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 75%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
#myBtn-4,
#close-4 {
    cursor: pointer;
}

#close-4 {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1;
} 

.modal-header-4 {
    position: relative;
    padding: 2px 16px;
    background-color: black;
    color: white;
}

.modal-body-4 {
    padding: 2px 16px;
}



#myBtn-4 {
    position: absolute;
    left: 20px;
    bottom: 15px;
    border: none;
}
/* Mdeel 4 END */

/* Model 5 */
/* The Modal (background) */
.modal-5 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 8%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content-5 {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 75%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
#myBtn-5,
#close-5 {
    cursor: pointer;
}

#close-5 {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1;
} 

.modal-header-5 {
    position: relative;
    padding: 2px 16px;
    background-color: black;
    color: white;
}

.modal-body-5 {
    padding: 2px 16px;
}



#myBtn-5 {
    position: absolute;
    left: 20px;
    bottom: 15px;
    border: none;
}
/* Mdeel 5 END */

/* Model 6 */
/* The Modal (background) */
.modal-6 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 8%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content-6 {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 75%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
#myBtn-6,
#close-6 {
    cursor: pointer;
}

#close-6 {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1;
} 

.modal-header-6 {
    position: relative;
    padding: 2px 16px;
    background-color: black;
    color: white;
}

.modal-body-6 {
    padding: 2px 16px;
}



#myBtn-6 {
    position: absolute;
    left: 20px;
    bottom: 15px;
    border: none;
}
/* Mdeel 6 END */

/* Model 7 */
/* The Modal (background) */
.modal-7 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 8%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content-7 {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 75%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
#myBtn-7,
#close-7 {
    cursor: pointer;
}

#close-7 {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1;
} 

.modal-header-7 {
    position: relative;
    padding: 2px 16px;
    background-color: black;
    color: white;
}

.modal-body-7 {
    padding: 2px 16px;
}



#myBtn-7 {
    position: absolute;
    left: 20px;
    bottom: 15px;
    border: none;
}
/* Mdeel 7 END */

.modal-1,
.modal-2,
.modal-3,
.modal-4,
.modal-5,
.modal-6,
.modal-7 {
    z-index: 200;
}

.questions {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    width: 100%;
    padding-top: 55px;
    padding-bottom: 50px;
}

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

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

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

.accordion-container {
    margin-top: 1rem;
    max-width: 600px;
}

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: right;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: #ccc;
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: left;
    margin-right: 5px;
}

.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

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