﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins',sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ===================================
   HEADER
=================================== */

.main-header {
    background: #396bb3;
    position: relative;
    z-index: 9999;
}

.navbar-wrap {
    max-width: 1400px;
    margin: auto;
    min-height: 85px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===================================
   LOGO
=================================== */

.logo img {
    height: 70px;
    width: auto;
    display: block;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #396bb3;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .login-btn:hover {
        background: #234f93;
        color: #fff;
        text-decoration: none;
    }

    .login-btn i {
        font-size: 15px;
    }

@media(max-width:991px) {

    .header-right {
        display: none;
    }
}

/* ===================================
   DESKTOP MENU
=================================== */

.desktop-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .desktop-menu > ul {
        display: flex;
        align-items: center;
        gap: 35px;
    }

    .desktop-menu ul li {
        position: relative;
    }

        .desktop-menu ul li > a {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: .3s;
        }

            .desktop-menu ul li > a:hover {
                opacity: .85;
            }

        .desktop-menu ul li i {
            font-size: 12px;
        }

/* ===================================
   CONTACT
=================================== */

.header-contact a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===================================
   MEGA MENU
=================================== */

.mega-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #fff;
    border-radius: 15px;
    display: flex;
    padding: 20px 25px;
    gap: 0px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 99999;
}
.mega-dropdown > a i {
    transition: all .3s ease;
}

.mega-dropdown:hover > a i {
    transform: rotate(180deg) scale(1.1);
}
/* show dropdown */

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);

}

/* arrow */

.mega-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
}

/* columns */

.mega-column {
    min-width: 190px;
}

    .mega-column a {
        display: block !important;
        color: #333 !important;
        font-size: 15px !important;
        font-weight: 500;
        border-radius: 8px;
        transition: .3s;
        padding: 4px 10px;
        margin-bottom: 4px;
        line-height: 1.3;
    }
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(5, auto);
    column-gap: 60px;
    row-gap: 10px;
    width: max-content;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

    .mega-menu a {
        display: block;
        white-space: nowrap;
        color: #333 !important;
        padding: 6px 12px;
    }
        .mega-column a:hover {
            background: #eefcff;
            color: #396bb3 !important;
        }

/* ===================================
   MOBILE TOGGLE
=================================== */

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
}

/* ===================================
   MOBILE MENU
=================================== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #396bb3;
    z-index: 999999;
    overflow-y: auto;
    transition: .4s;
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-close {
    color: #fff;
    text-align: right;
    padding: 15px 20px;
    font-size: 30px;
    cursor: pointer;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(255,255,255,.15);
}

    .mobile-menu ul li a,
    .mobile-dropdown span {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #fff;
        padding: 16px 20px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
    }

/* mobile submenu */

.mobile-dropdown ul {
    display: none;
    background: rgba(255,255,255,.08);
}



.mobile-dropdown ul li {
    border: none;
}

    .mobile-dropdown ul li a {
        padding-left: 35px;
        font-size: 14px;
    }

/* ===================================
   OVERLAY
=================================== */

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: none;
    z-index: 999998;
}

    .mobile-overlay.active {
        display: block;
    }

/* ===================================
   LARGE LAPTOP
=================================== */

@media(max-width:1200px) {

    .desktop-menu > ul {
        gap: 22px;
    }

    .desktop-menu ul li > a {
        font-size: 14px;
    }

    .header-contact a {
        font-size: 14px;
    }
}

/* ===================================
   TABLET & MOBILE
=================================== */

@media(max-width:991px) {

    .desktop-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .navbar-wrap {
        min-height: 80px;
        padding: 0 15px;
    }

    .logo img {
        height: 50px;
    }

    .header-contact {
        flex: 1;
        text-align: center;
    }

        .header-contact a {
            justify-content: center;
            font-size: 18px;
            color: #fff;
        }
}

/* ===================================
   SMALL MOBILE
=================================== */

@media(max-width:575px) {

    .navbar-wrap {
        min-height: 75px;
    }

    .logo img {
        height: 42px;
    }

    .header-contact a {
        font-size: 15px;
    }

    .mobile-toggle {
        font-size: 30px;
    }

    .mobile-menu {
        width: 290px;
    }
}
.mobile-dropdown span i {
    transition: .3s;
}

.mobile-dropdown.active span i {
    transform: rotate(180deg);
}



/* ===========================
   FOOTER
=========================== */

.footer-area {
    background: #122124;
    padding: 70px 0 25px;
    color: #fff;
    position: relative;
}

    .footer-area .container {
        max-width: 1350px;
        margin: 0 auto;
        padding: 0 90px;
    }

/* Top Links */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
}

.footer-col a {
    display: block;
    color: #c3c7c9;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 4px;
    transition: .3s;
    font-family: 'Poppins', sans-serif;
}

    .footer-col a:hover {
        color: #396bb3;
        padding-left: 5px;
    }

/* Divider */

.footer-divider {
    border-top: 1px solid rgba(255,255,255,.15);
    margin: 50px 0 35px;
}

/* Company Info */

.company-info {
    text-align: center;
}

    .company-info h2 {
        color: #fff;
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: .5px;
        font-family: 'Poppins', sans-serif;
    }

    .company-info p {
        color: #d0d0d0;
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 4px;
        font-family: 'Poppins', sans-serif;
    }

    .company-info a {
        color: #fff;
        text-decoration: none;
    }

        .company-info a:hover {
            color: #396bb3;
        }

/* Scroll Top Button */

.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 115px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1b1f20;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    transition: .3s;
}

    .scroll-top:hover {
        background: #396bb3;
        color: #fff;
    }

/* WhatsApp */

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
    transition: .3s;
}

    .whatsapp-btn:hover {
        transform: scale(1.08);
        color: #fff;
    }

/* ===========================
   TABLET
=========================== */

@media (max-width: 991px) {

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 40px;
    }

    .company-info h2 {
        font-size: 22px;
    }

    .company-info p {
        font-size: 13px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 575px) {

    .footer-area {
        padding: 50px 0 20px;
    }

        .footer-area .container {
            padding: 0 20px;
        }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col h4 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .footer-col a {
        font-size: 13px;
        line-height: 1.8;
    }

    .company-info h2 {
        font-size: 20px;
        line-height: 1.4;
    }

    .company-info p {
        font-size: 12px;
        line-height: 1.7;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        right: 18px;
        bottom: 95px;
    }

    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 30px;
        right: 15px;
        bottom: 20px;
    }
}
/* Contact Row */

.footer-contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 25px;
    flex-wrap: wrap;
}

    .footer-contact-row a {
        color: #fff;
        font-size: 14px;
        text-decoration: none;
    }

    .footer-contact-row i {
        margin-right: 8px;
        color: #396bb3;
    }

/* Social Icons */

.footer-social {
    width: max-content;
    margin: 30px auto;
    padding: 16px 25px;
    background: rgba(255,255,255,.05);
    border-radius: 60px;
    display: flex;
    gap: 18px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        text-decoration: none;
        font-size: 20px;
        transition: .3s;
    }

        .footer-social a:hover {
            transform: translateY(-3px);
        }

    .footer-social .facebook i {
        color: #1877f2;
    }

    .footer-social .instagram i {
        color: #e1306c;
    }

    .footer-social .linkedin i {
        color: #0077b5;
    }

    .footer-social .youtube i {
        color: #ff0000;
    }



/* Copyright */

.footer-copyright {
    text-align: center;
    color: #fff;
    font-size: 14px;
    padding-top: 20px;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,.15);
}