/* =====================================================
   Adv. Narayan L. Khamkar & Associates
   Premium Law Firm Theme
======================================================*/

:root{
    --primary:#0B0D17;
    --secondary:#1A1F2E;
    --gold:#C8A04B;
    --gold-light:#E8C97A;
    --white:#FFFFFF;
    --gray:#F5F5F5;
    --text:#555;
    --shadow:0 15px 35px rgba(0,0,0,.15);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#333;
    overflow-x:hidden;
    line-height:1.7;
}

h1,h2,h3,h4,h5{
    font-family:'Playfair Display',serif;
    font-weight:700;
}

.section{
    padding:100px 0;
}

.section-title{
    font-size:42px;
    margin-bottom:30px;
    color:var(--primary);
    position:relative;
}

.section-title::after{
    content:"";
    width:80px;
    height:4px;
    background:var(--gold);
    display:block;
    margin-top:15px;
    border-radius:20px;
}

/*================ NAVBAR ================*/

.custom-nav{
    transition:.4s;
    background:rgba(0,0,0,.15);
    backdrop-filter:blur(15px);
    padding:15px 0;
}

.custom-nav.scrolled{
    background:#0b0d17;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.navbar-brand{
    color:#fff!important;
    font-size:26px;
    font-weight:700;
}

.navbar-brand i{
    color:var(--gold);
    margin-right:10px;
}

.nav-link{
    color:#fff!important;
    margin-left:20px;
    font-weight:500;
    position:relative;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:var(--gold);
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

/*================ HERO ================*/

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(8,8,8,.70),rgba(8,8,8,.70)),
    url("images/court.jpg") center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:68px;
    color:#fff;
    line-height:1.1;
    margin-bottom:25px;
}

.hero p{
    color:#ddd;
    font-size:18px;
    max-width:650px;
}

.gold-text{
    color:var(--gold);
    letter-spacing:2px;
    margin-bottom:20px;
}

/*================ BUTTONS ================*/

.btn-gold{
    background:var(--gold);
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    transition:.4s;
    font-weight:600;
}

.btn-gold:hover{
    background:#b88b2b;
    transform:translateY(-3px);
    color:#fff;
}

.btn-outline-light{
    border-radius:50px;
    padding:14px 35px;
}

/*================ PROFILE CARD ================*/

.profile-card{
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:40px;
    color:#fff;
    box-shadow:var(--shadow);
}

.profile-card i{
    font-size:70px;
    color:var(--gold);
    margin-bottom:20px;
}

.profile-card h3{
    margin-bottom:10px;
}

/*================ STATS ================*/

.stats{
    background:var(--primary);
    color:#fff;
    padding:70px 0;
}

.stats h2{
    color:var(--gold);
    font-size:52px;
}

.stats p{
    color:#ddd;
}

/*================ ABOUT ================*/

#about img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

#about ul{
    list-style:none;
    padding-left:0;
}

#about li{
    margin-bottom:12px;
}

#about li::before{
    content:"✔";
    color:var(--gold);
    margin-right:10px;
}

/*================ PRACTICE AREAS ================*/

.practice{
    background:#f8f8f8;
    padding:100px 0;
}

.service-card{
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    margin-bottom:30px;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 35px rgba(0,0,0,.15);
}

.service-card i{
    width:90px;
    height:90px;
    line-height:90px;
    border-radius:50%;
    background:var(--gold);
    color:#fff;
    font-size:34px;
    margin-bottom:25px;
}

.service-card h4{
    margin-bottom:15px;
}

.service-card p{
    color:var(--text);
}

/*================ CLIENT LOGOS ================*/

.client-logo{
    background:#fff;
    border-radius:12px;
    padding:25px;
    text-align:center;
    transition:.3s;
    border:1px solid #eee;
}

.client-logo:hover{
    transform:scale(1.05);
}

/*================ FAQ ================*/

.accordion-button:not(.collapsed){
    background:var(--gold);
    color:#fff;
}

.accordion-button:focus{
    box-shadow:none;
}

/*================ CONTACT ================*/

.contact-box{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:var(--shadow);
}

.form-control{
    padding:15px;
    border-radius:10px;
    margin-bottom:20px;
}

.form-control:focus{
    border-color:var(--gold);
    box-shadow:none;
}

/*================ FOOTER ================*/

footer{
    background:var(--primary);
    color:#bbb;
    padding:70px 0 30px;
}

footer h4{
    color:#fff;
}

footer a{
    color:#bbb;
    text-decoration:none;
}

footer a:hover{
    color:var(--gold);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
}

/*================ WHATSAPP BUTTON ================*/

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    z-index:9999;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
    color:#fff;
}

/*================ RESPONSIVE ================*/

@media(max-width:992px){

.hero{
height:auto;
padding:150px 0 80px;
}

.hero h1{
font-size:48px;
}

.section-title{
font-size:34px;
}

.profile-card{
margin-top:50px;
}

}

@media(max-width:768px){

.hero h1{
font-size:38px;
}

.navbar-brand{
font-size:20px;
}

.stats h2{
font-size:36px;
}

.section{
padding:70px 0;
}

.service-card{
padding:30px 20px;
}

}