
@media (max-width: 768px) {
    .logo img {
        height: 45px !important;
        width: 45px !important;
    }
}
.navbar {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 55px;
    box-sizing: border-box;
    position: relative;
    z-index: 1000;
}
.nav-services {
    position: relative;
    height: 90px;
}

/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}


/* =========================
   NAV MENU
========================= */

#nav-menu {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 35px;

    margin-left: 40px;
    margin-right: 40px;
}


/* =========================
   NAV LINKS
========================= */

#nav-menu a {
    position: relative;

    display: flex;
    align-items: center;

    height: 90px;

    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;

    font-size: 12px;
    font-weight: bold !important;
    white-space: nowrap;

    transition: color 0.3s ease;
}


/* HOVER */

#nav-menu a:hover {
    color: #ffffff;
}


/* ACTIVE */

#nav-menu a.active {
    color: #ffffff;
}


/* ACTIVE UNDERLINE */

#nav-menu a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 25px;

    height: 2px;

    background: #ff4b5c;
}


/* =========================
   NAVBAR CONTACT
========================= */

.navbar-contact {
    flex-shrink: 0;

    display: flex;
    flex-direction: column;

    justify-content: center;

    gap: 9px;

    min-width: 185px;
}


/* CONTACT ITEM */

.nav-contact-item {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #fff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 400;

    white-space: nowrap;
}


/* CONTACT ICON */

.nav-contact-item i {
    width: 17px;

    font-size: 15px;

    text-align: center;
}


/* CONTACT HOVER */

.nav-contact-item:hover {
    color: #fff;
}


/* HAMBURGER */

.hamburger {
    display: none;
}





/* =========================
   SERVICES DROPDOWN
========================= */

.nav-services {
    position: relative;
    height: 90px;

    display: flex;
    align-items: center;
}

.services-link {
    height: 90px !important;

    display: flex;
    align-items: center;
}


/* =========================
   DROPDOWN
========================= */

.services-dropdown {
    position: absolute;

    top: 78px;
    left: 50%;

    transform: translateX(-50%) translateY(8px);

    width: 280px;

    padding: 10px 0;

    background: #ffffff;

    display: flex;
    flex-direction: column;

    border-radius: 4px;

    border-top: 3px solid  #2f4bff;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;

    transition: all 0.25s ease;

    z-index: 9999;
}


/* SMALL ARROW */

.services-dropdown::before {
    content: "";

    position: absolute;

    top: -8px;
    left: 50%;

    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ff4b5c;
}


/* =========================
   SHOW DROPDOWN
========================= */

.nav-services:hover .services-dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}


/* =========================
   DROPDOWN LINKS
========================= */

.services-dropdown a {
    position: relative;

    display: flex !important;
    align-items: center;

    height: auto !important;

    padding: 11px 20px;

    color: #333 !important;

    text-decoration: none;

    font-size: 12px !important;
    font-weight: 400 !important;

    text-transform: none !important;

    white-space: nowrap;

    transition: all 0.2s ease;
}


/* LEFT INDICATOR */

.services-dropdown a::before {
    content: "";

    width: 0;

    height: 2px;

    background: #ffffff;

    position: absolute;

    left: 0;

    top: 50%;

    transform: translateY(-50%);

    transition: width 0.2s ease;
}


/* HOVER */

.services-dropdown a:hover {
    background: #f7f8fc;

    color: #2f4bff !important;

    padding-left: 25px;
}


/* HOVER INDICATOR */

.services-dropdown a:hover::before {
    width: 4px;
}




/* =========================
   SERVICES DROPDOWN
========================= */

.nav-services {
    position: relative;
    height: 90px;

    display: flex;
    align-items: center;
}


/* SERVICES LINK */

.services-link {
    height: 90px !important;

    display: flex;
    align-items: center;
}


/* =========================
   DROPDOWN BOX
========================= */

.services-dropdown {
    position: absolute;

    top: 76px;
    left: 50%;

    transform: translateX(-50%) translateY(12px);

    width: 350px;

    padding: 8px 0;

    background: #ffffff;

    border-radius: 5px;


    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);

    display: flex;
    flex-direction: column;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;

    z-index: 99999;
}


/* =========================
   SMALL ARROW
========================= */

.services-dropdown::before {
    content: "";

    position: absolute;

    top: -8px;
    left: 50%;

    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ff4b5c;
}


/* =========================
   SHOW DROPDOWN
========================= */

.nav-services:hover .services-dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}


/* =========================
   DROPDOWN LINKS
========================= */

.services-dropdown a {
    position: relative;

    display: flex !important;
    align-items: center;

    width: 100%;
    height: auto !important;

    box-sizing: border-box;

    padding: 12px 22px;

    color: #444 !important;

    background: transparent;

    text-decoration: none;

    font-size: 12px !important;
    font-weight: 400 !important;

    text-transform: none !important;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}


