/* ==========================
   DUNGA ATTORNEYS INC.
   PREMIUM LEGAL DESIGN
========================== */


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{

    font-family:'Poppins',sans-serif;
    background:#F8F3E7;
    color:#222;
    line-height:1.7;
    overflow-x:hidden;

}



img{

    max-width:100%;
    height:auto;
    display:block;

}



.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}
/* ==========================
   DUNGA LOADER
========================== */


#loader{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#111111;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    transition:.5s;

}



.loader-content{

    text-align:center;
    color:white;

}



.loader-content img{

    width:130px;
    background:white;
    padding:10px;
    border-radius:8px;
    margin-bottom:20px;

}



.loader-content h2{

    font-family:'Cinzel',serif;
    color:white;

}



.loader-content span{

    color:#C9A227;
    letter-spacing:2px;

}



.loader-hide{

    opacity:0;
    visibility:hidden;

}



/* ==========================
   HEADER
========================== */


header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#111111;
    z-index:999;
    border-bottom:1px solid rgba(201,162,39,.5);
    box-shadow:0 5px 20px rgba(0,0,0,.3);

}



.navbar{

    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;

}



/* LOGO */

.logo img{

    width:100px;
    height:75px;
    object-fit:contain;
    background:white;
    padding:5px;
    border-radius:6px;

}



/* MENU */

.nav-links{

    display:flex;
    list-style:none;
    gap:35px;
    align-items:center;

}



.nav-links a{

    color:white;
    text-decoration:none;
    font-size:15px;
    transition:.3s;

}



.nav-links a:hover{

    color:#C9A227;

}



/* BUTTON */


.nav-btn{

    background:#C9A227;
    color:#111111;
    padding:12px 28px;
    text-decoration:none;
    font-weight:600;
    border-radius:3px;
    transition:.3s;

}



.nav-btn:hover{

    background:white;

}



/* MOBILE ICON */


.menu-toggle{

    display:none;
    color:white;
    font-size:32px;
    cursor:pointer;

}
/* ==========================
   HERO SECTION
========================== */


.hero{

    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    background:

    linear-gradient(
        rgba(17,17,17,.88),
        rgba(17,17,17,.88)
    ),

    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;
    color:white;

}



.hero-content{

    max-width:850px;
    padding-top:90px;

}



.hero h5{

    color:#C9A227;
    font-size:16px;
    letter-spacing:4px;
    margin-bottom:20px;
    text-transform:uppercase;

}



.hero h1{

    font-family:'Cinzel',serif;
    font-size:70px;
    line-height:1.15;
    margin-bottom:20px;
    color:white;

}



.hero h2{

    color:#C9A227;
    font-size:32px;
    font-weight:500;
    margin-bottom:25px;

}



.hero p{

    max-width:700px;
    font-size:18px;
    color:#dddddd;
    margin-bottom:40px;

}



/* HERO BUTTONS */


.hero-buttons{

    display:flex;
    gap:20px;

}



.btn-primary{

    background:#C9A227;
    color:#111111;
    padding:15px 35px;
    text-decoration:none;
    font-weight:600;
    border-radius:3px;
    transition:.3s;

}



.btn-primary:hover{

    background:white;

}



.btn-secondary{

    border:1px solid #C9A227;
    color:#C9A227;
    padding:14px 35px;
    text-decoration:none;
    transition:.3s;

}



.btn-secondary:hover{

    background:#C9A227;
    color:#111111;

}



/* HERO SCROLL */


.hero-scroll{

    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);

}



.hero-scroll i{

    color:#C9A227;
    font-size:30px;

}
/* ==========================
   ABOUT SECTION
========================== */


.about{

    padding:100px 0;
    background:#F8F3E7;

}



.section-title{

    text-align:center;
    margin-bottom:60px;

}



.section-title span{

    color:#C9A227;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;

}



.section-title h2{

    font-family:'Cinzel',serif;
    font-size:40px;
    color:#111111;
    margin-top:15px;

}



