.business-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.business-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

:root {
    --primary-color: #1e40af;
    --secondary-color: #0ea5e9;
    --third-color: #dc301f;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-bg: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.fixed-top {
    border-bottom: red 4px solid;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fast animations override */
.animate__animated {
    animation-duration: 0.5s !important;
}

.animate__fast {
    animation-duration: 0.3s !important;
}

.animate__faster {
    animation-duration: 0.2s !important;
}

/* Hero Section */
.hero {
    /*background: var(--gradient-primary);*/
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
    color: white;
    color: white;
    padding: 110px 0 10px;

    position: relative;
    overflow: hidden;
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .lead {
    font-size: 1.3rem;
    margin-bottom: 10px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.7;
}

/* Modern Button Styling hero section */
.get-btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.get-btn-lg {
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 50px;
}

.get-btn-warning {
    color: #fff;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: #ff6b35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Hover Effects */
.get-btn-warning:hover {
    color: #fff;
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-decoration: none;
}

/* Active/Focus States */
.get-btn-warning:active,
.get-btn-warning:focus {
    color: #fff;
    background: linear-gradient(135deg, #e55a2b, #e6841a);
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    outline: none;
}

/* Ripple Effect */
.get-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.get-btn:active::before {
    width: 300px;
    height: 300px;
}

.get-btn * {
    position: relative;
    z-index: 1;
}

/* Alternative Gradient Style */
.get-btn-warning.gradient-alt {
    background: linear-gradient(45deg, #ffa726, #ff7043);
    border-color: #ffa726;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);
}

.get-btn-warning.gradient-alt:hover {
    background: linear-gradient(45deg, #ff7043, #ffa726);
    box-shadow: 0 8px 25px rgba(255, 167, 38, 0.4);
}

/* Solid Color Alternative */
.get-btn-warning.solid {
    background: #ff8c00;
    border-color: #ff8c00;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.get-btn-warning.solid:hover {
    background: #ff7700;
    border-color: #ff7700;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .btn-lg {
        padding: 12px 24px;
        font-size: 16px;
    }
}


/* Section Styling */
.section {
    padding: 50px 0;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

/* Key Features */
.features {
    background: var(--light-bg);
}

.feature-card {
    background: white;
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border-color: var(--third-color);
}

.feature-icon-dis {
    font-size: 3rem;
    margin-bottom: 30px;
    /*background: var(--gradient-primary);*/
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-dis {
    transform: scale(1.1) rotate(5deg);
}

/* Benefits Section */
.benefits {
    background: var(--gradient-primary);
    color: white;
}

.benefit-item {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-height: 340px;
    max-width: 280px;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.benefit-item:hover::before {
    transform: translateX(0);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-15px);
    border-color: var(--accent-color);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Modern Process Flow Section */
.modern-process-flow {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    /*max-height: 340px;
            max-width: 280px;*/
}

.modern-process-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="modernGrid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23modernGrid)"/></svg>');
    opacity: 0.3;
}

.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #f0f9ff);
    /*-webkit-background-clip: text;
            -webkit-text-fill-color: transparent;*/
    background-clip: text;
    /*text-shadow: 0 0 30px rgba(255,255,255,0.5);*/
}

.section-description {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 400;
}

/* Modern Process Steps Container */
.process-timeline {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 60px;
}

/* Individual Process Step */
.modern-process-step {
    position: relative;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.modern-process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.modern-process-step:hover::before {
    left: 100%;
}

.modern-process-step:hover {
    transform: translateY(-20px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Step Number Circle */
.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.4);
    transition: all 0.3s ease;
}

.modern-process-step:nth-child(1) .step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.modern-process-step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
}

.modern-process-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.modern-process-step:nth-child(4) .step-number {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.4);
}

.modern-process-step:nth-child(5) .step-number {
    background: linear-gradient(135deg, #fa709a, #fee140);
    box-shadow: 0 10px 30px rgba(250, 112, 154, 0.4);
}

.step-number:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse-ring 2s infinite;
}

/* Hide connector on last step */
.modern-process-step:last-child .process-connector {
    display: none;
}

/* Icon Enhancement */
.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.modern-process-step:hover .step-icon {
    transform: scale(1.1);
    color: #ffffff;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-timeline {
        gap: 30px;
    }

    .modern-process-step {
        max-width: 250px;
    }
}

@media (max-width: 768px) {

    .section-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .modern-process-step {
        max-width: 300px;
        width: 90%;
    }

    .process-connector {
        display: none;
    }

    .modern-process-flow {
        padding: 60px 0;
    }

    .benefit-item {
        width: 100%;
        height: 100%;
        max-width: 320px;
        max-width: 320px;
        margin-bottom: 50px;
    }

}

@media (max-width: 480px) {
    section {
        width: 100%;
        height: 100%;
    }

    .modern-process-step {
        padding: 30px 20px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .benefit-item {
        width: 100%;
        height: 100%;
        max-width: 320px;
        max-width: 320px;
        margin-bottom: 50px;
    }
}

/* Performance Optimizations */
.modern-process-step {
    will-change: transform;
    width: 100%;
    height: 100%;
    max-width: 330px;
    max-height: 320px;
}

/* Additional Visual Enhancements */
.glow-effect {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.modern-process-step:hover .glow-effect {
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

/* Hide connector on last step */
.process-step:last-child .step-connector {
    display: none;
}

/* Tech Innovation */
.tech-innovation {
    background: #002952;
    color: white;
}

.tech-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.tech-card:hover::before {
    transform: scale(1);
}

.tech-card:hover {
    /*background: rgba(255,255,255,0.25);*/
    transform: translateY(-15px);
    border-color: var(--accent-color);
}

.tech-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px; /* Adds space after the title */
    margin-top: 0;
    color: #fff;
}

.tech-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 0;
    color: #f0f0f0;
}

.tech-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1;
    color: var(--accent-color);
    transition: all 0.3s ease;
}


.tech-card:hover .tech-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(245, 158, 11, 0.4));
}


/* Dashboard Section */
.dashboard {
    background: var(--light-bg);
}

.dashboard-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 6px solid var(--success-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s;
}

.dashboard-card:hover::before {
    left: 100%;
}

.dashboard-card:hover {
    transform: translateX(15px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.dashboard-card h5 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dashboard-card h5 i {
    background: var(--secondary-gradient);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
}

/* Floating Animations */
.floating {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(2deg);
    }

    75% {
        transform: translateY(-25px) rotate(-2deg);
    }
}

/*.pulse-glow {
            animation: pulse-glow 3s infinite;
        }

        @keyframes pulse-glow {
            0% { 
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.3);
            }
            70% { 
                transform: scale(1.02);
                box-shadow: 0 0 0 15px rgba(30, 64, 175, 0);
            }
            100% { 
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(30, 64, 175, 0);
            }
        }*/

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-accent);
    width: 0%;
    transition: width 0.1s ease;
}

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: none;
    /*align-items: center !important;*/
    /*justify-content: center !important;*/
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    /*z-index: 1000;*/
    font-size: 1.2rem;
    padding-top: 10px;
    padding-left: 15px;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Enhanced ML Comparison */
.ml-comparison {
    background: rgba(245, 158, 11, 0.15);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
}

.damage-comparison {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
}

.damage-stat {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    min-width: 200px;
}

.traditional-stat {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.intellimax-stat {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px 0;
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    /* .section {
                padding: 60px 0;
            } */

    .section-title {
        font-size: 2.5rem;
    }

    .step-connector {
        display: none;
    }

    .floating-btn {
        display: none !;
        /*bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;*/
    }

    .damage-comparison {
        flex-direction: column;
        gap: 20px;
    }

    .tech-card {
        margin-top: 30px;
    }

    .bg-success {
        margin: 10px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-accent);
}

/* Additional enhancements */
/*.gradient-text {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }*/

.shadow-lg-custom {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}


/* 📱 Mobile Fixes for Setup Management Section */
@media (max-width: 768px) {
    section.setup-management .section {
        padding: 40px 15px;
    }

    section.setup-management .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    section.setup-management .tech-card {
        padding: 20px;
        text-align: left;
    }

    section.setup-management .tech-card h5 {
        font-size: 1.2rem;
    }

    section.setup-management .tech-card ul li {
        font-size: 0.95rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    section.setup-management .section-title {
        font-size: 1.6rem;
    }

    section.setup-management .tech-card {
        padding: 15px;
    }

    section.setup-management .tech-card h5 {
        font-size: 1rem;
    }

    section.setup-management .tech-card ul li {
        font-size: 0.9rem;
    }
}

/* 📱 Mobile Fixes for Demand Visibility Section */
@media (max-width: 768px) {
    section.demand-visibility .section {
        padding: 40px 15px;
    }

    section.demand-visibility .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    section.demand-visibility .tech-card {
        padding: 20px;
        margin-bottom: 20px;
        text-align: left;
    }

    section.demand-visibility .tech-card .row.text-center .col-md-3 {
        flex: 0 0 50%;
        /* 2 per row */
        max-width: 50%;
    }
}

@media (max-width: 480px) {
    section.demand-visibility .section-title {
        font-size: 1.6rem;
    }

    section.demand-visibility .tech-card .row.text-center .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    section.demand-visibility .tech-card {
        padding: 15px;
    }

    section.demand-visibility .tech-card h5 {
        font-size: 1rem;
    }

    section.demand-visibility .tech-card ul li {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}


/* 📱 Mobile Fixes for Decision Making Dashboards */
@media (max-width: 768px) {
    .dashboard-section .section-title {
        font-size: 2rem;
        line-height: 1.3;
        color: black;
    }

    .dashboard-card {
        padding: 20px;
        margin-bottom: 25px;
    }

    .dashboard-card h5 {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .report-item,
    .comprehensive-item {
        padding: 15px;
        text-align: left;
    }

    .report-item h6,
    .comprehensive-item strong {
        font-size: 1rem;
    }

    .report-item p,
    .comprehensive-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Make dashboard items stack 1 per row */
    .dashboard-section .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .dashboard-section .section-title {
        font-size: 1.6rem;
    }

    .dashboard-card {
        padding: 15px;
    }

    .dashboard-card h5 {
        font-size: 1.1rem;
    }

    .report-item h6,
    .comprehensive-item strong {
        font-size: 0.9rem;
    }

    .report-item p,
    .comprehensive-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Base style */
.responsive-img {
    max-width: 75%;
    height: auto;
    opacity: 1.2;
}

/* Small devices (sm: <576px) */
@media (max-width: 575.98px) {
    .responsive-img {
        max-width: 45%;
        /* chhoti screen pe aur chhoti image */
    }
}

/* Medium devices (md: 576px - 991px) */
@media (min-width: 576px) and (max-width: 991.98px) {
    .responsive-img {
        max-width: 60%;
    }
}

/* Large devices (lg: 992px and up) */
@media (min-width: 992px) {
    .responsive-img {
        max-width: 75%;
        /* original size wapas */
    }
}

/* Additional Breakpoints for sm, md, lg to enhance responsiveness */
/* sm (576px and up) */
@media (min-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .benefit-item {
        max-width: 250px;
    }
}

/* md (768px and up) */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .process-timeline {
        flex-direction: row;
    }

    .modern-process-step {
        max-width: 280px;
    }

    .benefit-item {
        max-width: 280px;
    }
}

/* lg (992px and up) */
@media (min-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .feature-card {
        padding: 45px 35px;
    }

    .tech-card {
        padding: 45px 35px;
    }

    .damage-comparison {
        flex-direction: row;
    }
}

/* xl (1200px and up) */
@media (min-width: 1200px) {
    .process-timeline {
        gap: 40px;
    }

    .modern-process-step {
        max-width: 280px;
    }
}


/* Hero Image Responsive Styles */
.hero-image {
    max-width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Desktop: 30% width for image */
@media (min-width: 992px) {
    .hero-image {
        max-width: 70%;
    }
}

/* Tablet: Medium size */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-image {
        max-width: 50%;
    }
}

/* Mobile: Smaller image below text */
@media (max-width: 767.98px) {
    .hero-image {
        max-width: 50%;
        margin-top: 20px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .get-btn {
        margin-top: 20px;
    }
}

/* Extra small mobile */
@media (max-width: 575.98px) {
    .hero-image {
        max-width: 40%;
        margin-top: 20px;

    }
}

/* Ensure proper spacing */
.hero .row {
    width: 100%;
}

/* Text alignment fix for desktop */
@media (min-width: 992px) {
    .hero-content {
        text-align: left;
    }
}