/* Global Styles */
:root {
    --primary-color: #b79632;      /* Gold color - original */
    --secondary-color: #333333;    /* Darker black for contrast */
    --accent-color: #d4af37;       /* Lighter gold for accents */
    --text-color: #ffffff;         /* White text */
    --light-text: #cccccc;         /* Light white for secondary text */
    --dark-bg: #111111;            /* Dark background */
    --white: #ffffff;              /* White */
    --light-gold: #f9f4e8;         /* Lighter gold */
    --dark-gold: #b79632;          /* Darker gold */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Responsive font sizes */
    --font-size-h1-mobile: 32px;
    --font-size-h2-mobile: 28px;
    --font-size-h3-mobile: 24px;
    --font-size-p-mobile: 16px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--dark-bg);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23b79632' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--text-color);
    letter-spacing: 0.5px; /* Enhanced typography */
}
p {
    margin-bottom: 15px;
    color: var(--light-text);
}
a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}
img {
    max-width: 100%;
    height: auto;
}
section {
    padding: 100px 0;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 42px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 700; /* Enhanced typography */
}
.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-body);
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(183, 150, 50, 0.3);
    letter-spacing: 1px; /* Enhanced typography */
}
.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}
.btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(183, 150, 50, 0.4);
}
.btn:hover:before {
    transform: translateX(0);
}

/* Luxury Hero Section - Premium 20k Design */
.hero {
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
    animation: subtleZoom 20s infinite alternate ease-in-out;
    filter: contrast(1.1) saturate(1.2);
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.8) 0%, 
        rgba(26, 26, 26, 0.6) 50%, 
        rgba(183, 150, 50, 0.15) 100%);
    z-index: 1;
}
/* Luxury Particles Container */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}
/* Luxury Light Beams */
.hero-light-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}
.light-beam {
    position: absolute;
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.4), transparent);
    transform-origin: top center;
    animation: beamMove 8s infinite linear;
    opacity: 0;
}
@keyframes beamMove {
    0% {
        transform: translateY(-100%) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(10deg);
        opacity: 0;
    }
}
.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    height: 100vh;
    min-height: 600px;
}
.hero-content {
    flex: 0 0 60%;
    padding-right: 50px;
    animation: fadeInLeft 1.2s ease;
}
/* Luxury Title Animation */
.hero h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 1.5s ease 0.5s forwards;
}
@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Luxury Underline Animation */
.hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--light-gold));
    animation: underlineExpand 1.2s ease 1.2s forwards;
}
@keyframes underlineExpand {
    to {
        width: 120px;
    }
}
/* Luxury Subtitle Animation */
.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--light-text);
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: subtitleReveal 1.2s ease 0.8s forwards;
    font-weight: 300;
    letter-spacing: 0.5px;
}
@keyframes subtitleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Luxury Button Container */
.hero-buttons {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: buttonsReveal 1.2s ease 1.1s forwards;
}
@keyframes buttonsReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Luxury Button Enhancement */
.hero .btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(183, 150, 50, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-gold) 100%);
    color: #ffffff;
    border: none;
}
.hero .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid var(--primary-color);
}
.hero .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    z-index: -1;
}
.hero .btn:hover::before {
    left: 100%;
}
.hero .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(183, 150, 50, 0.4);
}
/* Luxury Image Enhancement */
.hero-image {
    flex: 0 0 40%;
    height: 600px;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    animation: fadeInRight 1.2s ease, imageFloat 6s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(183, 150, 50, 0.2);
}
@keyframes imageFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px);
    }
}
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(183, 150, 50, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    border-radius: 20px;
}
/* Luxury Decorative Elements */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(183, 150, 50, 0.15) 0%, rgba(183, 150, 50, 0) 70%);
    z-index: 2;
}
.hero-decoration-1 {
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    animation: floatRotate 20s infinite linear;
}
.hero-decoration-2 {
    bottom: -150px;
    left: -200px;
    width: 400px;
    height: 400px;
    animation: floatRotate 25s infinite linear reverse;
}
@keyframes floatRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Luxury Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 60px;
    border: 2px solid rgba(212, 175, 55, 0.7);
    border-radius: 25px;
    z-index: 5;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 3px;
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    60% {
        transform: translateX(-50%) translateY(15px);
        opacity: 1;
    }
}
/* Luxury Particle Effect */
.particle {
    position: absolute;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp 15s infinite linear;
    opacity: 0;
}
@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
    
}
@media (max-width: 768px) {
    .member-bio {
        text-align: left !important;
    }
}
/* Luxury Shimmer Effect */
.shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50px;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 3s infinite;
    z-index: 4;
}
@keyframes shimmer {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}
@keyframes subtleZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* About Section - Fixed Alignment */
.about-section {
    background-color: var(--dark-bg);
    position: relative;
    padding: 100px 0;
}

