/* Root Variables */
:root {
    --purple-dark: #1a0b2e;
    --purple-primary: #6b46c1;
    --purple-light: #7c3aed;
    --purple-lighter: #a78bfa;
    --pink-primary: #ec4899;
    --pink-light: #f472b6;
    --white: #ffffff;
    --gray-light: #f3f4f6;
    --gray: #6b7280;
    --gray-dark: #374151;
    --black: #000000;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Fixed Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 60px;
    background-color: var(--gray-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    z-index: 1000;
    border-right: 1px solid #e5e7eb;
}

.sidebar-icon {
    color: var(--gray);
    font-size: 1.5rem;
    margin: 1rem 0;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-icon:hover {
    color: var(--purple-primary);
}

/* Main Content */
.main-content {
    margin-left: 100px;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--purple-primary);
    margin: 0;
}

.search-bar input {
    border-radius: 25px;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1.5rem;
    width: 100%;
}

.header-icon {
    font-size: 1.5rem;
    color: var(--gray);
    margin-left: 1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.header-icon:hover {
    color: var(--purple-primary);
}

/* Hero Section */
.hero-section {
    background: url('images/banner/hero_banar.avif') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    overflow-x: hidden;
}

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

.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 575.98px) {
    .hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 400px) {
    .hero-section .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

.hero-section .row {
    width: 100%;
    margin: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

.hero-section .row > div {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 1200px) {
    .hero-section .row > div {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Extra Large Screens (1400px and up) */
@media (min-width: 1400px) {
    .hero-section {
        min-height: 75vh;
        padding: 5rem 0;
    }
}

/* Large Screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .hero-section {
        min-height: 70vh;
        padding: 4.5rem 0;
    }
}

/* Medium Screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-section {
        min-height: 65vh;
        padding: 3.5rem 0;
    }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
        align-items: flex-start;
        background-size: cover;
        background-position: center;
    }
    
    .hero-section::before {
        background: rgba(0, 0, 0, 0.35);
    }
    
    .hero-section .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero-section .row > div {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        max-width: 100%;
    }
}

/* Small Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        padding: 2.5rem 0;
        align-items: flex-start;
        background-size: cover;
        background-position: center;
    }
    
    .hero-section::before {
        background: rgba(0, 0, 0, 0.4);
    }
    
    .hero-section .container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        max-width: 100%;
    }
    
    .hero-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }
    
    .hero-section .row > div {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        flex: 0 0 100% !important;
    }
}

/* Mobile Phones (up to 575px) */
@media (max-width: 575.98px) {
    .hero-section {
        min-height: auto !important;
        padding: 2rem 0 !important;
        align-items: flex-start !important;
        background-size: cover;
        background-position: center;
    }
    
    .hero-section::before {
        background: rgba(0, 0, 0, 0.5) !important;
    }
    
    .hero-section .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }
    
    .hero-section .row > div {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        flex: 0 0 100% !important;
    }
}

/* Very Small Phones (up to 400px) */
@media (max-width: 400px) {
    .hero-section {
        padding: 1.5rem 0 !important;
        background-size: cover;
        background-position: center;
    }
    
    .hero-section .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }
    
    .hero-section .row > div {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-title {
        font-size: clamp(1.25rem, 8vw, 1.75rem) !important;
        margin-bottom: 1rem !important;
        line-height: 1.4 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #ffffff !important;
        width: 100% !important;
        max-width: 100% !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-title br {
        display: none !important;
    }
    
    .hero-text {
        font-size: clamp(0.875rem, 4vw, 1rem) !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.7 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #ffffff !important;
        width: 100% !important;
        max-width: 100% !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-text br {
        display: none !important;
    }
    
    .btn-pink {
        padding: 0.45rem 0.9rem !important;
        font-size: 0.7rem !important;
        border-radius: 5px !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        background-color: var(--pink-primary) !important;
        color: #ffffff !important;
        box-sizing: border-box;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff !important;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 10;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.8);
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: -0.03em;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Hide line breaks on small screens for natural text flow */
@media (max-width: 991.98px) {
    .hero-title br {
        display: none !important;
    }
    
    .hero-text br {
        display: none !important;
    }
    
    .hero-title {
        white-space: normal !important;
    }
    
    .hero-text {
        white-space: normal !important;
    }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4rem;
        line-height: 1.15;
        letter-spacing: -0.03em;
    }
}

/* Large Screens */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.15;
        letter-spacing: -0.03em;
    }
}

/* Medium Screens */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
        line-height: 1.15;
        letter-spacing: -0.03em;
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-title {
        font-size: clamp(2rem, 4vw, 2.5rem) !important;
        line-height: 1.35 !important;
        margin-bottom: 1.25rem !important;
        letter-spacing: -0.01em !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-title br {
        display: none;
    }
    
    .hero-text {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-text br {
        display: none;
    }
}

/* Small Tablets */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem) !important;
        line-height: 1.45 !important;
        margin-bottom: 1.25rem !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.9) !important;
        letter-spacing: -0.01em !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-title br {
        display: none;
    }
    
    .hero-text {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-text br {
        display: none;
    }
}

/* Mobile Phones */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
        line-height: 1.5 !important;
        margin-bottom: 1.25rem !important;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 1px 5px rgba(0, 0, 0, 1) !important;
        letter-spacing: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #ffffff !important;
    }
    
    .hero-title br {
        display: none !important;
    }
    
    .hero-title .highlight {
        color: var(--pink-primary) !important;
        display: inline !important;
    }
    
    .hero-text {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem) !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.75 !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 1) !important;
        width: 100% !important;
        max-width: 100% !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #ffffff !important;
    }
    
    .hero-text br {
        display: none !important;
    }
    
    .btn-pink {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        display: block !important;
        box-shadow: 0 4px 18px rgba(236, 72, 153, 0.6), 0 2px 10px rgba(0, 0, 0, 0.5) !important;
        background-color: var(--pink-primary) !important;
        color: #ffffff !important;
        border-radius: 6px !important;
        font-weight: 600 !important;
        text-align: center !important;
    }
}

/* Very Small Phones */
@media (max-width: 400px) {
    .hero-title {
        font-size: clamp(1.25rem, 8vw, 1.75rem) !important;
        margin-bottom: 0.875rem !important;
    }
}

.hero-title .highlight {
    color: var(--pink-primary) !important;
    text-shadow: 0 3px 12px rgba(236, 72, 153, 0.5), 0 1px 4px rgba(0, 0, 0, 0.6) !important;
    font-weight: 700;
    display: inline;
    letter-spacing: -0.03em;
}

@media (max-width: 768px) {
    .hero-title .highlight {
        color: var(--pink-primary) !important;
        text-shadow: 0 2px 10px rgba(236, 72, 153, 0.5), 0 1px 4px rgba(0, 0, 0, 0.7) !important;
    }
}

@media (max-width: 576px) {
    .hero-title .highlight {
        color: var(--pink-primary) !important;
        text-shadow: 0 2px 12px rgba(236, 72, 153, 0.6), 0 1px 5px rgba(0, 0, 0, 0.8) !important;
    }
}

.hero-text {
    font-size: 1.25rem;
    color: #ffffff !important;
    margin-bottom: 2.5rem;
    opacity: 1 !important;
    line-height: 1.6;
    display: block;
    visibility: visible;
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.9);
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 400;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Extra Large Screens */
@media (min-width: 1400px) {
    .hero-text {
        font-size: 1.35rem;
    }
}

/* Large Screens */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .hero-text {
        font-size: 1.25rem;
    }
}

/* Medium Screens */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-text {
        font-size: 1.15rem;
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-text {
        font-size: clamp(1rem, 2.5vw, 1.15rem) !important;
        margin-bottom: 1.75rem !important;
        line-height: 1.75 !important;
    }
}

/* Small Tablets */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-text {
        font-size: clamp(1rem, 3vw, 1.2rem) !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.75 !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9) !important;
    }
}

/* Mobile Phones */
@media (max-width: 575.98px) {
    .hero-text {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem) !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.8 !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 1) !important;
    }
}

/* Very Small Phones */
@media (max-width: 400px) {
    .hero-text {
        font-size: clamp(0.875rem, 4vw, 1rem) !important;
        margin-bottom: 1rem !important;
    }
}

.btn-pink {
    background-color: var(--pink-primary) !important;
    color: #ffffff !important;
    border: none;
    padding: 0.875rem 2.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    visibility: visible;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 14px rgba(236, 72, 153, 0.45), 0 2px 8px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.01em;
    max-width: 100%;
    box-sizing: border-box;
}

/* Extra Large Screens */
@media (min-width: 1400px) {
    .btn-pink {
        padding: 0.875rem 2.25rem;
        font-size: 1.1rem;
    }
}

/* Large Screens */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .btn-pink {
        padding: 0.8rem 2.1rem;
        font-size: 1.05rem;
    }
}

/* Medium Screens */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .btn-pink {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
    .btn-pink {
        padding: 0.65rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: auto;
        max-width: 100%;
        display: inline-block !important;
        box-sizing: border-box;
    }
}

/* Small Tablets */
@media (min-width: 576px) and (max-width: 767.98px) {
    .btn-pink {
        padding: 0.55rem 1.15rem !important;
        font-size: 0.8rem !important;
        width: 100%;
        max-width: 100%;
        display: block !important;
        box-shadow: 0 4px 15px rgba(236, 72, 153, 0.5), 0 2px 8px rgba(0, 0, 0, 0.4) !important;
    }
}

