
            /* Custom styles for service sections */
            .bg-gradient-light {
                background: linear-gradient(135deg, #f3f4f6, #ffffff);
            }

            .service-card {
                transition: all 0.3s ease;
                border: 1px solid #f0f0f0;
            }

            .service-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
            }

            /* Custom styles for Why Choose Us and FAQ sections */
            .custom-block {
                padding: 30px;
                border-radius: 10px;
                height: 100%;
                transition: all 0.3s ease;
            }

            .custom-block:hover {
                transform: translateY(-5px);
                transition: 0.3s ease-in-out;
                box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1) !important;
            }

        
            .custom-block h5 {
                color: #38b083;
                font-weight: 600;
            }
            
            .faq-section {
                background-color: #f8f9fa;
                padding: 80px 0;
            }
            
            .faq-item {
                margin-bottom: 20px;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            }
            
            .faq-header {
                background-color: #fff;
                padding: 15px 20px;
                cursor: pointer;
                border-bottom: 1px solid #eee;
            }
            
            .faq-content {
                padding: 20px;
                background-color: #fff;
                display: none;
            }
            
            .faq-item.active .faq-content {
                display: block;
            }


            .accordion-button:not(.collapsed) {
                background-color: #38b083;
                color: #fff;
            }
            .accordion-button:focus {
                box-shadow: none;
            }
            .accordion-item {
                transition: transform 0.3s ease;
            }
            .accordion-item:hover {
                transform: translateY(-2px);
            }

/* Service Highlights in About Section */
.text-primary-custom {
  color: #38b083 !important;
}
.service-highlights .service-item {
    padding: 15px;
    border-left: 3px solid #38b083;
    background-color: rgba(43, 112, 250, 0.05);
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.service-highlights .service-item:hover {
    background-color: rgba(43, 112, 250, 0.1);
    transform: translateX(5px);
}

.service-highlights .service-item h5 {
    font-size: 1.1rem;
    color: #38b083;
}

.service-highlights .service-item p {
    font-size: 0.95rem;
    color: #555;
}

/* Services Section Styling */
.service-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
  border-color: rgba(43, 112, 250, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: rgba(43, 112, 250, 0.2) !important;
  transform: scale(1.1);
}

.btn-outline-primary {
  transition: all 0.3s ease;
}

.service-card:hover .btn-outline-primary {
  background-color: #38b083;
  color: white;
}

/* About Section Enhancements */
.about .nav-tabs .nav-link {
    font-weight: 600;
    color: #495057;
    border: none;
    padding: 0.75rem 1.25rem;
}

.about .nav-tabs .nav-link.active {
    color: #38b083;
    background-color: transparent;
    border-bottom: 3px solid #38b083;
}

.about .service-item {
    padding: 1rem;
    border-radius: 8px;
    background-color: rgba(43, 112, 250, 0.05);
    transition: all 0.3s ease;
}

.about .service-item:hover {
    background-color: rgba(43, 112, 250, 0.1);
    transform: translateY(-3px);
}

.about ol li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}
