/* Enhanced Sections CSS */

/* Blog Hero Section Styles */
.blog-hero-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: linear-gradient(135deg, #f6dc00 0%, #ffd700 100%);
}

.shape1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -50px;
    animation: float 12s ease-in-out infinite;
}

.shape3 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 50%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.hero-decorative-element {
    margin: 0 auto;
    width: 80px;
    animation: pulse 2s infinite;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 0.5rem;
    font-weight: normal;
}

/* Enhanced Search Bar */
.search-bar-wrapper {
    position: relative;
    max-width: 600px;
    margin: 2rem auto;
}

.premium-search-form .input-group {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 50px;
    overflow: hidden;
}

.search-input {
    height: 60px;
    border-radius: 50px 0 0 50px !important;
    padding-left: 30px !important;
    font-size: 1.1rem;
    border: none !important;
    background: #fff !important;
}

.btn-search {
    width: 60px;
    border-radius: 0 50px 50px 0 !important;
    background: linear-gradient(135deg, #f6dc00 0%, #ffd700 100%);
    color: #fff;
    font-size: 1.2rem;
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.search-decoration {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
}

/* Blog Stats */
.blog-stats {
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    border: 1px solid #f6dc00;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #f6dc00 0%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #f6dc00; /* Fallback */
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Search Form Styles */
.search-input {
    color: #000 !important;
    background-color: #fff !important;
}

.search-input::placeholder {
    color: #666 !important;
}

.premium-search-form .form-control:focus {
    border-color: #333 !important;
    color: #000 !important;
}

/* Gradient Effects */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(246,220,0,0.1) 0%, rgba(246,220,0,0.2) 100%);
    z-index: 0;
}

.text-gradient {
    background: linear-gradient(135deg, #f6dc00 0%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Investment Journey Timeline */
.journey-timeline {
    position: relative;
    padding: 2rem 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #f6dc00;
}

.journey-step {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.journey-step.active {
    opacity: 1;
}

.journey-step:hover {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #f6dc00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    /* position: absolute; */
    left: 50%;
    /* transform: translateX(-50%); */
    z-index: 2;
}

.step-content {
    width: 45%;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.journey-step:nth-child(odd) .step-content {
    margin-left: auto;
    margin-right: 55%;
}

.journey-step:nth-child(even) .step-content {
    margin-left: 55%;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #f6dc00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
}

.service-hover {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #f6dc00, transparent);
    padding: 1rem;
    transition: all 0.3s ease;
    opacity: 0;
}

.service-card:hover .service-hover {
    bottom: 0;
    opacity: 1;
}

/* Advantage Cards */
.advantage-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f6dc00 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 32px;
    color: #000;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #f6dc00 0%, #ffd700 100%);
    color: #000;
}

.btn-primary-yellow {
    background: #000;
    color: #f6dc00;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-yellow:hover {
    background: #f6dc00;
    color: #000;
}

.btn-outline-yellow {
    border: 2px solid #f6dc00;
    color: #f6dc00;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-yellow:hover {
    background: #f6dc00;
    color: #000;
}

/* Process Flow */
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 0;
    position: relative;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #f6dc00;
    transform: translateY(-50%);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.process-step.active {
    opacity: 1;
}

.process-step:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: #f6dc00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 32px;
    color: #000;
    position: relative;
}

.process-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.process-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #f6dc00;
    font-size: 24px;
    z-index: 2;
}

.process-step:last-child .process-arrow {
    display: none;
}

/* Demat Service Cards */
.demat-service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.demat-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #aca24b 0%, #ffd90054 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: #f6dc00;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f6dc00 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 28px;
    color: #000;
}

/* Animations */
.floating-animation {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Loan Calculator Styles */
.calculator-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.calculator-inputs label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-range {
    height: 6px;
    background: #f6dc00;
}

.form-range::-webkit-slider-thumb {
    background: #000;
    border: 2px solid #f6dc00;
}

.result-box {
    background: linear-gradient(135deg, #f6dc00 0%, #ffd700 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: #000;
}

.result-box h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.result-box h3 {
    font-size: 1.75rem;
    margin: 0;
    font-weight: bold;
}

/* Accordion Styles */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: #f6dc00;
    color: #000;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #f6dc00;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: #f6dc00;
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f6dc00 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #000;
    margin: 1rem auto;
}

/* Security Cards */
.security-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.security-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f6dc00 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 28px;
    color: #000;
}

.ltv-indicator {
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(246,220,0,0.1);
    border-radius: 50px;
}

.ltv-indicator span {
    font-weight: 500;
    color: #000;
}

/* Benefits Wrapper */
.benefits-wrapper {
    background: #585850;
    border-radius: 16px;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 32px;
    color: #f6dc00;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* CTA Box in Benefits Section */
.benefits-wrapper .cta-box {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.gradient-card {
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gradient-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.primary-gradient {
    background: linear-gradient(135deg, rgba(0,123,255,0.1) 0%, rgba(0,123,255,0.05) 100%);
}

.secondary-gradient {
    background: linear-gradient(135deg, rgba(220,53,69,0.1) 0%, rgba(220,53,69,0.05) 100%);
}

/* Fade-in Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease forwards;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Additional Utility Classes */
.min-vh-75 {
    min-height: 75vh;
}

.zindex-1 {
    z-index: 1;
}

.stats-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Theme Colors and Components */
:root {
    --theme-color: #f6dc00;
    --theme-color-rgb: 246, 220, 0;
    --theme-dark: #e6ce00;
    --theme-light: rgba(246, 220, 0, 0.1);
}

.btn-theme {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: #000;
}

.btn-theme:hover {
    background-color: var(--theme-dark);
    border-color: var(--theme-dark);
    color: #000;
}

.btn-outline-theme {
    border-color: var(--theme-color);
    color: #000;
}

.btn-outline-theme:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: #000;
}

.theme-text {
    color: var(--theme-color);
}

.bg-theme-light {
    background-color: var(--theme-light);
}

/* Hero Alternative Styles */
.hero-alternative {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.accent-line {
    width: 50px;
    height: 3px;
    background-color: var(--theme-color);
}

.investment-stats {
    padding: 2rem;
}

.accent-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--theme-light) 0%, rgba(246, 220, 0, 0) 70%);
    top: -100px;
    right: -100px;
    z-index: -1;
}

/* Timeline Styles */
.timeline-wrapper {
    padding: 3rem 0;
}

.timeline-track {
    position: absolute;
    width: 2px;
    background-color: var(--theme-color);
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--theme-color);
    display: inline-block;
    position: relative;
    z-index: 1;
}

