

/* Service Hero Section */
.svc_hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.svc_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(248,169,34,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.svc_hero_container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.svc_hero_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.svc_hero_text {
    color: white;
}

.svc_hero_subtitle {
    color: #F8A922;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.svc_hero_title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.svc_hero_description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.svc_hero_cta {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #F8A922 0%, #9C1414 100%);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(248, 169, 34, 0.3);
}

.svc_hero_cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(248, 169, 34, 0.5);
}

.svc_hero_image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.svc_hero_image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.svc_hero_image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(248, 169, 34, 0.1) 50%, 
        transparent 70%);
    animation: svc_hero_shine 3s infinite;
}

@keyframes svc_hero_shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Decorative Elements */
.svc_hero_decor {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 169, 34, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.svc_hero_decor1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.svc_hero_decor2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(156, 20, 20, 0.15) 0%, transparent 70%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .svc_hero {
        padding: 60px 20px;
    }

    .svc_hero_content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .svc_hero_title {
        font-size: 36px;
    }

    .svc_hero_subtitle {
        font-size: 16px;
    }

    .svc_hero_description {
        font-size: 16px;
    }

    .svc_hero_cta {
        padding: 14px 35px;
        font-size: 16px;
    }

    .svc_hero_image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .svc_hero {
        padding: 40px 15px;
    }

    .svc_hero_title {
        font-size: 28px;
    }

    .svc_hero_subtitle {
        font-size: 14px;
    }

    .svc_hero_description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .svc_hero_cta {
        padding: 12px 30px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }
}