.about-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23b79632' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    gap: 50px;
    position: relative;
    z-index: 1;
}
.about-text {
    flex: 0 0 50%;
    animation: fadeInLeft 1s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align text to top */
}

.about-image-frame {
    flex: 0 0 50%;
    height: 500px; /* Fixed height */
    border-radius: 10px;
    padding: 4px;
    background: linear-gradient(45deg, #d4af37, #808080, #d4af37);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 1s ease, floatImage 6s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(183, 150, 50, 0.4);
}

.about-image {
    width: 100%;
    height: 100%;
    background-image: url('https://masarwehlawfirm.com/images/about-office.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    animation: fadeInRight 1s ease;
    position: relative;
    overflow: hidden;
    min-height: 500px; /* Match the frame's min-height */
}

.about-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(183, 150, 50, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    transition: background 0.5s ease;
}

.about-image:hover:before {
    background: linear-gradient(135deg, rgba(183, 150, 50, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.about-image:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image:hover:after {
    opacity: 1;
    animation: shine 0.8s ease-in-out;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-50%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) translateY(-50%) rotate(30deg);
    }
}

/* About Section Text Styling */
.about-intro, .about-philosophy, .about-team, .about-reputation, .about-global, .about-commitment {
    margin-bottom: 25px;
}

.about-philosophy strong {
    color: var(--primary-color);
}

.practice-areas {
    padding-left: 20px;
    margin-top: 15px;
}

.practice-areas li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--light-text);
}

/* NEW: About Us Section */
.about-us-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
}
.about-us-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23b79632' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}
.about-us-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}
.about-us-text {
    flex: 0 0 100%;
    animation: fadeInLeft 1s ease;
}
.about-us-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light-text);
}
/* NEW: Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    position: relative;
}
.mission-vision:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23b79632' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}
.mission-vision-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.mission-box, .vision-box {
    flex: 0 0 calc(50% - 20px);
    min-width: 300px;
    padding: 40px;
    background-color: var(--dark-bg);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(183, 150, 50, 0.2);
    position: relative;
    overflow: hidden;
}
.mission-box:hover, .vision-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(183, 150, 50, 0.3);
    border-color: var(--primary-color);
}
.mission-box:before, .vision-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}
.mission-box:hover:before, .vision-box:hover:before {
    transform: translateY(0);
}
.mission-box .icon, .vision-box .icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.mission-box:hover .icon, .vision-box:hover .icon {
    transform: scale(1.1);
}
.mission-box h3, .vision-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}
.mission-box h3:after, .vision-box h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}
.mission-box p, .vision-box p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    margin-top: 25px;
}
/* Practice Areas Section - Enhanced */
.practice-areas {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    position: relative;
}
.practice-areas:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23b79632' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}
.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}
.practice-item {
    background-color: var(--dark-bg);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(183, 150, 50, 0.2);
}
.practice-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}
.practice-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(183, 150, 50, 0.3);
    border-color: var(--primary-color);
}
.practice-item:hover:before {
    transform: translateY(0);
}
.practice-item .icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.practice-item:hover .icon {
    transform: scale(1.1);
}
.practice-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}
/* Team Section - Enhanced with 3D Carousel */
.team-section {
    background-color: #000000;
    position: relative;
    overflow: hidden;
    padding: 50px 0 100px;
}
.team-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.347 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23b79632' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}
.team-carousel {
    position: relative;
    z-index: 1;
}
.about-title {
    font-size: 7.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    white-space: nowrap;
    font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
    background: linear-gradient(
        to bottom,
        rgba(183, 150, 50, 0.35) 30%,
        rgba(183, 150, 50, 0) 76%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.carousel-container {
    width: 100%;
    max-width: 1200px;
    height: 450px;
    position: relative;
    perspective: 1000px;
    margin-top: 80px;
}
.carousel-track {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card {
    position: absolute;
    width: 280px;
    height: 380px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 2px solid rgba(183, 150, 50, 0.3);
}
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card.center {
    z-index: 10;
    transform: scale(1.1) translateZ(0);
    border-color: var(--primary-color);
}
.card.center img {
    filter: none;
}
.card.left-1 {
    z-index: 5;
    transform: translateX(-200px) scale(0.9) translateZ(-100px);
    opacity: 0.9;
}
.card.left-1 img {
    filter: grayscale(100%);
}
.card.right-1 {
    z-index: 5;
    transform: translateX(200px) scale(0.9) translateZ(-100px);
    opacity: 0.9;
}
.card.right-1 img {
    filter: grayscale(100%);
}
.card.left-2 {
    z-index: 3;
    transform: translateX(-400px) scale(0.8) translateZ(-200px);
    opacity: 0.7;
}
.card.left-2 img {
    filter: grayscale(100%);
}
.card.right-2 {
    z-index: 3;
    transform: translateX(400px) scale(0.8) translateZ(-200px);
    opacity: 0.7;
}
.card.right-2 img {
    filter: grayscale(100%);
}
/* New card positions for the additional two cards */
.card.left-3 {
    z-index: 2;
    transform: translateX(-600px) scale(0.7) translateZ(-300px);
    opacity: 0.5;
}
.card.left-3 img {
    filter: grayscale(100%);
}
.card.right-3 {
    z-index: 2;
    transform: translateX(600px) scale(0.7) translateZ(-300px);
    opacity: 0.5;
}
.card.right-3 img {
    filter: grayscale(100%);
}
.card.hidden {
    opacity: 0;
    pointer-events: none;
}
/* Member Info Section */
.member-info {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}
.member-name {
    font-size: 2rem;
    color: #b79632;
    margin-bottom: 10px;
    transition: opacity 0.3s ease;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
.member-role {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.member-bio {
    margin-top: 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
    text-align: justify;
    line-height: 1.6;
}
.member-bio p {
    color: #cccccc;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
}
/* Navigation arrows enhancement */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(183, 150, 50, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #b79632;
    border: 1px solid rgba(183, 150, 50, 0.3);
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}
.nav-arrow:hover {
    background-color: rgba(183, 150, 50, 0.4);
}
.nav-arrow.left {
    left: 20px;
}
.nav-arrow.right {
    right: 20px;
}
/* Dots navigation enhancement */
.dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(183, 150, 50, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background-color: #b79632;
    transform: scale(1.2);
}
/* Lady of Justice Overlay */
.lady-justice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}
.card:hover .lady-justice-overlay {
    opacity: 0.3;
}

.contact-info {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
}
.info-item {
    display: flex;
    margin-bottom: 30px;
    background-color: var(--dark-bg);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(183, 150, 50, 0.2);
    /* Added for performance optimization */
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}
/* Fixed hover effect for info items */
.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(183, 150, 50, 0.15);
    border-color: rgba(183, 150, 50, 0.4);
}
/* Ensure hover effect works even with fade-in class */
.info-item.fade-in:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(183, 150, 50, 0.15) !important;
    border-color: rgba(183, 150, 50, 0.4) !important;
}
.info-item .icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(183, 150, 50, 0.3);
    transition: all 0.3s ease;
}
.info-item:hover .icon {
    transform: scale(1.1);
    background-color: var(--accent-color);
}
.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-color);
    transition: color 0.3s ease;
}
.info-item:hover h3 {
    color: var(--primary-color);
}
.info-item p {
    margin: 0;
    color: #cccccc;
    line-height: 1.6;
    transition: color 0.3s ease;
}
.info-item:hover p {
    color: var(--light-text);
}
.info-item a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.info-item:hover a {
    color: var(--primary-color);
}
.map-container {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(183, 150, 50, 0.2);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/* Office Hours Section */
.office-hours {
    margin-top: 30px;
    background-color: var(--dark-bg);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(183, 150, 50, 0.2);
    transition: all 0.3s ease;
}
.office-hours:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(183, 150, 50, 0.15);
    border-color: rgba(183, 150, 50, 0.4);
}
.office-hours h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}
.office-hours h3 i {
    margin-right: 10px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}
