/*=====================================================
 Ideal Bae Limited
 Fresh Fruits & Vegetables Exporters
 Author: ChatGPT
 Version: 1.0
======================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#198754;
    --secondary:#ff9800;
    --dark:#0f172a;
    --light:#f8f9fa;
    --white:#ffffff;
    --text:#444;
    --gray:#6c757d;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#fafafa;
    color:var(--text);
    overflow-x:hidden;

}

/*==========================
TOP TOOLBAR
===========================*/

.top-bar{

    background:var(--primary);
    color:#fff;
    padding:8px 0;
    font-size:14px;

}

.top-bar a{

    color:#fff;
    text-decoration:none;
    margin-right:15px;

}

.top-bar a:hover{

    color:#ffe082;

}

/*==========================
HEADER
===========================*/

.main-header{

    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.logo{

    height:75px;

}

.company-name{

    font-size:30px;
    font-weight:700;
    color:var(--primary);

}

.company-tag{

    color:#666;
    font-size:14px;

}

/*==========================
NAVBAR
===========================*/

.navbar{

    background:#fff !important;

}

.navbar-nav .nav-link{

    color:#222 !important;
    font-weight:600;
    padding:18px;

}

.navbar-nav .nav-link:hover{

    color:var(--primary)!important;

}

.dropdown-menu{

    border:none;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.dropdown-item:hover{

    background:var(--primary);
    color:#fff;

}

/*==========================
BUTTONS
===========================*/

.btn-green{

    background:var(--primary);
    color:#fff;
    border-radius:50px;
    padding:12px 28px;
    font-weight:600;

}

.btn-green:hover{

    background:#146c43;
    color:#fff;

}

.btn-orange{

    background:var(--secondary);
    color:#fff;
    border-radius:50px;
    padding:12px 28px;

}

/*==========================
SLIDER
===========================*/

.hero{

    position:relative;

}

.hero img{

    height:720px;
    width:100%;
    object-fit:cover;

}

.hero-caption{

    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    color:#fff;

}

.hero-caption h1{

    font-size:60px;
    font-weight:800;

}

.hero-caption p{

    font-size:22px;
    margin:20px 0;

}

/*==========================
SECTION TITLES
===========================*/

.section-title{

    font-size:40px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:15px;

}

.section-subtitle{

    color:#666;
    max-width:800px;
    margin:auto;

}

/*==========================
3D CARDS
===========================*/

.card-3d{

    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:.5s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.card-3d:hover{

    transform:
    perspective(1000px)
    rotateX(5deg)
    rotateY(-5deg)
    translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.18);

}

.card-3d img{

    height:250px;
    object-fit:cover;

}

/*==========================
ICONS
===========================*/

.icon-circle{

    width:80px;
    height:80px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin:auto;

}

/*==========================
GALLERY
===========================*/

.gallery img{

    width:100%;
    border-radius:18px;
    transition:.5s;

}

.gallery img:hover{

    transform:scale(1.08);

}

/*==========================
COUNTERS
===========================*/

.counter{

    font-size:55px;
    font-weight:700;
    color:var(--primary);

}

/*==========================
SVG SHAPES
===========================*/

.wave{

    margin-top:-5px;

}

/*==========================
FOOTER
===========================*/

footer{

    background:#062d1f;
    color:#fff;
    padding:70px 0 20px;

}

footer h5{

    color:#fff;
    margin-bottom:25px;

}

footer a{

    color:#ddd;
    text-decoration:none;

}

footer a:hover{

    color:#fff;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.2);
    margin-top:35px;
    padding-top:20px;
    text-align:center;

}

/*==========================
WHATSAPP
===========================*/

.whatsapp{

    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    z-index:9999;
    box-shadow:0 10px 25px rgba(0,0,0,.3);

}

/*==========================
BACK TO TOP
===========================*/

.back-top{

    position:fixed;
    bottom:100px;
    right:25px;
    display:none;

}

/*==========================
RESPONSIVE
===========================*/

@media(max-width:991px){

.hero img{

height:500px;

}

.hero-caption h1{

font-size:38px;

}

.company-name{

font-size:22px;

}

.section-title{

font-size:30px;

}

}

@media(max-width:768px){

.hero-caption{

left:5%;
right:5%;

}

.hero-caption p{

font-size:18px;

}

}
