/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Corporate Palette - Serious & Trustworthy */
    --primary-color: #0f172a; /* Deep Navy / Anthracite */
    --primary-light: #1e293b; /* Lighter Anthracite for cards/sections */
    --accent-color: #3b82f6; /* Professional Blue (instead of excessive gold) */
    --accent-hover: #2563eb;
    --text-color: #334155; /* Slate 700 */
    --text-light: #64748b; /* Slate 500 */
    --white: #ffffff;
    --background: #f8fafc; /* Very light grey */
    --surface: #ffffff;
    
    /* Radius & Shadows */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    line-height: 1.2;
    font-weight: 700;
}

/* Optional: Use Playfair for headings if desired, but User said "Serious", Outfit is cleaner. 
   Keeping Playfair for just h1/h2 for a touch of class without being too "fancy". */
h1, h2 {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    margin-bottom: 3rem;
    text-align: left; /* Corporate look often aligns left */
}

.section-title h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    font-size: 1.1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    transition: all .3s ease;
}

header.sticky{
    padding: 0;
}


header > div {
    background-color: rgba(15, 23, 42, 0.75);
    width: 100%;
    max-width: 1400px;
    border-radius: 99px;
    backdrop-filter: blur(15px);
    transition: all .3s ease;
}

header.sticky > div{
    /* background-color: rgba(15, 23, 42, 1); */
    max-width: 100%;
    border-radius: 0;
}

/* header > div .logo{
    background-color: rgba(15, 23, 42, 1);
    padding: 25px 35px;
    margin-left: -105px;
    border-radius: 50%;
} */



header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo img {
    height: 70px;
    width: auto;
    border-radius: 0; /* Logos typically shouldn't have border-radius forcing */
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Navigation & Dropdowns */
.nav-item {
    position: relative;
    padding: 10px 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
}

.dropdown-link {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-color);
    font-size: 15px;
    border-left: 2px solid transparent;
}

.dropdown-link:hover {
    background-color: var(--background);
    color: var(--primary-color);
    border-left-color: var(--accent-color);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    margin: 6px auto;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding: calc(120px + 100px) 0 100px;
    min-height: 100dvh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(15, 23, 42, 0.8) 50%, 
        rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 650px;
    color: var(--white);
}

.hero-subtitle {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Cards & Content */
.bg-light {
    background-color: var(--background);
}

.bg-white {
    background-color: var(--surface);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.practice-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.practice-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
}

.practice-icon {
    font-size: 1.5rem; /* Smaller, modern */
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: var(--background);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

/* Founder / Corporate Sections */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-image img {
    width: 100%;
    height: 100%;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    object-fit: cover;
}

.split-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
}

.blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    background: var(--surface);
    /* padding: 2rem; */
    /* padding-bottom: 2rem; */
    border-radius: var(--radius-lg);
    /* box-shadow: var(--shadow-md); */
}

.contact-info {
    background: var(--primary-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-info > p{ margin-bottom: 30px; opacity: .75;}

.contact-info > div{ display: flex; align-items: flex-start; margin-bottom: 30px;}
.contact-info > div:last-child{ margin-bottom: 0;}
.contact-info > div i{ margin-right: 15px; margin-top: 5px; color: var(--accent-color);}
.contact-info > div div{ display: flex; flex-direction: column;}
.contact-info > div div strong{ margin-bottom: 5px;}
.contact-info > div div a{ color: var(--white); transition: all .2s ease; opacity: .75; margin-bottom: 3px;}
.contact-info > div div a:hover{ opacity: 1;}


.bd-map{ height: 400px; margin-top: 3rem; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm);}
.bd-map iframe{ height: 100%; width: 100%;}


.form-control {
    width: 100%;
    padding: 1rem;
    background: var(--background);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Blog & News Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 0;
}

/* Removed zoom effect for simpler, corporate feel */
.blog-card:hover .blog-img img {
    /* transform: scale(1.05); */
    opacity: 0.9;
}

.blog-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.read-more {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--accent-color);
}