.section-title p{

    max-width:750px;
    margin:20px auto 0;
    color:#555;

}



/* ABOUT CONTENT */


.about-content{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}



.about-image img{

    width:100%;
    border-radius:5px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);

}



.about-text h3{

    font-family:'Cinzel',serif;
    font-size:30px;
    color:#111111;
    margin-bottom:20px;

}



.about-text p{

    color:#555;
    margin-bottom:20px;

}



/* VALUES BOXES */


.about-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;

}



.feature-box{

    background:white;
    padding:25px;
    border-left:4px solid #C9A227;
    box-shadow:0 8px 20px rgba(0,0,0,.08);

}



.feature-box i{

    font-size:35px;
    color:#C9A227;
    margin-bottom:15px;

}



.feature-box h4{

    color:#111111;
    margin-bottom:10px;

}



.feature-box p{

    font-size:14px;
    margin:0;

}
/* ==========================
   PRACTICE AREAS
========================== */


.services{

    padding:100px 0;
    background:#111111;

}



.services .section-title h2{

    color:white;

}



.services .section-title p{

    color:#cccccc;

}



.services .section-title span{

    color:#C9A227;

}



/* SERVICES GRID */


.services-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;

}



/* SERVICE CARD */


.service-card{

    background:#1c1c1c;
    padding:40px 30px;
    text-align:center;
    border:1px solid rgba(201,162,39,.25);
    transition:.3s;
    position:relative;

}



.service-card:hover{

    transform:translateY(-10px);
    border-color:#C9A227;

}



.service-card i{

    font-size:45px;
    color:#C9A227;
    margin-bottom:25px;

}



.service-card h3{

    color:white;
    font-family:'Cinzel',serif;
    font-size:22px;
    margin-bottom:15px;

}



.service-card p{

    color:#cccccc;
    font-size:15px;

}
/* ==========================
   WHY CHOOSE US
========================== */


.why-us{

    padding:100px 0;
    background:#F8F3E7;

}



.why-us .section-title h2{

    color:#111111;

}



.why-us .section-title p{

    color:#555;

}



.why-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

}



.why-card{

    background:white;
    padding:35px 25px;
    text-align:center;
    border-bottom:4px solid #C9A227;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;

}



.why-card:hover{

    transform:translateY(-8px);

}



.why-card i{

    color:#C9A227;
    font-size:40px;
    margin-bottom:20px;

}



.why-card h3{

    color:#111111;
    margin-bottom:15px;

}



.why-card p{

    color:#555;
    font-size:15px;

}
/* ==========================
   DIRECTOR SECTION
========================== */


.director{

    padding:100px 0;
    background:white;

}



.director-content{

    display:grid;
    grid-template-columns:350px 1fr;
    gap:60px;
    align-items:center;

}



.director-image img{

    width:300px;
    height:300px;
    object-fit:cover;
    border-radius:50%;
    border:6px solid #C9A227;
    padding:5px;

}



.director-info h3{

    font-family:'Cinzel',serif;
    font-size:35px;
    color:#111111;

}



.director-info h4{

    color:#C9A227;
    font-size:20px;
    margin:10px 0 25px;

}



.director-info p{

    color:#555;
    margin-bottom:25px;

}



/* QUALIFICATIONS */


.qualifications{

    background:#F8F3E7;
    padding:25px;
    border-left:5px solid #C9A227;
    margin-bottom:30px;

}



.qualifications h5{

    color:#111111;
    margin-bottom:15px;

}



.qualifications ul{

    list-style:none;

}



.qualifications li{

    margin-bottom:12px;
    color:#555;

}



.qualifications i{

    color:#C9A227;
    margin-right:10px;

}
/* ==========================
   CALL TO ACTION
========================== */


.cta{

    padding:80px 20px;
    background:#C9A227;
    text-align:center;

}



.cta h2{

    font-family:'Cinzel',serif;
    color:#111111;
    font-size:40px;
    margin-bottom:15px;

}