.timeline-marker {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--theme-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-content {
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-stats .stat-box {
    border: 1px solid rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.timeline-stats .stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 767.98px) {
    .timeline-track {
        left: 20px;
    }
    
    .timeline-content {
        margin-left: 40px;
    }
    
    .timeline-dot {
        margin: 1rem 0;
    }
    
    .timeline-stats {
        margin-left: 40px;
        margin-top: 1rem;
    }
    
    .order-md-first {
        order: unset !important;
    }
    
    .order-md-last {
        order: unset !important;
    }
}
.service-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.gradient-card:hover .service-icon {
    transform: scale(1.1);
}

/* Grid Layout Styles */
/* Modern Hero Styles */
.hero-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape-1, .shape-2, .shape-3 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,123,255,0.1) 0%, rgba(220,53,69,0.1) 100%);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    opacity: 0.7;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    opacity: 0.5;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tagline-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #007bff, #dc3545);
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #007bff 0%, #dc3545 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #007bff;
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    color: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.hero-stats .stat-card {
    border: 1px solid rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.company-showcase {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.showcase-main {
    position: relative;
    z-index: 2;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.showcase-main:hover {
    transform: rotate(0deg);
}

.showcase-card {
    width: 200px;
    height: 120px;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

.showcase-main img, .showcase-card img {
    max-height: 60px;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .hero-modern {
        padding: 4rem 0;
    }
    
    .hero-shapes {
        display: none;
    }
    
    .company-showcase {
        max-width: 400px;
        margin: 0 auto;
    }
}

.featured-company {
    opacity: 0;
    transform: translateY(20px);
}

.company-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.company-logo-wrap {
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.company-card:hover .company-logo-wrap {
    transform: scale(1.1);
}

.stat-item {
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.02);
    border-radius: 8px;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,123,255,0.05) 0%, rgba(220,53,69,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-card:hover .hover-overlay {
    opacity: 1;
}

/* Investment Categories */
.category-card {
    opacity: 0;
    transform: translateY(20px);
}

.category-card .card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-card:hover .card {
    transform: translateY(-10px);
}

.category-marker {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 40px;
    background: rgba(255,255,255,0.5);
    border-radius: 0 4px 4px 0;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8 0%, #117a8b 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107 0%, #d39e00 100%);
}

.mt-6 {
    margin-top: 4rem;
}

/* Unclaimed Investment Styles */
.hero-unclaimed {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.search-bar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.search-bar .form-control {
    height: 48px;
}

.search-bar .form-control:focus {
    box-shadow: none;
    background: white;
}

.unclaimed-stats {
    padding: 2rem;
}

.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.process-card {
    opacity: 0;
    transform: translateY(20px);
}

.process-card .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover .card {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.process-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--theme-color);
}

.progress {
    background-color: rgba(246, 220, 0, 0.1);
}

.progress-bar {
    background-color: var(--theme-color) !important;
}

/* Badge Styles */
.bg-success-subtle {
    background-color: rgba(40, 167, 69, 0.1);
}

.bg-primary-subtle {
    background-color: rgba(0, 123, 255, 0.1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 1s ease forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .image-grid {
        min-height: 400px;
    }
    
    .grid-item {
        height: 200px;
    }
}
.parallax-hero {
    overflow: hidden;
    background-attachment: fixed;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.1;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--bs-danger);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 70px;
    height: 70px;
    background: var(--bs-info);
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.parallax-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.parallax-image {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.floating-badge {
    animation: float 4s ease-in-out infinite;
}

.floating-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    overflow: hidden;
}

.floating-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon.floating {
    width: 60px;
    height: 60px;
    background: rgb(255 255 0 / 35%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: float 4s ease-in-out infinite;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,123,255,0.05) 0%, rgba(220,53,69,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-card:hover .card-overlay {
    opacity: 1;
}

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

.hover-float {
    transition: transform 0.3s ease;
}

.hover-float:hover {
    transform: translateY(-5px);
}

.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 992px) {
    .py-6 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .parallax-hero {
        height: auto !important;
        min-height: 100vh;
    }
    
    .floating-shapes {
        display: none;
    }
    
    .parallax-content, .parallax-image {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Full-width section styling */
.company-showcase {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
}

/* Ensure content inside remains centered and properly spaced */
.company-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .company-showcase {
        padding-left: 10px;
        padding-right: 10px;
    }
}