html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}


/* -----------------------------------------------------------------------nav-section----------------------------------- */



.fa-angle-right {
    font-size: 1rem;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul li {
    position: relative;
}

ul li a {
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    color: #333;
}

ul li a:hover {
    background-color: #f6eded;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.dropdown li {
    display: block;
    position: relative;
    padding: 10px;
}

.dropdown li a {
    padding: 8px 10px;
    font-size: 0.7rem;
    white-space: nowrap;
    /* text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between; */
}

.dropdown.active {
    display: block;
}

.nested-dropdown {
    display: none;
    list-style-type: none;
    position: absolute;
    left: 0;
    top: 100%;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 200px;
}

.nested-dropdown li {
    padding: 10px;
}

.nested-dropdown li a {
    text-decoration: none;
    color: #333;
}

/* Show nested dropdowns on hover */
.dropdown>li:hover>.nested-dropdown {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff !important;
    color: black !important;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 180px;
    top: 100%;
    left: 0;
    padding: 0;
    margin: 0;
    border-radius: 4px;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #000 !important;
    ;
    text-decoration: none;
    background-color: #fff !important;
}

.dropdown-content a:hover {
    color: #EA4E43 !important;
    opacity: 1 !important;
}

.services-menu:hover .dropdown-content {
    display: block;
}

.fa-chevron-right {
    font-size: 0.8rem;
    margin: auto;
}


/* Main dropdown content */
.main-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-dropdown>li {
    position: relative;
}

.main-dropdown>li>a {
    display: block;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    background-color: #fff;
}

.main-dropdown>li>a:hover {
    background-color: #f0f0f0;
    color: red;
}

.sub-dropdown {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    list-style: none;
    padding: 0;
    margin: 0;  
}
.main-dropdown>li:hover>.sub-dropdown {
    display: block;
}

.sub-dropdown li {
    list-style: disc; 
    margin-left: 30px;
}

.sub-dropdown a {
    padding: 8px 12px;
    display: block;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

.sub-dropdown a:hover {
    background-color: #f0f0f0;
    color: red;
}

/* .header-logo-img {
    width: 13em;
} */

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 1em 1.6em !important;
    background-color: #1E1312;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 10;

}

.nav {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    white-space: nowrap;
}

.nav img {
    width: 50px;
    height: auto;
    margin-bottom: 0.5rem;
}

.nav p {
    margin: 0; 
}

.inner-nav {
    background-color: #1E1312;
    padding: 1em 3em;
    width: 50vw;
    border-radius: 45px;
    display: flex;
    justify-content: space-between;
    font-family: "Inter";
    font-size: 1.2rem;


}

.inner-nav a {
    text-decoration: none;
    color: black;
    padding: 8px 15px;
    display: inline-block;
}

.inner-nav span a {
    color: #F6F5F4;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;

}


.inner-nav span {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 15px;
}

.header-contact {
    margin-left: 4em;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5em 1.5em;
    white-space: nowrap;
    font-weight: 600;
    font-family: "Inter";
    color: white;
    background-color: #EF5A4C;
    border-radius: 5px;
}

.header-contact:hover {
    background-color: white;
    color: #EF5A4C;
    border: 1px solid #EF5A4C;
}

.header-contact:active {
    background-color: #F6F5F4;
    color: #EF5A4C;
    border: 1px solid #EF5A4C;
}

.menu {
    display: none;
}

.menu {
    filter: brightness(0) invert(1);
}

@media screen and (max-width: 1250px) {
    .header-contact {
        margin-left: auto;
    }

    .menu {
        display: block;
    }

    .inner-nav {
        display: none;
    }
}

@media screen and (max-width: 915px) {
    .inner-nav {
        padding: 1em 1.8em;
        width: 50vw;
    }


    .inner-nav span a {
        font-size: 0.9em;
    }


    .header-logo-img {
        width: 12em;
        height: 2.7em;
    }
}


@media screen and (max-width: 836px) {
    .inner-nav {
        display: none;
    }

    .menu-block {
        display: block;
        width: 48vw;
        display: flex;
        justify-content: end;
        cursor: pointer;

    }



}

@media screen and (max-width: 790px) {
    .menu-block {
        width: 48vw;
        display: flex;
        justify-content: end;
        padding-right: 0.8em;
    }

    .menu {
        height: 1.8em;
        width: 1.8em;
        left: 16em;
    }
}


@media screen and (max-width: 725px) {
    .menu-block {
        width: 48vw;
        display: flex;
        justify-content: end;
        padding-right: 0.8em;
    }

    .menu {
        height: 1.7em;
        width: 1.7em;
        left: 16em;
    }


    .header-contact {
        margin-left: auto;
        padding: 0.7em 1.6em;
        font-weight: 600;
    }
}



@media screen and (max-width: 677px) {
    .header-contact {
        margin-left: auto;
        padding: 0.7em 1.1em;
        background-color: #EF5A4C;
        border: 5px;
        border-radius: 5px;
        text-wrap: nowrap;
        font-size: 0.8rem;
    }
}



@media screen and (max-width: 422px) {
    .menu-block {
        width: 90vw;
        display: flex;
        justify-content: end;
        padding-right: 0;
    }

    .header-logo-img {
        width: 12em;
        height: 2.8em;
    }


    .header-contact {
        display: none;
    }
}

.sidebar {
    position: fixed;
    right: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: white;
    color: white;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 20px;
    padding-top: 2.2em;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);

}

