/* =========================
   GLOBAL STYLES
========================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* =========================
   HEADER
========================= */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    background: #4fa4fa;   /* 5% darker blue */
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: bold;
}

.logo img {
    width: 40px;
    height: 30px;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 7px;
}

nav a {
    color: rgb(14, 13, 13);
    text-decoration: none;
    margin: 0 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #e9eff1;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    background: url('images/hero-background.png') no-repeat center center;
    background-size: cover;
    color: #000000;
    text-align: center;
    padding: 100px 20px;
}

/* Slide Animation */
.slide-in {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s forwards;
}

.delay1 { animation-delay: 0.5s; }
.delay2 { animation-delay: 1s; }
.delay3 { animation-delay: 1.5s; }
.delay4 { animation-delay: 2s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero ul {
    list-style-type: none; /* bullets remove kar dega */
    padding-left: 0;       /* left ki extra space remove karega */
}

.hero ul li {
    margin-bottom: 10px;   /* har line ke niche thodi spacing dega */
}

/* =========================
   SERVICES SECTION
========================= */
.services {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px;
}

.card {
    padding: 30px;
    background: #e0e0e0;
    border-radius: 8px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    background: #d4d4d4;
}

/* =========================
   CONTACT SECTION
========================= */
/* ===== CONTACT FORM STYLING ===== */
.contact {
    background-color: #e0f0ff;
    padding: 50px;
    max-width: 800px;
    margin: 50px auto;
    color: #000;
    border-radius: 8px;
}

.contact h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #171718;
}

.contact form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.contact form input,
.contact form select,
.contact form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
}

.contact form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact form button {
    background-color: #0077ff;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    font-size: 18px;
    transition: 0.3s;
}

.contact form button:hover {
    background-color: #0056b3;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .contact {
        padding: 30px 15px;
    }
}
/* =========================
   COMING SOON PAGE
========================= */
.coming-soon {
    text-align: center;
    padding: 150px 20px;
    font-size: 28px;
    color: #000000;
}

/* =========================
   FOOTER
========================= */
footer {
    text-align: center;
    padding: 8px 10px;       /* padding chhoti kar di */
    background: #4da6ff;     /* Light Blue */
    color: rgb(12, 11, 11);
    font-size: 14px;          /* text size thoda chhota */
    line-height: 1.4;         /* thodi tight spacing */
}
/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 60px 20px;
    }

    .contact {
        padding: 30px 15px;
    }
}

/* =========================
   ABOUT US HERO
========================= */
.about-hero {
    text-align: center;
    padding: 80px 20px;
    background: #80bfff; /* Light blue hero background */
    color: #000;
}

.about-hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}

/* ===== VISION & MISSION SECTION ===== */
.vision-mission {
    background-color: #e6f2ff;
    padding: 50px 20px;
    text-align: center;
}

.vision-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.vision-box {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    flex: 1 1 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.vision-box h2 {
    color: #101111;
    margin-bottom: 15px;
}

.vision-box p {
    color: #111;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .vision-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* =========================
   ABOUT CONTENT
========================= */
.about-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    color: #000000;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.about-content h2 {
    margin-top: 30px;
    font-size: 28px;
    color: #0077ff; /* blue highlight */
}
.lawyers-section{
text-align:center;
padding:60px 20px;
background:#f5f7fa;
}

.lawyers-section h2{
font-size:32px;
margin-bottom:40px;
color:#1e3a8a;
}

.lawyers-container{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:25px;
}

.lawyer-card{
background:white;
width:220px;
padding:20px;
border-radius:10px;
box-shadow:0 4px 12px rgba(0,0,0,0.1);
transition:0.3s;
}

.lawyer-card:hover{
transform:translateY(-8px);
}

.lawyer-card img{
width:100%;
height:200px;
object-fit:cover;
border-radius:8px;
margin-bottom:10px;
}

.lawyer-card h3{
font-size:18px;
color:#111;
margin-bottom:5px;
}

.lawyer-card p:first-of-type{
color:#2563eb;
font-weight:600;
margin-bottom:5px;
}

.lawyer-card p:last-of-type{
color:#444;
font-weight:normal;
font-size:14px;
}

.lawyer-card span{
font-size:14px;
color:#555;
}
@media (max-width:768px){

.lawyers-container{
flex-direction:column;
align-items:center;
}

.lawyer-card{
width:90%;
max-width:350px;
}

}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    background: #4fa4fa;
    color: white;
}

nav a {
    color: rgb(14, 13, 13);
    text-decoration: none;
    margin: 0 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #e9eff1;
}

/* Responsive mobile nav */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    nav a {
        margin: 0;
        font-size: 18px;
        color: rgb(14, 13, 13);
        text-decoration: none;
    }

    nav a:hover {
        color: #e9eff1;
    }
}



/* =========================
   HOME FEATURES SECTION
========================= */

.features{
padding:70px 20px;
background:#f4f7fb;
text-align:center;
}

.features h2{
font-size:32px;
margin-bottom:40px;
color:#1e3a8a;
}

.features-container{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:25px;
}

.feature-box{
background:white;
width:220px;
padding:25px;
border-radius:10px;
box-shadow:0 4px 12px rgba(0,0,0,0.1);
transition:0.3s;
}

.feature-box:hover{
transform:translateY(-8px);
}

.feature-box img{
width:60px;
margin-bottom:15px;
}

.feature-box h3{
font-size:18px;
margin-bottom:10px;
color:#111;
}

.feature-box p{
font-size:14px;
color:#555;
}

/* mobile responsive */

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center; 
        text-align: center;
    }

    nav {
        display: flex;
        flex-direction: column;   /* vertically stack links */
        gap: 10px;                /* vertical spacing */
        margin-top: 10px;
    }

    nav a {
        margin: 0;                /* remove extra margin from desktop */
        font-size: 18px;          /* slightly bigger for mobile readability */
        color: rgb(14, 13, 13);   /* same as desktop */
        text-decoration: none;
        transition: 0.3s;
    }

    nav a:hover {
        color: #e9eff1;           /* same hover effect as desktop */
    }
}
/* =========================
   SPECIALIZED SERVICES
========================= */

.special-services{
    text-align:center;
    padding:60px 20px;
    background:#f0f6ff;
}

.special-services h2{
    font-size:32px;
    margin-bottom:40px;
    color:#1e3a8a;
}

.special-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}

.special-box{
    background:white;
    width:230px;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    transition:0.3s;
}

.special-box:hover{
    transform:translateY(-6px);
}

.special-box img{
    width:150px;
    margin-bottom:15px;
}

.special-box h3{
    color:#0c0c0c;
    margin-bottom:10px;
}

.special-box p{
    font-size:14px;
    color:#444;
}


