/*
==================================================
BIGGBOSS TELUGU
Global Styles
Version: 1.0
==================================================
*/

/*==============================
CSS VARIABLES
==============================*/

:root{

    --primary:#FF5A1F;
    --primary-hover:#E64A19;

    --dark:#111827;
    --light:#F8FAFC;

    --white:#ffffff;

    --text:#1F2937;
    --text-light:#6B7280;

    --border:#E5E7EB;

    --success:#10B981;
    --warning:#F59E0B;
    --danger:#EF4444;

    --shadow-sm:0 4px 12px rgba(0,0,0,.06);
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --shadow-lg:0 18px 50px rgba(0,0,0,.15);

    --radius-sm:8px;
    --radius:16px;
    --radius-lg:24px;

    --transition:all .3s ease;
}

/*==============================
RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.8;
    color:var(--text);
    background:var(--light);

    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);
    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;
    cursor:pointer;
    font-family:'Poppins',sans-serif;

}

/*==============================
HEADINGS
==============================*/

h1{

    font-size:60px;
    font-weight:700;
    line-height:1.15;
    color:#fff;

}

h2{

    font-size:40px;
    font-weight:700;
    color:var(--dark);

}

h3{

    font-size:28px;
    font-weight:600;

}

h4{

    font-size:22px;
    font-weight:600;

}

p{

    color:var(--text-light);

}

/*==============================
CONTAINER
==============================*/

.bbt-container{

    width:100%;
    max-width:1320px;

    margin:auto;

    padding-left:20px;
    padding-right:20px;

}

/*==============================
SECTION
==============================*/

.bbt-section{

    padding:80px 0;

}

/*==============================
BUTTON
==============================*/

.bbt-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    background:var(--primary);

    color:#fff;

    border-radius:12px;

    font-weight:600;

    transition:var(--transition);

}

.bbt-btn:hover{

    background:var(--primary-hover);

    transform:translateY(-3px);

    color:#fff;

}

/*==============================
CARD
==============================*/

.bbt-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.bbt-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

/*==============================
SECTION TITLE
==============================*/

.section-title{

    margin-bottom:45px;

}

.section-title span{

    display:inline-block;

    color:var(--primary);

    font-weight:600;

    margin-bottom:8px;

    letter-spacing:1px;

}

.section-title h2{

    margin-bottom:12px;

}

.section-title p{

    max-width:700px;

}

/*==============================
UTILITY
==============================*/

.text-center{

    text-align:center;

}

.mb-30{

    margin-bottom:30px;

}

.mb-40{

    margin-bottom:40px;

}

.mb-50{

    margin-bottom:50px;

}

.mt-50{

    margin-top:50px;

}

/*==============================
SELECTION
==============================*/

::selection{

    background:var(--primary);

    color:#fff;

}