/* Mobile Phones */
@media (max-width: 575.98px) {
    .btn-pink {
        padding: 0.5rem 1.1rem !important;
        font-size: 0.75rem !important;
        width: 100%;
        display: block !important;
        box-shadow: 0 4px 18px rgba(236, 72, 153, 0.6), 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    }
}

/* Very Small Phones */
@media (max-width: 400px) {
    .btn-pink {
        padding: 0.45rem 0.9rem !important;
        font-size: 0.7rem !important;
        border-radius: 4px !important;
    }
}

.btn-pink:hover {
    background-color: var(--pink-light);
    color: var(--white);
}

/* Insights Highlight Section */
.insights-section {
    margin-top: 120px;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.insight-slider-container {
    position: relative;
    padding-inline: 5rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.insight-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
}

.insight-slider::-webkit-scrollbar {
    display: none;
}

.insight-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1.5rem;
    min-height: 320px;
    min-width: clamp(280px, 45vw, 600px);
    flex: 0 0 clamp(280px, 45vw, 600px);
    padding: 2.5rem;
    color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.insight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 0;
    pointer-events: none;
}

.insight-card::after {
    display: none;
}

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

.insight-card-content {
    position: relative;
    z-index: 1;
}

.insight-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    color: white;
}

.insight-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    font-weight: 400;
}

.insight-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    padding: 0.5rem 0;
}

.insight-link i {
    font-size: 1.1rem;
}

.insight-link:hover {
    color: var(--pink-light);
}

.insight-arrow {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.98);
    color: #4a148c;
    box-shadow: 0 16px 40px rgba(26, 11, 46, 0.35),
                0 4px 12px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
}

