/* =====================================
   BANGLAR JOMI PROFESSIONAL CSS
===================================== */


:root{

    --primary:#ff6f00;
    --primary-dark:#e65100;
    --primary-light:#ff8f00;

    --soft:#fff3e0;

    --dark:#120901;

    --text:#2d1804;

}


/* =====================
GLOBAL
===================== */


*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}


body{

    font-family:'Plus Jakarta Sans',sans-serif;

    background:#fcf9f5;

    color:var(--text);

}



a{

    text-decoration:none;

}



/* =====================
NAVBAR
===================== */


.navbar{

    background:rgba(255,255,255,0.95);

    backdrop-filter:blur(15px);

    padding:12px 0;

    box-shadow:
    0 5px 20px rgba(0,0,0,.08);

}



.navbar-brand{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:24px;

    font-weight:800;

    color:var(--primary-dark)!important;

}



/* Logo Fix */


.brand-logo{

    width:40px;

    height:40px;

    object-fit:contain;

    border-radius:10px;

}




.nav-link{

    font-weight:600;

    color:#3d2208!important;

    padding:8px 15px!important;

}



.nav-link:hover{

    color:var(--primary)!important;

}




.dropdown-menu{

    border-radius:15px;

    border:1px solid #ffe0b2;

    padding:10px;

}



.dropdown-item{

    border-radius:8px;

    font-weight:600;

}



.dropdown-item:hover{

    background:var(--primary);

    color:white;

}



/* =====================
HERO SECTION
===================== */


.hero{

    background:

    radial-gradient(
    circle at top,
    #ff8f00,
    #e65100
    );


    padding:90px 20px;

    color:white;

    text-align:center;

    border-radius:0 0 50px 50px;

}



.hero h1{

    font-size:45px;

    font-weight:800;

}



.hero p{

    font-size:18px;

    max-width:700px;

    margin:20px auto;

}



/* =====================
BUTTON
===================== */


.btn-orange{


    background:
    linear-gradient(
    135deg,
    #ff8f00,
    #ff6f00
    );


    color:white;

    padding:12px 30px;

    border-radius:50px;

    font-weight:700;

    display:inline-block;

    transition:.3s;

}



.btn-orange:hover{

    color:white;

    transform:translateY(-3px);

}




/* =====================
CONTENT CARD
===================== */


.card-box{

    background:white;

    padding:30px;

    border-radius:25px;

    height:100%;

    box-shadow:

    0 10px 30px rgba(0,0,0,.06);

    border:1px solid rgba(255,111,0,.12);

    transition:.3s;

}



.card-box:hover{

    transform:translateY(-8px);

    box-shadow:

    0 20px 40px rgba(230,81,0,.15);

}




.section-title{

    font-size:32px;

    font-weight:800;

    color:var(--primary-dark);

}




.icon{

    font-size:40px;

    margin-bottom:15px;

}




/* =====================
ABOUT IMAGE
===================== */


.about-logo{

    width:180px;

    height:180px;

    object-fit:contain;

}





/* =====================
FOOTER
===================== */


footer{


    background:var(--dark);

    color:#d1c4b8;

    padding:60px 0 20px;

    margin-top:80px;

    border-top:

    3px solid var(--primary);

}



footer h4,
footer h5,
footer h6{

    color:white;

}



.footer-link{

    display:block;

    color:#b39b86;

    margin-bottom:10px;

    transition:.3s;

}



.footer-link:hover{

    color:var(--primary-light);

    padding-left:5px;

}




/* =====================
WHATSAPP BUTTON
===================== */


.wa-float{


    position:fixed;


    right:25px;

    bottom:25px;


    width:58px;

    height:58px;


    background:#25d366;


    color:white;


    border-radius:50%;


    display:flex;


    align-items:center;


    justify-content:center;


    font-size:30px;


    z-index:999;


    box-shadow:

    0 8px 20px rgba(37,211,102,.4);


}



.wa-float:hover{

    color:white;

    transform:scale(1.1);

}





/* =====================
MOBILE RESPONSIVE
===================== */


@media(max-width:768px){


.hero h1{

    font-size:30px;

}



.hero{

    padding:60px 15px;

}



.section-title{

    font-size:26px;

}



.navbar-brand{

    font-size:20px;

}


.card-box{

    padding:20px;

}



}