        :root {
            --primary: #01bfe5cb;
            --secondary: #b95606c4;
            --light: #F7F8FC;
            --dark: #111111;
        }
        
        .btn {
            font-weight: 600;
            transition: .5s;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        
        .btn-primary:hover {
            background-color: #01bfe5cb;
            border-color: #01bfe5cb;
        }
        
        .btn.btn-primary,
        .btn.btn-secondary {
            color: #FFFFFF;
        }
        
        .text-primary {
            color: var(--primary) !important;
        }
        
        .service-area-box {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 16px rgba(0,0,0,0.08);
            padding: 24px;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .service-area-box:hover {
            transform: translateY(-5px);
        }
        
        .service-area-list {
            list-style: none;
            padding: 0;
            column-count: 3;
            column-gap: 20px;
        }
        
        .service-area-list li {
            margin-bottom: 12px;
            break-inside: avoid;
            position: relative;
            padding-left: 24px;
        }
        
        .service-area-list li:before {
            content: "\f041";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--primary);
            position: absolute;
            left: 0;
            top: 2px;
        }
        
        @media (max-width: 992px) {
            .service-area-list {
                column-count: 2;
            }
        }
        
        @media (max-width: 576px) {
            .service-area-list {
                column-count: 1;
            }
        }
        
        .bg-light {
            background-color: var(--light) !important;
        }



  
        
        .btn-primary:hover {
            background-color: #01bfe5cb;
            border-color: #01bfe5cb;
        }
        
        .btn.btn-primary,
        .btn.btn-secondary {
            color: #FFFFFF;
        }
        
        .text-primary {
            color: var(--primary) !important;
        }
        
        .service-box {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 16px rgba(0,0,0,0.08);
            padding: 24px;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .service-box:hover {
            transform: translateY(-5px);
        }
        
        .bg-light {
            background-color: var(--light) !important;
        }
        
        .RotateMoveLeft {
            transition: transform 0.5s ease;
        }
        
        .RotateMoveLeft:hover {
            transform: rotate(-2deg) translateX(-5px);
        }
        
        .RotateMoveRight {
            transition: transform 0.5s ease;
        }
        
        .RotateMoveRight:hover {
            transform: rotate(2deg) translateX(5px);
        }
        
        .service-img {
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }




        .contact-section {
            padding: 80px 0;
        }
        
        .contact-card {
            background:(--bs-light);
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            padding: 40px;
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(60, 184, 21, 0.1);
            border-radius: 50%;
            margin: 0 auto 25px;
        }
        
        .text-primary {
            color: var(--primary) !important;
        }
        
        .contact-info {
            font-size: 1.1rem;
            margin-bottom: 0;
        }
        
        .business-hours {
            list-style: none;
            padding: 0;
        }
        
        .business-hours li {
            padding: 8px 0;
            border-bottom: 1px solid #f1f1f1;
            display: flex;
            justify-content: space-between;
        }
        
        .business-hours li:last-child {
            border-bottom: none;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--primary);
            margin: 15px auto 0;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, rgba(60, 184, 21, 0.1) 0%, rgba(246, 80, 5, 0.1) 100%);
            border-left: 4px solid var(--primary);
            padding: 25px;
            border-radius: 8px;
            margin-top: 30px;
        }

            .accordion-button.faq-question {
                background-color: #01bfe5cb !important;
                color: #fff !important;
                font-weight: 600;
                font-size: 1.1rem;
                border-radius: 0.5rem 0.5rem 0 0;
                transition: background 0.2s;
            }
    
            .accordion-button.faq-question.collapsed {
                background-color: #01bfe5cb !important;
                color: #fff !important;
            }
    
            .accordion-button.faq-question:focus {
                box-shadow: 0 0 0 0.2rem #01bfe540;
            }
    
            .accordion-item {
                border-radius: 0.5rem !important;
                overflow: hidden;
            }