#contact-us-link {
    display: none;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 15px 0;
    background-color: #F6F5F4;
    padding: 0.5em 1em;
    border-radius: 12px;
}



.sidebar ul li a {
    color: #EA4E43;
    text-decoration: none;
    font-size: 0.6em;
    font-family: "Poppins";
    font-weight: bold;
    white-space: wrap;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 900;
    display: none;
}

body.no-scroll {
    overflow: hidden;
}

.sidebar-open {
    right: 0;
}

.overlay-active {
    display: block;
}

.closee {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 1.6em;
    cursor: pointer;
}

@media screen and (max-width: 422px) {

    #contact-us-link {
        display: block;
        text-align: center;
        background-color: #EA4E43;

    }

    #contact-us-link a {
        color: white !important;
    }

    .header-contact {
        display: none;
    }
}
/* ------------------------------------------------------------------new nav-section------------------------ */


/* -----------------------------------------------------------------home-page- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inter;

}


html,
body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden !important;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}



main {
    flex-grow: 1;
}

.header-logo-img {
    width: 13em;
    height: 3em;
}

header {
    min-width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1em 1.6em !important;
}

.nav {
    box-sizing: border-box;
    width: 30%;
}


.inner-nav {
    background-color: #1E1312;
    padding: 1em 3em;
    width: 100vw;
    border-radius: 45px;
    display: flex;
    justify-content: space-evenly;
    font-family: "Inter";
    position: relative;
}

.inner-nav span a {
    color: #F6F5F4;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
}


.inner-nav span {
    display: flex;
    align-items: center;
}




.header-contact {
    margin-left: auto;
    padding: 0.7em 2em;
    font-weight: 600;
    font-family: "Inter";
    color: white;
    background-color: #EF5A4C;
    border: 5px;
    border-radius: 5px;
}

.header-contact:hover {
    background-color: white;
    color: #EF5A4C;
    border: 1px solid #EF5A4C;
}

.header-contact:active {
    background-color: #F6F5F4;
    color: #EF5A4C;
    border: 1px solid #EF5A4C;
}



.menu {
    display: none;
}


.link-center {
    display: flex;
    text-align: center;
}

.down {
    margin-left: 0.5em;
    transform: rotate(180deg);
}
@media screen and (max-width: 1250px){
   
}


@media screen and (max-width: 1250px) {
    .inner-nav {
        display: none;
    }


    .menu-block {
        width: 48vw;
        display: flex;
        justify-content: end;
    }

    .menu {
        height: 1.8em;
        width: 1.8em;
        left: 16em;
        display: block;
    }
 

}


@media screen and (max-width: 997px) {
    .inner-nav {
        padding: 1em 1.9em;
    }


    .inner-nav span a {
        font-size: 0.9em;

    }
}

@media screen and (max-width: 915px) {
    .inner-nav {
        padding: 1em 1.8em;

    }


    .inner-nav span a {
        font-size: 0.9em;
    }


    .header-logo-img {
        width: 12em;
        height: 2.7em;
    }
}

@media screen and (max-width: 790px) {
    .menu-block {
        width: 48vw;
        display: flex;
        justify-content: end;
        padding-right: 0.8em;
    }

    .menu {
        height: 1.8em;
        width: 1.8em;
        left: 16em;
    }
}


@media screen and (max-width: 725px) {
    .menu-block {
        width: 48vw;
        display: flex;
        justify-content: end;
        padding-right: 0.8em;
    }

    .menu {
        height: 1.7em;
        width: 1.7em;
        left: 16em;
    }


    .header-contact {
        margin-left: auto;
        padding: 0.7em 1.6em;
        font-weight: 600;
    }
}



@media screen and (max-width: 677px) {
    .header-contact {
        margin-left: auto;
        padding: 0.7em 1.1em;
        background-color: #EF5A4C;
        border: 5px;
        border-radius: 5px;
    }
}



@media screen and (max-width: 422px) {
    .menu-block {
        width: 90vw;
        display: flex;
        justify-content: end;
        padding-right: 0;
    }

    .header-logo-img {
        width: 12em;
        height: 2.8em;
    }


    .header-contact {
        display: none;
    }
}

.sidebar {
    position: fixed;
    right: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: white;
    color: white;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 20px;
    padding-top: 2.2em;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);

}

#contact-us-link {
    display: none;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 15px 0;
    background-color: #F6F5F4;
    padding: 0.5em 1em;
    border-radius: 12px;
}



.sidebar ul li a {
    color: #EA4E43;
    text-decoration: none;
    font-size: 1em;
    font-family: "Poppins";
    font-weight: bold;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 900;
    display: none;
}

body.no-scroll {
    overflow: hidden;
}

.sidebar-open {
    right: 0;
}

.overlay-active {
    display: block;
}

.closee {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 1.6em;

}

@media screen and (max-width: 422px) {

    #contact-us-link {
        display: block;
        text-align: center;
        background-color: #EA4E43;

    }

    #contact-us-link a {
        color: white !important;
    }

    .header-contact {
        display: none;
    }
}

/* Contact-page */
.container {
    max-width: 600px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container h2 {
    text-align: center;
    color: #EA4E43;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.form-group button {
    width: 100%;
    padding: 10px;
    background-color: #EA4E43;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-group button:hover {
    background-color: #d13b34;
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
    }

    .form-group button {
        font-size: 14px;
    }
}























