
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-orange: #F8A922;
            --primary-red: #9C1414;
            --white: #ffffff;
            --black: #000000;
            --light-bg: #FFF9F0;
            --shadow: rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: var(--white);
        }

        .services-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 50%, var(--light-bg) 100%);
            position: relative;
            overflow: hidden;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(248, 169, 34, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(156, 20, 20, 0.05) 0%, transparent 50%);
            pointer-events: none;
            animation: servicesBackgroundPulse 10s ease-in-out infinite;
        }

        .services-decorative-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .services-floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: servicesFloatingShape 20s ease-in-out infinite;
        }

        .services-shape-1 {
            top: 10%;
            left: 5%;
            width: 100px;
            height: 100px;
            background: var(--primary-orange);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation-delay: 0s;
        }

        .services-shape-2 {
            top: 60%;
            right: 8%;
            width: 120px;
            height: 120px;
            background: var(--primary-red);
            border-radius: 50%;
            animation-delay: 2s;
        }

        .services-shape-3 {
            bottom: 15%;
            left: 10%;
            width: 80px;
            height: 80px;
            background: var(--primary-orange);
            border-radius: 20% 80% 80% 20% / 80% 20% 80% 20%;
            animation-delay: 4s;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .services-header {
            text-align: center;
            margin-bottom: 60px;
            animation: servicesFadeInDown 1s ease-out;
        }

        .services-subtitle {
            color: var(--primary-orange);
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
            animation: servicesSubtitleGlow 3s ease-in-out infinite;
        }

        .services-subtitle::before,
        .services-subtitle::after {
            content: '✦';
            color: var(--primary-red);
            margin: 0 10px;
            animation: servicesTwinkle 2s ease-in-out infinite;
        }

        .services-main-title {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary-red);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            animation: servicesTitleSlideUp 1.2s ease-out;
        }

        .services-main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
            border-radius: 2px;
            animation: servicesLineExpand 2s ease-in-out infinite;
        }

        .services-description {
            font-size: 18px;
            color: #555;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
            animation: servicesFadeIn 1.5s ease-out;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-top: 50px;
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 40px var(--shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            animation: servicesCardFadeIn 1s ease-out backwards;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }
        .service-card:nth-child(7) { animation-delay: 0.7s; }
        .service-card:nth-child(8) { animation-delay: 0.8s; }
        .service-card:nth-child(9) { animation-delay: 0.9s; }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(248, 169, 34, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover::after {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(248, 169, 34, 0.3);
        }

        .service-icon-wrapper {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            position: relative;
            animation: servicesIconFloat 3s ease-in-out infinite;
        }

        .service-icon-bg {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(248, 169, 34, 0.4);
        }

        .service-card:hover .service-icon-bg {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 15px 40px rgba(248, 169, 34, 0.6);
        }

        .service-icon-bg::before {
            content: '';
            position: absolute;
            width: 110%;
            height: 110%;
            border: 2px dashed var(--primary-orange);
            border-radius: 50%;
            animation: servicesIconRotate 10s linear infinite;
        }

        .service-icon {
            font-size: 40px;
            color: var(--white);
            z-index: 1;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.2);
        }

        .service-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 15px;
            text-align: center;
            transition: color 0.3s ease;
        }

        .service-card:hover .service-title {
            color: var(--primary-orange);
        }

        .service-description {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            text-align: center;
            margin-bottom: 25px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .service-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 14px;
            color: #555;
            transition: all 0.3s ease;
        }

        .service-feature-item:hover {
            transform: translateX(10px);
            color: var(--primary-red);
        }

        .service-feature-icon {
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-feature-icon i {
            font-size: 10px;
            color: var(--white);
        }

        .service-cta {
            display: inline-block;
            width: 100%;
            padding: 14px 30px;
            background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            text-align: center;
            text-transform: uppercase;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .service-cta:hover::before {
            width: 400px;
            height: 400px;
        }

        .service-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(248, 169, 34, 0.5);
        }

        .service-cta i {
            margin-right: 8px;
            transition: transform 0.3s ease;
        }

        .service-cta:hover i {
            transform: translateX(5px);
        }

        .services-cta-section {
            margin-top: 70px;
            text-align: center;
            padding: 60px 30px;
            background: linear-gradient(135deg, var(--primary-red), #7a1010);
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            animation: servicesFadeInUp 1.5s ease-out;
        }

        .services-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(248, 169, 34, 0.1) 0%, transparent 70%);
            animation: servicesCtaGlow 8s linear infinite;
        }

        .services-cta-content {
            position: relative;
            z-index: 1;
        }

        .services-cta-title {
            font-size: 36px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
            animation: servicesCtaSlideUp 1s ease-out;
        }

        .services-cta-text {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 35px;
            line-height: 1.8;
            animation: servicesCtaFadeIn 1.2s ease-out;
        }

        .services-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: servicesCtaButtonsSlide 1.4s ease-out;
        }

        .services-cta-btn {
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .services-cta-btn-primary {
            background: var(--primary-orange);
            color: var(--black);
            box-shadow: 0 8px 25px rgba(248, 169, 34, 0.5);
        }

        .services-cta-btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(248, 169, 34, 0.7);
        }

        .services-cta-btn-secondary {
            background: var(--white);
            color: var(--primary-red);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        .services-cta-btn-secondary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
        }

        @keyframes servicesBackgroundPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        @keyframes servicesFloatingShape {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, -20px) rotate(90deg); }
            50% { transform: translate(0, -40px) rotate(180deg); }
            75% { transform: translate(-20px, -20px) rotate(270deg); }
        }

        @keyframes servicesFadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes servicesSubtitleGlow {
            0%, 100% { text-shadow: 0 0 5px rgba(248, 169, 34, 0.3); }
            50% { text-shadow: 0 0 15px rgba(248, 169, 34, 0.6); }
        }

        @keyframes servicesTwinkle {
            0%, 100% { opacity: 0.5; transform: scale(0.8); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        @keyframes servicesTitleSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes servicesLineExpand {
            0%, 100% { width: 100px; opacity: 0.7; }
            50% { width: 150px; opacity: 1; }
        }

        @keyframes servicesFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes servicesCardFadeIn {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes servicesIconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes servicesIconRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes servicesFadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes servicesCtaGlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes servicesCtaSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes servicesCtaFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes servicesCtaButtonsSlide {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 30px;
            }

            .services-main-title {
                font-size: 42px;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 60px 15px;
            }

            .services-header {
                margin-bottom: 40px;
            }

            .services-main-title {
                font-size: 36px;
            }

            .services-description {
                font-size: 16px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .service-card {
                padding: 35px 25px;
            }

            .services-cta-section {
                padding: 40px 20px;
                margin-top: 50px;
            }

            .services-cta-title {
                font-size: 28px;
            }

            .services-cta-text {
                font-size: 16px;
            }

            .services-cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .services-cta-btn {
                padding: 16px 35px;
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .services-main-title {
                font-size: 30px;
            }

            .service-icon-wrapper {
                width: 75px;
                height: 75px;
            }

            .service-icon {
                font-size: 32px;
            }

            .service-title {
                font-size: 20px;
            }

            .services-cta-title {
                font-size: 24px;
            }
        }

        /* new asdwddggkhhggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg*/

/*         
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background-color: #f5f5f5;
            padding: 40px 20px;
        } */

        .service_sec_container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .service_sec_title {
            text-align: center;
            margin-bottom: 50px;
            opacity: 0;
            animation: service_sec_titleFade 0.8s ease forwards;
        }

        @keyframes service_sec_titleFade {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service_sec_title h2 {
            font-size: 3rem;
            color: #9C1414;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .service_sec_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            padding: 20px 0;
        }

        .service_sec_card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            opacity: 0;
            animation: service_sec_fadeInUp 0.6s ease forwards;
        }

        .service_sec_card:nth-child(1) { animation-delay: 0.1s; }
        .service_sec_card:nth-child(2) { animation-delay: 0.2s; }
        .service_sec_card:nth-child(3) { animation-delay: 0.3s; }
        .service_sec_card:nth-child(4) { animation-delay: 0.4s; }
        .service_sec_card:nth-child(5) { animation-delay: 0.5s; }
        .service_sec_card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes service_sec_fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service_sec_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(156, 20, 20, 0.3);
        }

        .service_sec_image_wrapper {
            position: relative;
            height: 280px;
            overflow: hidden;
        }

        .service_sec_image_wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service_sec_card:hover .service_sec_image_wrapper img {
            transform: scale(1.1);
        }

        .service_sec_call_icon {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: #F8A922;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(248, 169, 34, 0.5);
            animation: service_sec_pulse 2s infinite;
            z-index: 2;
        }

        .service_sec_call_icon svg {
            width: 30px;
            height: 30px;
            fill: #fff;
        }

        @keyframes service_sec_pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(248, 169, 34, 0.5);
            }
            50% {
                transform: scale(1.1);
                box-shadow: 0 6px 25px rgba(248, 169, 34, 0.7);
            }
        }

        .service_sec_content {
            padding: 30px;
            text-align: center;
        }

        .service_sec_content h3 {
            font-size: 1.8rem;
            color: #9C1414;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .service_sec_content p {
            font-size: 1rem;
            color: #333;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .service_sec_btn {
            display: inline-block;
            padding: 14px 40px;
            background: linear-gradient(135deg, #9C1414 0%, #7A0F0F 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(156, 20, 20, 0.3);
        }

        .service_sec_btn:hover {
            background: linear-gradient(135deg, #F8A922 0%, #E09615 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(248, 169, 34, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .service_sec_grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .service_sec_title h2 {
                font-size: 2.2rem;
            }

            .service_sec_grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .service_sec_content h3 {
                font-size: 1.5rem;
            }

            .service_sec_content p {
                font-size: 0.95rem;
            }

            .service_sec_image_wrapper {
                height: 240px;
            }
        }

        @media (max-width: 480px) {
            /* body {
                padding: 20px 10px;
            } */

            .service_sec_title h2 {
                font-size: 1.8rem;
            }

            .service_sec_content {
                padding: 20px;
            }

            .service_sec_btn {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .service_sec_call_icon {
                width: 50px;
                height: 50px;
            }

            .service_sec_call_icon svg {
                width: 25px;
                height: 25px;
            }
        }
    