        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Open+Sans:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Roboto+Slab:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  /* PRIMARY THEME COLORS */
  --theme-primary: #b98835;           /* Main brand color (golden) */
  --theme-primary-light:rgb(201, 159, 75);     /* Lighter version */
  --theme-primary-dark: #a67628;      /* Darker version */
  
  /* GRADIENTS */
  --theme-gradient: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-light));
  --theme-gradient-reverse: linear-gradient(135deg, var(--theme-primary-light), var(--theme-primary));
  
  /* TEXT COLORS */
  --theme-text-primary: #1a1a1a;      /* Main text color */
  --theme-text-secondary: #666;       /* Secondary text */
  --theme-text-light: #999;           /* Light text */
  
  /* BACKGROUNDS */
  --theme-bg-primary: #f7f7f7;        /* Main background */
  --theme-bg-secondary: #ffffff;      /* Secondary background */
  --theme-bg-light: #fafafa;          /* Light background */
  
  /* SHADOWS & EFFECTS */
  --theme-shadow: 0 8px 25px rgba(185, 136, 53, 0.3);
  --theme-shadow-hover: 0 15px 35px rgba(185, 136, 53, 0.4);
  --theme-border: 1px solid rgba(185, 136, 53, 0.3);
}

/* ========================================
   DIFFERENT THEME EXAMPLES
   Uncomment one of these to change theme
======================================== */

/* BLUE PROFESSIONAL THEME */
/*
:root {
  --theme-primary: #2563eb;
  --theme-primary-light: #3b82f6;
  --theme-primary-dark: #1d4ed8;
  --theme-gradient: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-light));
  --theme-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  --theme-shadow-hover: 0 15px 35px rgba(37, 99, 235, 0.4);
  --theme-border: 1px solid rgba(37, 99, 235, 0.3);
}
*/

/* GREEN NATURE THEME */
/*
:root {
  --theme-primary: #059669;
  --theme-primary-light: #10b981;
  --theme-primary-dark: #047857;
  --theme-gradient: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-light));
  --theme-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
  --theme-shadow-hover: 0 15px 35px rgba(5, 150, 105, 0.4);
  --theme-border: 1px solid rgba(5, 150, 105, 0.3);
}
*/

/* NEW GREEN */
/* :root {
  --theme-primary: #0d4d54;
  --theme-primary-light:#256b73;
  --theme-primary-dark: #047857;
  --theme-gradient: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-light));
  --theme-shadow: 0 8px 25px rgba(37, 107, 115, 0.3);
  --theme-shadow-hover: 0 15px 35px rgba(5, 150, 105, 0.4);
  --theme-border: 1px solid rgba(5, 150, 105, 0.3);
} */
/* RED POWER THEME */
/*
:root {
  --theme-primary: #dc2626;
  --theme-primary-light: #ef4444;
  --theme-primary-dark: #b91c1c;
  --theme-gradient: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-light));
  --theme-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  --theme-shadow-hover: 0 15px 35px rgba(220, 38, 38, 0.4);
  --theme-border: 1px solid rgba(220, 38, 38, 0.3);
}
*/
        body {
            margin: 0;
            padding: 0;
            /* font-family: 'Nunito', sans-serif; */
            
            font-family: 'Open Sans', sans-serif;
            
            /* font-family: 'Work Sans', sans-serif; */
/* font-family: 'Inter', sans-serif; */
/* font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; */
 /* font-family: Verdana, Geneva, sans-serif; */
            color: white;
        }

        body {
            font-family: Helvetica, Arial, sans-serif;
            
        }

        h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-family: Helvetica, Arial, sans-serif;
            font-family: 'Open Sans', sans-serif;

}

        a{
            text-decoration: none !important;
        }
        .hero-section {
            position: relative;
            width: 100%;
            height: 65vh;
            min-height: 800px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding-left: 5%;
            overflow: hidden;
            perspective: 1px;
            transform-style: preserve-3d;
        }

        .background-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            display: flex;
            flex-direction: column;
            transform: translateZ(-1px) scale(2);
        }

        .background-slider div {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .background-slider div:nth-child(1) {
            background-image: url('/images/4.png');
            opacity: 1;
        }
        .background-slider div:nth-child(2) {
            background-image: url('/images/IMG_0061.JPG');
        }
        .background-slider div:nth-child(3) {
            background-image: url('/images/lawyer-background.jpg');
        }

        .background-slider div:nth-child(4) {
            background-image: url('/images/3.png');
        }
        /* .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.65);
            z-index: -1;
        } */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        background: linear-gradient(90deg, 
            rgb(26, 26, 26) 0%, 
            rgba(73, 73, 73, 0.55) 55%, 
            rgba(223, 223, 223, 0) 100%
        );
            z-index: -1;

    }

        .header-texts {
            margin-bottom: 5vh;
            min-width: 30%;
            max-width: 770px;
            color: #f7f7f7;
        }

        .header-texts h1 {
            margin: 0;
            font-size: 2.3rem;
            text-align: left;
            /* font-family: 'Merriweather', serif; */
            /* font-family: 'Playfair Display', serif;
            font-family: 'Open Sans', sans-serif; */
            /* Renaissance-style font */
            font-weight: 600;
            line-height: 1.2;
            position: relative;
        }

        .header-texts h1::after {
            content: '';
            display: block;
            width: 400px;
            height: 1px;
            background: #b98835;
            position: absolute;
            bottom: -10px;
            left: 0;
        }

        .header-texts h2 {
            margin: 30px 0 30px;
            font-size: 2.1rem;
            text-align: left;
            width: 100%;
            /* Increased width to prevent wrapping */
            line-height: 1.4;
            /* font-weight: 600; */
            /* letter-spacing: 2px; */
            /* font-family: 'Nunito', sans-serif; */
            /* font-family: 'Lato', serif; */
            /* font-family: 'Montserrat', sans-serif; */
            font-family: 'Open Sans', sans-serif;
        }
        .header-texts h2:first-of-type{
            font-size: 1rem ;
            margin-top: 20px;
        }
        .typing-effect {
            /* color: #b98835; */
            color:#d8a03d;
            /* Updated color for typing effect */
            border-right: 2px solid white;
            white-space: nowrap;
            overflow: hidden;
        }

        .explanation-text {
            font-size: 1.5rem;
            margin-top: 10px;
            /* font-family: 'Lato', sans-serif; */
            font-family: 'Montserrat', sans-serif;
            /* font-weight: 600; */
            
            /* width: 80%; */
            line-height: 1.5;
        }

        .header-buttons {
            margin-top: 35px;
        }