.cta p{

    color:#111111;
    margin-bottom:30px;

}





/* ==========================
   CONTACT SECTION
========================== */


.contact{

    padding:100px 0;
    background:#F8F3E7;

}



.contact-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;

}



.contact-info h3{

    font-family:'Cinzel',serif;
    font-size:30px;
    color:#111111;
    margin-bottom:25px;

}



.contact-info p{

    color:#555;
    margin-bottom:20px;

}



.contact-info i{

    color:#C9A227;
    margin-right:10px;

}



/* FORM */


.contact-form input,
.contact-form textarea{

    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    background:white;
    font-family:'Poppins',sans-serif;

}



.contact-form textarea{

    resize:none;

}



.contact-form button{

    border:none;
    cursor:pointer;

}
/* ==========================
   FOOTER
========================== */


footer{

    background:#111111;
    color:white;
    text-align:center;
    padding:50px 20px;

}



footer img{

    width:100px;
    background:white;
    padding:8px;
    border-radius:5px;
    margin:0 auto 20px;

}



footer h3{

    font-family:'Cinzel',serif;
    margin-bottom:10px;

}



footer p{

    color:#cccccc;
    margin:8px 0;

}



/* OHMS CREDIT */


.footer-credit{

    margin-top:25px;
    font-size:14px;

}



.footer-credit a{

    color:#C9A227;
    text-decoration:none;
    font-weight:600;

}



.footer-credit a:hover{

    color:white;

}
/* ==========================
   FLOATING WHATSAPP
========================== */

.whatsapp{

    position:fixed;
    right:25px;
    bottom:25px;

    width:60px;
    height:60px;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:32px;
    text-decoration:none;

    box-shadow:0 8px 20px rgba(0,0,0,.30);

    z-index:9999;

    transition:.3s ease;

}

.whatsapp:hover{

    transform:scale(1.1);
    background:#1EBE5D;
    color:#fff;

}

.whatsapp i{

    line-height:1;

}
/* ==========================
   BACK TO TOP BUTTON
========================== */

#topBtn{

    position:fixed;

    right:25px;
    bottom:100px;

    width:55px;
    height:55px;

    border:none;
    outline:none;

    background:#C9A227;
    color:#111111;

    border-radius:50%;

    display:none;

    cursor:pointer;

    font-size:24px;
    font-weight:bold;

    box-shadow:0 8px 20px rgba(0,0,0,.30);

    z-index:9998;

    transition:.3s ease;

}

#topBtn:hover{

    background:#ffffff;
    color:#111111;
    transform:translateY(-4px);

}
/* ==========================================
   RESPONSIVE DESIGN
========================================== */

@media (max-width:991px){

    .navbar{
        height:85px;
    }

    .menu-toggle{
        display:block;
        z-index:10001;
    }

    .nav-btn{
        display:none;
    }

    .nav-links{
        position:absolute;
        top:85px;
        left:0;
        width:100%;
        background:#111111;
        display:none;
        flex-direction:column;
        gap:0;
        padding:20px 0;
        border-top:1px solid rgba(201,162,39,.3);
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        width:100%;
        text-align:center;
    }

    .nav-links li a{
        display:block;
        padding:18px;
    }

    .hero{
        text-align:center;
    }

    .hero-content{
        padding-top:120px;
    }

    .hero h1{
        font-size:42px;
    }

    .hero h2{
        font-size:24px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .about-content,
    .contact-grid,
    .director-content{
        grid-template-columns:1fr;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .about-image{
        order:-1;
    }

    .director-image{
        text-align:center;
    }
}

@media (max-width:768px){

    .section-title h2{
        font-size:32px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero h2{
        font-size:22px;
    }

    .hero p{
        font-size:16px;
    }

    .services-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .container{
        width:94%;
    }

    .whatsapp{
        width:55px;
        height:55px;
        font-size:28px;
    }

    #topBtn{
        width:50px;
        height:50px;
        font-size:20px;
    }
}