.insight-arrow:hover:not(.disabled) {
    transform: translateY(calc(-50% - 6px)) scale(1.1);
    box-shadow: 0 20px 50px rgba(26, 11, 46, 0.45),
                0 6px 16px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(74, 20, 140, 0.4);
    background: #4a148c;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.insight-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

.insight-arrow i {
    font-size: 1.75rem;
    font-weight: 700;
}

.insight-arrow-left {
    left: 0.5rem;
}

.insight-arrow-right {
    right: 0.5rem;
}

.card-holiday {
    background-image: url('images/first-page/7th.avif');
}

.card-tariffs {
    background-image: url('images/first-page/8th.avif');
}

.card-media {
    background-image: url('images/banner/feature_banner_3.avif');
}

.card-growth {
    background-image: url('images/banner/feature_banner_1.avif');
}

.card-retail {
    background-image: url('images/banner/banner-1.jpg');
}

.card-consumer {
    background-image: url('images/banner/feature_banner_2.avif');
}

/* Extra Large Screens (1400px and up) */
@media (min-width: 1400px) {
    .insights-section {
        margin-top: 120px;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .insight-slider-container {
        padding-inline: 5rem;
        width: 100%;
        max-width: 100%;
    }

    .insight-card {
        min-height: 360px;
        padding: 3rem;
    }

    .insight-title {
        font-size: 2.75rem;
    }

    .insight-text {
        font-size: 1.15rem;
    }
}

/* Large Screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .insights-section {
        margin-top: 100px;
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .insight-slider-container {
        padding-inline: 4.5rem;
        width: 100%;
        max-width: 100%;
    }

    .insight-card {
        min-height: 340px;
        padding: 2.75rem;
    }

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

    .insight-text {
        font-size: 1.1rem;
    }
}

/* Medium Screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .insights-section {
        margin-top: 80px;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .insights-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .insight-slider-container {
        padding-inline: 3.5rem;
        width: 100%;
        max-width: 100%;
    }

    .insight-card {
        min-height: 320px;
        padding: 2.5rem;
        min-width: clamp(300px, calc(50vw - 2rem), 550px);
        flex: 0 0 clamp(300px, calc(50vw - 2rem), 550px);
        max-width: clamp(300px, calc(50vw - 2rem), 550px);
    }

    .insight-title {
        font-size: 2.25rem;
    }

    .insight-text {
        font-size: 1.05rem;
    }

    .insight-arrow {
        width: 56px;
        height: 56px;
    }

    .insight-arrow i {
        font-size: 1.5rem;
    }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .insights-section {
        margin-top: 60px;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .insights-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100% !important;
        width: 100% !important;
    }

    .insight-slider-container {
        padding-inline: 0;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .insight-slider {
        gap: 1.25rem;
        padding: 0.5rem 0.25rem;
        width: 100%;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .insight-card {
        min-height: 300px;
        padding: 1.75rem;
        min-width: clamp(300px, calc(50vw - 2rem), 400px);
        flex: 0 0 clamp(300px, calc(50vw - 2rem), 400px);
        max-width: clamp(300px, calc(50vw - 2rem), 400px);
        border-radius: 20px;
        gap: 1.25rem;
    }

    .insight-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.875rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .insight-text {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .insight-link {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .insight-link i {
        font-size: 1rem;
    }

    .insight-arrow {
        width: 50px;
        height: 50px;
        left: 0.5rem;
        z-index: 15;
    }

    .insight-arrow-right {
        right: 0.5rem;
    }

    .insight-arrow i {
        font-size: 1.35rem;
    }

    .insight-arrow:hover:not(.disabled) {
        transform: translateY(-50%) scale(1.08);
    }
}

/* Small Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .insights-section {
        margin-top: 50px;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .insights-section .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .insight-slider-container {
        padding-inline: 0;
        padding-left: 2.25rem;
        padding-right: 2.25rem;
        width: 100%;
        max-width: 100%;
    }

    .insight-slider {
        gap: 1.25rem;
        padding: 0.5rem;
        width: 100%;
    }

    .insight-card {
        min-height: 280px;
        padding: 1.75rem;
        min-width: clamp(260px, calc(75vw - 4.5rem), 420px);
        flex: 0 0 clamp(260px, calc(75vw - 4.5rem), 420px);
        max-width: clamp(260px, calc(75vw - 4.5rem), 420px);
        border-radius: 18px;
        gap: 1.25rem;
    }

    .insight-title {
        font-size: 1.625rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .insight-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .insight-link {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .insight-link i {
        font-size: 1rem;
    }

    .insight-arrow {
        width: 48px;
        height: 48px;
        left: 0.125rem;
    }

    .insight-arrow-right {
        right: 0.125rem;
    }

    .insight-arrow i {
        font-size: 1.25rem;
    }
}

/* Mobile Phones (up to 575px) */
@media (max-width: 575.98px) {
    .insights-section {
        margin-top: 40px;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .insights-section .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .insight-slider-container {
        padding-inline: 0;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        width: 100%;
        max-width: 100%;
    }

    .insight-slider {
        gap: 1rem;
        padding: 0.5rem 0.25rem;
        width: 100%;
    }

    .insight-card {
        min-height: 260px;
        padding: 1.5rem;
        min-width: clamp(240px, calc(100vw - 5rem), 380px);
        flex: 0 0 clamp(240px, calc(100vw - 5rem), 380px);
        max-width: clamp(240px, calc(100vw - 5rem), 380px);
        border-radius: 16px;
        gap: 1rem;
    }

    .insight-title {
        font-size: 1.375rem;
        line-height: 1.3;
        margin-bottom: 0.625rem;
        letter-spacing: -0.01em;
    }

    .insight-text {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 0.875rem;
    }

    .insight-link {
        font-size: 0.875rem;
        padding: 0.375rem 0;
        gap: 0.4rem;
    }

    .insight-link i {
        font-size: 0.95rem;
    }

    .insight-arrow {
        width: 44px;
        height: 44px;
        left: 0.25rem;
        border-width: 1.5px;
    }

    .insight-arrow-right {
        right: 0.25rem;
    }

    .insight-arrow i {
        font-size: 1.1rem;
    }

    .insight-arrow:hover:not(.disabled) {
        transform: translateY(-50%) scale(1.05);
    }
}

/* Very Small Phones (up to 400px) */
@media (max-width: 400px) {
    .insights-section {
        margin-top: 30px;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .insights-section .container {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .insight-slider-container {
        padding-inline: 0;
        padding-left: 2.25rem;
        padding-right: 2.25rem;
        width: 100%;
        max-width: 100%;
    }

    .insight-slider {
        gap: 0.875rem;
        padding: 0.5rem 0.125rem;
        width: 100%;
    }

    .insight-card {
        min-height: 240px;
        padding: 1.25rem;
        min-width: clamp(220px, calc(100vw - 4.5rem), 340px);
        flex: 0 0 clamp(220px, calc(100vw - 4.5rem), 340px);
        max-width: clamp(220px, calc(100vw - 4.5rem), 340px);
        border-radius: 14px;
        gap: 0.875rem;
    }

    .insight-title {
        font-size: 1.25rem;
        line-height: 1.35;
        margin-bottom: 0.5rem;
    }

    .insight-text {
        font-size: 0.8rem;
        line-height: 1.55;
        margin-bottom: 0.75rem;
    }

    .insight-link {
        font-size: 0.8rem;
        padding: 0.35rem 0;
        gap: 0.35rem;
    }

    .insight-link i {
        font-size: 0.875rem;
    }

    .insight-arrow {
        width: 40px;
        height: 40px;
        left: 0.125rem;
    }

    .insight-arrow-right {
        right: 0.125rem;
    }

    .insight-arrow i {
        font-size: 1rem;
    }
}

/* Extra Small Phones (up to 360px) */
@media (max-width: 360px) {
    .insights-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .insight-slider-container {
        padding-left: 2rem;
        padding-right: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .insight-card {
        min-width: clamp(200px, calc(100vw - 4rem), 320px);
        flex: 0 0 clamp(200px, calc(100vw - 4rem), 320px);
        max-width: clamp(200px, calc(100vw - 4rem), 320px);
        padding: 1.125rem;
    }

    .insight-title {
        font-size: 1.125rem;
    }

    .insight-text {
        font-size: 0.75rem;
    }

    .insight-arrow {
        width: 36px;
        height: 36px;
        left: 0.125rem;
    }

    .insight-arrow-right {
        right: 0.125rem;
    }

    .insight-arrow i {
        font-size: 0.9rem;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
    .insights-section {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .insight-card {
        min-height: 220px;
    }
}

/* Hero Image - Stacked Cards */
.hero-image {
    position: relative;
    height: 500px;
}

.stacked-cards {
    position: relative;
    height: 100%;
    width: 100%;
}

.card-item {
    position: absolute;
    width: 80%;
    height: 60%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-1 {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--pink-primary) 100%);
    top: 0;
    left: 0;
    z-index: 4;
    transform: rotate(-5deg);
}

.card-2 {
    background: linear-gradient(135deg, var(--pink-primary) 0%, #f97316 100%);
    top: 10%;
    left: 5%;
    z-index: 3;
    transform: rotate(-2deg);
}

.card-3 {
    background: linear-gradient(135deg, #f97316 0%, #10b981 100%);
    top: 20%;
    left: 10%;
    z-index: 2;
    transform: rotate(2deg);
}

.card-4 {
    background: linear-gradient(135deg, var(--purple-primary) 0%, #6366f1 100%);
    top: 30%;
    left: 15%;
    z-index: 1;
    transform: rotate(5deg);
}

/* ========================= */
/* Header / Navbar           */
/* ========================= */
.top-nav {
    backdrop-filter: blur(8px);
    background: linear-gradient(180deg, #f2eff8, #f5eef7);
    border-bottom: 1px solid rgba(74, 20, 140, 0.15);
    pointer-events: auto;
}

.brand-text {
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    font-size: 22px;
    margin-left: 10px;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: conic-gradient(from 180deg at 50% 50%, #7d2ae8, #ff1fa3, #7d2ae8);
    box-shadow: 0 6px 18px rgba(125, 42, 232, 0.35);
}

.brand-logo {
    height: 100px !important;
    max-width: 300px !important;
    width: auto;
    object-fit: contain;
}

.nav-search {
    max-width:300px; 
    background: #ffffff;
    border-radius: 10px;
    padding: 8px 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-search i {
    color: #8a8a8a;
    margin-right: 10px;
}

.nav-search-input {
    border: none;
    box-shadow: none;
    padding: 0;
}

.nav-search-input:focus {
    outline: none;
    box-shadow: none;
}

.btn-contact {
    color: #4a148c;
    border: 1px solid #4a148c;
    font-size: small;
    border-radius: 999px;
    padding: 2px 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.btn-contact:hover {
    background-color: #4a148c;
    font-weight: 600;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.icon-btn,
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    color: #4a148c;
    text-decoration: none;
}

.icon-btn:hover,
.social-btn:hover {
    background: #4a148c;
    color: white;
}

/* Language Dropdown Styles */
.icon-btn.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 150px;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.25rem;
    color: #4a148c;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #f3f4f6;
    color: #4a148c;
}

.dropdown-item:active {
    background-color: #4a148c;
    color: white;
}

@media (max-width: 767.98px) {
    .brand-text {
        font-size: 18px;
    }

    .icon-btn,
    .social-btn {
        width: 36px;
        height: 36px;
    }

    .btn-contact {
        padding: 6px 12px;
    }
}

@media (max-width: 575.98px) {
    .btn-contact {
        padding: 4px 10px;
        font-size: 0.8rem;
    }
}

/* Mobile menu backdrop */
body.mobile-menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    pointer-events: auto;
    backdrop-filter: blur(2px);
}

/* Mobile menu */
.mobile-menu {
    background: linear-gradient(180deg, #f2eff8, #f5eef7);
    border: 1px solid rgba(74, 20, 140, 0.15);
    border-radius: 16px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1050;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Mobile menu close button */
.mobile-menu-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border: none;
    background: linear-gradient(180deg, #f2eff8, #f5eef7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1051;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    box-shadow: 0 2px 8px rgba(74, 20, 140, 0.15);
}

.mobile-menu-close:hover {
    background: linear-gradient(180deg, #e8dff0, #ede5f0);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(74, 20, 140, 0.25);
}

.mobile-menu-close:active {
    transform: scale(0.95) rotate(90deg);
}

.mobile-menu-close i {
    font-size: 20px;
    color: #4a148c;
    line-height: 1;
    font-weight: 700;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover i {
    color: #6a1b9a;
}

/* Ensure mobile menu displays correctly when shown */
.mobile-menu.collapse:not(.show) {
    display: none;
}

.mobile-menu.collapse.show {
    display: block;
}

.mobile-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 20px;
    padding-top: 50px;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #4a148c;
    font-weight: 700;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-link i {
    font-size: 18px;
}

.mobile-link:hover {
    background: rgba(106, 27, 154, 0.08);
}

.mobile-link.mobile-cta {
    background: linear-gradient(180deg, #f2eff8, #f5eef7);
    color: #4a148c;
    border: 1px solid #4a148c;
    grid-column: 1 / -1;
    justify-content: center;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}

.mobile-link.mobile-cta:hover {
    background: #4a148c;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

/* Mobile menu items with submenus */
.mobile-menu-item {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
}

.mobile-link-toggle {
    position: relative;
    justify-content: space-between;
}

.mobile-chevron {
    font-size: 14px;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.mobile-link-toggle[aria-expanded="true"] .mobile-chevron {
    transform: rotate(180deg);
}

.mobile-link-toggle[aria-expanded="true"] {
    background: rgba(106, 27, 154, 0.12);
}

/* Mobile submenu */
.mobile-submenu {
    margin-top: 8px;
    padding-left: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.mobile-sublink {
    display: block;
    padding: 10px 12px 10px 40px;
    color: #4a148c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(106, 27, 154, 0.08);
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-sublink:last-child {
    border-bottom: none;
}

.mobile-sublink:hover {
    background: rgba(106, 27, 154, 0.1);
    color: #6a1b9a;
}

.mobile-social {
    display: flex;
    gap: 8px;
    padding: 0 20px 12px 20px;
}

/* Mobile contact footer */
.mobile-contact-footer {
    padding: 12px 20px 20px 20px;
    border-top: 1px solid rgba(74, 20, 140, 0.15);
    margin-top: 8px;
    text-align: center;
}

/* Mobile Contact Us Button */
.mobile-contact-us-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: calc(60% - 42px);
    margin: 0 auto 20px auto;
    padding: 6px 10px;
    background-color: #ffffff;
    border: 1.5px solid #4a148c;
    border-radius: 28px;
    color: #4a148c;
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s 
cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(74, 20, 140, 0.12);
    position: relative;
    overflow: hidden;
}

.mobile-contact-us-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 20, 140, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-contact-us-btn:hover::before {
    left: 100%;
}

.mobile-contact-us-btn:hover {
    background-color: #f5f0fb;
    border-color: #6a1b9a;
    color: #6a1b9a;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(74, 20, 140, 0.25);
}

.mobile-contact-us-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(74, 20, 140, 0.15);
}

.mobile-contact-us-btn i {
    font-size: 1.15rem;
    color: #4a148c;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.mobile-contact-us-btn:hover i {
    color: #6a1b9a;
    transform: scale(1.1);
}

.mobile-contact-us-btn span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.mobile-contact-us-btn:hover span {
    letter-spacing: 0.3px;
}

.mobile-link.mobile-cta-small {
    background: linear-gradient(180deg, #f2eff8, #f5eef7);
    color: #4a148c;
    border: 1px solid #4a148c;
    justify-content: center;
    border-radius: 999px;
    padding: 5px 12px;
    font-weight: 600;
    font-size: 0.75rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    width: auto;
    display: inline-flex;
    margin: 0 auto;
    gap: 5px;
}

.mobile-link.mobile-cta-small i {
    font-size: 12px;
}

.mobile-link.mobile-cta-small span {
    font-size: 0.75rem;
}

.mobile-link.mobile-cta-small:hover {
    background: #4a148c;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .mobile-links {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .mobile-menu-item {
        grid-column: 1;
    }
}

@media (max-width: 420px) {
    .mobile-links {
        grid-template-columns: 1fr;
    }
    
    .mobile-sublink {
        padding: 8px 12px 8px 36px;
        font-size: 0.85rem;
    }
}

/* Hide desktop right actions on small screens to prevent overlap */
@media (max-width: 992px) {
    .nav-actions {
        display: none !important;
    }
}

/* Ensure brand and toggle sit on left neatly */
@media (max-width: 576px) {
    .nav-toggle {
        margin-left: 8px;
    }
}

/* Ensure hamburger menu button is always clickable */
.nav-toggle {
    position: relative;
    z-index: 1040;
    pointer-events: auto;
}

/* ========================= */
/* Left Sidebar (Rail)       */
/* ========================= */
.sidebar-rail {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100px;
    height: calc(100vh - 72px);
    background: linear-gradient(180deg, #f2eff8, #f5eef7);
    border-right: 1px solid rgba(74, 20, 140, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 14px 6px;
    z-index: 1020;
}

.side-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #4a148c;
    text-decoration: none;
    font-weight: 800;
    border: 0;
    outline: none;
    cursor: pointer;
    padding: 12px 10px;
    width: 92px;
    background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.6));
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(106,27,154,0.12);
    transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.side-item i {
    font-size: 28px;
    line-height: 1;
    color: #6a1b9a;
    filter: drop-shadow(0 2px 6px rgba(106,27,154,0.2));
}

.side-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.side-item:hover {
    color: #6a1b9a;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(106,27,154,0.18);
}

.side-item.active {
    color: #6a1b9a;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(106,27,154,0.22);
}

@media (max-width: 767.98px) {
    .sidebar-rail {
        display: none;
    }
}

/* ========================= */
/* Hero adjustments          */
/* ========================= */
.hero-section .hero-title {
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(1.45rem, 3.6vw + 0.5rem, 2.4rem);
    word-break: break-word;
    hyphens: auto;
    padding-top: 70px;
}

@media (max-width: 768px) {
    .hero-section .hero-title {
        padding-top: 0;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .hero-section .row>.col-lg-6:first-child {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section .hero-title {
        padding-top: 0;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    .hero-section .row>.col-lg-6:first-child {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

.hero-section .hero-text {
    font-size: clamp(0.95rem, 0.9vw + 0.6rem, 1.1rem);
}

.hero-section .row>.col-lg-6:first-child {
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 768px) {
    .hero-section .row>.col-lg-6:first-child {
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (min-width: 1200px) {
    .hero-section .row>.col-lg-6:first-child {
        padding-left: 36px;
        padding-right: 36px;
    }
}

/* ========================= */
/* Category slider           */
/* ========================= */
/* ========================= */
/* Left flyout dropdown      */
/* ========================= */
.side-dropdown {
    position: fixed;
    top: 72px;
    left: 100px;
    width: 280px;
    z-index: 1015;
    pointer-events: none;
}

.side-panel {
    background: #ffffff;
    border: 1px solid rgba(74, 20, 140, 0.15);
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    padding: 12px;
    margin: 10px 10px;
    pointer-events: auto;
}

.side-panel-title {
    font-weight: 800;
    color: #4a148c;
    font-family: 'Montserrat', sans-serif;
    margin: 6px 8px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.side-panel-close {
    background: transparent;
    border: none;
    color: #6a1b9a;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-right: -4px;
}

.side-panel-close:hover {
    background: rgba(106, 27, 154, 0.1);
    color: #4a148c;
}

.side-panel-close:active {
    background: rgba(106, 27, 154, 0.2);
}

.side-link {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #2b1b3b;
    text-decoration: none;
    font-weight: 600;
}

.side-link:hover {
    background: #f5effb;
    color: #4a148c;
}

@media (max-width: 991.98px) {
    .side-dropdown {
        display: none;
    }
}

.category-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    width: 100%;
    background: white;
}

.category-slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.category-slider:hover .category-slider-track {
    animation-play-state: paused;
}

.category-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 60px;
    flex-shrink: 0;
    min-width: max-content;
}

.category-item {
    color: rgb(229, 224, 232);
    font-weight: 700;
    font-size: 2.5rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    padding: 0 20px;
    white-space: nowrap;
    display: inline-block;
    flex-shrink: 0;
}

.category-dot {
    color: rgb(229, 224, 232);
    font-size: 2rem;
    padding: 0 15px;
    font-weight: 700;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .category-item {
        font-size: 1.5rem;
        padding: 0 8px;
        letter-spacing: 1px;
    }

    .category-dot {
        font-size: 1.2rem;
        padding: 0 6px;
    }

    .category-slide {
        padding: 0 20px;
    }

    .category-slider-track {
        animation-duration: 20s;
    }
}

@media (max-width: 576px) {
    .category-item {
        font-size: 1.2rem;
        padding: 0 6px;
        letter-spacing: 0.5px;
    }

    .category-dot {
        font-size: 1rem;
        padding: 0 4px;
    }

    .category-slide {
        padding: 0 15px;
    }

    .category-slider-wrapper {
        padding: 15px 0;
    }
}

@media (max-width: 400px) {
    .category-item {
        font-size: 1rem;
        padding: 0 4px;
        letter-spacing: 0.3px;
    }

    .category-dot {
        font-size: 0.9rem;
        padding: 0 3px;
    }

    .category-slide {
        padding: 0 10px;
    }
}

/* ========================= */
/* Statistics scroll         */
/* ========================= */
.statistics-scroll {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 15px;
}

.statistics-scroll::-webkit-scrollbar {
    width: 6px;
}

.statistics-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.statistics-scroll::-webkit-scrollbar-thumb {
    background: #4a148c;
    border-radius: 10px;
}

.statistics-scroll::-webkit-scrollbar-thumb:hover {
    background: #6a1b9a;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.stat-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.stat-icon {
    font-size: 1.5rem;
    color: #4a148c;
    margin-right: 20px;
    margin-top: 8px;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
}

.stat-text {
    color: #4a148c;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    display: block;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-description {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

/* ========================= */
/* Feature content cards     */
/* ========================= */
.content-card {
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 100%; /* Maintains 1:1 aspect ratio */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-size 0.5s ease, filter 0.3s ease;
    will-change: transform, box-shadow, background-size, filter;
    animation: float 3s ease-in-out infinite;
}

.content-card:hover {
    transform: scale(1.06) translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    background-size: 115% !important;
    filter: brightness(1.05) contrast(1.05);
}

.content-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.section-header {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-card p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.08) 60%, rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.content-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: radial-gradient(60% 60% at 30% 0%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0) 60%), radial-gradient(70% 70% at 90% 100%, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0) 60%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.content-card:hover::before,
.content-card:hover::after {
    opacity: 1;
}

.btn-visit {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 18px;
    background: #ffffff;
    color: #111111;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    align-self: flex-start;
}

.btn-visit:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 1200px) {
    .content-card-overlay {
        padding: 25px;
    }

    .section-header {
        font-size: 2.2rem;
    }

    .content-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Ensure proper card spacing */
    .content-card {
        margin-bottom: 1rem;
    }
}

/* Fix for 1024px screen size - display cards as 2x2 grid instead of 4 in a row */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Override Bootstrap col-lg-3 to make cards 50% width (2 per row) */
    .section .row > .col-md-6.col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .content-card-overlay {
        padding: 24px;
    }

    .section-header {
        font-size: 2rem;
    }

    .content-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 992px) {
    .content-card-overlay {
        padding: 24px;
    }

    .section-header {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .content-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .btn-visit {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin-top: 14px;
    }
    
    /* Ensure cards maintain aspect ratio on tablets */
    .content-card {
        padding-bottom: 100%;
    }
}

@media (max-width: 768px) {
    .content-card {
        padding-bottom: 100%; /* Keep square aspect ratio */
        max-width: 100%;
    }

    .content-card-overlay {
        padding: 20px;
    }

    .section-header {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .content-card p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .btn-visit {
        padding: 8px 14px;
        font-size: 0.85rem;
        margin-top: 12px;
    }
    
    /* Ensure proper container padding on mobile */
    .section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    .content-card {
        padding-bottom: 100%; /* Keep square aspect ratio */
    }

    .content-card-overlay {
        padding: 16px;
    }

    .section-header {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .content-card p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .btn-visit {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin-top: 10px;
    }
}

/* Responsive section margins - override inline styles */
@media (max-width: 1400px) {
    section[style*="margin-top: 150px"][style*="margin-bottom: 150px"] {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important;
    }
}

@media (max-width: 1200px) {
    section[style*="margin-top: 150px"][style*="margin-bottom: 150px"] {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important;
    }
}

@media (max-width: 992px) {
    section[style*="margin-top: 150px"][style*="margin-bottom: 150px"] {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important;
    }
    
    /* Ensure cards stack properly on tablets */
    .content-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    section[style*="margin-top: 150px"][style*="margin-bottom: 150px"] {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }
    
    /* Cards should be full width on mobile */
    .content-card {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    /* Ensure proper spacing between cards */
    .row .col-md-6 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    section[style*="margin-top: 150px"][style*="margin-bottom: 150px"] {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
    
    /* Smaller cards on very small screens */
    .content-card {
        margin-bottom: 1.25rem;
    }
    
    /* Better button alignment on mobile */
    .btn-visit {
        align-self: center;
        width: auto;
        min-width: 100px;
    }
}

@media (max-width: 400px) {
    section[style*="margin-top: 150px"][style*="margin-bottom: 150px"] {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .content-card-overlay {
        padding: 12px !important;
    }
    
    .section-header {
        font-size: 1.25rem !important;
        margin-bottom: 8px !important;
    }
    
    .content-card p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }
    
    .btn-visit {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
    }
}

/* ========================= */
/* Solutions CTA + Quick     */
/* ========================= */
.solution-banner {
    position: relative;
    width: 100%;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.solution-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4));
    z-index: 0;
}

.solution-intro {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    font-size: 24px;
    margin: 0 auto 20px auto;
    padding: 28px 0;
    text-align: center;
    max-width: 1000px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1400px) {
    .solution-intro {
        font-size: 22px;
        padding: 26px 16px;
    }
}

@media (max-width: 1200px) {
    .solution-intro {
        font-size: 20px;
        padding: 24px 16px;
        line-height: 1.7;
    }
}

@media (max-width: 992px) {
    .solution-intro {
        font-size: 18px;
        padding: 22px 16px;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .solution-intro {
        font-size: 16px;
        padding: 20px 16px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .solution-intro {
        font-size: 14px;
        padding: 18px 12px;
        line-height: 1.5;
    }
}

@media (max-width: 400px) {
    .solution-intro {
        font-size: 13px;
        padding: 16px 10px;
        line-height: 1.5;
    }
}

.solution-pill {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(90deg, #6a1b9a, #5e35b1);
    color: #fff;
    border-radius: 999px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.5);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.solution-pill-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.solution-pill-dots {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: radial-gradient(circle at 30% 30%, #fff 12%, rgba(255, 255, 255, 0) 13%), radial-gradient(circle at 70% 30%, #fff 12%, rgba(255, 255, 255, 0) 13%), radial-gradient(circle at 30% 70%, #fff 12%, rgba(255, 255, 255, 0) 13%), radial-gradient(circle at 70% 70%, #fff 12%, rgba(255, 255, 255, 0) 13%);
    opacity: 0.9;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
    flex: 0 0 auto;
}

.solution-pill-text {
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.2px;
    font-size: 1rem;
    flex: 1;
    min-width: 0;
}

.solution-pill-btn {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.solution-pill-btn:hover {
    transform: translateY(-2px);
    background: #111;
    color: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.quick-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.quick-desc {
    color: #cfcad9;
    margin-bottom: 14px;
}

.quick-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: #4a148c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    background: #32125c;
}

@media (max-width: 1200px) {
    .solution-banner {
        min-height: 260px;
    }

    .solution-pill {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 14px 18px;
        gap: 14px;
    }

    .solution-pill-text {
        font-size: 0.95rem;
    }

    .solution-pill-dots {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 992px) {
    .solution-banner {
        min-height: 240px;
        border-radius: 14px;
    }

    .solution-pill {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 14px 16px;
        gap: 12px;
    }

    .solution-pill-text {
        font-size: 0.9rem;
    }

    .solution-pill-btn {
        padding: 9px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .solution-banner {
        min-height: 220px;
        border-radius: 12px;
    }

    .solution-pill {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 14px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        border-radius: 16px;
    }

    .solution-pill-left {
        width: 100%;
        gap: 10px;
    }

    .solution-pill-text {
        font-size: 0.9rem;
        flex: 1;
    }

    .solution-pill-dots {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .solution-pill-btn {
        width: 100%;
        text-align: center;
        padding: 10px 16px;
    }
}

@media (max-width: 576px) {
    .solution-banner {
        min-height: 200px;
        border-radius: 10px;
        border-width: 1px;
    }

    .solution-pill {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 12px 16px;
        gap: 10px;
        border-radius: 14px;
    }

    .solution-pill-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .solution-pill-dots {
        width: 22px;
        height: 22px;
    }

    .solution-pill-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .solution-banner {
        min-height: 180px;
        border-radius: 8px;
    }

    .solution-pill {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 10px 14px;
        gap: 8px;
        border-radius: 12px;
    }

    .solution-pill-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .solution-pill-dots {
        width: 20px;
        height: 20px;
    }

    .solution-pill-btn {
        padding: 7px 12px;
        font-size: 0.8rem;
    }
}

/* ========================= */
/* Insights / Resources etc  */
/* ========================= */
.insights-header {
    color: #6a1b9a;
    font-weight: 800;
    letter-spacing: 1.2px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 14px;
}

.insights-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.insight-card {
    flex: 0 0 300px;
    text-decoration: none;
    color: inherit;
}

.insight-thumb {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.insight-card:hover .insight-thumb {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.insight-meta {
    margin-top: 10px;
    color: #6a1b9a;
    font-weight: 700;
    font-size: 14px;
}

.insight-title {
    margin-top: 6px;
    color: white;
    font-weight: 800;
    line-height: 1.4;
    font-size: 21px;
}

@media (max-width: 768px) {
    .insight-card {
        flex-basis: 260px;
    }
}

.resources-section {
    padding: 40px 0;
}

.resources-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #4a148c;
    margin: 12px 0 8px 0;
    font-size: 48px;
}

.resources-desc {
    max-width: 900px;
    margin: 0 auto 18px auto;
    color: #111111;
    font-size: 20px;
    line-height: 1.7;
}

.resources-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    border: 2px solid #4a148c;
    color: #4a148c;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.resources-btn:hover {
    background: #4a148c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(74, 20, 140, 0.25);
}

@media (max-width: 768px) {
    .resources-title {
        font-size: 36px;
    }

    .resources-desc {
        font-size: 18px;
    }
}

/* About feature */
.about-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.about-image {
    width: 100%;
    display: block;
}

.speaker-chip {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px 8px 8px;
    backdrop-filter: blur(2px);
}

.speaker-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.speaker-name {
    font-weight: 700;
    line-height: 1;
}

.speaker-title {
    opacity: 0.9;
    font-size: 12px;
    line-height: 1.2;
}

.about-meta {
    color: #7b1fa2;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
}

.about-meta .divider {
    color: #9c27b0;
    margin: 0 6px;
}

.about-meta .pink {
    color: #d81b60;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #2b1b3b;
    margin: 8px 0 12px 0;
    font-size: 38px;
}

.about-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.about-cta {
    display: inline-block;
    margin-top: 10px;
    background: #c2185b;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(194, 24, 91, 0.35);
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(194, 24, 91, 0.45);
    background: #ad1457;
}

@media (max-width: 992px) {
    .about-title {
        font-size: 30px;
    }

    .about-desc {
        font-size: 16px;
    }
}

/* Testimonials */
.testi-title {
    color: #4a148c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin: 0;
    font-size: 42px;
}

.testi-sub {
    color: #5b5b5b;
    margin-top: 6px;
    font-size: 18px;
}

.testi-video {
    background: #000;
    border-radius: 12px;
    height: 380px;
    position: relative;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.testi-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.25s ease;
}

.testi-play:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.12);
}

.testi-name {
    font-weight: 800;
    color: #2b1b3b;
    font-size: 24px;
}

.testi-role {
    color: #6a6a6a;
    margin-bottom: 12px;
}

.testi-text {
    color: #2f2f2f;
    line-height: 1.7;
}

.testi-emphasis {
    color: #2f2f2f;
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(transparent 60%, rgba(106, 27, 154, 0.15) 60%);
    display: inline;
}

.testi-brand img {
    height: 60px;
    margin-top: 16px;
}

.testi-nav {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
}

.nav-btn:hover {
    background: #000;
}

.testi-logos {
    text-align: center;
    margin-top: 28px;
}

.logos-lead {
    color: #444;
    margin-bottom: 10px;
}

.logos-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.logos-row img {
    height: 105px;
    opacity: 0.7;
}

@media (max-width: 992px) {
    .testi-video {
        height: 240px;
    }

    .testi-title {
        font-size: 32px;
    }
}

/* Ready CTA */
.ready-panel {
    background: #f5f1f9;
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.ready-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #4a148c;
    font-size: 56px;
    margin: 0 0 10px 0;
}

.ready-desc {
    color: #333;
    font-size: 18px;
    line-height: 1.8;
    max-width: 520px;
}

.ready-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.ready-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.ready-btn-primary {
    background: #111111;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.ready-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.ready-btn-outline {
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    background: transparent;
}

.ready-btn-outline:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

.ready-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    display: block;
    object-fit: cover;
}

@media (max-width: 992px) {
    .ready-title {
        font-size: 40px;
    }

    .ready-panel {
        padding: 28px;
    }
}

/* Footer */
html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-footer {
    background: #0d0d0d;
    color: #e8e8e8;
    padding: 40px 0 20px 0;
    margin-top: auto;
}

.footer-logo {
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 28px;
}

.footer-logo img,
img.footer-logo {
    height: 100px !important;
    max-width: 300px !important;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-tag {
    margin: 6px 0 8px 0;
    color: #cfcad9;
    font-weight: 700;
}

.footer-copy {
    color: #a7a3b3;
    max-width: 320px;
}

.footer-title {
    color: #ffffff;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.footer-sub {
    color: #cfcad9;
    font-weight: 700;
}

.footer-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-list li {
    margin: 6px 0;
}

.footer-list a {
    color: #c9c5d5;
    text-decoration: none;
}

.footer-list a:hover {
    color: #ffffff;
}

.selector-btn {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #c9c5d5;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.selector-btn:hover {
    background: #ffffff;
    color: #0d0d0d;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.sbtn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-weight: 700;
}

.sbtn:hover {
    background: #000;
}

.footer-bottom {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 18px;
    padding-top: 12px;
    text-align: center;
    color: #b8b4c4;
    font-size: 14px;
}

.small li {
    margin: 4px 0;
}

/* ===================================================== */
/* Responsive Improvements (global, md, sm, xs breakpoints) */
/* ===================================================== */

/* Fluid media - Ensure all images and videos are responsive */
img,
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent images from overflowing */
img {
    width: auto;
    height: auto;
}

/* Responsive tables */
table {
    width: 100%;
    overflow-x: auto;
    display: block;
}

@media (min-width: 768px) {
    table {
        display: table;
    }
}

/* Large tablets and down (<= 1200px) */
@media (max-width: 1200px) {
    .sidebar-rail {
        width: 88px;
    }

    .main-content {
        margin-left: 88px;
    }

    .section-header {
        font-size: 2.2rem;
    }

    /* Override inline font sizes for Circana intro */
    p[style*="font-size: 2rem"] {
        font-size: 1.85rem !important;
    }

    /* Override inline margins */
    section[style*="margin-top: 140px"] {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important;
    }

    section[style*="margin-top: 150px"] {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important;
    }

    /* Override inline font sizes in description section */
    p[style*="font-size: 2rem"][style*="color: #4a148c"] {
        font-size: 1.85rem !important;
    }

    /* Statistics section */
    .statistics-scroll[style*="max-height: 500px"] {
        max-height: 420px !important;
    }

    img[style*="height: 500px"] {
        height: 420px !important;
    }

    /* Stat numbers and descriptions */
    .stat-number {
        font-size: 3.2rem !important;
    }

    .stat-description {
        font-size: 1.4rem !important;
    }

    /* Solution intro */
    .solution-intro {
        font-size: 1.2rem !important;
    }

    /* Resources title and desc */
    .resources-title {
        font-size: 3rem !important;
    }

    .resources-desc {
        font-size: 1.15rem !important;
    }

    /* About section */
    .about-title {
        font-size: 3rem !important;
    }

    .about-desc {
        font-size: 1.15rem !important;
    }

    /* Testimonials */
    .testi-title {
        font-size: 3rem !important;
    }

    .testi-video {
        height: 340px !important;
    }

    /* Ready section */
    .ready-title {
        font-size: 4rem !important;
    }

    .ready-desc {
        font-size: 1.15rem !important;
    }
}

/* Tablets and down (<= 992px) */
@media (max-width: 992px) {
    .sidebar-rail {
        width: 84px;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .hero-section .row>.col-lg-6:first-child {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ready-title {
        font-size: 44px;
    }

    .content-card {
        width: 100%;
        max-width: 100%;
        height: 0;
        padding-bottom: 100%; /* Maintain square aspect ratio */
    }

    /* Reduce large manual top/bottom margins applied inline */
    .section[style],
    section[style] {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    /* Statistics: lower max-height and shrink fixed image height */
    .statistics-scroll {
        max-height: 360px !important;
    }

    .section .row img[style*="height: 500px"] {
        height: 320px !important;
    }

    /* Override inline font sizes for Circana intro */
    p[style*="font-size: 2rem"] {
        font-size: 1.75rem !important;
    }

    /* Override inline margins */
    section[style*="margin-top: 140px"] {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    section[style*="margin-top: 150px"] {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    /* Override inline font sizes in description section */
    p[style*="font-size: 2rem"][style*="color: #4a148c"] {
        font-size: 1.75rem !important;
    }

    p[style*="font-size: 1.1rem"] {
        font-size: 1.05rem !important;
    }

    /* Statistics section */
    .statistics-scroll[style*="max-height: 500px"] {
        max-height: 360px !important;
    }

    img[style*="height: 500px"] {
        height: 320px !important;
    }

    /* Stat numbers and descriptions */
    .stat-number {
        font-size: 3rem !important;
    }

    .stat-description {
        font-size: 1.3rem !important;
    }

    /* Section headers */
    .section-header {
        font-size: 2.2rem !important;
    }

    /* Solution intro */
    .solution-intro {
        font-size: 1.1rem !important;
    }

    /* Resources title and desc */
    .resources-title {
        font-size: 2.5rem !important;
    }

    .resources-desc {
        font-size: 1.1rem !important;
    }

    /* About section */
    .about-title {
        font-size: 2.5rem !important;
    }

    .about-desc {
        font-size: 1.1rem !important;
    }

    /* Testimonials */
    .testi-title {
        font-size: 2.5rem !important;
    }

    .testi-sub {
        font-size: 1.1rem !important;
    }

    .testi-video {
        height: 300px !important;
    }

    .testi-name {
        font-size: 1.5rem !important;
    }

    /* Ready section */
    .ready-title {
        font-size: 3.5rem !important;
    }

    .ready-desc {
        font-size: 1.1rem !important;
    }

    /* Insight cards */
    .insight-thumb {
        height: 150px !important;
    }

    .insight-title {
        font-size: 1.1rem !important;
    }

    /* Solution banner */
    .solution-banner {
        min-height: 250px !important;
    }

    /* Quick links */
    .quick-title {
        font-size: 1.15rem !important;
    }

    .quick-desc {
        font-size: 0.95rem !important;
    }

    /* Logos */
    .logos-row img {
        height: 85px !important;
    }

    .testi-brand img {
        height: 55px !important;
    }
}

/* Mobile landscape and down (<= 768px) */
@media (max-width: 768px) {
    .sidebar-rail {
        display: none;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-section {
        padding: 1.6rem 0 2rem !important;
        min-height: auto !important;
        align-items: flex-start !important;
    }

    .hero-section .row>.col-lg-6:first-child {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .hero-section .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        line-height: 1.4 !important;
        padding-top: 70px !important;
        font-weight: 700 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-section .hero-text {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem) !important;
        line-height: 1.7 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-section .btn-pink {
        width: 25% !important;
        max-width: 100% !important;
        padding: 0.45rem 0.9rem !important;
        font-size: 0.7rem !important;
    }

    .insights-grid {
        gap: 16px;
    }

    .content-card {
        width: 100%;
        max-width: 320px;
        height: 0;
        padding-bottom: 100%; /* Maintain square aspect ratio */
        margin: 0 auto;
    }

    /* Stats panel tighter on mobile */
    .statistics-scroll {
        max-height: 280px !important;
    }

    .section .row img[style*="height: 500px"] {
        height: 220px !important;
    }

    /* Category slider spacing */
    .category-slide {
        padding: 0 20px;
    }

    /* Override inline font sizes for Circana intro */
    p[style*="font-size: 2rem"] {
        font-size: 1.5rem !important;
        padding: 0 1rem !important;
    }

    /* Override inline margins */
    section[style*="margin-top: 140px"] {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    section[style*="margin-top: 150px"] {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    /* Override inline font sizes in description section */
    p[style*="font-size: 2rem"][style*="color: #4a148c"] {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    p[style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
    }

    /* Statistics section */
    .statistics-scroll[style*="max-height: 500px"] {
        max-height: 280px !important;
    }

    img[style*="height: 500px"] {
        height: 220px !important;
    }

    /* Stat numbers and descriptions */
    .stat-number {
        font-size: 2.5rem !important;
    }

    .stat-description {
        font-size: 1.1rem !important;
    }

    /* Section headers */
    .section-header {
        font-size: 2rem !important;
    }

    /* Solution intro */
    .solution-intro {
        font-size: 1rem !important;
        padding: 1.5rem 1rem !important;
    }

    /* Resources title and desc */
    .resources-title {
        font-size: 2rem !important;
    }

    .resources-desc {
        font-size: 1rem !important;
        padding: 0 1rem !important;
    }

    /* About section */
    .about-title {
        font-size: 2rem !important;
    }

    .about-desc {
        font-size: 1rem !important;
    }

    /* Testimonials */
    .testi-title {
        font-size: 2rem !important;
    }

    .testi-sub {
        font-size: 1rem !important;
    }

    .testi-video {
        height: 250px !important;
    }

    .testi-name {
        font-size: 1.25rem !important;
    }

    /* Ready section */
    .ready-title {
        font-size: 2.5rem !important;
    }

    .ready-desc {
        font-size: 1rem !important;
    }

    .ready-panel {
        padding: 2rem !important;
    }

    /* Insight cards */
    .insight-card {
        flex: 0 0 260px !important;
    }

    .insight-thumb {
        height: 140px !important;
    }

    .insight-title {
        font-size: 1rem !important;
    }

    /* Solution banner */
    .solution-banner {
        min-height: 220px !important;
    }

    .solution-pill {
        left: 16px !important;
        right: 16px !important;
        bottom: 16px !important;
        padding: 14px 18px !important;
    }

    /* Quick links */
    .quick-title {
        font-size: 1.1rem !important;
    }

    .quick-desc {
        font-size: 0.9rem !important;
    }

    /* Logos */
    .logos-row img {
        height: 70px !important;
    }

    .testi-brand img {
        height: 50px !important;
    }

    /* Brand logo */
    .brand-logo {
        height: 80px !important;
        max-width: 250px !important;
    }

    .footer-logo img,
    img.footer-logo {
        height: 80px !important;
        max-width: 250px !important;
    }
}

/* Small phones (<= 576px) */
@media (max-width: 576px) {
    .brand-text {
        display: none;
    }

    .nav-search {
        display: none;
    }

    .btn-contact {
        padding: 6px 10px;
    }

    .hero-section .row>.col-lg-6:first-child {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-section .hero-title {
        font-size: clamp(1.25rem, 6vw, 1.75rem) !important;
        line-height: 1.5 !important;
        padding-top: 70px !important;
        font-weight: 700 !important;
        margin-bottom: 0.75rem !important;
    }

    .hero-section .hero-text {
        font-size: clamp(0.85rem, 3vw, 1rem) !important;
        line-height: 1.8 !important;
        margin-bottom: 1.25rem !important;
    }
    
    .hero-section .btn-pink {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.65rem !important;
        width: 55% !important;
    }
    
    .hero-section .row>.col-lg-6:first-child {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .resources-title {
        font-size: 32px;
    }

    .section[style],
    section[style] {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    /* Override inline font sizes for Circana intro */
    p[style*="font-size: 2rem"] {
        font-size: 1.25rem !important;
        padding: 0 1rem !important;
    }

    /* Override inline margins */
    section[style*="margin-top: 140px"] {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    /* Override inline font sizes in description section */
    p[style*="font-size: 2rem"][style*="color: #4a148c"] {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }

    p[style*="font-size: 1.1rem"] {
        font-size: 0.95rem !important;
    }

    /* Statistics section */
    .statistics-scroll[style*="max-height: 500px"] {
        max-height: 250px !important;
    }

    img[style*="height: 500px"] {
        height: 200px !important;
    }

    /* Stat numbers and descriptions */
    .stat-number {
        font-size: 1.75rem !important;
    }

    .stat-description {
        font-size: 0.9rem !important;
    }

    /* Section headers */
    .section-header {
        font-size: 1.5rem !important;
    }

    /* Solution intro */
    .solution-intro {
        font-size: 0.9rem !important;
        padding: 1rem !important;
    }

    /* Resources title and desc */
    .resources-title {
        font-size: 1.75rem !important;
    }

    .resources-desc {
        font-size: 0.9rem !important;
        padding: 0 1rem !important;
    }

    /* About section */
    .about-title {
        font-size: 1.5rem !important;
    }

    .about-desc {
        font-size: 0.9rem !important;
    }

    /* Testimonials */
    .testi-title {
        font-size: 1.5rem !important;
    }

    .testi-sub {
        font-size: 0.9rem !important;
    }

    .testi-video {
        height: 200px !important;
    }

    .testi-name {
        font-size: 1.1rem !important;
    }

    /* Ready section */
    .ready-title {
        font-size: 1.75rem !important;
    }

    .ready-desc {
        font-size: 0.9rem !important;
    }

    .ready-panel {
        padding: 1.5rem !important;
    }

    /* Insight cards */
    .insight-card {
        flex: 0 0 260px !important;
    }

    .insight-thumb {
        height: 140px !important;
    }

    .insight-title {
        font-size: 0.95rem !important;
    }

    /* Content cards */
    .content-card {
        width: 100% !important;
        max-width: 100% !important;
        padding-bottom: 100% !important; /* Maintain square aspect ratio */
    }

    .content-card-overlay {
        padding: 1rem !important;
    }

    /* Solution banner */
    .solution-banner {
        min-height: 200px !important;
    }

    .solution-pill {
        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
        padding: 12px 16px !important;
        flex-direction: column !important;
        gap: 8px !important;
    }

    .solution-pill-btn {
        width: 100% !important;
        text-align: center !important;
    }

    /* Quick links */
    .quick-title {
        font-size: 1rem !important;
    }

    .quick-desc {
        font-size: 0.85rem !important;
    }

    /* Logos */
    .logos-row img {
        height: 50px !important;
    }

    .testi-brand img {
        height: 40px !important;
    }

    /* Brand logo */
    .brand-logo {
        height: 60px !important;
        max-width: 200px !important;
    }

    .footer-logo img,
    img.footer-logo {
        height: 60px !important;
        max-width: 200px !important;
    }
}

/* Enhanced Navigation Responsive Styles */
@media (max-width: 1199.98px) {
    .nav-search {
        max-width: 250px;
    }
}

@media (max-width: 992px) {
    .nav-actions {
        display: none !important;
    }
    
    .nav-search {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .nav-search {
        display: none;
    }
    
    .mobile-menu {
        padding: 1rem 0;
    }
    
    .mobile-links {
        padding: 0 1rem;
    }
    
    .mobile-social {
        padding: 1rem;
        gap: 0.75rem;
    }
}

@media (max-width: 576px) {
    .mobile-links .mobile-link {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .mobile-social {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Enhanced Footer Responsive Styles */
@media (max-width: 991.98px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer .row > div {
        margin-bottom: 2.5rem;
    }
    
    .footer-brand {
        margin-bottom: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.75rem;
    }
    
    .footer-tag {
        font-size: 0.9rem;
    }
    
    .footer-copy {
        font-size: 0.875rem;
        max-width: 100%;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-list {
        font-size: 0.875rem;
    }
    
    .footer-list li {
        margin: 4px 0;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer .row > div {
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1rem;
    }
}

/* ===================================================== */
/* COMPREHENSIVE RESPONSIVE STYLES FOR ALL SCREEN SIZES */
/* ===================================================== */

/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Large Devices (1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .container {
        max-width: 1140px;
    }
}

/* Medium Devices (992px to 1199px) - Tablets Landscape */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
    
    .hero-section {
        min-height: 60vh;
        padding: 3.5rem 0;
    }
    
    .hero-section .row > div {
        padding-left: 2rem;
        padding-right: 2rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .hero-text {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .btn-pink {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .section-header {
        font-size: 2rem;
    }
    
    /* Header adjustments */
    .nav-search {
        max-width: 250px;
    }
}

/* Small Devices (768px to 991px) - Tablets Portrait */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    
    /* Hide sidebar dropdown on tablets */
    .side-dropdown {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0 !important;
    }
    
    .sidebar-rail {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-section .row > div {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
        line-height: 1.3 !important;
        margin-bottom: 1.25rem !important;
    }
    
    .hero-text {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem) !important;
        margin-bottom: 1.75rem !important;
        line-height: 1.7 !important;
    }
    
    .btn-pink {
        padding: 0.65rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: auto;
        max-width: 100%;
    }
    
    .section-header {
        font-size: 1.75rem;
    }
    
    /* Grid adjustments */
    .insights-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    .content-card {
        width: 100%;
        max-width: 100%;
        height: 0;
        padding-bottom: 100%; /* Maintain square aspect ratio */
    }
    
    /* Footer adjustments */
    .site-footer .row > div {
        margin-bottom: 2rem;
    }
}

/* Medium Devices (768px to 991px) - Tablets Portrait */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Override inline font sizes for Circana intro */
    p[style*="font-size: 2rem"] {
        font-size: 1.6rem !important;
    }

    /* Override inline margins */
    section[style*="margin-top: 140px"] {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    section[style*="margin-top: 150px"] {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    /* Override inline font sizes in description section */
    p[style*="font-size: 2rem"][style*="color: #4a148c"] {
        font-size: 1.6rem !important;
    }

    p[style*="font-size: 1.1rem"] {
        font-size: 1.05rem !important;
    }

    /* Statistics section */
    .statistics-scroll[style*="max-height: 500px"] {
        max-height: 300px !important;
    }

    img[style*="height: 500px"] {
        height: 250px !important;
    }

    /* Stat numbers and descriptions */
    .stat-number {
        font-size: 2.75rem !important;
    }

    .stat-description {
        font-size: 1.2rem !important;
    }

    /* Section headers */
    .section-header {
        font-size: 2.1rem !important;
    }

    /* Solution intro */
    .solution-intro {
        font-size: 1.05rem !important;
    }

    /* Resources title and desc */
    .resources-title {
        font-size: 2.25rem !important;
    }

    .resources-desc {
        font-size: 1.05rem !important;
    }

    /* About section */
    .about-title {
        font-size: 2.25rem !important;
    }

    .about-desc {
        font-size: 1.05rem !important;
    }

    /* Testimonials */
    .testi-title {
        font-size: 2.25rem !important;
    }

    .testi-sub {
        font-size: 1.05rem !important;
    }

    .testi-video {
        height: 280px !important;
    }

    .testi-name {
        font-size: 1.35rem !important;
    }

    /* Ready section */
    .ready-title {
        font-size: 3rem !important;
    }

    .ready-desc {
        font-size: 1.05rem !important;
    }

    /* Insight cards */
    .insight-thumb {
        height: 150px !important;
    }

    .insight-title {
        font-size: 1.05rem !important;
    }

    /* Solution banner */
    .solution-banner {
        min-height: 240px !important;
    }

    /* Quick links */
    .quick-title {
        font-size: 1.12rem !important;
    }

    .quick-desc {
        font-size: 0.92rem !important;
    }
}

/* Extra Small Devices (576px to 767px) - Large Phones */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container {
        max-width: 540px;
    }
    
    .sidebar-rail {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0 !important;
    }
    
    .side-dropdown {
        display: none !important;
    }
    
    /* Header adjustments */
    .top-nav {
        padding: 0.5rem 0;
    }
    
    .brand-text {
        font-size: 1.25rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .btn-contact {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Hero section */
    .hero-section {
        padding: 2rem 0 !important;
        min-height: auto !important;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.4 !important;
        padding-top: 0 !important;
        font-weight: 700 !important;
    }
    
    .hero-text {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }
    
    /* Typography */
    .section-header {
        font-size: 1.5rem;
    }
    
    h1 {
        font-size: 1.75rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
    }
    
    /* Grids and cards */
    .insights-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .content-card {
        width: 100%;
        max-width: 100%;
        height: 0;
        padding-bottom: 100%; /* Maintain square aspect ratio */
        margin-bottom: 1rem;
    }
    
    /* Statistics */
    .statistics-scroll {
        max-height: 300px !important;
    }
    
    /* Footer */
    .site-footer {
        padding: 2.5rem 0 1.5rem !important;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-list {
        font-size: 0.875rem;
    }
    
    /* Sections spacing */
    .section {
        padding: 2rem 0 !important;
    }
    
    section[style*="margin-top"],
    .section[style*="margin-top"] {
        margin-top: 2rem !important;
    }
    
    section[style*="margin-bottom"],
    .section[style*="margin-bottom"] {
        margin-bottom: 2rem !important;
    }
}

/* Small Phones (up to 575px) */
@media (max-width: 575.98px) {
    .container {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Sidebar completely hidden */
    .sidebar-rail {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    .side-dropdown {
        display: none !important;
    }
    
    /* Header */
    .top-nav {
        padding: 0.5rem 0;
        height: auto !important;
        min-height: 60px;
    }
    
    .top-nav .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .top-nav .d-flex {
        height: auto !important;
        min-height: 60px;
        flex-wrap: wrap;
    }
    
    .brand {
        font-size: 1rem;
    }
    
    .brand-text {
        display: none;
    }
    
    .brand-mark {
        width: 32px;
        height: 32px;
    }
    
    .nav-search {
        display: none !important;
    }
    
    .nav-actions {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .btn-contact {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .icon-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    /* Mobile menu */
    .mobile-menu {
        padding: 0.75rem 0;
    }
    
    .mobile-links {
        padding: 0 0.75rem;
        gap: 0.5rem;
        padding-bottom: 21px;
    }
    
    .mobile-link {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .mobile-link i {
        font-size: 16px;
    }
    
    .mobile-sublink {
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        font-size: 0.85rem;
    }
    
    .mobile-social {
        padding: 0.75rem;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Hero section */
    .hero-section {
        padding: 1.5rem 0 !important;
        min-height: auto !important;
    }
    
    .hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem;
        padding-top: 0 !important;
        font-weight: 700 !important;
    }
    
    .hero-text {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .btn-pink {
        padding: 0.5rem 1.1rem !important;
        font-size: 0.75rem !important;
        width: 100%;
        max-width: 300px;
    }
    
    /* Typography */
    .section-header {
        font-size: 1.25rem;
    }
    
    h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    h2 {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }
    
    h3 {
        font-size: 1.1rem !important;
    }
    
    h4 {
        font-size: 1rem !important;
    }
    
    h5 {
        font-size: 0.95rem !important;
    }
    
    p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Grids */
    .insights-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .insight-card {
        margin-bottom: 1rem;
    }
    
    /* Cards */
    .content-card {
        width: 100% !important;
        max-width: 100% !important;
        height: 0 !important;
        padding-bottom: 100% !important; /* Maintain square aspect ratio */
        margin-bottom: 1rem;
    }
    
    .content-card-overlay {
        padding: 1rem;
    }
    
    .content-card-overlay h3 {
        font-size: 1.1rem;
    }
    
    .content-card-overlay p {
        font-size: 0.85rem;
    }
    
    /* Statistics */
    .statistics-scroll {
        max-height: 250px !important;
        padding-right: 0.5rem;
    }
    
    .stat-item {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-description {
        font-size: 0.8rem;
    }
    
    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    img[style*="height: 500px"],
    img[style*="height:500px"] {
        height: 200px !important;
    }
    
    /* Sections */
    .section {
        padding: 1.5rem 0 !important;
    }
    
    section[style*="margin-top"],
    .section[style*="margin-top"] {
        margin-top: 1.5rem !important;
    }
    
    section[style*="margin-bottom"],
    .section[style*="margin-bottom"] {
        margin-bottom: 1.5rem !important;
    }
    
    section[style*="padding-top"],
    .section[style*="padding-top"] {
        padding-top: 1.5rem !important;
    }
    
    section[style*="padding-bottom"],
    .section[style*="padding-bottom"] {
        padding-bottom: 1.5rem !important;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn-visit,
    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    /* Forms */
    .form-control,
    .form-field {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .site-footer {
        padding: 2rem 0 1rem !important;
    }
    
    .site-footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer-logo {
        font-size: 1.25rem;
    }
    
    .footer-tag {
        font-size: 0.85rem;
    }
    
    .footer-copy {
        font-size: 0.8rem;
        max-width: 100%;
    }
    
    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-list {
        font-size: 0.8rem;
    }
    
    .footer-list li {
        margin: 0.25rem 0;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 0.75rem;
    }
    
    /* Category slider */
    .category-slide {
        padding: 0 1rem;
        font-size: 0.8rem;
    }
    
    /* Resources section */
    .resources-title {
        font-size: 1.5rem;
    }
    
    .resources-desc {
        font-size: 0.85rem;
    }
    
    /* Ready section */
    .ready-title {
        font-size: 1.75rem;
    }
    
    .ready-desc {
        font-size: 0.9rem;
    }
    
    .ready-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .ready-btn {
        width: 100%;
    }
    
    /* About section */
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-desc {
        font-size: 0.85rem;
    }
    
    /* Testimonials */
    .testi-title {
        font-size: 1.5rem;
    }
    
    .testi-sub {
        font-size: 0.9rem;
    }
    
    .testi-text {
        font-size: 0.85rem;
    }
    
    /* Solution banner */
    .solution-intro {
        font-size: 0.85rem;
        padding: 1rem;
    }
    
    .solution-pill-text {
        font-size: 0.8rem;
    }
    
    .quick-title {
        font-size: 1.1rem;
    }
    
    .quick-desc {
        font-size: 0.8rem;
    }
    
    /* Row adjustments */
    .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .row > * {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    /* Ensure no horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
    }
}

/* Landscape orientation for small devices */
@media (max-width: 767.98px) and (orientation: landscape) {
    .hero-section {
        min-height: auto !important;
        padding: 1rem 0 !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
}

/* Print styles */
@media print {
    .sidebar-rail,
    .side-dropdown,
    .top-nav,
    .mobile-menu,
    .nav-toggle,
    .btn,
    .mobile-social {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0 !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* ===================================================== */
/* ADDITIONAL RESPONSIVE UTILITIES */
/* ===================================================== */

/* Prevent text from overflowing */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure containers don't overflow */
.container,
.container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 576px) {
    .container,
    .container-fluid {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .container,
    .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 992px) {
    .container,
    .container-fluid {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

/* Responsive text alignment */
@media (max-width: 767.98px) {
    .text-center-mobile {
        text-align: center !important;
    }
    
    .text-left-mobile {
        text-align: left !important;
    }
}

/* Hide on mobile, show on desktop */
.hide-mobile {
    display: block;
}

@media (max-width: 767.98px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Show on mobile, hide on desktop */
.show-mobile {
    display: none;
}

@media (max-width: 767.98px) {
    .show-mobile {
        display: block !important;
    }
}

/* Full width on mobile */
@media (max-width: 767.98px) {
    .full-width-mobile {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Stack columns on mobile */
@media (max-width: 767.98px) {
    .stack-mobile {
        flex-direction: column !important;
    }
    
    .stack-mobile > * {
        width: 100% !important;
        margin-bottom: 1rem;
    }
}

/* Responsive spacing utilities */
@media (max-width: 767.98px) {
    .mb-mobile-0 {
        margin-bottom: 0 !important;
    }
    
    .mb-mobile-1 {
        margin-bottom: 0.5rem !important;
    }
    
    .mb-mobile-2 {
        margin-bottom: 1rem !important;
    }
    
    .mb-mobile-3 {
        margin-bottom: 1.5rem !important;
    }
    
    .mt-mobile-0 {
        margin-top: 0 !important;
    }
    
    .mt-mobile-1 {
        margin-top: 0.5rem !important;
    }
    
    .mt-mobile-2 {
        margin-top: 1rem !important;
    }
    
    .mt-mobile-3 {
        margin-top: 1.5rem !important;
    }
    
    .px-mobile-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .px-mobile-1 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .px-mobile-2 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Ensure all Bootstrap columns stack properly on mobile */
@media (max-width: 767.98px) {
    [class*="col-"] {
        margin-bottom: 1rem;
    }
}

/* Ensure fixed header works properly on mobile */
@media (max-width: 767.98px) {
    .fixed-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        width: 100%;
    }
    
    /* Ensure hamburger button is always on top */
    .nav-toggle {
        position: relative;
        z-index: 1040 !important;
        pointer-events: auto !important;
    }
    
    /* Ensure header container doesn't block clicks */
    .top-nav .container-fluid {
        position: relative;
        z-index: 1031;
    }
}

/* Smooth scrolling */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Contact Form Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.contact-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 0;
    border: none;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #4a148c 0%, #6b46c1 100%);
    color: white;
    border-radius: 12px 12px 0 0;
}

.contact-modal-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}

.contact-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.contact-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-modal-body {
    padding: 2rem;
}

.contact-form-group {
    margin-bottom: 1.5rem;
}

.contact-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.contact-form-label .required {
    color: #ef4444;
    margin-left: 2px;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: #4a148c;
    box-shadow: 0 0 0 3px rgba(74, 20, 140, 0.1);
}

.contact-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 576px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

.contact-form-submit {
    width: 100%;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #4a148c 0%, #6b46c1 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 1rem;
}

.contact-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 20, 140, 0.3);
}

.contact-form-submit:active {
    transform: translateY(0);
}

.contact-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-form-success {
    display: none;
    padding: 2rem;
    text-align: center;
}

.contact-form-success.show {
    display: block;
}

.contact-form-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.contact-form-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-form-success-message {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Make Contact Us buttons trigger modal */
.btn-contact,
.ready-btn-primary,
.mobile-cta {
    cursor: pointer;
}

/* Contact Us Button - Image Style */
.contact-us-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background-color: #ffffff;
    border: 1px solid #4a148c;
    border-radius: 8px;
    color: #4a148c;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(74, 20, 140, 0.1);
    white-space: nowrap;
}

.contact-us-button:hover {
    background-color: #f5f0fb;
    border-color: #6a1b9a;
    color: #6a1b9a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 20, 140, 0.15);
}

.contact-us-button i {
    font-size: 1.1rem;
    color: #4a148c;
}

.contact-us-button:hover i {
    color: #6a1b9a;
}

.contact-us-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .contact-us-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .contact-us-button-container {
        padding: 20px 0;
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .contact-us-button {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
    
    .contact-us-button i {
        font-size: 0.95rem;
    }
    
    .contact-us-button-container {
        padding: 16px 0;
        margin-top: 24px;
    }
}