.header-buttons a, 
.header-buttons button {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 16px 20px;
    border: 1px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 150px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-right: 16px;
}

.header-buttons a i, 
.header-buttons button i {
    transition: transform 0.3s ease;
}

.header-buttons a:hover i, 
.header-buttons button:hover i {
    transform: translateX(5px);
}

.header-buttons .reservation {
    background: var(--theme-primary) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(167, 120, 41, 0.3);
    color: white;
    box-shadow: var(--theme-shadow) !important;
}

.header-buttons .reservation:hover {
    background: #a67628;
    box-shadow: 0 12px 40px rgba(185, 136, 53, 0.25);
}

.header-buttons .read-more {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-buttons .read-more:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(185, 136, 53, 0.4);
    color: #c4963f;
}

        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 2px 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            z-index: 999;
            box-sizing: border-box;
            transition: all 0.3s ease-in-out;
        }
        .nav-menu {
            background: transparent;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px); /* adds subtle depth */
        }
        .logo {
            display: flex;
            align-items: center;
            justify-content: start; /* Adjust as needed */
            padding: 10px 0;
        }

        .logo img {
            max-width: 100%;
            height: auto;
        }

        .nav-menu.scrolled {
            background: white;
            color: black;
        }

        .nav-menu.scrolled .nav-links a,
        .nav-menu.scrolled h2 {
            color: black;
        }

        .nav-menu h2 {
            margin: 0;
            font-size: 1.5rem;
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            color: inherit;
        }

        .nav-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: #f5f5f5;
            text-decoration: none;
            /* font-family: 'Nunito', sans-serif; */
            /* font-family: 'Open Sans', sans-serif; */
            font-size: 1.1rem;
            transition: color 0.3s;
            text-decoration: none;
        }
.nav-links a {
    position: relative;
    overflow: hidden;
    font-weight: 500; /* instead of 600 */
    padding: 5px 15px; /* instead of 5px 10px */
    margin: 0 5px; /* add some margin */
}


.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b98835, transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: #b98835;
    transform: translateY(-2px);
    text-decoration: none;
}

/* For scrolled state */
.nav-menu.scrolled .nav-links a:hover {
    color: #b98835;
}

        .hamburger {
            display: none;
        }

        .titles-part {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            background-color: white;
            color: black;
            padding: 20px 0;
        }

        .titles-part div {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 10px 20px;
            box-sizing: border-box;
        }

        .icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 2px solid #b98835;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            box-sizing: border-box;
            overflow: hidden;
            transition: all 200ms;

        }
		/* .icon-wrapper:hover {
            width: 100px;
            height: 100px;
            transition: all 200ms;
            
        } */

        .titles-part img {
            width: 40px;
            height: 40px;
            box-sizing: border-box;
        }

        .titles-part h3 {
            margin: 0;
            font-size: 1.25rem;
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            color: black;
            line-height: 1.4;
        }

        .titles-part p {
            margin: 10px 0 0;
            font-size: 1rem;
            font-family: 'Nunito', sans-serif;
            color: black;
            line-height: 1.4;
        }

        .typing-effect {
            border-right: 2px solid white;
            white-space: nowrap;
            overflow: hidden;
        }

        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }

        @media (min-width: 576px) {
            .container {
                max-width: 540px;
            }
        }

        @media (min-width: 768px) {
            .container {
                max-width: 720px;
                max-width: 100%;

            }
        }

        @media (min-width: 992px) {
            .container {
                max-width: 960px;
                max-width: 100%;

            }
        }

        @media (min-width: 1200px) {
            .container {
                max-width: 1340px;
            }
        }

        .heading-section h2 {
            font-family: 'Merriweather', serif;
            color: #1d1d1d;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                background: white;
                /* Change background to white */
                color: black;
                /* Change text color to black */
                position: absolute;
                top: 80px;
                /* Adjusted to ensure it opens below the nav */
                right: 0;
                padding: 20px;
                /* Increased padding for better spacing */
                border-radius: 0 0 10px 10px;
                /* Rounded bottom corners */
                width: 100%;
                box-sizing: border-box;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                /* Added shadow for better visibility */
            }

            .nav-links a {
                color: black;
                /* Ensure links are black */
                padding: 15px 0;
                /* Added padding for better spacing */
                text-align: center;
                /* Center aligned text */
                display: block;
                /* Block level for full width clickable area */
            }

            .nav-links.active {
                display: flex;
            }

            .hamburger {
                display: flex;
                cursor: pointer;
            }

            .ham8 .line {
                stroke: white;
            }

            .nav-menu.scrolled .ham8 .line {
                stroke: black;
            }
        }

        .ham8 .top {
            stroke-dasharray: 40 160;
        }

        .ham8 .middle {
            stroke-dasharray: 40 142;
            transform-origin: 50%;
            transition: transform 400ms;
        }

        .ham8 .bottom {
            stroke-dasharray: 40 85;
            transform-origin: 50%;
            transition: transform 400ms, stroke-dashoffset 400ms;
        }

        .ham8.active .top {
            stroke-dashoffset: -64px;
        }

        .ham8.active .middle {
            transform: rotate(90deg);
        }

        .ham8.active .bottom {
            stroke-dashoffset: -64px;
        }

        .hamRotate.active {
            transform: rotate(45deg);
        }

        .hamRotate180.active {
            transform: rotate(180deg);
        }

        .ham {
            -webkit-tap-highlight-color: transparent;
            transition: transform 400ms;
            -moz-user-select: none;
            -webkit-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .line {
            fill: none;
            transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
            stroke: #000;
            stroke-width: 2;
            /* Thinner lines */
            stroke-linecap: round;
        }


        @media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: start;
        padding: 20px;
    }

    .hero-section .header-texts{
        margin-top: 35px
    }
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-section h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-section .explanation-text {
        font-size: 1rem;
    }

    .hero-section .header-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-section .header-buttons a,
    .hero-section .header-buttons button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .slider-indicators {
        bottom: 10px;
        gap: 8px;
    }

    .background-slider div {
        background-size: cover;
        background-position: center;
    }
}

