/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

body{
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
}

/* Header */
.custom-header{
    width: 100%;
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f2;
}

/* Logo */
.logo{
    height: 60px;
    object-fit: contain;
}

/* Navigation */
.navbar-nav .nav-link{
    font-size: 12px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.4px;
    transition: 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover{
    color: #ff6b00;
}

/* Active Menu */
.active-nav{
    color: #ff6b00 !important;
}

.active-nav::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: #ff6b00;
}

/* Talk Button */
.talk-btn{
    background: linear-gradient(90deg, #6a11cb, #8e2de2);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    transition: 0.3s ease;
}

.talk-btn:hover{
    transform: translateY(-2px);
    color: #fff;
}

/* Responsive */
@media(max-width:991px){

    .navbar-collapse{
        padding-top: 20px;
    }

    .navbar-nav{
        gap: 10px;
        align-items: flex-start !important;
    }

    .talk-btn{
        display: inline-block !important;
        margin-top: 20px;
    }
}



/* Footer  */

/* Footer */
.footer-section{
    background: #fff;
    padding-top: 30px;
    border-top: 1px solid #e9d9ff;
}

/* Logo */
.footer-logo img{
    max-width: 170px;
}

/* Heading */
.footer-links h5,
.footer-social h5{
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

/* Links */
.footer-menu{
    display: flex;
    gap: 60px;
}

.footer-menu a{
    display: block;
    text-decoration: none;
    color: #111;
    font-size: 13px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.footer-menu a:hover{
    color: #ff6b00;
}

/* Social Icons */
.social-icons{
    display: flex;
    gap: 10px;
}

.social-icons a{
    width: 34px;
    height: 34px;
    border: 1px solid #7a1ee6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a1ee6;
    font-size: 14px;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover{
    background: #7a1ee6;
    color: #fff;
}

/* WhatsApp Button */
.whatsapp-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.whatsapp-btn i{
    font-size: 20px;
}

.whatsapp-btn:hover{
    background: #1ebc59;
    color: #fff;
}

/* Bottom Footer */
.footer-bottom{
    background: #6f12cf;
    color: #fff;
    text-align: center;
    font-size: 12px;
    letter-spacing: 3px;
    padding: 12px 10px;
    margin-top: 30px;
}

/* Responsive */
@media(max-width:991px){

    .footer-menu{
        gap: 30px;
    }

    .text-lg-end{
        text-align: left !important;
    }
}

@media(max-width:767px){

    .footer-menu{
        flex-direction: column;
        gap: 0;
    }

    .social-icons{
        margin-bottom: 15px;
    }

    .footer-bottom{
        letter-spacing: 1px;
        font-size: 11px;
    }
}