/* =========================
   HOVER
========================= */

.services-dropdown a:hover {
    background: #f7f8fc;

    color: #2f4bff !important;

    padding-left: 28px;
}


/* =========================
   LEFT RED INDICATOR
========================= */

.services-dropdown a::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 0;

    background: #2f4bff;

    transition: width 0.2s ease;
}


<!-- .services-dropdown a:hover::before {
    width: 0px;
} -->




/* =========================================================
   HAMBURGER MENU
========================================================= */

/* DESKTOP */
.hamburger {
    display: none;
}


/* =========================================================
   MOBILE NAVBAR
========================================================= */

@media (max-width: 768px) {

    .navbar {
        width: 100%;
        height: 70px;

        padding: 0 20px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        position: relative;
        z-index: 10000;
    }


    /* =========================
       LOGO
    ========================= */

    .logo {
        display: flex;
        align-items: center;

        flex-shrink: 0;
    }

    .logo img {
        max-width: 120px;
        height: auto;
    }


    /* =========================
       HAMBURGER
    ========================= */

    .hamburger {
        display: flex;

        width: 35px;
        height: 35px;

        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 5px;

        cursor: pointer;

        position: relative;
        z-index: 10001;
    }


    .hamburger span {
        display: block;

        width: 25px;
        height: 2px;

        background: #ffffff;

        border-radius: 2px;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }


    /* =========================
       HAMBURGER ACTIVE
    ========================= */

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    /* =========================
       NAV MENU
    ========================= */

    #nav-menu {
        position: absolute;

        top: 70px;
        left: 0;
        right: 0;

        width: 100%;

        margin: 0 !important;
        padding: 10px 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        background: #0808f5;

        box-sizing: border-box;

        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);

        z-index: 10000;
    }


    /* OPEN MENU */

    #nav-menu.active {
        display: flex;
    }


    /* =========================
       NORMAL NAV LINKS
    ========================= */

    #nav-menu > a {
        width: 100%;

        height: 48px !important;

        display: flex;

        align-items: center;

        justify-content: flex-start;

        padding: 0 25px;

        box-sizing: border-box;

        font-size: 12px;

        color: #ffffff;

        text-decoration: none;
    }


    #nav-menu > a:hover {
        background: rgba(255, 255, 255, 0.08);
    }


    /* =========================
       SERVICES
    ========================= */

    .nav-services {
        width: 100%;

        height: auto !important;

        display: block;

        position: relative;
    }


    .services-link {
        width: 100%;

        height: 48px !important;

        display: flex !important;

        align-items: center;

        padding: 0 25px;

        box-sizing: border-box;
    }


    /* =========================
       SERVICES DROPDOWN
    ========================= */

    .services-dropdown {
        position: static !important;

        width: 100% !important;

        margin: 0 !important;

        padding: 0 !important;

        transform: none !important;

        border: none !important;

        border-radius: 0 !important;

        box-shadow: none !important;

        background: rgba(0, 0, 0, 0.12);

        display: none;

        opacity: 1 !important;

        visibility: visible !important;
    }


    /* SHOW SERVICES DROPDOWN
       when Services is hovered */

    .nav-services:hover .services-dropdown {
        display: flex;

        flex-direction: column;
    }


    /* =========================
       DROPDOWN LINKS
    ========================= */

    .services-dropdown a {
        width: 100%;

        height: 42px !important;

        display: flex !important;

        align-items: center;

        padding: 0 25px 0 45px !important;

        box-sizing: border-box;

        color: #ffffff !important;

        background: transparent !important;

        font-size: 11px !important;

        text-transform: none !important;

        white-space: normal;

        border: none !important;
    }


    .services-dropdown a:hover {
        color: #ffffff !important;

        background: rgba(255, 255, 255, 0.08) !important;

        padding-left: 50px !important;
    }


    /* REMOVE DESKTOP ARROW */

    .services-dropdown::before {
        display: none;
    }


    .services-dropdown a::before {
        display: none;
    }


    /* =========================
       CONTACT
    ========================= */

    .navbar-contact {
        display: none;
    }


    /* =========================
       BRAND TEXT
    ========================= */

    .brand-banner {
        display: none;
    }
}




























































































@media (max-width: 600px){
    .footer-service {
         justify-content: flex-start;
         text-align: left;
    }


    .hero-content h1 {
    position: relative;
    z-index: 10;

    margin: 0;
    padding: 10px 0;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;

    color: #ffffff;

    /* TEXT SHADOW */
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.5);

    /* PREVENT CUTTING */
    overflow: visible;
    white-space: normal;
    word-break: normal;
}


.hero-buttons a {
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.5);

}
}

    .hamburger {
        color: #ffffff;
    }




@media (max-width: 768px) {
    .hero-content h1 {
        text-align: center;
    }

}



@media (min-width: 601px) and (max-width: 1024px) {
    .footer-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;


}
}