/* Enhanced Mobile CSS for Hero Section Headers */

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .hero-section {
        min-height: 75vh;
        padding: 15px;
        padding-top: 80px; /* Account for fixed nav */
    }

    .header-texts {
        margin-bottom: 3vh;
        max-width: 100%;
        padding: 0 10px;
    }

    .header-texts h1 {
        font-size: 1.7rem !important;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .header-texts h1::after {
        width: 200px; /* Shorter underline for mobile */
        height: 2px;
        bottom: -8px;
    }

    .header-texts h2 {
        font-size: 1.2rem !important;
        line-height: 1.2;
        margin: 15px 0 20px;
    }

    .header-texts h2:first-of-type {
        font-size: 0.9rem !important;
        margin-top: 15px;
    }

    .typing-effect {
        font-size: 1.1rem;
        border-right: 1px solid white; /* Thinner cursor */
    }

    .explanation-text {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-top: 15px;
    }
}

/* Medium Mobile Devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-section {
        padding: 20px;
        padding-top: 100px;
    }

    .header-texts {
        max-width: 90%;
    }

    .header-texts h1 {
        font-size: 1.9rem !important;
        line-height: 1.15;
    }

    .header-texts h1::after {
        width: 250px;
    }

    .header-texts h2 {
        font-size: 1.4rem !important;
        line-height: 1.25;
    }

    .header-texts h2:first-of-type {
        font-size: 0.95rem !important;
    }

    .typing-effect {
        font-size: 1.3rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 90vh;
        padding: 10px 20px;
    }

    .header-texts {
        margin-bottom: 2vh;
    }

    .header-texts h1 {
        font-size: 1.6rem !important;
        margin-bottom: 10px;
    }

    .header-texts h2 {
        font-size: 1.3rem !important;
        margin: 10px 0 15px;
    }

    .header-buttons {
        margin-top: 20px;
    }
}

/* Button improvements for mobile */
/* Add this to your existing mobile CSS section */

@media (max-width: 768px) {
    .header-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center; /* This centers the buttons */
        width: 100%;
    }

    .header-buttons a,
    .header-buttons button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: 0.9rem !important;
        padding: 14px 20px !important;
        margin-right: 0 !important;
        margin-left: auto !important;  /* ADD THIS LINE */
        margin-right: auto !important; /* ADD THIS LINE */
        display: flex !important;      /* ADD THIS LINE */
    }

    /* Specifically target the read-more button */
    .header-buttons .read-more {
        margin: 0 auto !important;    /* ADD THIS LINE */
        text-align: center !important; /* ADD THIS LINE */
    }
}

