 .about-us-section2 {
      padding: 0px 0;
      background: #f8f9fa;
      position: relative;
      overflow: hidden;
  }
    .service-hero {
        position: relative;
        height: 300px;
        overflow: hidden;
        border-radius: 20px;
        margin-bottom: 50px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .service-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.5);
    }

    .service-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(to bottom, rgba(44, 95, 111, 0.6), rgba(26, 26, 26, 0.6));
    }

    .service-hero h1 {
        color: white;
        font-size: 3.5rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 3px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        margin: 0;
    }
     @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

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

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
     .back-btn {
        animation: fadeIn 0.6s ease-out;
    }

    .service-hero {
        animation: fadeIn 0.8s ease-out;
    }

    /* Back Button */
    .back-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--primary-color);
        color: white;
        padding: 12px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-bottom: 40px;
        box-shadow: 0 5px 15px rgba(44, 95, 111, 0.3);
    }

    .back-btn:hover {
        background: white;
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
    }

    .back-btn i {
        transition: transform 0.3s ease;
    }

    .back-btn:hover i {
        transform: translateX(-5px);
    }

    .promo-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, #1a5c6f 100%);
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .promo-section::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 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
        background-size: cover;
        opacity: 0.3;
    }

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

    .promo-main-heading {
        text-align: center;
        color: white;
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 60px;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    }

    .promo-cards-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .promo-card {
        background: white;
        border-radius: 15px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .promo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(44, 95, 111, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .promo-card:hover::before {
        left: 100%;
    }

    .promo-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .promo-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--primary-color), #1a5c6f);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 2rem;
        color: white;
        box-shadow: 0 5px 15px rgba(44, 95, 111, 0.3);
        transition: all 0.3s ease;
    }

    .promo-card:hover .promo-icon {
        transform: rotate(360deg) scale(1.1);
    }

    .promo-number {
        font-size: 3rem;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 15px;
        font-family: 'Arial Black', sans-serif;
    }

    .promo-text {
        color: #333;
        font-size: 1.1rem;
        line-height: 1.6;
        font-weight: 500;
    }

    @media (max-width: 768px) {
        .promo-section {
            padding: 60px 0;
        }

        .promo-main-heading {
            font-size: 2rem;
            margin-bottom: 40px;
        }

        .promo-cards-wrapper {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .promo-card {
            padding: 30px 20px;
        }

        .promo-number {
            font-size: 2.5rem;
        }

        .promo-text {
            font-size: 1rem;
        }
    }
