/*
Theme Name: Annapurna
Theme URI: https://annapurnaind.com
Author: Brijesh Pancholy
Author URI: https://annapurnaind.com
Description: Premium Custom WooCommerce Theme for Annapurna Industries.
Version: 1.0
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: annapurna
*/

body{
    margin:0;
    padding:0;
    font-family:'Poppins',sans-serif;
}
/*==========================
TOP BAR
==========================*/

.top-bar{
    background:#0B1F4D;
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left{
    display:flex;
    gap:25px;
}

.top-left span i{
    color:#F57C00;
    margin-right:8px;
}

/*==========================
HEADER
==========================*/

.main-header{
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.main-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    max-height:70px;
}

.menu{
    list-style:none;
    display:flex;
    gap:35px;
    margin:0;
    padding:0;
}

.menu li a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

.menu li a:hover,
.menu .current-menu-item a{
    color:#F57C00;
}

.quote-btn{
    background:#F57C00;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.quote-btn:hover{
    background:#0B1F4D;
    color:#fff;
}