/* ===== Google Fonts ===== */
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Marcellus+SC&display=swap");

/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Silver/Monochrome Theme */
    --primary-bg: #121212;
    --secondary-bg: #1e1e1e;
    --card-bg: rgba(45, 45, 45, 0.6);
    --card-bg-hover: rgba(60, 60, 60, 0.8);
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --accent-silver: #c0c0c0;
    --accent-dark-silver: #757575;
    --border-color: rgba(192, 192, 192, 0.2);

    /* Gradients removed, replaced with solid colors or subtle silver gradients */
    --gradient-primary: linear-gradient(135deg, #e0e0e0 0%, #b0b0b0 100%);
    --gradient-secondary: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);

    /* Typography */
    --font-primary: "Marcellus SC", serif;
    --font-secondary: "Marcellus", serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --glow-silver: 0 0 15px rgba(192, 192, 192, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #302E2E;
    padding: 0.7rem 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 2.5rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-silver);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-silver);
    transform: scale(1.05);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}

.logo {
    height: 55px;
    width: auto;
    /* Increased brightness, reduced grayscale slightly */
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* ===== Hamburger Menu ===== */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-primary);
    transition: all 0.3s ease-in-out;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #121212;
    z-index: 1000;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.15s ease-in-out;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-link {
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--accent-silver);
}

/* Mobile only items (hidden on desktop) */
.mobile-only-nav-item {
    display: none;
}

/* Remove desktop nav on mobile */
/* Mobile Adjustments for Nav and Contact */
@media (max-width: 1100px) {
    .desktop-nav {
        display: none;
    }

    .mobile-only-nav-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hamburger {
        display: block;
    }

    /* Ensure Logo and Hamburger are on the same line, one left, one right */
    .nav-container {
        justify-content: space-between;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .nav-logo {
        /* If original layout centered it, push it left or center but ensure space for hamburger */
        margin: 0;
    }
}

/* ===== Carousel ===== */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #0a0e27;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* transform: scale(1.05); */
    transition: opacity 0.5s ease-in-out, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    will-change: opacity, transform;
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

/* ===== Loading Screen ===== */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}

.loader-content {
    text-align: center;
}

.stock-chart {
    width: 150px;
    /* Reduced width slightly if it felt too wide? Or height increase. */
    height: 100px;
    margin: 0 auto 20px;
}

.chart-svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 5px rgba(224, 224, 224, 0.5));
}

.chart-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawChart 2s ease-in-out infinite;
}

.loader-text {
    font-family: "Marcellus SC", serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: #e0e0e0;
    animation: pulseText 2s ease-in-out infinite;
}

@keyframes drawChart {
    0% {
        stroke-dashoffset: 200;
        opacity: 1;
    }

    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: -200;
        opacity: 1;
    }
}

@keyframes pulseText {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(224, 224, 224, 0.3);
    }
}

@keyframes pulseText {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(224, 224, 224, 0.3);
    }
}

/* Modal Styles for Form Success */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: #1e1e1e;
    border: 1px solid rgba(192, 192, 192, 0.2);
    margin: 15% auto;
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease-out;
}

.modal-icon {
    margin-bottom: 2rem;
}

.modal-logo {
    height: 60px;
    width: auto;
    filter: brightness(1.5) grayscale(80%);
}