/* -------------------------------------footer-section------------------------------------------------------------ */
.footer-section {
    border-top: 1px solid #ddd;
    padding: 2rem 1rem;
    font-family: 'Inter', sans-serif;
    background-color: #f8f8f8;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    padding: 0 1rem;
}

.footer-logo {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-logo-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-section img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.footer-logo-section p {
    font-weight: 600;
    white-space: nowrap;
    font-size: 1.2em;
}

.social-icons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.social-icons a {
    color: #000;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 2rem;
    gap: 1rem;
}

.footer-column {
    flex: 1 1 22%;
    min-width: 160px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    margin-top: 0.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #7D7D7D;
}

.footer-column ul li a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #7D7D7D;
    display: block;
    padding: 0.5rem 0;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 770px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 0 1rem;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 1rem;
    }

    .social-icons {
        justify-content: center;
    }

   
}

@media (max-width: 530px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        text-align: center;
        align-items: center;
    }


    .footer-column h3 {
        font-size: 0.9rem;
    }

    .footer-column ul li {
        margin-bottom: 1rem;
    }

    .footer-column ul li a {
        font-size: 0.85rem;
    }
}

@media (max-width: 550px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        text-align: left;
        align-items: flex-start;
    }

    .footer-column ul li {
        margin-bottom: 1rem;
    }
}

@media (max-width: 375px) {
    .footer-section {
        padding: 1.5rem 0.5rem;
    }


    .footer-column ul li a {
        font-size: 0.8rem;
    }
}