/* Typography adjustments for mobile readability */
@media (max-width: 768px) {
    .header-texts h1,
    .header-texts h2 {
        text-align: center;
        width: 100%;
    }

    .header-texts h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Ensure text doesn't get cut off */
    .header-texts {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Very small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .header-texts h1 {
        font-size: 1.5rem !important;
    }

    .header-texts h2 {
        font-size: 1.1rem !important;
    }

    .header-texts h2:first-of-type {
        font-size: 0.8rem !important;
    }

    .typing-effect {
        font-size: 1rem;
    }

    .explanation-text {
        font-size: 0.85rem;
    }

    .header-buttons a,
    .header-buttons button {
        font-size: 0.8rem !important;
        padding: 12px 16px !important;
    }
}
      
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-toggle {
    display: flex !important;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.language-toggle img {
    width: 16px;
    height: 12px;
    border-radius: 2px;
}

.language-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-dropdown:hover .language-toggle i {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e8eaed;
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu a {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 15px !important;
    color: #333 !important;
    text-decoration: none;
    font-size: 0.9rem !important;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 4px;
}

.language-menu a:hover {
    background: #f8f9fa;
    color: #b98835 !important;
    transform: translateX(3px);
}

.language-menu img {
    width: 16px;
    height: 12px;
    border-radius: 2px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .language-dropdown {
        width: 100%;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
    .language-toggle {
        justify-content: center;
        padding: 10px 0;
        color: black !important;
    }
    
    .language-menu {
        position: static;
        background: #f8f9fa;
        border: none;
        border-radius: 6px;
        margin-top: 10px;
        width: 100%;
        /* Keep it hidden by default on mobile too */
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: all 0.3s ease;
        box-shadow: none;
    }
    
    .language-dropdown:hover .language-menu {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
    }
    
    .language-menu a {
        color: black !important;
        margin: 0;
        justify-content: center;
        padding: 8px 15px !important;
    }
    
    .language-menu a:hover {
        background: white;
    }
}
/* Add this to your existing CSS */
@media (max-width: 768px) {
    .language-dropdown.mobile-open .language-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 200px !important;
    }
    
    /* Remove hover effect on mobile */
    .language-dropdown:hover .language-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }
    
    .language-dropdown.mobile-open:hover .language-menu,
    .language-dropdown.mobile-open .language-menu {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
    }

     /* Rotate icon when mobile dropdown is open */
    .language-dropdown.mobile-open .language-toggle i {
        transform: rotate(180deg);
    }
    
    /* Remove hover rotation on mobile */
    .language-dropdown:hover .language-toggle i {
        transform: none;
    }
    
    .language-dropdown.mobile-open .language-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 200px !important;
    }
    
    /* Remove hover effect on mobile */
    .language-dropdown:hover .language-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }
    
    .language-dropdown.mobile-open:hover .language-menu,
    .language-dropdown.mobile-open .language-menu {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
    }
}
/* existing mobile CSS */
@media (max-width: 768px) {
   
}

            .hero-section {
                position: relative; /* Important to allow absolute positioning of indicators */
            }
/* Default styling for all screen sizes */
.slider-indicators {
    position: absolute;
    bottom: 20px; /* Adjust vertical positioning */
    right: 5%;
    display: flex;
    gap: 10px; /* Space between indicators */
    width: 40%; /* Default width for all indicators */
    justify-content: right;
}

.slider-indicators .line {
    position: relative;
    height: 3px; /* Height of the progress bar */
    background-color: #bbb; /* Inactive color */
    overflow: hidden;
    border-radius: 5px; /* Rounded edges */
}

.slider-indicators .line .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color:rgb(225, 159, 44); /* Active progress bar color */
    transition: width 3s linear; /* Smooth animation */
}

/* Adjust widths for large screens */
@media (min-width: 1024px) {
    .slider-indicators .line {
        width: 12%; /* Narrower lines for large screens */
    }
}

/* Adjust widths for medium screens */
@media (max-width: 1024px) and (min-width: 768px) {
    .slider-indicators .line {
        width: 25%; /* Slightly larger width for tablets */
    }
}

