@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light gray for text */
    background-color: #121212; /* Dark background */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #FFD700;
}

/* Navigation Styles */
.navbar {
    background: #000000; /* Black background */
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700; /* Gold color */
    letter-spacing: 1px;
    background: -webkit-linear-gradient(45deg, #FFD700, #E5C100, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #FFFFFF; /* White for links */
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: none;
    -webkit-text-fill-color: white;
    text-shadow: none;
}

.nav-link:hover,
.nav-link.active {
    background-color: #FFD700; /* Gold background on hover/active */
    color: #000000; /* Black text on hover/active */
    -webkit-text-fill-color: #000000;
    text-shadow: none;
}

.contact-tag {
    color: #FFD700; /* Gold color */
    font-size: 14px;
    margin-bottom: 5px;
    background: -webkit-linear-gradient(45deg, #FFD700, #E5C100, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 2px rgba(255, 215, 0, 0.5);
}

.phone-number {
    color: #FFFFFF; /* White for phone number */
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #FFD700; /* Gold on hover */
}

.service-card h3,
.feature h4,
.testimonial-author {
    color: #FFD700; /* Gold heading */
    background: -webkit-linear-gradient(45deg, #FFD700, #E5C100, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 2px rgba(255, 215, 0, 0.5);
}

.after-header-content {
    background-color: #333333; /* Darker shade for the contact bar */
    padding: 12px 40px;
    text-align: right;
}

.after-header-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: right;
}

/* Hero Section */
.hero-section {
    color: white;
    padding: 100px 40px;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: -webkit-linear-gradient(45deg, #FFD700, #E5C100, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    background: -webkit-linear-gradient(45deg, #FFD700, #E5C100, #FFD700);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-button:hover {
    background-color: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Services Overview */
.services-overview {
    padding: 80px 40px;
    background-color: #1a1a1a;
}

.services-overview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #FFD700;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #222222; /* Dark card background */
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #FFD700; /* Gold border */
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.service-card h3 {
    color: #FFD700; /* Gold heading */
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    color: #f0f0f0; /* Light gray text */
    font-size: 16px;
    line-height: 1.5;
}

/* About Section */
.about-section {
    background: #121212;
    padding: 80px 40px;
}

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

.feature {
    background: #222222; /* Dark feature background */
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.feature h4 {
    color: #FFD700; /* Gold heading */
    margin-bottom: 15px;
    font-size: 20px;
}

.feature p {
    color: #f0f0f0; /* Light gray text */
    font-size: 15px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #000000 0%, #222222 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    display: inline-block;
    background-color: #FFD700; /* Gold background */
    color: #000000; /* Black text */
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button-primary:hover {
    background-color: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #FFD700; /* Gold text */
    padding: 15px 40px;
    text-decoration: none;
    border: 2px solid #FFD700; /* Gold border */
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    -webkit-text-fill-color: #FFD700;
    text-shadow: 0 0 2px rgba(255, 215, 0, 0.5);
}

.cta-button-secondary:hover {
    background-color: #FFD700;
    color: #000000;
    -webkit-text-fill-color: #000000;
    text-shadow: none;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #1a1a1a;
    padding: 80px 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    background: #222222;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #f0f0f0; /* Light gray text */
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: bold;
    color: #FFD700; /* Gold author text */
}


/* Contact Section */
.contact-page-section {
    padding: 80px 40px;
    background: url('/img/court1.png') no-repeat center center/cover;
    position: relative;
}

.contact-page-content {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(18, 18, 18, 0.9);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 42px;
    color: #FFD700;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 18px;
    color: #f0f0f0;
}

.services-overview h2, .about-section h2, .cta-section h2, .testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #FFD700;
    font-weight: 700;
    background: -webkit-linear-gradient(45deg, #FFD700, #E5C100, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 2px rgba(255, 215, 0, 0.5);
}

.contact-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info h3 {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, #FFD700, #E5C100, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contact-form-container {
    grid-column: span 2;
    margin: 0 auto;
    width: 100%;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form-container h3 {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, #FFD700, #E5C100, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contact-info p {
    font-size: 16px;
    color: #f0f0f0;
    line-height: 1.7;
}

.contact-info a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffed4e;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: bold;
    color: #f0f0f0; /* Light gray label */
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid #444; /* Darker border */
    border-radius: 4px;
    font-size: 16px;
    background-color: #222; /* Dark input background */
    color: #f0f0f0; /* Light gray text */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700; /* Gold border on focus */
}

.error-message {
    color: #d9534f;
    font-size: 14px;
    margin-top: 5px;
}

.success-message {
    color: #28a745;
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
}

/* Footer */
footer {
    background: #0a0a0a; /* Darker black background */
    color: #a0a0a0; /* Softer text color */
    padding: 60px 40px;
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p, .footer-column li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-column a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FFD700;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    font-size: 20px;
    color: #a0a0a0;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 14px;
    color: #666;
}


/* Responsive Design */
@media (max-width: 768px) {
    .contact-body {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        flex-direction: column;
        padding: 15px 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
        text-align: center;
    }

    .after-header-content {
        padding: 12px 20px;
        text-align: center;
    }

    .hero-section {
        padding: 60px 20px;
        min-height: 350px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .services-overview,
    .about-section,
    .cta-section {
        padding: 50px 20px;
    }

    .services-overview h2,
    .about-section h2,
    .cta-section h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button,
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
    }

    @media (max-width: 992px) {
    .nav-container {
        flex-direction: column;
    }

    .nav-menu {
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }
}
.home-hero {
    background: url('/img/law1.jpeg') no-repeat center center/cover;
}

.about-hero, .services-hero, .contact-hero {
    background: url('/img/court1.png') no-repeat center center/cover;
}
     
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .services-overview h2,
    .about-section h2,
    .cta-section h2,
    .testimonials-section h2 {
        font-size: 28px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

.about-page-content {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-page-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FFD700;
}

.about-page-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #f0f0f0;
    margin-bottom: 20px;
}


.services-page-section {
    padding: 80px 40px;
}

.services-page-content {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-icon {
    font-size: 60px;
    color: #FFD700;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFD700;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background-color: #FFD700;
    color: #000000;
}

.service-content h3 {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 15px;
    background: -webkit-linear-gradient(45deg, #FFD700, #E5C100, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.service-content p {
    font-size: 16px;
    color: #f0f0f0;
    line-height: 1.7;
}

.services-cta-section {
    background: linear-gradient(135deg, #000000 0%, #222222 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
}
 