.office-hours:hover h3 i {
    transform: scale(1.2);
    color: var(--accent-color);
}
.office-hours p {
    margin: 0 0 10px 0;
    color: #cccccc;
    line-height: 1.6;
}
.office-hours:hover p {
    color: var(--light-text);
}
/* Social Links */
.social-links {
    display: flex;
    margin-top: 15px;
    gap: 10px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(183, 150, 50, 0.2);
    color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    /* Added for performance optimization */
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}
.social-links a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(183, 150, 50, 0.3);
}
/* Unique International Service Section */
.international-service {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(183, 150, 50, 0.15) 0%, rgba(0, 0, 0, 0.7) 100%);
    border: 1px solid rgba(183, 150, 50, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 30px;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.international-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b79632, transparent);
    animation: shimmer 2s infinite;
}
.international-service::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b79632, transparent);
    animation: shimmer 2s infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.international-service h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #b79632;
    text-align: center;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.international-service h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #b79632;
}
.international-service .globe-icon {
    display: block;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #b79632;
    text-align: center;
    animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.international-service p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
    position: relative;
    z-index: 1;
}
.international-service .highlight {
    color: #b79632;
    font-weight: 500;
    position: relative;
    display: inline-block;
}
.international-service .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(183, 150, 50, 0.3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.international-service .highlight:hover::after {
    transform: scaleX(1);
}
.international-service .world-regions {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    flex-wrap: wrap;
    position: relative;
}
.international-service .world-regions::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 150, 50, 0.5), transparent);
    z-index: 0;
}
.region {
    text-align: center;
    margin: 10px;
    padding: 10px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(183, 150, 50, 0.1);
    border: 1px solid rgba(183, 150, 50, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}
.region:hover {
    background-color: rgba(183, 150, 50, 0.2);
    transform: translateY(-10px) rotateY(15deg);
    box-shadow: 0 10px 20px rgba(183, 150, 50, 0.2);
}
.region i {
    font-size: 24px;
    color: #b79632;
}
.region span {
    display: block;
    font-size: 10px;
    margin-top: 5px;
    color: #cccccc;
}
/* Luxury Footer - Premium 20k Design */
.main-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
    border-top: 1px solid rgba(183, 150, 50, 0.2);
}
/* Luxury Background Pattern */
.main-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23b79632' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}
/* Luxury Accent Line */
.main-footer:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: 1;
}
/* Footer Container */
.footer-container {
    position: relative;
    z-index: 2;
}
/* Footer Content Layout */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 70px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
/* Luxury Logo Section */
.footer-logo {
    margin-bottom: 30px;
}
.footer-logo a {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.footer-logo a span {
    color: var(--primary-color);
    margin-left: 5px;
}
.footer-logo a:hover {
    transform: translateX(5px);
}
.footer-logo a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--light-gold));
    transition: width 0.3s ease;
}
.footer-logo a:hover::after {
    width: 100px;
}
.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 30px;
}
/* Luxury Social Links */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(183, 150, 50, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}
.footer-social a:hover::before {
    left: 100%;
}
.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(183, 150, 50, 0.3);
}
/* Footer Section Titles */
.footer-links h3,
.footer-practice h3,
.footer-contact h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links h3::after,
.footer-practice h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}
/* Footer Links */
.footer-links ul,
.footer-practice ul {
    list-style: none;
}
.footer-links ul li,
.footer-practice ul li {
    margin-bottom: 16px;
    position: relative;
}
.footer-links ul li a,
.footer-practice ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}
.footer-links ul li a::before,
.footer-practice ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
}
.footer-links ul li a:hover,
.footer-practice ul li a:hover {
    color: var(--primary-color);
    padding-left: 25px;
}
.footer-links ul li a:hover::before,
.footer-practice ul li a:hover::before {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 10px var(--primary-color);
}
/* Footer Contact */
.footer-contact address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}
.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.footer-contact .contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
}
.footer-contact .contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}
/* Luxury Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(183, 150, 50, 0.1);
}
.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright {
    display: flex;
    align-items: center;
}
.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
.footer-developer {
    text-align: right;
}
.footer-developer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
.footer-developer span {
    color: var(--primary-color);
    font-weight: 600;
}
/* Footer Bottom Links */
.footer-bottom-links {
    display: flex;
    gap: 25px;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}