/* Adjust widths for small screens */
@media (max-width: 768px) {
    .slider-indicators {
        width: 90%; /* Allow more width on mobile */
    }

    .slider-indicators .line {
        width: 30%; /* Wider lines for small screens */
    }
}

          /* Sophisticated Presentation Section */
        .presentation-section {
            padding: 50px 0;
            /* background: linear-gradient(135deg, #f7f7f7 0%, #fafafa 50%, #f5f5f5 100%); */
            position: relative;
            overflow: hidden;
            min-height: 70vh;
            display: flex;
            align-items: center;
            background-color: #f7f7f7;

        }

        /* Elegant Background Patterns */
        .presentation-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: 
                linear-gradient(45deg, transparent 40%, rgba(185, 136, 53, 0.02) 41%, rgba(185, 136, 53, 0.02) 42%, transparent 43%),
                linear-gradient(-45deg, transparent 40%, rgba(185, 136, 53, 0.015) 41%, rgba(185, 136, 53, 0.015) 42%, transparent 43%); */
            background-size: 80px 80px;
            animation: subtlePatternMove 40s linear infinite;
            z-index: 1;
        }

        .presentation-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: 
                radial-gradient(circle at 20% 20%, rgba(185, 136, 53, 0.04) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(212, 168, 83, 0.03) 0%, transparent 60%); */
            animation: gentleFloat 25s ease-in-out infinite;
            z-index: 2;
        }

        @keyframes subtlePatternMove {
            0% { background-position: 0 0, 0 0; }
            100% { background-position: 80px 80px, -80px 80px; }
        }

        @keyframes gentleFloat {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-15px) scale(1.02); }
        }

        .container-fluid {
            position: relative;
            z-index: 10;
            max-width: 1200px;
        }

        /* Enhanced Content Layout */
        .presentation-content {
            display: flex;
            align-items: center;
            gap: 80px;
            min-height: 40vh;
        }

        /* Professional Image Section */
        .image-section {
            flex: 0 0 45%;
            position: relative;
        }

        .img-person-wrapper {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .img-person {
            background-size: cover;
            background-position: center;
            width: 100%;
            height: 500px;
            width: 465px;
            border-radius: 20px;
            position: relative;
            z-index: 4;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            transition: all 0.6s ease;
        }

        /* .img-person:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
        } */

        .image-frame {
            position: absolute;
            top: 30px;
            left: -20px;
            width: 100%;
            height: 500px;
            width: 465px;
            border: 1px solid #b98835;
            border-radius: 20px;
            z-index: 1;
            transition: all 0.6s ease;
        }

        /* .img-person:hover + .image-frame {
            transform: translate(-10px, 10px);
        } */

        /* Professional Badge */
        .professional-badge {
            position: absolute;
            top: -30px;
            right: -40px;
            z-index: 5;
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            color: white;
            padding: 25px 30px;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            /* transform: rotate(5deg); */
            transition: all 0.6s ease;
        }

        .professional-badge:hover {
            transform: rotate(0deg) scale(1.05);
        }

        .professional-badge h4 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
        }

        .professional-badge span {
            color: #b98835;
            font-weight: 700;
        }

        /* Elegant Content Section */
        .content-section {
            flex: 1;
            padding-left: 40px;
        }

        /* Professional Stats */
        .achievement-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
        }

        .stat-box {
            text-align: center;
            padding: 20px 15px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(185, 136, 53, 0.2);
            border-radius: 15px;
            transition: all 0.4s ease;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(185, 136, 53, 0.15);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: #b98835;
            display: block;
        }

        .stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }

        /* Sophisticated Typography */
        .section-pretitle {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--theme-primary) !important;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 20px;
            position: relative;
        }

        .presentation-content .section-pretitle::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 30px;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #b98835, transparent);
            /* background: linear-gradient(90deg, transparent, #b98835, transparent); */
        }

        .main-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .description-text {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            color: #555;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .highlight-text {
            font-weight: 600;
            color: #1a1a1a;
        }

        /* Professional Contact Info */
        .contact-info {
            /* background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(185, 136, 53, 0.1);
            border-radius: 20px;
            
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05); 
            */
            margin: 20px 0;
            padding: 10px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-family: 'Inter', sans-serif;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-icon {
            width: 25px;
            height: 25px;
            /* background: linear-gradient(135deg, #b98835, #d4a853); */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color:rgb(46, 35, 17);
            font-size: 16px;
        }

        .contact-info .contact-text {
            color: #333;
            font-weight: 500;
            font-size: 14px;
            margin-bottom: 0;
        }

        /* Professional CTA Button */
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            /* background: linear-gradient(135deg, #b98835,rgb(208, 164, 77)); */
            background: var(--theme-gradient) !important;
            color: white;
            padding: 16px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(185, 136, 53, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(185, 136, 53, 0.4);
            color: white;
            text-decoration: none;
        }

        .cta-button i {
            transition: transform 0.4s ease;
        }

        .cta-button:hover i {
            transform: translateX(5px);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .presentation-content {
                flex-direction: column;
                gap: 60px;
                text-align: center;
            }
            .presentation-content .section-pretitle::after {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 50%;
                width: 60px;
                height: 2px;
                background: linear-gradient(90deg, #b98835, transparent);
                /* background: linear-gradient(90deg, transparent, #b98835, transparent); */
            }
            .image-section {
                flex: none;
                order: 1;
            }

            .content-section {
                flex: none;
                order: 2;
                padding-left: 0;
            }

            .achievement-stats {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .presentation-section {
                padding: 80px 0;
            }

            .img-person-wrapper {
                max-width: 350px;
            }

            .img-person {
                width: 400px;

                height: 400px;
            }

            .image-frame {
                height: 400px;
                width: 365px;
            }

            .main-title {
                font-size: 2.5rem;
            }

            .achievement-stats {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }

            .stat-box {
                width: 200px;
            }

            .professional-badge {
                position: static;
                transform: none;
                margin: -20px auto;
                display: inline-block;
                padding: 15px 20px;
            }
            .professional-badge h4{
                font-size: 12px;
            }
        }

        @media (max-width: 576px) {
            .img-person-wrapper {
                max-width: 300px;
            }

            .img-person {
                width: 350px;
                height: 350px;
            }

            .image-frame {
                height: 350px;
                top: 20px;
                left: -20px;
            }

            .main-title {
                font-size: 2.2rem;
            }

            .contact-info {
                padding: 25px 20px;
            }
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f5f5f5;
            color: #333;
        }

        /* Beautiful Pattern Background Section */
        /* .practice-area-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
            position: relative;
            overflow: hidden;
            
        }

        .practice-area-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 40%, rgba(185, 136, 53, 0.04) 41%, rgba(185, 136, 53, 0.04) 42%, transparent 43%),
                linear-gradient(-45deg, transparent 40%, rgba(185, 136, 53, 0.03) 41%, rgba(185, 136, 53, 0.03) 42%, transparent 43%);
            background-size: 60px 60px;
            animation: patternMove 30s linear infinite;
            z-index: 1;
        }

        .practice-area-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(185, 136, 53, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(212, 168, 83, 0.06) 0%, transparent 50%);
            animation: gentleFloat 20s ease-in-out infinite;
            z-index: 2;
        } */
/* REPLACE your .practice-area-section background with this: */
.practice-area-section {
    padding: 80px 0;
    background: 
        linear-gradient(to bottom, 
            #f7f7f7 0%,           /* Presentation section color */
            #f8f9fa 8%,           /* Quick transition */
            #ffffff 15%,          /* Then normal practice area colors */
            #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

/* MODIFY the pattern masks to only affect the very top: */
.practice-area-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(185, 136, 53, 0.04) 41%, rgba(185, 136, 53, 0.04) 42%, transparent 43%),
        linear-gradient(-45deg, transparent 40%, rgba(185, 136, 53, 0.03) 41%, rgba(185, 136, 53, 0.03) 42%, transparent 43%);
    background-size: 60px 60px;
    animation: patternMove 30s linear infinite;
    z-index: 1;
    
    /* ONLY fade the very top 15% */
    mask: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0,0,0,1) 15%);
    -webkit-mask: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0,0,0,1) 15%);
}