/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

 /* Service Second Section */
        .svc_second {
            background: #f9f9f9;
            padding: 80px 20px;
            position: relative;
        }

        .svc_second_container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .svc_second_header {
            text-align: center;
            margin-bottom: 60px;
        }

        .svc_second_title {
            font-size: 42px;
            font-weight: 700;
            color: #9C1414;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .svc_second_divider {
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, #F8A922 0%, #9C1414 100%);
            margin: 0 auto 25px;
            position: relative;
        }

        .svc_second_divider::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%239C1414"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/></svg>') center/contain no-repeat;
        }

        .svc_second_intro {
            font-size: 18px;
            color: #555;
            line-height: 1.8;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .svc_second_content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 50px;
        }

        .svc_second_text {
            padding: 20px;
        }

        .svc_second_subtitle {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .svc_second_description {
            font-size: 17px;
            color: #555;
            line-height: 1.9;
            margin-bottom: 20px;
            text-align: justify;
        }

        .svc_second_highlight {
            font-size: 28px;
            font-weight: 600;
            color: #9C1414;
            margin: 30px 0 25px;
            line-height: 1.4;
        }

        .svc_second_expert {
            background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid #F8A922;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-top: 30px;
        }

        .svc_second_expert_title {
            font-size: 24px;
            font-weight: 700;
            color: #F8A922;
            margin-bottom: 15px;
        }

        .svc_second_expert_text {
            font-size: 16px;
            color: #555;
            line-height: 1.8;
        }

        .svc_second_image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .svc_second_image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
            transition: transform 0.5s ease;
        }

        .svc_second_image:hover img {
            transform: scale(1.05);
        }

        .svc_second_image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(248, 169, 34, 0.1) 0%, rgba(156, 20, 20, 0.1) 100%);
            pointer-events: none;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .svc_second {
                padding: 60px 20px;
            }

            .svc_second_title {
                font-size: 36px;
            }

            .svc_second_content {
                gap: 40px;
            }

            .svc_second_subtitle {
                font-size: 28px;
            }

            .svc_second_highlight {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .svc_second {
                padding: 50px 15px;
            }

            .svc_second_header {
                margin-bottom: 40px;
            }

            .svc_second_title {
                font-size: 32px;
            }

            .svc_second_intro {
                font-size: 16px;
            }

            .svc_second_content {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .svc_second_subtitle {
                font-size: 26px;
            }

            .svc_second_description {
                font-size: 16px;
            }

            .svc_second_highlight {
                font-size: 22px;
            }

            .svc_second_expert {
                padding: 25px;
            }

            .svc_second_expert_title {
                font-size: 22px;
            }
        }

        @media (max-width: 480px) {
            .svc_second {
                padding: 40px 15px;
            }

            .svc_second_title {
                font-size: 28px;
            }

            .svc_second_subtitle {
                font-size: 24px;
            }

            .svc_second_highlight {
                font-size: 20px;
                margin: 25px 0 20px;
            }

            .svc_second_expert {
                padding: 20px;
            }

            .svc_second_expert_title {
                font-size: 20px;
            }

            .svc_second_expert_text {
                font-size: 15px;
            }
        }

 /* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
    /* Service Third Section */

/* Service Third Section - Three Column Layout */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-orange: #F8A922;
            --primary-red: #9C1414;
            --white: #ffffff;
            --black: #000000;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        .svc_third {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .svc_third::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(248, 169, 34, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(156, 20, 20, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .svc_third-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 400px 350px;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .svc_third-left-content {
            animation: svc_third-slideInLeft 1s ease-out;
        }

        .svc_third-subtitle {
            color: var(--primary-red);
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .svc_third-subtitle::before {
            content: '';
            width: 40px;
            height: 2px;
            background: var(--primary-orange);
        }

        .svc_third-heading {
            font-size: 42px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .svc_third-heading span {
            color: var(--primary-orange);
            position: relative;
        }

        .svc_third-heading span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-orange), transparent);
        }

        .svc_third-description {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
            text-align: justify;
        }

        .svc_third-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }

        .svc_third-feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            background: var(--white);
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            animation: svc_third-fadeInUp 1s ease-out;
        }

        .svc_third-feature-item:nth-child(1) { animation-delay: 0.1s; }
        .svc_third-feature-item:nth-child(2) { animation-delay: 0.2s; }
        .svc_third-feature-item:nth-child(3) { animation-delay: 0.3s; }

        .svc_third-feature-item:hover {
            transform: translateX(10px);
            box-shadow: 0 6px 20px rgba(248, 169, 34, 0.3);
        }

        .svc_third-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-orange), #ffb942);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(248, 169, 34, 0.4);
        }

        .svc_third-feature-text {
            font-size: 15px;
            font-weight: 600;
            color: var(--black);
        }

        .svc_third-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            background: linear-gradient(90deg, var(--primary-red), #c41e1e);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            box-shadow: 0 6px 20px rgba(156, 20, 20, 0.4);
            position: relative;
            overflow: hidden;
        }

        .svc_third-cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .svc_third-cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .svc_third-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(156, 20, 20, 0.6);
        }

        .svc_third-center-image {
            position: relative;
            animation: svc_third-floating 4s ease-in-out infinite;
        }

        .svc_third-image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            animation: svc_third-morph 8s ease-in-out infinite;
        }

        .svc_third-image-wrapper::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, var(--primary-orange), var(--primary-red), var(--primary-orange));
            animation: svc_third-rotate 6s linear infinite;
            opacity: 0.3;
        }

        .svc_third-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 1;
        }

        .svc_third-glow-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(248, 169, 34, 0.3), transparent);
            animation: svc_third-pulse 3s ease-in-out infinite;
        }

        .svc_third-glow-1 {
            width: 150px;
            height: 150px;
            top: -30px;
            right: -30px;
        }

        .svc_third-glow-2 {
            width: 120px;
            height: 120px;
            bottom: -20px;
            left: -20px;
            animation-delay: 1.5s;
        }

        .svc_third-services-list {
            background: linear-gradient(135deg, var(--primary-red), #7a1010);
            border-radius: 25px;
            padding: 30px 0;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            animation: svc_third-slideInRight 1s ease-out;
            position: relative;
            overflow: hidden;
        }

        .svc_third-services-list::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 50%, rgba(248, 169, 34, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(248, 169, 34, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .svc_third-services-header {
            padding: 0 25px 20px;
            border-bottom: 2px solid rgba(248, 169, 34, 0.3);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .svc_third-services-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .svc_third-services-title i {
            color: var(--primary-orange);
            font-size: 28px;
        }

        .svc_third-services-scroll {
            max-height: 500px;
            overflow-y: auto;
            padding: 0 25px;
            position: relative;
            z-index: 1;
        }

        .svc_third-services-scroll::-webkit-scrollbar {
            width: 8px;
        }

        .svc_third-services-scroll::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .svc_third-services-scroll::-webkit-scrollbar-thumb {
            background: var(--primary-orange);
            border-radius: 10px;
            transition: background 0.3s ease;
        }

        .svc_third-services-scroll::-webkit-scrollbar-thumb:hover {
            background: #ffb942;
        }

        .svc_third-service-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(248, 169, 34, 0.3);
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 15px;
            transition: all 0.4s ease;
            cursor: pointer;
            animation: svc_third-fadeInUp 1s ease-out;
            text-decoration: none;
            display: block;
        }

        .svc_third-service-card:hover {
            background: rgba(248, 169, 34, 0.2);
            border-color: var(--primary-orange);
            transform: translateX(-5px);
            box-shadow: 0 8px 25px rgba(248, 169, 34, 0.3);
        }

        .svc_third-service-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .svc_third-service-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-orange), #ffb942);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(248, 169, 34, 0.4);
        }

        .svc_third-service-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--white);
            flex: 1;
        }

        .svc_third-service-arrow {
            color: var(--primary-orange);
            font-size: 18px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .svc_third-service-card:hover .svc_third-service-arrow {
            transform: translateX(5px);
        }

        @keyframes svc_third-slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes svc_third-slideInRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes svc_third-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes svc_third-floating {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes svc_third-morph {
            0%, 100% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }
            50% {
                border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
            }
        }

        @keyframes svc_third-rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes svc_third-pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.6;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.3;
            }
        }

        @media (max-width: 1200px) {
            .svc_third-container {
                grid-template-columns: 1fr 350px 300px;
                gap: 40px;
            }

            .svc_third-heading {
                font-size: 36px;
            }
        }

        @media (max-width: 1024px) {
            .svc_third-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .svc_third-center-image {
                max-width: 400px;
                margin: 0 auto;
            }

            .svc_third-services-list {
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .svc_third {
                padding: 60px 15px;
            }

            .svc_third-heading {
                font-size: 32px;
            }

            .svc_third-center-image {
                max-width: 350px;
            }

            .svc_third-services-scroll {
                max-height: 400px;
            }
        }

        @media (max-width: 480px) {
            .svc_third-heading {
                font-size: 28px;
            }

            .svc_third-description {
                font-size: 15px;
            }

            .svc_third-center-image {
                max-width: 300px;
            }

            .svc_third-feature-item {
                padding: 12px 15px;
            }

            .svc_third-feature-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .svc_third-cta-button {
                padding: 14px 30px;
                font-size: 14px;
            }
        }