.footer-bottom-links a:hover {
    color: var(--primary-color);
}
.footer-bottom-links a:hover::after {
    width: 100%;
}
/* Page Title Section - Enhanced */
.page-title {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23b79632' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}
.page-title .container {
    position: relative;
    z-index: 1;
}
.page-title h1 {
    font-size: 56px;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}
.page-title h1:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}
.page-title p {
    font-size: 20px;
    color: var(--light-text);
}
/* Animations - Enhanced */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}
/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    position: relative;
    padding: 100px 0;
}
.why-choose-us:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23b79632' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}
.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}
.choose-item {
    background-color: var(--dark-bg);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(183, 150, 50, 0.2);
}
.choose-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}
.choose-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(183, 150, 50, 0.3);
    border-color: var(--primary-color);
}
.choose-item:hover:before {
    transform: translateY(0);
}
.choose-item .icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.choose-item:hover .icon {
    transform: scale(1.1);
}
.choose-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}
.logo-img {
    height: 70px; /* Slightly increased for better visibility */
    width: auto;
    display: block;
    transition: all 0.3s ease;
    /* Enhancements for clarity and sharpness */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: 
        contrast(1.2) /* Increases contrast for better definition */
        brightness(1.1) /* Slightly brighter to stand out */
        saturate(1.3); /* Enhances the blue color #092d52 */
    /* Add a subtle shadow for depth */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Ensure smooth rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.logo:hover .logo-img {
    transform: scale(1.05);
    filter: 
        contrast(1.3) 
        brightness(1.15) 
        saturate(1.4);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
:root {
  --dark-gold: #b79632;
  --luxury-black: #0a0a0a;
  --white: #ffffff;
}
/* Banner Section Styles */
.banner-section {
    padding: 0;
    text-align: center;
    width: 100%;  /* Ensures the banner takes full width of the page */
}

/* Banner Container with Responsive Design */
.banner-container {
    position: relative;
    width: 100%;          /* Full width */
    height: 50vh;         /* Responsive height based on viewport */
    margin: 0 auto;       /* Centers the banner */
    overflow: hidden;     /* Ensures no overflow from the image */
    max-width: 100%;      /* Prevents banner from overflowing on smaller screens */
    min-height: 300px;    /* Minimum height for small screens */
    max-height: 500px;    /* Maximum height for large screens */
}

/* Banner Image */
.banner-image {
    position: absolute;  /* Allows us to position the image */
    top: 50%;  /* Center vertically */
    left: 50%;  /* Center horizontally */
    width: 70%;  /* Banner width at 70% of the container */
    height: 70%;  /* Banner height at 70% of the container */
    background-size: cover;  /* Ensures the image covers the entire container */
    background-position: center;  /* Centers the image */
    border: 5px solid var(--dark-gold);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(183, 150, 50, 0.8);  /* Initial glow */
    transform: translate(-50%, -50%);  /* Adjust to center the image exactly */
    z-index: 2;  /* Ensure image is on top */
    overflow: hidden;  /* Ensures any overflow is clipped inside the banner */
    cursor: pointer;  /* Indicates the image is clickable */
}
.banner-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: block;
}
/* Contact Us Button */
.contact-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);  /* Centers the button horizontally */
    padding: 14px 32px;
    font-size: 18px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(183, 150, 50, 0.3);
    z-index: 3;  /* Ensure button is on top */
}
/* Button Hover Effect */
.contact-btn:hover {
    background-color: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(183, 150, 50, 0.4);
}
.contact-btn:focus {
    outline: none;
}
/* Additional Luxury Enhancements */
/* Enhanced text shadows for headings */
h1, h2, h3, h4, h5, h6 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
/* Enhanced button styling with more luxurious effects */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    padding: 12px 30px;
    box-shadow: 0 4px 15px rgba(183, 150, 50, 0.3);
}
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    transition: all 0.3s ease;
}
.btn:hover::after {
    background: linear-gradient(45deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
}
/* Enhanced card hover effects */
.practice-item, .mission-box, .vision-box, .choose-item {
    position: relative;
    overflow: hidden;
}
.practice-item::after, .mission-box::after, .vision-box::after, .choose-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(183, 150, 50, 0.1) 0%, rgba(183, 150, 50, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.practice-item:hover::after, .mission-box:hover::after, .vision-box:hover::after, .choose-item:hover::after {
    opacity: 1;
}

/* Enhanced social links */
.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(183, 150, 50, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(183, 150, 50, 0.2);
}
.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(183, 150, 50, 0.3);
}
/* Enhanced footer links */
.footer-links ul li a,
.footer-practice ul li a {
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
}
.footer-links ul li a::before,
.footer-practice ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}
.footer-links ul li a:hover,
.footer-practice ul li a:hover {
    color: var(--primary-color);
    padding-left: 25px;
}
.footer-links ul li a:hover::before,
.footer-practice ul li a:hover::before {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 10px var(--primary-color);
}
/* Enhanced section headers */
.section-header h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}
/* Enhanced info items */
.info-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(183, 150, 50, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}
.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(183, 150, 50, 0.2);
    border-color: rgba(183, 150, 50, 0.4);
}
.info-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(183, 150, 50, 0.3);
}