.practice-area-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(185, 136, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 168, 83, 0.06) 0%, transparent 50%);
    animation: gentleFloat 20s ease-in-out infinite;
    z-index: 2;
    
    /* ONLY fade the very top 15% */
    mask: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0,0,0,1) 15%);
    -webkit-mask: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0,0,0,1) 15%);
}
        @keyframes patternMove {
            0% { background-position: 0 0, 0 0; }
            100% { background-position: 60px 60px, -60px 60px; }
        }

        @keyframes gentleFloat {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-10px) scale(1.02); }
        }

        .container {
            position: relative;
            z-index: 10;
        }

        /* Enhanced Section Header with Stats */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .section-pretitle {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #b98835;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 20px;
            position: relative;
        }

        .section-pretitle::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #b98835, transparent);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.1;
            position: relative;
        }

        .section-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto 5px !important;
            line-height: 1.2;
        }

        /* Professional Stats Bar */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 10px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--theme-primary) !important;
            display: block;
        }

        .stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }

        /* Perfect Clean Cards */
        .practice-area {
            margin-bottom: 20px;
            perspective: 1000px;
        }

        .practice-card {
            background: #ffffff;
            border: 1px solid #e8eaed;
            border-radius: 20px;
            padding: 35px 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transform-style: preserve-3d;
        }

        .practice-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(185, 136, 53, 0.05) 0%, 
                transparent 50%, 
                rgba(212, 168, 83, 0.08) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
        }
/* 
        .practice-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #b98835, #d4a853, #b98835);
            transform: scaleX(0);
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform-origin: left;
            z-index: 2;
        } */

        .practice-card:hover::before {
            opacity: 1;
        }

        /* .practice-card:hover::after {
            transform: scaleX(1);
        } */

        .practice-card:hover {
            transform: translateY(-15px) rotateX(2deg);
            border-color: rgba(185, 136, 53, 0.3);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                0 10px 25px rgba(185, 136, 53, 0.2);
        }

        /* Perfect Icon Design */
        .practice-icon {
            width: 75px;
            height: 75px;
            margin: 0 auto 30px;
            position: relative;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            border: 2px solid #e8eaed;
            border-radius: 50%;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .practice-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
            border-radius: 50%;
            transform: translateX(-100%);
            transition: transform 0.8s ease;
        }

        .practice-card:hover .practice-icon::before {
            transform: translateX(100%);
        }

        .practice-icon img {
            width: 40px;
            height: 40px;
            filter: brightness(0) saturate(100%) invert(70%) sepia(69%) saturate(256%) hue-rotate(8deg) brightness(95%) contrast(89%);
            transition: all 0.5s ease;
            position: relative;
            z-index: 1;
        }
        .practice-icon img {
            filter: brightness(0) saturate(100%) invert(53%) sepia(85%) saturate(356%) hue-rotate(11deg) brightness(95%) contrast(89%);
        }

        .practice-card:hover .practice-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, #b98835, #d4a853);
            border-color: #d4a853;
            box-shadow: 0 15px 30px rgba(185, 136, 53, 0.3);
        }

        .practice-card:hover .practice-icon img {
            filter: brightness(0) saturate(100%) invert(100%);
            transform: scale(1.05);
        }

        /* Elegant Typography */
        .practice-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #1a1a1a;
            font-weight: 600;
            line-height: 1.4;
            position: relative;
            z-index: 3;
            transition: all 0.5s ease;
            text-align: center;
        }

        .practice-card:hover h3 {
            color: #b98835;
            transform: translateY(-3px);
        }
