/* Lawel Theme CSS */
:root {
    --primary-green: #114529;
    --neon-green: #A6E05E;
    --text-white: #ffffff;
    --text-dark: #1A1A1A;
    --bg-light: #f8f9fa;
    --footer-bg: #151515;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--primary-green);
    color: var(--text-white);
    padding: 10px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}
nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    margin-right: 80px; /* Optional: offset slightly to account for logo width to truly center it on screen, or just leave it visually centered */
}
nav ul li a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background-color: var(--primary-green);
    color: var(--text-white);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 0;
}
.hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero-content {
    flex: 1;
    padding-right: 50px;
}
.hero h1 {
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
}
.hero p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.5;
}
.btn-hire {
    background-color: var(--neon-green);
    color: var(--primary-green);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 30px;
}
.hero-stats {
    display: flex;
    gap: 40px;
}
.stat h3 {
    font-size: 24px;
    margin: 0 0 5px 0;
}
.stat p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #fff;
}
.about-inner {
    display: flex;
    gap: 50px;
}
.about-title {
    flex: 1;
}
.about-title span {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 20px;
    display: block;
    margin-bottom: 20px;
}
.about-title h2 {
    font-size: 40px;
    margin: 0;
    line-height: 1.2;
}
.about-desc {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    display: flex;
    align-items: center;
}

/* Why Choose Us Section */
.why-us {
    padding: 80px 0 20px 0;
    background-color: var(--bg-light);
}
.why-inner {
    display: flex;
    gap: 50px;
}
.why-image {
    flex: 1;
}
.why-image img {
    max-width: 100%;
    border-radius: 10px;
}
.why-content {
    flex: 1;
}
.why-content h4 {
    color: #555;
    margin-bottom: 10px;
}
.why-content h2 {
    font-size: 40px;
    margin-top: 0;
}
.tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.tab {
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
}
.tab.active {
    background-color: var(--neon-green);
    color: var(--primary-green);
    border-radius: 5px;
}
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.service-item {
    width: 45%;
    margin-bottom: 20px;
}
.service-item h5 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: var(--primary-green);
}
.service-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Testimonials */
.testimonials {
    background-color: #2c2c2c;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.testimonials h2 {
    font-size: 36px;
    margin-bottom: 30px;
}
.testi-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.testi-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    width: 30%;
}
.testi-card h4 {
    color: var(--neon-green);
    margin-top: 0;
}
.testi-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testi-author .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #555;
}
.author-info h5 {
    margin: 0;
}
.author-info span {
    font-size: 12px;
    color: #aaa;
}

/* Latest News */
.latest-news {
    padding: 0 0 80px 0;
    background-color: #fff;
}
.latest-news h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
}
.news-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.news-card {
    flex: 1;
    min-width: 250px;
    box-sizing: border-box;
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 20px;
}
.news-card .category {
    font-size: 11px;
    font-weight: bold;
    color: #888;
    margin-bottom: 10px;
    display: block;
}
.news-card h3 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: #fff;
    padding: 30px 0 15px 0;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
}
.footer-col h4 {
    margin-top: 0;
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
}
.newsletter input {
    padding: 10px;
    width: 200px;
    border: none;
    border-radius: 5px 0 0 5px;
}
.newsletter button {
    background-color: var(--neon-green);
    color: var(--primary-green);
    border: none;
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    font-weight: bold;
    cursor: pointer;
}
.copyright {
    text-align: center;
    margin-top: 50px;
    color: #aaa;
    font-size: 12px;
}

/* Animations */
.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


/* Premium About Section */
.about-new-premium {
    position: relative;
    padding: 100px 0;
    background-color: #f8f9fa;
    color: var(--text-dark);
    overflow: hidden;
}

.premium-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.about-new-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(17, 69, 41, 0.05);
    color: var(--primary-green);
    border: 1px solid rgba(17, 69, 41, 0.1);
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.reveal-text {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 20px 0;
    background: linear-gradient(to right, var(--primary-green), #2c8c54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--neon-green);
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #444444;
    margin-bottom: 40px;
}

.btn-aceternity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(90deg, var(--primary-green), #1a6b3f);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid rgba(166, 224, 94, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(17, 69, 41, 0.15);
}

.btn-aceternity:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(17, 69, 41, 0.3);
    border-color: var(--neon-green);
}

.btn-aceternity .btn-icon {
    transition: transform 0.3s ease;
}

.btn-aceternity:hover .btn-icon {
    transform: translateX(5px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Header */
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .hero-content {
        padding-right: 0;
    }
    .hero h1 {
        font-size: 26px;
    }
    .hero-image img {
        width: 90% !important;
    }

    /* Premium About Section */
    .premium-card {
        flex-direction: column;
    }
    .premium-content, .premium-image {
        flex: 1 1 100%;
        padding: 20px;
    }
    
    /* Practice Areas & News */
    .practice-cards, .news-cards {
        flex-direction: column;
        align-items: center;
    }
    .practice-card, .news-card {
        width: 90%;
        min-width: 90%;
        margin-bottom: 20px;
    }

    /* Why Choose Us */
    .why-content {
        flex-direction: column;
    }
    .why-text {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        gap: 30px !important;
    }
    .footer-col {
        width: 100%;
        flex: none !important;
    }
    .footer-logo {
        margin-bottom: 10px;
    }
    .newsletter input {
        width: 60%;
    }
    .newsletter button {
        width: 40%;
        padding: 10px 5px;
    }
}