/* Practice Areas Overview Section */
.practice-areas-overview {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    padding: 80px 0;
    position: relative;
}

.practice-areas-overview:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23b79632' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.practice-card {
    background-color: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(183, 150, 50, 0.2);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(183, 150, 50, 0.2);
    border-color: rgba(183, 150, 50, 0.4);
}

.practice-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.practice-card-image:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.practice-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.practice-card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 12px;
}

.practice-card-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.practice-card-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    flex-grow: 1;
}

.practice-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.practice-card-link:hover {
    color: var(--white);
}

.practice-card-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.practice-card-link:hover i {
    transform: translateX(5px);
}

/* RTL Support for Arabic */
[dir="rtl"] .practice-card-content h3:after {
    left: auto;
    right: 0;
}

[dir="rtl"] .practice-card-link i {
    margin-left: 0;
    margin-right: 8px;
}

[dir="rtl"] .practice-card-link:hover i {
    transform: translateX(-5px);
}

/* Practice Detail Section Styles */
.practice-areas-detail {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    position: relative;
}

.practice-areas-detail:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23b79632' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.practice-detail-item {
    background-color: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(183, 150, 50, 0.2);
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    scroll-margin-top: 100px;
}

.practice-detail-item:last-child {
    margin-bottom: 0;
}

