/* Google Font */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#111111;
    color:white;
}

/* Navigation */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.logo h2{
    color:#C9A227;
    font-size:15px;
    letter-spacing:2px;
}

.logo h1{
    font-family:'Cinzel',serif;
    font-size:30px;
}

.logo p{
    color:#C9A227;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    transition:.3s;
}

.nav-links a:hover{
    color:#C9A227;
}

.btn-nav{
    background:#C9A227;
    color:black;
    text-decoration:none;
    padding:12px 24px;
    border-radius:30px;
    font-weight:bold;
    .btn-nav:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.5);
    transition: all 0.3s ease;
}
}

.btn-nav:link,
.btn-nav:visited{
    color:black;
    text-decoration:none;
}

.btn-nav:hover{
    color:black;
}

/* Hero */

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("images/hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    padding:0 8%;
}

.hero-content{
    max-width:650px;
}

.badge{
    display:inline-block;
    background:#C9A227;
    color:black;
    padding:10px 18px;
    border-radius:30px;
    font-weight:bold;
    margin-bottom:25px;
}

.hero h1{
    font-family:'Cinzel',serif;
    font-size:58px;
    line-height:1.2;
}

.hero h3{
    color:#C9A227;
    margin:15px 0;
}

.hero p{
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.gold-btn,
.outline-btn{
    padding:15px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
}

.gold-btn{
    background:#C9A227;
    color:black;
}

.outline-btn{
    border:2px solid #C9A227;
    color:white;
}
/* About Section */

.about{
    padding:100px 8%;
    background:#181818;
}

.about-text{
    max-width:800px;
    margin:auto;
    text-align:center;
}

.about h2{
    font-family:'Cinzel', serif;
    color:#C9A227;
    font-size:42px;
    margin-bottom:25px;
}

.about p{
    color:#d9d9d9;
    line-height:1.9;
    font-size:18px;
    margin-bottom:20px;
}
/* Practice Areas */

.services{
    padding:100px 8%;
    background:#111111;
}

.services h2{
    text-align:center;
    font-family:'Cinzel', serif;
    font-size:42px;
    color:#C9A227;
    margin-bottom:50px;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:25px;
}

.service-card{
    min-height: 170px;
    background:#1b1b1b;
    border:1px solid rgba(201,162,39,0.3);
    border-radius:12px;
    padding:30px;
    text-align:center;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#C9A227;
    box-shadow:0 0 20px rgba(201,162,39,0.3);
}

.service-card h3{
    color:white;
    font-size:20px;
}
/* Contact Section */

.contact{
    padding:100px 8%;
    background:#181818;
    text-align:center;
}

.contact h2{
    font-family:'Cinzel', serif;
    color:#C9A227;
    font-size:42px;
    margin-bottom:35px;
}

.contact-info p{
    font-size:20px;
    color:white;
    margin:18px 0;
    line-height:1.8;
}
/* Footer */.contact-details{
    text-align: center;
}

.contact-details p{
    font-size:20px;
    color:white;
    margin:18px 0;
    line-height:1.8;
}

.contact-details a{
    color:#C9A227;
    text-decoration:none;
    font-weight:600;
}

.contact-details a:hover{
    color:white;
    text-decoration:underline;
}

.footer{
    background:#111111;
    padding:25px;
    text-align:center;
    border-top:1px solid rgba(201,162,39,0.3);
}

.footer p{
    color:#cccccc;
    font-size:15px;
}
footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 35px 20px;
    margin-top: 50px;
    line-height: 1.6;
}

footer h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #d4af37;
}

footer p {
    font-size: 15px;
    margin: 8px 0;
}

footer p:last-child {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}footer {
    background: #0b0b0b;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 2px solid #c9a227;
}

footer h3 {
    color: #c9a227;
    font-size: 26px;
    margin-bottom: 10px;
}

footer p {
    font-size: 15px;
    margin: 8px 0;
}

footer p:last-child {
    margin-top: 25px;
    font-size: 14px;
    color: #cccccc;
}
.contact a {
    color: #c9a227;
    text-decoration: none;
    font-weight: 600;
}

.contact a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.contact-details a {
    color: #c9a227;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.contact-details a:hover {
    color: white;
    text-decoration: underline;
}
/* Scroll Animation */

.hidden{
    opacity:0;
    filter:blur(5px);
    transform:translateY(50px);
    transition:all 1s ease;
}

.show{
    opacity:1;
    filter:blur(0);
    transform:translateY(0);
}
/* Sticky Navigation Effect */

header.scrolled{
    background:#111;
    padding:12px 10%;
    box-shadow:0 5px 20px rgba(0,0,0,.3);
    transition:all .3s ease;
}
/* Floating Call Button */

.floating-call{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#d4af37;
    color:#111;
    padding:15px 22px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 5px 20px rgba(0,0,0,.3);
    z-index:1000;
    transition:all .3s ease;
}

.floating-call:hover{
    background:#111;
    color:#d4af37;
    transform:translateY(-3px);
}

@media (max-width:768px){
    .floating-call{
        bottom:20px;
        right:20px;
        padding:13px 18px;
        font-size:14px;
    }
}
/* Page Loader */

#loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    transition:opacity .5s ease, visibility .5s ease;
}

.spinner{
    width:60px;
    height:60px;
    border:6px solid #333;
    border-top:6px solid #d4af37;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

#loader.hide{
    opacity:0;
    visibility:hidden;
}
.about-image{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:40px;
}

.about-image img{
    width:100%;
    max-width:500px;
    height:auto;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
    transition:all 0.3s ease;
}

.about-image img:hover{
    transform:scale(1.03);
    box-shadow:0 20px 40px rgba(0,0,0,0.35);
}