/* ==========================================================================
   Apurav Gupta - Premium Financial Advisor Custom Theme Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0B4DBA;
    --primary-light: #4D8BFF;
    --primary-dark: #073E99;
    --bg-light: #F8FAFC;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --card-shadow: 0 10px 30px -10px rgba(11, 77, 186, 0.08);
    --hover-shadow: 0 20px 40px -15px rgba(11, 77, 186, 0.15);
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Typography Overrides */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #0F172A;
    font-weight: 700;
}

/* Scroll Trigger Animations Setup */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Hero Section --- */
.premium-hero {
    position: relative;
    background: url('../images/banner-workspace.png') no-repeat center center;
    background-size: cover;
    padding: 160px 0 140px;
    color: #ffffff;
    overflow: hidden;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 77, 186, 0.75) 100%);
    z-index: 1;
}

.premium-hero .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.hero-title {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-premium-primary {
    background: var(--primary);
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 14px 35px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(11, 77, 186, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-premium-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 77, 186, 0.6);
    color: #ffffff;
    text-decoration: none;
}

.btn-premium-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 12px 33px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
}

.btn-premium-outline:hover {
    background: #ffffff;
    color: var(--primary-dark);
    transform: translateY(-2px);
    text-decoration: none;
}

/* --- Stats Counter Section --- */
.stats-section {
    background: #ffffff;
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.stats-card-container {
    background: #ffffff;
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    padding: 30px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.stat-item {
    text-align: center;
    border-right: 1px solid #edf2f7;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Services Grid Section --- */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.service-card-premium {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(11, 77, 186, 0.2);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(11, 77, 186, 0.05);
    color: var(--primary);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card-premium:hover .service-icon-box {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1E293B;
}

.service-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* --- Why Choose Us Section --- */
.why-choose-section {
    background-color: var(--bg-light);
}

.why-card {
    background: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 30px;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.why-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.why-title {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 12px;
}

.why-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* --- Latest Market Insights Section --- */
.blog-card-premium {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.blog-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-card-body {
    padding: 30px;
}

.blog-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-title {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-title a {
    color: #1E293B;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* --- Meet the Advisor Section --- */
.advisor-card-premium {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 50px;
}

.advisor-avatar-wrapper {
    display: inline-block;
    padding: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    box-shadow: 0 10px 25px rgba(11, 77, 186, 0.2);
}

.advisor-avatar {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
}

.advisor-name {
    font-size: 28px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 5px;
}

.advisor-tagline {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.advisor-bio {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.highlight-list li {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.highlight-list li i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 16px;
}

/* --- Financial Calculators Section --- */
.calculator-section {
    background-color: var(--bg-light);
}

.calc-panel {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    padding: 40px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.calc-nav-tabs {
    display: flex;
    justify-content: center;
    border: none;
    margin-bottom: 35px;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 30px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.calc-tab-link {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.calc-tab-link.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(11, 77, 186, 0.2);
}

.calc-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 14px;
}

.calc-value {
    color: var(--primary);
    font-weight: 700;
}

.calc-range-slider {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 25px;
}

.calc-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(11, 77, 186, 0.4);
    transition: var(--transition-smooth);
}

.calc-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-result-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 25px;
    text-align: center;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.calc-result-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.calc-result-value {
    font-size: 32px;
    font-weight: 800;
    color: #0F172A;
    margin-top: 5px;
    font-family: 'Poppins', sans-serif;
}

.calc-split-val {
    font-size: 20px;
    font-weight: 700;
}

.calc-progress-wrapper {
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 30px;
    display: flex;
}

.calc-bar-invested {
    background: #cbd5e0;
    height: 100%;
    transition: width 0.3s ease;
}

.calc-bar-returns {
    background: var(--primary);
    height: 100%;
    transition: width 0.3s ease;
}

.calc-legend {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.legend-color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

/* --- Testimonials Section --- */
.testimonials-section {
    background: #ffffff;
}

.testimonial-card {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 40px;
}

.testimonial-quote-icon {
    font-size: 48px;
    color: rgba(11, 77, 186, 0.15);
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-client-name {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.testimonial-client-role {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
}

/* Testimonial slider indicators styling */
.testimonial-carousel .carousel-indicators {
    bottom: -50px;
}

.testimonial-carousel .carousel-indicators li {
    background-color: #cbd5e0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    margin: 0 6px;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.testimonial-carousel .carousel-indicators li.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* --- Call-To-Action (CTA) Section --- */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #ffffff;
    text-align: center;
}

.cta-title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

/* --- Responsiveness & Media Queries --- */
@media (max-width: 991px) {
    .premium-hero {
        padding: 120px 0 100px;
        text-align: center;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid #edf2f7;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .advisor-card-premium {
        padding: 30px;
        text-align: center;
    }
    .highlight-list {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 32px;
    }
    .btn-premium-primary, .btn-premium-outline {
        display: block;
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
}

/* --- About Page Custom Component Styles --- */
.about-hero {
    position: relative;
    background: url('../images/banner-workspace.png') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 77, 186, 0.75) 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.about-breadcrumb {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.about-breadcrumb li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.about-breadcrumb li a:hover {
    color: var(--primary-light);
}

.about-breadcrumb li::after {
    content: '/';
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.about-breadcrumb li:last-child::after {
    display: none;
}

.about-breadcrumb li.active {
    color: var(--primary-light);
    font-weight: 600;
}

/* --- Mission / Vision Cards --- */
.mv-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 40px;
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.mv-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

/* --- Timeline Working Process --- */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
    transform: translateY(-50%);
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    background: #ffffff;
    padding: 20px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 3px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.process-step:hover .step-num {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(11, 77, 186, 0.3);
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Core Values --- */
.value-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius-md);
    padding: 30px;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(11, 77, 186, 0.2);
}

.value-icon {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Mobile responsive fixes for timeline */
@media (max-width: 767px) {
    .process-timeline::before {
        left: 25px;
        top: 0;
        width: 3px;
        height: 100%;
        transform: none;
    }
    .process-step {
        text-align: left;
        display: flex;
        align-items: flex-start;
        padding-left: 50px;
        margin-bottom: 30px;
    }
    .process-step:last-child {
        margin-bottom: 0;
    }
    .step-num {
        position: absolute;
        left: 0;
        top: 15px;
        margin-bottom: 0;
    }
}

/* --- Blog Page Component Styles --- */
.featured-blog-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    margin-bottom: 40px;
}

.featured-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
}

.featured-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

@media (max-width: 767px) {
    .featured-img-wrapper {
        height: 200px;
    }
}

.sidebar-search-box {
    position: relative;
}

.sidebar-search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
}

.sidebar-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 77, 186, 0.15);
}

.sidebar-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #ffffff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sidebar-search-btn:hover {
    background: var(--primary-dark);
}

.widget-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-categories-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
}

.widget-categories-list li:last-child {
    border-bottom: none;
}

.widget-categories-list li a {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.widget-categories-list li a:hover {
    color: var(--primary);
}

.widget-categories-count {
    background: #edf2f7;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}

.recent-post-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

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

.recent-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-md);
    object-fit: cover;
    margin-right: 15px;
}

.recent-post-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.recent-post-title a {
    color: #1e293b;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.recent-post-title a:hover {
    color: var(--primary);
}

.recent-post-date {
    font-size: 11px;
    color: var(--text-muted);
}

.newsletter-form-input {
    width: 100%;
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid #cbd5e0;
    font-size: 14px;
    outline: none;
    margin-bottom: 15px;
}

.newsletter-form-input:focus {
    border-color: var(--primary);
}

.sidebar-cta-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    color: #ffffff;
    text-align: center;
}

.sidebar-cta-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.sidebar-cta-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Detailed Services Alternating Sections --- */
.service-detail-row {
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-row:last-child {
    margin-bottom: 0;
}

.service-detail-img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    max-height: 350px;
    width: 100%;
    object-fit: cover;
    border: 5px solid #ffffff;
}

.service-detail-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.service-detail-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* --- 5-Step Process Timeline --- */
.timeline-flex-5 {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.timeline-flex-5::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
    transform: translateY(-50%);
}

.process-step-5 {
    position: relative;
    z-index: 2;
    text-align: center;
    background: #ffffff;
    width: 18%;
}

.process-step-5:hover .step-num {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(11, 77, 186, 0.3);
}

/* --- FAQ Accordion --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
}

.faq-card:hover {
    border-color: rgba(11, 77, 186, 0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.faq-header {
    padding: 20px 25px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.faq-icon-indicator {
    font-size: 14px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-body {
    padding: 0 25px 20px;
    display: none;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Mobile responsive fixes for 5-step timeline */
@media (max-width: 991px) {
    .timeline-flex-5 {
        flex-direction: column;
    }
    .timeline-flex-5::before {
        left: 25px;
        top: 0;
        width: 3px;
        height: 100%;
        transform: none;
    }
    .process-step-5 {
        text-align: left;
        display: flex;
        align-items: flex-start;
        padding-left: 55px;
        margin-bottom: 30px;
        width: 100%;
    }
    .process-step-5:last-child {
        margin-bottom: 0;
    }
    .process-step-5 .step-num {
        position: absolute;
        left: 0;
        top: 0;
        margin-bottom: 0;
    }
}

/* --- Contact Page Component Styles --- */
.contact-card-premium {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    text-align: center;
}

.contact-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(11, 77, 186, 0.2);
}

.contact-card-icon {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.contact-card-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 14px;
}

.contact-form-input {
    width: 100%;
    padding: 12px 18px;
    border-radius: var(--border-radius-md);
    border: 1px solid #cbd5e0;
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
}

.contact-form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 77, 186, 0.15);
}

.google-map-area {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(226, 232, 240, 0.8);
    height: 400px;
}

.google-map-area iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.status-message-label {
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

/* --- Corporate Footer Custom Styles --- */
.financial-footer {
    background-color: #0B1F3A !important;
    padding: 80px 0 0px !important;
    color: #94A3B8 !important;
}

.financial-footer p {
    color: #94A3B8 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: #94A3B8 !important;
    text-decoration: none !important;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-links-list li a:hover {
    color: #4D8BFF !important;
    padding-left: 5px;
}

.footer-social-icons {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.footer-social-icons li {
    margin-right: 15px;
}

.footer-social-icons li a {
    color: #94A3B8 !important;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.footer-social-icons li a:hover {
    color: #4D8BFF !important;
}

.footer-compliance-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
    margin-top: 50px;
}

.footer-compliance-text {
    font-size: 12px !important;
    line-height: 1.7 !important;
    color: rgba(148, 163, 184, 0.7) !important;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 15px;
    text-transform: none !important;
}

.footer-copyright-text {
    font-size: 12px !important;
    color: rgba(148, 163, 184, 0.4) !important;
    text-align: center;
    margin: 0;
    text-transform: none !important;
}

/* --- Contact Page Responsiveness & Styling Helpers --- */
.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.contact-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 25px;
}

.contact-submit-btn {
    border: none;
    cursor: pointer;
    width: auto;
}

.contact-why-card {
    padding: 25px;
    height: auto !important;
}

.contact-why-card-icon {
    margin-bottom: 12px;
    font-size: 22px;
}

.contact-why-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.contact-why-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.contact-compliance-section {
    background-color: #ffffff;
    padding: 30px 0;
    border-top: 1px solid #e2e8f0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-compliance-text {
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-transform: none;
}

@media (max-width: 575px) {
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    .contact-submit-btn {
        width: 100%;
        display: block;
    }
    .contact-why-card {
        padding: 20px;
    }
}

/* --- Horizontal Blog Cards (Reduced Height) --- */
.blog-card-horizontal .horizontal-img-wrapper {
    height: 240px;
}

.blog-card-horizontal .horizontal-card-body {
    padding: 25px 30px;
}

.blog-card-horizontal .blog-title {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-horizontal .blog-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .blog-card-horizontal .horizontal-img-wrapper {
        height: 200px;
    }
    .blog-card-horizontal .horizontal-card-body {
        padding: 20px;
    }
}

/* --- Premium Hero Carousel & Slide Animations --- */
.hero-carousel {
    position: relative;
    background-color: #0F172A;
}

/* Staggered text and image animations for active slide */
.hero-carousel .carousel-item .hero-subtitle,
.hero-carousel .carousel-item .hero-title,
.hero-carousel .carousel-item .hero-desc,
.hero-carousel .carousel-item .hero-buttons,
.hero-carousel .carousel-item .col-lg-5 img {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-carousel .carousel-item.active .hero-subtitle,
.hero-carousel .carousel-item.active .hero-title,
.hero-carousel .carousel-item.active .hero-desc,
.hero-carousel .carousel-item.active .hero-buttons,
.hero-carousel .carousel-item.active .col-lg-5 img {
    opacity: 1;
    transform: translateY(0);
}

.hero-carousel .carousel-item.active .hero-subtitle {
    transition-delay: 0.15s;
}
.hero-carousel .carousel-item.active .hero-title {
    transition-delay: 0.3s;
}
.hero-carousel .carousel-item.active .hero-desc {
    transition-delay: 0.45s;
}
.hero-carousel .carousel-item.active .hero-buttons {
    transition-delay: 0.6s;
}
.hero-carousel .carousel-item.active .col-lg-5 img {
    transition-delay: 0.5s;
    transform: scale(1) translateY(0);
}

.hero-carousel .carousel-item .col-lg-5 img {
    transform: scale(0.95) translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Override background images for slides */
.premium-hero.hero-slide-1 {
    background-image: url('../images/banner-workspace.png');
}
.premium-hero.hero-slide-2 {
    background-image: url('../images/banner-slider.jpg');
}
.premium-hero.hero-slide-3 {
    background-image: url('../images/banner-slider-2.jpg');
}
.premium-hero.hero-slide-4 {
    background-image: url('../images/banner-item-1.jpg');
}
.premium-hero.hero-slide-5 {
    background-image: url('../images/banner-item-2.jpg');
}

/* Custom Sleek Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 10;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 0.8;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    opacity: 1;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(11, 77, 186, 0.4);
}

.hero-carousel .carousel-control-prev {
    left: 30px;
}

.hero-carousel .carousel-control-next {
    right: 30px;
}

/* Custom Indicators */
.hero-carousel .carousel-indicators {
    bottom: 25px;
    z-index: 10;
}

.hero-carousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    border: none;
    margin: 0 5px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.hero-carousel .carousel-indicators li.active {
    width: 25px;
    border-radius: 5px;
    background-color: var(--primary-light);
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        display: none; /* Hide arrow navigation on tablet/mobile for clean text display */
    }
    .hero-carousel .carousel-indicators {
        bottom: 15px;
    }
}