.practice-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #666;
    flex-grow: 1;
    line-height: 1.6;  /* ← Also increase this a bit */
    position: relative;
    z-index: 3;
    transition: all 0.5s ease;
    text-align: justify;
    text-align-last: left;  /* ← Last line stays left-aligned */
    text-justify: inter-word;  /* ← Better word spacing */
    hyphens: auto;  /* ← Breaks long words with hyphens */
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    word-spacing: -0.05em;  /* ← Slightly tighter spacing */
}

        .practice-card:hover p {
            color: #333;
            transform: translateY(-2px);
        }

        /* Perfect "En savoir plus" Link */
        .practice-link {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--theme-primary) !important;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
            z-index: 3;
            padding: 12px 0;
        }

        .practice-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--theme-gradient) !important;
            transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .practice-link:hover {
            color: #1a1a1a;
            text-decoration: none;
            transform: translateY(-2px);
        }

        .practice-link:hover::before {
            width: 80%;
        }

        .practice-link i {
            margin-left: 8px;
            font-size: 12px;
            transition: transform 0.5s ease;
        }

        .practice-link:hover i {
            transform: translateX(5px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .practice-area-section {
                padding: 80px 0;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .stats-bar {
                gap: 40px;
                flex-wrap: wrap;
            }

            .stat-number {
                font-size: 2rem;
            }

            .practice-card {
                padding: 35px 25px;
                margin-bottom: 30px;
            }

            .practice-card h3 {
                font-size: 1.5rem;
                margin-bottom: 15px;
            }

            .practice-card p {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .practice-icon {
                width: 65px;
                height: 65px;
                margin-bottom: 25px;
            }

            .practice-icon img {
                width: 35px;
                height: 35px;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 2.2rem;
            }

            .stats-bar {
                gap: 30px;
            }

            .practice-card {
                padding: 30px 20px;
            }

            .practice-card h3 {
                font-size: 1.4rem;
            }

            .practice-icon {
                width: 60px;
                height: 60px;
            }

            .practice-icon img {
                width: 32px;
                height: 32px;
            }
        }

         .faq-section {
            min-height: 80vh;
            display: flex;
            position: relative;
            align-items: stretch;
        }

        /* Left Parallax Image Side */
        .parallax-side {
            flex: 1;
            position: relative;
            background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            min-height: 600px;
        }

        .parallax-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(185, 136, 53, 0.3));
            z-index: 1;
        }

        .parallax-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 30px;
            max-width: 400px;
        }

        .parallax-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .parallax-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .parallax-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--theme-primary) !important;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Right FAQ Side */
        .faq-side {
            flex: 1;
            background: white;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
        }

        /* Compact Header */
        .faq-header {
            margin-bottom: 30px;
        }

        .faq-pretitle {
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--theme-primary) !important;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .faq-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .faq-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: #666;
            line-height: 1.4;
        }

        /* Compact Filters */
        .faq-filters {
            display: flex;
            gap: 8px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: #f8f9fa;
            border: 1px solid #e8eaed;
            color: #666;
            padding: 6px 12px;
            border-radius: 15px;
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--theme-primary) !important;
            border-color: var(--theme-primary) !important;
            color: white;
            transform: translateY(-1px);
        }

        /* Compact FAQ Items */
        .faq-container {
            display: grid;
            gap: 12px;
        }

        .faq-item {
            background: white;
            border: 1px solid #f0f0f0;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--theme-primary) !important;
            box-shadow: 0 4px 15px rgba(185, 136, 53, 0.1);
        }

        .faq-question {
            padding: 15px 18px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #fafafa;
        }

        .question-text {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.3;
            padding-right: 15px;
        }

        .toggle-icon {
            width: 24px;
            height: 24px;
            background: var(--theme-primary) !important;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .toggle-icon {
            transform: rotate(180deg);
            background: #1a1a1a;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .faq-answer.active {
            max-height: 200px;
        }

        .answer-content {
            padding: 15px 18px;
            border-top: 1px solid #f0f0f0;
        }

        .answer-text {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            color: #555;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .answer-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(185, 136, 53, 0.1);
            color: var(--theme-primary) !important;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 500;
        }

        /* Compact Contact Section */
        .faq-contact {
            margin-top: 30px;
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            border-radius: 12px;
            border: 1px solid #e8eaed;
            text-align: center;
        }

        .contact-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .contact-text {
            font-family: 'Inter', sans-serif;
            color: #666;
            margin-bottom: 15px;
            font-size: 0.8rem;
            line-height: 1.4;
        }

        .contact-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--theme-primary) !important;
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.75rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(185, 136, 53, 0.3);
            color: white;
            text-decoration: none;
        }

        /* Hide inactive categories */
        .faq-item[data-category] {
            display: none;
        }

        .faq-item[data-category].show {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .parallax-side {
                background-attachment: scroll;
            }
        }

        @media (max-width: 768px) {
            .faq-section {
                flex-direction: column;
                min-height: auto;
                align-items: stretch;
            }

            .parallax-side {
                min-height: 300px;
                background-attachment: scroll;
                order: 1;
            }

            .faq-side {
                padding: 25px 20px;
                order: 2;
            }

            .faq-title {
                font-size: 1.5rem;
            }

            .faq-filters {
                justify-content: center;
            }

            .filter-btn {
                flex: 1;
                min-width: 80px;
                text-align: center;
            }

            .faq-question {
                padding: 12px 15px;
            }

            .question-text {
                font-size: 0.85rem;
            }

            .answer-content {
                padding: 12px 15px;
            }
        }

        @media (max-width: 480px) {
            .parallax-side {
                min-height: 250px;
            }

            .parallax-content {
                padding: 20px;
            }

            .faq-side {
                padding: 20px 15px;
            }

            .faq-filters {
                flex-direction: column;
            }

            .filter-btn {
                width: 100%;
            }
        }

        
    /* Beautiful Pattern Background Section - matching other sections */
        .blog-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
            position: relative;
            overflow: hidden;
        }

        .blog-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 40%, rgba(185, 136, 53, 0.04) 41%, rgba(185, 136, 53, 0.04) 42%, transparent 43%),
                linear-gradient(-45deg, transparent 40%, rgba(185, 136, 53, 0.03) 41%, rgba(185, 136, 53, 0.03) 42%, transparent 43%);
            background-size: 60px 60px;
            animation: patternMove 30s linear infinite;
            z-index: 1;
        }

        .blog-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(185, 136, 53, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(212, 168, 83, 0.06) 0%, transparent 50%);
            animation: gentleFloat 20s ease-in-out infinite;
            z-index: 2;
        }

        @keyframes patternMove {
            0% { background-position: 0 0, 0 0; }
            100% { background-position: 60px 60px, -60px 60px; }
        }

        @keyframes gentleFloat {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-10px) scale(1.02); }
        }

        .container {
            position: relative;
            z-index: 10;
        }

        /* Enhanced Section Header - matching practice area style */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-pretitle {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--theme-primary);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 20px;
            position: relative;
        }

        .section-pretitle::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--theme-primary), transparent);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 700;
            color: var(--theme-text-primary);
            margin-bottom: 15px;
            line-height: 1.1;
            position: relative;
        }

        .section-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            color: var(--theme-text-secondary);
            max-width: 700px;
            margin: 0 auto 5px;
            line-height: 1.2;
        }

        /* Professional Stats Bar */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 10px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--theme-primary);
            display: block;
        }

        .stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            color: var(--theme-text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }

        /* Blog Posts Grid */
        .blog-grid {
            margin-bottom: 60px;
        }

        .blog-post {
            margin-bottom: 30px;
            perspective: 1000px;
        }

        .blog-card {
            background: #ffffff;
            border: 1px solid #e8eaed;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            transform-style: preserve-3d;
        }

        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(185, 136, 53, 0.05) 0%, 
                transparent 50%, 
                rgba(212, 168, 83, 0.08) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
        }

        .blog-card:hover::before {
            opacity: 1;
        }

        .blog-card:hover {
            /* transform: translateY(-15px) rotateX(2deg); */
            border-color: rgba(185, 136, 53, 0.3);
            /* box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                0 10px 25px rgba(185, 136, 53, 0.2); */
        }

        /* Blog Image */
        .blog-img-wrapper {
            position: relative;
            overflow: hidden;
            height: 250px;
            border-radius: 20px 20px 0 0;
        }

        .blog-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s ease;
            position: relative;
            z-index: 2;
        }

        .blog-card:hover .blog-img {
            transform: scale(1.1);
        }

        /* Blog Category Badge */
        .blog-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--theme-gradient);
            color: white;
            padding: 6px 15px;
            border-radius: 15px;
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 3;
            box-shadow: 0 4px 15px rgba(185, 136, 53, 0.3);
        }

        /* Blog Content */
        .blog-content {
            padding: 35px 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 3;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: var(--theme-text-light);
        }

        .blog-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .blog-meta-item i {
            color: var(--theme-primary);
            font-size: 0.8rem;
        }

        .blog-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--theme-text-primary);
            font-weight: 600;
            line-height: 1.4;
            transition: all 0.5s ease;
        }

        .blog-card:hover .blog-title {
            color: var(--theme-primary);
            transform: translateY(-3px);
        }

        .blog-description {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: var(--theme-text-secondary);
            flex-grow: 1;
            line-height: 1.6;
            margin-bottom: 25px;
            transition: all 0.5s ease;
        }

        .blog-card:hover .blog-description {
            color: #333;
            transform: translateY(-2px);
        }

        /* Blog Read More Link - matching practice area style */
        .blog-link {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--theme-primary);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            transition: all 0.5s ease;
            padding: 12px 0;
        }

        .blog-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--theme-gradient);
            transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .blog-link:hover {
            color: var(--theme-text-primary);
            text-decoration: none;
            transform: translateY(-2px);
        }

        .blog-link:hover::before {
            width: 80%;
        }

        .blog-link i {
            margin-left: 8px;
            font-size: 12px;
            transition: transform 0.5s ease;
        }

        .blog-link:hover i {
            transform: translateX(5px);
        }

        /* Professional CTA Button - matching other sections */
        .blog-cta {
            text-align: center;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--theme-gradient);
            color: white;
            padding: 16px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.4s ease;
            box-shadow: var(--theme-shadow);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--theme-shadow-hover);
            color: white;
            text-decoration: none;
        }

        .cta-button i {
            transition: transform 0.4s ease;
        }

        .cta-button:hover i {
            transform: translateX(5px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .blog-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .stats-bar {
                gap: 40px;
                flex-wrap: wrap;
            }

            .stat-number {
                font-size: 2rem;
            }

            .blog-card {
                margin-bottom: 30px;
            }

            .blog-content {
                padding: 25px 20px;
            }

            .blog-title {
                font-size: 1.4rem;
                margin-bottom: 15px;
            }

            .blog-description {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }

            .blog-img-wrapper {
                height: 200px;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 2.2rem;
            }

            .stats-bar {
                gap: 30px;
            }

            .blog-content {
                padding: 20px 15px;
            }

            .blog-title {
                font-size: 1.3rem;
            }

            .blog-img-wrapper {
                height: 180px;
            }
        }
        
     /* Footer Styles */
.arian-footer {
  font-size: 16px;
  background: #222831;
  padding: 5em 0 3em 0;
  font-family: 'Poppins', sans-serif; /* Updated font */
}

.arian-footer .logo {
  font-size: 34px !important;
  text-transform: uppercase;
  font-weight: 800 !important;
  line-height: 1;
}

.arian-footer .logo a {
  color: #fff;
}

.arian-footer .logo a span {
  color: #008be2;
  font-size: 16px !important;
  display: block;
}

.arian-footer .arian-footer-widget h2 {
  font-weight: 600; /* Updated font weight */
  color: #fff;
  margin-bottom: 40px;
  font-size: 20px;
}
.arian-footer .arian-footer-widget {
  color: #fff;
}

.arian-footer .arian-footer-widget ul li a {
  color: #fff;
}

.arian-footer .arian-footer-widget ul li a span {
  color: #fff;
}

.arian-footer .arian-footer-widget ul li a:hover {
  color: #008be2;
}

.arian-footer .arian-footer-widget ul li a:hover span {
  color: #008be2;
}

.arian-footer .arian-footer-widget .btn-primary {
  background: #fff !important;
  border: 2px solid #fff !important;
}

.arian-footer .arian-footer-widget .btn-primary:hover {
  background: #fff;
  border: 2px solid #fff !important;
}

.arian-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.arian-footer a {
  color: rgba(255, 255, 255, 0.7);
}

.arian-footer a:hover {
  color: #fff;
}

.arian-footer .arian-heading-2 {
  font-size: 17px;
  font-weight: 600; /* Updated font weight */
  color: #fff;
  position: relative;
}

.arian-footer .opening-hours h4 {
  color: #008be2;
  font-size: 16px;
}

.arian-footer .opening-hours p span {
  color: rgba(255, 255, 255, 0.9);
}

.arian-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block;
}

.arian-footer-social li a {
  height: 50px;
  width: 50px;
  display: block;
  float: left;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  position: relative;
}

.arian-footer-social li a span {
  position: absolute;
  font-size: 26px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.arian-footer-social li a:hover {
  color: #fff;
}
