

/* ============================================
   Enhanced Hero Section
   ============================================ */

.hero-section {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

/* Animated Background Shapes */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #B62E27 0%, #8B1F1A 100%);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #B62E27 0%, #D94C45 100%);
    bottom: -150px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #B62E27 0%, #8B1F1A 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.08;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.12;
    }
}

.hero-section .container-fluid {
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    padding-right: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(182, 46, 39, 0.1) 0%, rgba(182, 46, 39, 0.05) 100%);
    border: 2px solid rgba(182, 46, 39, 0.2);
    border-radius: 50px;
    color: #B62E27;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: slideInLeft 0.8s ease-out;
}

    .hero-badge i {
        font-size: 1.1rem;
        animation: rotate 3s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-title-highlight {
    background: linear-gradient(135deg, #B62E27 0%, #D94C45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

    .hero-title-highlight::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #B62E27 0%, transparent 100%);
        border-radius: 2px;
    }

.hero-title-sub {
    font-size: 2.5rem;
    color: #555;
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-weight: 400;
}

    .hero-description strong {
        color: #2c3e50;
        font-weight: 600;
    }

.hero-description-secondary {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .hero-feature:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(182, 46, 39, 0.15);
    }

    .hero-feature i {
        font-size: 1.3rem;
        color: #B62E27;
    }

    .hero-feature span {
        font-size: 0.95rem;
        font-weight: 600;
        color: #2c3e50;
    }

/* Hero CTA Buttons */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .hero-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
        z-index: -1;
    }

    .hero-btn:hover::before {
        left: 100%;
    }

.hero-btn-primary {
    background: linear-gradient(135deg, #B62E27 0%, #8B1F1A 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(182, 46, 39, 0.3);
}

    .hero-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 35px rgba(182, 46, 39, 0.4);
        color: white;
    }

    .hero-btn-primary i {
        transition: transform 0.3s ease;
    }

    .hero-btn-primary:hover i {
        transform: translateX(5px);
    }

.hero-btn-secondary {
    background: white;
    color: #B62E27;
    border: 2px solid #B62E27;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

    .hero-btn-secondary:hover {
        background: #B62E27;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(182, 46, 39, 0.3);
    }

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

    .hero-image:hover {
        transform: scale(1.02);
        box-shadow: 0 25px 70px rgba(182, 46, 39, 0.25);
    }

.hero-image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 90%;
    border: 3px solid #B62E27;
    border-radius: 20px;
    transform: translate(30px, 80px);
    z-index: 1;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.hero-image-wrapper:hover .hero-image-decoration {
    width: 80%;
    height: 90%;
    transform: translate(30px, -20px);
    opacity: 0.5;
}

.hero-image-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    background: linear-gradient(135deg, #B62E27 0%, #8B1F1A 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(182, 46, 39, 0.4);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    animation: slideInLeft 1s ease-out;
}

    .hero-image-badge i {
        font-size: 1.5rem;
    }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title-sub {
        font-size: 1.8rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-badge {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .hero-image-decoration {
        transform: translate(15px, 15px);
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title-sub {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-description-secondary {
        font-size: 0.95rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-feature {
        width: 100%;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .hero-shape-1,
    .hero-shape-2 {
        width: 300px;
        height: 300px;
    }

    .hero-image-badge {
        position: static;
        margin-bottom: 15px;
        width: fit-content;
    }

    .hero-image-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-title-sub {
        font-size: 1.3rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}


/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-section {
    position: relative;
    overflow: hidden;
}

.why-choose-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .why-choose-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #B62E27 0%, #8B1F1A 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .why-choose-card:hover::before {
        transform: scaleX(1);
    }

    .why-choose-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(182, 46, 39, 0.2);
    }

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #B62E27 0%, #8B1F1A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-choose-card:hover .why-icon {
    transform: scale(1.1) rotate(10deg);
}

.why-icon i {
    font-size: 2.2rem;
    color: white;
}

.why-choose-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.why-choose-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Statistics Section - Animated Counters
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 70px 20px;
}

.stat-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    color: #fff;
    transition: all 0.35s ease;
    border: 1px solid rgba(255,255,255,0.12);
}

    .stat-card:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,0.12);
    }

.stat-icon {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.6rem;
    font-weight: 700;
    margin-left: 4px;
    opacity: 0.9;
}

.stat-label {
    margin-top: 10px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--light);
    opacity: 0.95;
}

@media (max-width: 767px) {
    .stat-value {
        font-size: 2.2rem;
    }

    .stat-icon {
        font-size: 2.2rem;
    }
}


/* ============================================
   Industries Section
   ============================================ */
.industry-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid transparent;
}

    .industry-card:hover {
        border-left-color: #B62E27;
        transform: translateX(5px);
        box-shadow: 0 10px 30px rgba(182, 46, 39, 0.15);
    }

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #B62E27 0%, #8B1F1A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-icon i {
    font-size: 2rem;
    color: white;
}

.industry-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #B62E27;
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Services Section
   ============================================ */
.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .service-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 0;
        background: linear-gradient(135deg, #B62E27 0%, #8B1F1A 100%);
        transition: height 0.3s ease;
    }

    .service-card:hover::after {
        height: 5px;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(182, 46, 39, 0.2);
    }

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(182, 46, 39, 0.1) 0%, rgba(139, 31, 26, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

    .service-icon::before {
        content: '';
        position: absolute;
        inset: -5px;
        border-radius: 50%;
        border: 2px solid #B62E27;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.3s ease;
    }

.service-card:hover .service-icon::before {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #B62E27 0%, #8B1F1A 100%);
}

.service-icon i {
    font-size: 2.2rem;
    color: #B62E27;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: #B62E27;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    .service-link:hover {
        color: #8B1F1A;
    }

    .service-link i {
        transition: transform 0.3s ease;
    }

.service-card:hover .service-link i {
    transform: translateX(5px);
}