.modal h3 {
    color: #e0e0e0;
    font-family: "Marcellus SC", serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-background {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-background-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Content */
.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 10%;
    padding-bottom: 100px;
    z-index: 10;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInRight 1s ease-out;
}

.slide-description {
    font-size: 1rem;
    color: #b8c5d6;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 3rem;
    animation: slideInRight 1.2s ease-out;
}

.slide-cta {
    display: inline-block;
    padding: 0.5rem 3rem;
    background: rgba(192, 192, 192, 0.048);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInRight 1.4s ease-out;
    width: fit-content;
}

.slide-cta:hover {
    background: rgba(192, 192, 192, 0.048);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Navigation */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.nav-button.prev {
    right: 5%;
}

.nav-button.next {
    left: 5%;
}

.nav-button svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 2;
    fill: none;
}

@media (max-width: 700px) {

    .nav-button,
    .nav-button:hover {
        width: 35px;
        height: 35px;
        background: transparent;
        border: none;
        backdrop-filter: none;
        box-shadow: none;
    }
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.dot.active {
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    transform: scale(1.3);
}

.dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* ===== Advisory Section ===== */
.advisory-section {
    padding: 4rem 0;
    background: var(--primary-bg);
}

.advisory-grid,
.strategy-grid,
.portfolio-grid,
.blog-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.advisory-card {
    background: linear-gradient(to right,
            #231F20,
            #282828);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.advisory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text-primary), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.advisory-card:hover::before {
    transform: scaleX(1);
}

.advisory-card:hover,
.swiper-slide:hover .advisory-card {
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.advisory-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.advisory-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* ===== Section Styles ===== */
.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ===== About Section ===== */
.about-section {
    background: var(--secondary-bg);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.content-block {
    padding: 2rem;
}

.content-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 1rem 0;
    padding-right: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.values-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--text-primary);
    font-weight: bold;
}

/* ===== Strategy Section ===== */
.strategy-grid {
    /* Grid style handled above or via Swiper overrides */
}

.strategy-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.strategy-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-primary);
}

.strategy-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    /* Emoji silver fix */
    text-shadow: 0 0 0 var(--text-primary);
    filter: none;
}

.strategy-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.strategy-list {
    list-style: none;
    text-align: right;
}

.strategy-list li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== Portfolio Section ===== */
.portfolio-section {
    background: var(--secondary-bg);
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    border-color: var(--text-primary);
    box-shadow: var(--glow-silver);
    transform: translateY(-5px) scale(1.02);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.portfolio-company {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-company:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.company-logo-placeholder {
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.company-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.company-sector {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== Startups Section ===== */
.process-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.process-card:hover {
    border-color: var(--text-primary);
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.process-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* ===== Blogs Section ===== */
.blogs-section {
    background: var(--secondary-bg);
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-primary);
}

.blog-image {
    height: 200px;
    background: rgba(40, 40, 40, 1);
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--text-primary);
}

.contact-item-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.contact-item-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.2);
}

/* Mobile Adjustments for Contact Section */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .contact-info {
        order: -1;
        /* Ensure Info is on top */
        margin-bottom: 2rem;
    }
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e0e0e0;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary-bg);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper specific styles */
.swiper {
    width: 100%;
    padding-bottom: 40px !important;
}

/* Mobile-first: Slides styling adjustments */
.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    height: auto !important;
    padding: 10px;
    /* margin-right: 10px !important; */
    margin: auto;
}

.swiper-slide>* {
    width: 100%;
}

.swiper-pagination-bullet {
    background: var(--text-secondary) !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: var(--text-primary) !important;
    opacity: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 1300px) {
    .swiper-slide {
        /* margin-right: 0px !important; */
    }
}

@media (max-width: 1100px) {
    .nav-container {
        /* Fix hamburger position: keep it row */
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
    }

    .nav-left,
    .nav-right {
        /* Hide these again to be safe if 768px logic interferes */
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* ===== Mobile Optimizations for Swiper & Cards ===== */
@media (max-width: 768px) {

    .container,
    .nav-container,
    .advisory-grid,
    .strategy-grid,
    .portfolio-grid,
    .process-grid {
        padding: 0 1rem;
        /* Reduce side padding to give more width to cards */
    }

    .advisory-card,
    .strategy-card,
    .process-card,
    .blog-card {
        padding: 1.5rem;
        /* Reduce internal padding */
    }

    /* Additional padding for Swiper to prevent shadow clipping */
    .swiper {
        padding: 20px 10px 50px 10px !important;
        margin: 0;
        /* Remove negative margin to fix alignment */
    }

    /* Ensure full width usage in the slide but centered */
    .swiper-slide {
        padding: 5px;
        display: flex;
        justify-content: center;
    }

    /* Ensure card doesn't touch edges */
    .advisory-card,
    .strategy-card,
    .process-card,
    .blog-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .advisory-text {
        font-size: 0.95rem;
    }
}