.practice-detail-header {
    padding: 30px 40px;
    border-bottom: 1px solid rgba(183, 150, 50, 0.2);
    position: relative;
}

.practice-detail-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.practice-detail-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.practice-detail-content {
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.practice-detail-text {
    flex: 1;
    min-width: 300px;
}

.practice-detail-text p {
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.8;
}

.practice-detail-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.practice-detail-text ul li {
    margin-bottom: 10px;
    color: var(--light-text);
    position: relative;
    padding-left: 15px;
}

.practice-detail-text ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.practice-detail-image {
    flex: 0 0 350px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center;
    background-color: #222;
}

/* RTL Support for Arabic */
[dir="rtl"] .practice-detail-header:after {
    left: auto;
    right: 40px;
}

[dir="rtl"] .practice-detail-text ul {
    margin-left: 0;
    margin-right: 20px;
}

[dir="rtl"] .practice-detail-text ul li {
    padding-left: 0;
    padding-right: 15px;
}

[dir="rtl"] .practice-detail-text ul li:before {
    left: auto;
    right: 0;
}

/* Add this to header.css or style.css */
.header-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

/* Enhanced Media Queries for Mobile Responsiveness */

/* Mobile Portrait (max-width: 600px) */
@media (max-width: 600px) {
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: var(--font-size-h1-mobile) !important;
    }
    h2 {
        font-size: var(--font-size-h2-mobile) !important;
    }
    h3 {
        font-size: var(--font-size-h3-mobile) !important;
    }
    p {
        font-size: var(--font-size-p-mobile);
    }
    
    /* Section padding adjustments */
    section {
        padding: 60px 0;
    }
    
    /* Hero section adjustments */
    .hero {
        min-height: 70vh;
    }
    .hero-content {
        flex: 0 0 100%;
        padding-right: 0;
        text-align: center;
    }
    .hero h1 {
        font-size: 36px !important;
        margin-bottom: 20px;
    }
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .hero-image {
        display: none;
    }
    
    /* About section adjustments */
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    .about-text, .about-image-frame {
        flex: 0 0 100%;
    }
    .about-image-frame {
        min-height: 250px;
    }
    
    /* Mission & Vision section adjustments */
    .mission-vision-grid {
        flex-direction: column;
    }
    .mission-box, .vision-box {
        flex: 0 0 100%;
        padding: 30px 20px;
    }
    
    /* Practice Areas section adjustments */
    .practice-grid {
        grid-template-columns: 1fr;
    }
    
    /* Team section adjustments */
    .carousel-container {
        height: 350px;
    }
    .card {
        width: 220px;
        height: 300px;
    }
    .card.left-1 {
        transform: translateX(-150px) scale(0.9) translateZ(-100px);
    }
    .card.right-1 {
        transform: translateX(150px) scale(0.9) translateZ(-100px);
    }
    .card.left-2, .card.right-2, .card.left-3, .card.right-3 {
        display: none;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-social {
        justify-content: center;
    }
    
    /* Banner section adjustments */
    .banner-container {
        height: 40vh;
        min-height: 250px;
    }
    .banner-image {
        width: 90%;
        height: 80%;
        border-width: 3px;
    }
    
    /* Contact adjustments */
    .contact-info {
        flex: 0 0 100%;
    }
    
    /* Practice Areas Overview adjustments */
    .practice-grid {
        grid-template-columns: 1fr;
    }
    
    /* Practice Detail adjustments */
    .practice-detail-content {
        flex-direction: column;
    }
    .practice-detail-image {
        flex: 0 0 100%;
        height: 200px;
    }
}

/* Mobile Landscape (601px - 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 20px;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 36px !important;
    }
    h2 {
        font-size: 30px !important;
    }
    h3 {
        font-size: 26px !important;
    }
    
    /* Section padding adjustments */
    section {
        padding: 70px 0;
    }
    
    /* Hero section adjustments */
    .hero {
        min-height: 80vh;
    }
    .hero-content {
        flex: 0 0 60%;
        padding-right: 30px;
    }
    .hero h1 {
        font-size: 48px !important;
    }
    .hero p {
        font-size: 18px;
    }
    .hero-image {
        flex: 0 0 40%;
        height: 400px;
    }
    
    /* About section adjustments */
    .about-content {
        flex-direction: column;
    }
    .about-text, .about-image-frame {
        flex: 0 0 100%;
    }
    .about-image-frame {
        min-height: 300px;
    }
    
    /* Mission & Vision section adjustments */
    .mission-vision-grid {
        flex-direction: column;
    }
    .mission-box, .vision-box {
        flex: 0 0 100%;
    }
    
    /* Practice Areas section adjustments */
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Team section adjustments */
    .carousel-container {
        height: 400px;
    }
    .card {
        width: 240px;
        height: 340px;
    }
    .card.left-1 {
        transform: translateX(-170px) scale(0.9) translateZ(-100px);
    }
    .card.right-1 {
        transform: translateX(170px) scale(0.9) translateZ(-100px);
    }
    .card.left-2, .card.right-2, .card.left-3, .card.right-3 {
        display: none;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    /* Banner section adjustments */
    .banner-container {
        height: 45vh;
        min-height: 280px;
    }
    .banner-image {
        width: 85%;
        height: 75%;
    }
    
    /* Practice Areas Overview adjustments */
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    /* Container adjustments */
    .container {
        padding: 0 20px;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 42px !important;
    }
    h2 {
        font-size: 36px !important;
    }
    h3 {
        font-size: 30px !important;
    }
    
    /* Section padding adjustments */
    section {
        padding: 80px 0;
    }
    
    /* Hero section adjustments */
    .hero {
        min-height: 85vh;
    }
    .hero-content {
        flex: 0 0 55%;
        padding-right: 40px;
    }
    .hero h1 {
        font-size: 56px !important;
    }
    .hero p {
        font-size: 20px;
    }
    .hero-image {
        flex: 0 0 45%;
        height: 500px;
    }
    
    /* About section adjustments */
    .about-content {
        flex-direction: column;
    }
    .about-text, .about-image-frame {
        flex: 0 0 100%;
    }
    .about-image-frame {
        min-height: 350px;
    }
    
    /* Mission & Vision section adjustments */
    .mission-vision-grid {
        flex-direction: column;
    }
    .mission-box, .vision-box {
        flex: 0 0 100%;
    }
    
    /* Practice Areas section adjustments */
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Team section adjustments */
    .carousel-container {
        height: 420px;
    }
    .card {
        width: 260px;
        height: 360px;
    }
    .card.left-1 {
        transform: translateX(-180px) scale(0.9) translateZ(-100px);
    }
    .card.right-1 {
        transform: translateX(180px) scale(0.9) translateZ(-100px);
    }
    .card.left-2, .card.right-2 {
        display: block;
        transform: translateX(-360px) scale(0.8) translateZ(-200px);
    }
    .card.right-2 {
        transform: translateX(360px) scale(0.8) translateZ(-200px);
    }
    .card.left-3, .card.right-3 {
        display: none;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    /* Banner section adjustments */
    .banner-container {
        height: 50vh;
        min-height: 350px;
    }
    .banner-image {
        width: 80%;
        height: 75%;
    }
    
    /* Practice Areas Overview adjustments */
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Landscape and Small Desktop (993px - 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
    /* Container adjustments */
    .container {
        padding: 0 20px;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 48px !important;
    }
    h2 {
        font-size: 38px !important;
    }
    h3 {
        font-size: 32px !important;
    }
    
    /* Section padding adjustments */
    section {
        padding: 90px 0;
    }
    
    /* Hero section adjustments */
    .hero {
        min-height: 90vh;
    }
    .hero-content {
        flex: 0 0 55%;
        padding-right: 40px;
    }
    .hero h1 {
        font-size: 64px !important;
    }
    .hero p {
        font-size: 22px;
    }
    .hero-image {
        flex: 0 0 45%;
        height: 550px;
    }
    
    /* About section adjustments */
    .about-content {
        flex-direction: row;
    }
    .about-text {
        flex: 0 0 55%;
    }
    .about-image-frame {
        flex: 0 0 45%;
        min-height: 400px;
    }
    
    /* Mission & Vision section adjustments */
    .mission-vision-grid {
        flex-direction: row;
    }
    .mission-box, .vision-box {
        flex: 0 0 calc(50% - 20px);
    }
    
    /* Practice Areas section adjustments */
    .practice-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Team section adjustments */
    .carousel-container {
        height: 440px;
    }
    .card {
        width: 270px;
        height: 370px;
    }
    .card.left-1 {
        transform: translateX(-190px) scale(0.9) translateZ(-100px);
    }
    .card.right-1 {
        transform: translateX(190px) scale(0.9) translateZ(-100px);
    }
    .card.left-2, .card.right-2 {
        display: block;
        transform: translateX(-380px) scale(0.8) translateZ(-200px);
    }
    .card.right-2 {
        transform: translateX(380px) scale(0.8) translateZ(-200px);
    }
    .card.left-3, .card.right-3 {
        display: none;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    /* Banner section adjustments */
    .banner-container {
        height: 55vh;
        min-height: 400px;
    }
    .banner-image {
        width: 75%;
        height: 75%;
    }
    
    /* Practice Areas Overview adjustments */
    .practice-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop (1201px and above) */
@media (min-width: 1201px) {
    /* These styles are already defined in the main CSS */
    /* No need to override unless specific adjustments needed */
}

/* Landscape-specific adjustments */
@media (max-width: 992px) and (orientation: landscape) {
    /* Hero section adjustments for landscape */
    .hero {
        min-height: 100vh;
    }
    .hero-content {
        flex: 0 0 50%;
    }
    .hero-image {
        flex: 0 0 50%;
        height: 400px;
    }
    
    /* Team section adjustments for landscape */
    .carousel-container {
        height: 350px;
    }
    .card {
        width: 220px;
        height: 300px;
    }
    
    /* Section padding adjustments for landscape */
    section {
        padding: 60px 0;
    }
}

/* High-resolution devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Adjustments for high-DPI displays */
    .hero-image, .about-image, .card img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}
/* Fix text alignment on mobile for contact page */
@media (max-width: 768px) {
    .international-service p {
        text-align: left !important; /* For English version */
    }
}

/* For Arabic version */
[dir="rtl"] .international-service p {
    text-align: right !important;
}
/* Print styles */
@media print {
    /* Hide non-essential elements for print */
    .hero-buttons, .social-links, .footer-bottom-links, .nav-arrow, .dots {
        display: none;
    }
    
    /* Adjust colors for print */
    body, .container, .section-header, .practice-item, .mission-box, .vision-box, .choose-item {
        background: white !important;
        color: black !important;
    }
    
    /* Remove unnecessary decorations */
    .hero::before, .hero::after, .hero-particles, .hero-light-beams, .hero-decoration,
    .practice-item::before, .mission-box::before, .vision-box::before, .choose-item::before {
        display: none;
    }
}

