*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f8fafc;
    color:#1e293b;
    line-height:1.6;
}

/* HEADER */

header{
    background:white;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:24px;
    font-weight:600;
    color:#1e3a8a;
}

nav a{
    margin-left:25px;
    text-decoration:none;
    color:#444;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#1e3a8a;
}

/* HERO */

.hero{
    padding:120px 8%;
    text-align:center;
    background:linear-gradient(to right,#eef2ff,#f8fafc);
}

.hero h1{
    font-size:44px;
    font-family:'Playfair Display',serif;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    color:#555;
    margin-bottom:30px;
}

.btn-primary{
    padding:12px 32px;
    background:#1e3a8a;
    color:white;
    text-decoration:none;
    border-radius:6px;
    font-weight:500;
    transition:0.3s;
}

.btn-primary:hover{
    background:#162d6b;
}

/* EXPERIENCE SECTION */

.experience{
    padding:60px 8%;
    background:white;
}

.exp-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    text-align:center;
}

.exp-box{
    padding:30px;
    border-radius:10px;
    background:#f8fafc;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.exp-box h3{
    font-size:32px;
    color:#1e3a8a;
}

/* SERVICES */

.services{
    padding:80px 8%;
    text-align:center;
}

.services h2{
    font-size:32px;
    margin-bottom:40px;
    font-family:'Playfair Display',serif;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.card h3{
    margin-bottom:15px;
    color:#1e3a8a;
}

/* ABOUT */

.about{
    padding:80px 8%;
    background:#eef2ff;
    text-align:center;
}

.about h2{
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
}

/* COURTS */

.courts{
    padding:70px 8%;
    text-align:center;
    background:white;
}

.courts h2{
    font-family:'Playfair Display',serif;
    margin-bottom:30px;
}

.courts ul{
    list-style:none;
    max-width:600px;
    margin:auto;
}

.courts li{
    padding:10px;
    border-bottom:1px solid #eee;
}

/* CONTACT */

.contact{
    padding:80px 8%;
    text-align:center;
    background:#f8fafc;
}

.contact h2{
    font-family:'Playfair Display',serif;
    margin-bottom:20px;
}

.contact p{
    margin:6px 0;
}

.contact iframe{
    margin-top:30px;
    border-radius:10px;
    border:none;
}

/* FOOTER */

footer{
    background:white;
    padding:20px;
    text-align:center;
    font-size:14px;
    color:#666;
    border-top:1px solid #eee;
}

/* MOBILE */

@media(max-width:768px){

.hero h1{
    font-size:32px;
}

nav{
    display:none;
}

header{
    justify-content:center;
}

.service-grid{
    grid-template-columns:1fr;
}

}

.hero-container{
display:grid;
grid-template-columns:1fr 350px;
align-items:center;
gap:40px;
max-width:1200px;
margin:auto;
}

.hero-image img{
width:100%;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

@media(max-width:768px){

.hero-container{
grid-template-columns:1fr;
text-align:center;
}

.hero-image{
max-width:250px;
margin:auto;
}

}

/* PREMIUM LAW THEME */

.hero{
background:linear-gradient(120deg,#0f172a,#1e293b);
color:white;
}

.hero p{
color:#d1d5db;
}

.btn-primary{
background:#c9a227;
}

.btn-primary:hover{
background:#b8961e;
}

/* GOLD HEADINGS */

h2{
color:#1e293b;
}

.services h2,
.courts h2,
.contact h2{
color:#1e293b;
}

/* HERO IMAGE BORDER */

.hero-image img{
border:4px solid #c9a227;
}

/* TESTIMONIALS */

.testimonials{
padding:80px 8%;
background:#f1f5f9;
text-align:center;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.testimonial-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-card p{
font-style:italic;
margin-bottom:15px;
}

/* ABOUT SECTION WITH PHOTO */

.about-container{
display:grid;
grid-template-columns:260px 1fr;
gap:40px;
align-items:center;
max-width:1000px;
margin:auto;
text-align:left;
}

.about-image{
display:flex;
justify-content:center;
}

.about-image img{
width:240px;
height:auto;
border-radius:12px;
border:4px solid #c9a227;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.about-text h2{
font-family:'Playfair Display',serif;
margin-bottom:15px;
}

.about-text p{
margin-bottom:10px;
}

/* MOBILE FIX */

@media(max-width:768px){

.about-container{
grid-template-columns:1fr;
text-align:center;
}

.about-image img{
width:200px;
}

}