/* Article Styles (Horizontal Layout) */
.article-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.article-card {
    background: var(--surface);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    display: flex;
    overflow: hidden;
    transition: var(--transition);
    align-items: center;
}

.article-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.article-img {
    width: 200px;
    height: 160px;
    flex-shrink: 0;
    position: relative;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: var(--radius-md) 0 0 var(--radius-md); */
}

.article-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.article-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.article-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    margin-bottom: 0;
    height: 2lh;
    /* max-width: 800px; */
}

.article-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-meta i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .article-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .article-img {
        width: 100%;
        height: 200px;
    }
    .split-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        height: calc(100vh - 80px);
        align-items: flex-start;
        padding: 2rem;
        transition: 0.3s;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding-left: 1rem;
        display: none; /* JS will toggle this */
    }
    
    .nav-item.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-link {
        color: rgba(255,255,255,0.7);
        padding: 0.8rem 0;
        border-left: none;
    }
    
    .dropdown-link:hover {
        background: transparent;
        color: var(--white);
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.03) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 20%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--accent-color);
    opacity: 0.7;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .brand-col {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Utility Classes */
.mt-1 { margin-top: 1rem; }
.mt-1-5 { margin-top: 1.5rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-5 { margin-top: 5rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-0 { margin-bottom: 0 !important; }
.mr-1 { margin-right: 1rem; }
.mr-0-5 { margin-right: 0.5rem; }
.text-center { text-align: center; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.object-cover { object-fit: cover; }
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.align-items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.opacity-08 { opacity: 0.8; }
.opacity-09 { opacity: 0.9; }

/* Navigation Icons */
.nav-chevron {
    font-size: 0.7em;
    margin-left: 5px;
}

/* Header Override for Subpages */
header.subpage-header {
    background-color: var(--primary-color);
    padding: 0;
}

header.subpage-header > div {
    background-color: var(--primary-color);
    border-radius: 0;
}

/* Page Header (Hero for subpages) */
.page-header {
    background-image: url('../img/banner-2.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
}

.page-header p {
    opacity: 0.8;
    font-size: 1.1rem;
    margin: 0 auto;
}

.page-header p.max-w-600 {
    max-width: 600px;
}

/* Section Specifics */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-view-all {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-view-all i {
    margin-left: 8px;
}

.split-section-reverse {
    direction: rtl;
}

.split-content-ltr {
    direction: ltr;
}

.kartvizit-container {
    margin-top: 2rem;
}

.kartvizit-img {
    width: 280px;
    opacity: 0.9;
    box-shadow: var(--shadow-sm);
    border-radius: 4px;
}

/* Icons styling */
.circle-icon-btn {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--background);
    color: var(--primary-color);
}

.read-more-chevron {
    font-size: 0.8em;
}

/* Founder Page Specifics */
.founder-contact-list {
    list-style: none;
    font-size: 0.95rem;
}

.founder-contact-item {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.founder-expertise-box {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.expertise-tag {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid #e2e8f0;
}

.education-list {
    list-style: none;
    padding: 0;
}

.education-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.education-icon {
    color: var(--accent-color);
    margin-top: 5px;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stats-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stats-item p {
    opacity: 0.8;
}

.stats-icon {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Team Page Specifics */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.team-img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    background-color: #cbd5e1;
}

.team-info {
    padding: 2rem;
}

.team-role {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.team-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--background);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-socials a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Solution Partners */
.solution-partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.partner-card {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    width: 250px;
    text-align: center;
}

.partner-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partner-title {
    font-size: 1.1rem;
}

/* Contact Overrides */
/* Additional Utilities */
.text-primary { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.text-white { color: var(--white) !important; }
.border-0 { border: 0 !important; }
.pr-1-5 { padding-right: 1.5rem; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.list-none { list-style: none; padding: 0; }
.hero-bg { background-image: url('../img/banner-2.png'); }
.founder-placeholder {
    width: 100%;
    height: 500px;
    background: #cbd5e1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    flex-direction: column;
}
.founder-profile-img { height: auto; max-height: 500px; object-fit: cover; width: 100%; }
.founder-title { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; margin-bottom: 1rem; color: var(--primary-color); }
.founder-subtitle { color: var(--accent-color); margin-bottom: 2rem; font-weight: 500; }
.fs-09 { font-size: 0.9rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.team-img-placeholder { display: flex; align-items: center; justify-content: center; background: #e2e8f0; color: #64748b; }

/* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 1rem;
    padding: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "\f054"; /* FontAwesome chevron-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.7em;
    margin: 0 10px;
    opacity: 0.6;
}

.breadcrumb-link {
    color: var(--white);
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Practice Area Grid */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.practice-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.practice-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Detail Layout */
.practice-detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

@media (max-width: 992px) {
    .practice-detail-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu li:last-child {
    margin-bottom: 0;
}

/* Sidebar Menu Links */
.sidebar-menu a {
    /* display: flex; REMOVED to allow d-flex overrides to work properly */
    display: block; /* Default to block */
    padding: 0.8rem 1rem;
    background: var(--background);
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

/* Specific style for simple links (like in practice areas) */
.sidebar-menu a:not(.d-flex) {
    display: flex;
    align-items: center;
}

/* Explicitly allow flex if class is present, overriding block */
.sidebar-menu a.d-flex {
    display: flex;
}

.sidebar-menu a i {
    margin-right: 10px;
    font-size: 0.8em;
    color: var(--text-light);
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.sidebar-menu a:hover i,
.sidebar-menu a.active i {
    color: var(--white);
}

.highlight-widget {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.highlight-widget h3 {
    border-color: var(--accent-color);
    color: var(--white);
}

.highlight-widget p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.icon-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.icon-list li i {
    width: 25px;
    color: var(--accent-color);
}

/* Detail Content */
.detail-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8rem;
}

.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-color);
}

/* Blog/Article List specific tweaks */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-weight: 600;
}

.page-link.active,
.page-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.blog-meta i {
    margin-right: 5px;
}

.border-l-4 {
    border-left-width: 4px;
}

.bg-light {
    background-color: var(--background);
}

.fw-bold { font-weight: 600; }
.text-sm { font-size: 0.85rem; }

/* Contact Page Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-info .contact-list i {
    margin-top: 5px; /* Alignment tweak */
}


/* Elegant Page Styles - Redesign */
.page-header {
    background: var(--primary-color);
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 80%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin-right: 0.5rem;
}

.breadcrumb-link:hover { color: var(--accent-color); }

/* Elegant Section Styles */
.elegant-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.founder-intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--primary-light);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
}

.profile-vignette {
    position: relative;
    padding: 20px;
}

.profile-vignette::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 70%;
    background: var(--accent-color);
    opacity: 0.05;
    z-index: 0;
    border-radius: var(--radius-lg);
}

.profile-vignette img {
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

.expertise-list-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.expertise-item-elegant {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-bottom: 3px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.expertise-item-elegant:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    /* border-bottom-width: 5px; */
}

.cta-with-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0 !important;
    background-image: url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&q=80&w=1600');
    color: var(--white);
    text-align: center;
}

.cta-with-bg .hero-overlay {
    background: rgba(15, 23, 42, 0.85);
}

.cta-with-bg h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-with-bg p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-with-bg .btn-outline {
    border-width: 2px;
}

.cta-with-bg .container {
    position: relative;
    z-index: 2;
}

.expertise-item-elegant i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.expertise-item-elegant h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.founder-contact-card {
    background: var(--primary-color);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    margin-top: 2rem;
}

.founder-contact-card h4 { color: var(--white); margin-bottom: 1.5rem; }
.founder-contact-card div { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.founder-contact-card div i { color: var(--accent-color); width: 20px; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .elegant-card { padding: 2rem; }
    .page-header { padding: 140px 0 60px; }
    .page-header h1 { font-size: 2.2rem; }
}
