.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-4ecd440 *//* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    font-family:"Inter",sans-serif;
    background:#f5f7fa;
    color:#222;
    overflow-x:hidden;
}


/* ==========================================
   HEADER
========================================== */

.glass-header{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 40px;

    background:#045D5D;

    border:none;
    border-radius:0;

    box-shadow:0 4px 18px rgba(0,0,0,.12);

    z-index:9999;

    transition:.3s ease;

}


/* ==========================================
   LOGO
========================================== */

.logo{

    display:flex;
    align-items:center;
    text-decoration:none;

}

.logo img{

    height:130px;
    width:auto;
    object-fit:contain;

}


/* ==========================================
   NAVIGATION
========================================== */

nav{

    display:flex;
    align-items:center;

}

.nav-links{

    display:flex;
    align-items:center;

    list-style:none;

    gap:35px;

}

.nav-links li{

    list-style:none;

}

.nav-links a{

    position:relative;

    display:inline-block;

    text-decoration:none;

    color:#fff;

    font-size:16px;

    font-weight:500;

    letter-spacing:.2px;

    transition:.3s ease;

}


/* Hover */

.nav-links a:hover{

    color:#ffffff;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#ffffff;

    transition:.35s ease;

}

.nav-links a:hover::after{

    width:100%;

}
/* ==========================================
   HEADER ACTIONS
========================================== */

.header-actions{

    display:flex;
    align-items:center;
    gap:15px;

}

/* ==========================================
   ICON BUTTON
========================================== */

.icon-btn{

    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.15);

    transition:.3s ease;

    cursor:pointer;

}

.icon-btn img{

    width:22px;
    height:22px;
    object-fit:contain;

}

.icon-btn:hover{

    background:#ffffff;
    transform:translateY(-3px);

    box-shadow:0 10px 20px rgba(0,0,0,.18);

}

.icon-btn:hover img{

    transform:scale(1.08);

}

/* ==========================================
   MOBILE MENU ICON
========================================== */

.menu-toggle{

    display:none;

    font-size:30px;

    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.menu-toggle:hover{

    opacity:.8;

}

/* ==========================================
   TABLET
========================================== */

@media(max-width:992px){

.glass-header{

    padding:0 25px;

}

.logo img{

    height:110px;

}

.nav-links{

    gap:22px;

}

.nav-links a{

    font-size:15px;

}

.header-actions{

    gap:10px;

}

.icon-btn{

    width:42px;
    height:42px;

}

}

@media (max-width:768px){

/* Header */

.glass-header{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:70px;

    padding:0 15px;

    display:flex;
    align-items:center;

    background:#045D5D;

}

/* Hamburger Left */

.menu-toggle{

    display:flex;

    align-items:center;
    justify-content:center;

    order:1;

    flex:0 0 40px;

    font-size:28px;

    color:#fff;

}

/* Logo Center */

.logo{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    display:flex;
    align-items:center;
    justify-content:center;

}

.logo img{

    height:100px;
    width:auto;

}

/* Call & WhatsApp Right */

.header-actions{

    margin-left:auto;

    display:flex;

    align-items:center;

    gap:8px;

    order:2;

}

.icon-btn{

    width:38px;
    height:38px;

}

.icon-btn img{

    width:18px;
    height:18px;

}

/* Mobile Menu */

nav{

    position:absolute;

    top:70px;

    left:0;

    width:100%;

    background:#045D5D;

    opacity:0;
    visibility:hidden;

    transform:translateY(-10px);

    transition:.3s;

}

nav.active{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}

.nav-links{

    display:flex;

    flex-direction:column;

    gap:0;

}

.nav-links li{

    width:100%;

}

.nav-links a{

    display:block;

    padding:16px 20px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width:1400px){

    .glass-header{

        padding:0 70px;

    }

}


/* ==========================================
   HEADER SCROLL EFFECT
========================================== */

.glass-header.scrolled{

    background:#045D5D;

    box-shadow:0 8px 25px rgba(0,0,0,.18);

}


/* ==========================================
   SMOOTH TRANSITIONS
========================================== */

.logo img,
.nav-links a,
.icon-btn,
.menu-toggle,
.glass-header{

    transition:all .3s ease;

}


/* ==========================================
   ACTIVE MENU LINK
========================================== */

.nav-links a.active{

    color:#ffffff;
    font-weight:600;

}

.nav-links a.active::after{

    width:100%;

}


/* ==========================================
   REMOVE BUTTON OUTLINE
========================================== */

button,
a{

    outline:none;

}

button:focus,
a:focus{

    outline:none;

}


/* ==========================================
   CUSTOM SCROLLBAR
========================================== */

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#e5e5e5;

}

::-webkit-scrollbar-thumb{

    background:#045D5D;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#034c4c;

}


/* ==========================================
   BODY TOP SPACE
========================================== */

body{

    padding-top:80px;

}

@media(max-width:768px){

    body{

        padding-top:70px;

    }

}

@media(max-width:480px){

    body{

        padding-top:65px;

    }

}/* End custom CSS */