.navbar-nav .nav-link.transition,
.dropdown-menu .dropdown-item.transition {
    transition:
        color 0.2s,
        background 0.25s,
        transform 0.2s,
        box-shadow 0.2s;
}

.navbar-nav .nav-link.transition:hover,
.navbar-nav .nav-link.active,
.dropdown-menu .dropdown-item.transition:hover {
    color: #ffaf0f !important;
    background: rgba(255, 255, 255, 0.09) !important;
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 2px 10px -4px #0002;
}

.dropdown-menu {
    min-width: 190px;
    box-shadow: 0 8px 32px -4px #22385710;
}

.dropdown-menu .dropdown-item {
    border-radius: 7px;
    margin: 2px 0;
    padding-left: 1.2rem;
}

.dropdown-menu .dropdown-item i {
    color: #ffaf0f;
}

.navbar-brand i,
.navbar-brand span {
    vertical-align: middle;
}

.btn.btn-outline-light:hover,
.btn.btn-outline-light:focus {
    background: #ffaf0f !important;
    color: #224857 !important;
}

.btn.btn-warning:hover,
.btn.btn-warning:focus {
    background-color: #fff7e6 !important;
    color: #ffaf0f !important;
    box-shadow: 0 0 0 3px #ffaf0f40;
}




/* Accordion Hover Effects */
.accordion-button:hover {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%) !important;
    color: #333 !important;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%) !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3) !important;
}

.accordion-button:not(.collapsed) i {
    color: #000 !important;
}

/* Smooth Transitions */
.accordion-item {
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.15) !important;
}

/* Trust Features Enhancement */
.trust-features .d-flex {
    transition: all 0.3s ease;
    padding: 12px 15px;
    border-radius: 8px;
}

.trust-features .d-flex:hover {
    background: #fff9e6;
    transform: translateX(5px);
}

/* Support Contact Enhancement */
.support-contact {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255,255,255,0.2);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.support-contact:hover::before {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Button Hover Effects */
.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3) !important;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.btn-outline-dark:hover {
    background: #333 !important;
    color: white !important;
    transform: translateY(-2px);
}

/* FAQ Icon Animations */
.accordion-button i {
    transition: all 0.3s ease;
}

.accordion-button:hover i {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .accordion-button {
        font-size: 0.95rem !important;
        padding: 1rem 1.25rem !important;
    }
    
    .accordion-body {
        font-size: 0.9rem;
    }
    
    .trust-features .d-flex {
        text-align: center;
        flex-direction: column;
    }
    
    .trust-features .fs-4 {
        margin-bottom: 10px;
        margin-right: 0 !important;
    }
}

/* Animation for FAQ items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow.fadeInUp {
    animation: fadeInUp 0.6s ease;
}



/* Area Column Styling */
.area-column {
    transition: all 0.3s ease;
    cursor: pointer;
}

.area-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.15) !important;
}

.area-column:hover h4 {
    color: #e0a800 !important;
}

/* Area Item Styling */
.area-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.area-item:hover {
    background: #fff9e6 !important;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.1);
}

.area-item:hover i {
    transform: scale(1.2);
}

.area-item i {
    transition: all 0.3s ease;
}

/* CTA Section Enhancement */
.cta-section .rounded-3 {
    position: relative;
    overflow: hidden;
}

.cta-section .rounded-3::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.cta-section .rounded-3:hover::before {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Button Hover Effects */
.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    background: #333 !important;
}

.btn-outline-dark:hover {
    background: #333 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Section Header Enhancement */
.section-title h5::before {
    content: '';
    position: absolute;
    top: 50%;
    right: calc(100% + 15px);
    width: 50px;
    height: 2px;
    background: #ffc107;
    transform: translateY(-50%);
}

.section-title h5::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 15px);
    width: 50px;
    height: 2px;
    background: #ffc107;
    transform: translateY(-50%);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .area-column {
        margin-bottom: 2rem;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 768px) {
    .area-column {
        text-align: center;
    }

    .area-item {
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .section-title h5::before,
    .section-title h5::after {
        width: 30px;
    }
}

@media (max-width: 576px) {
    .area-column {
        padding: 1.5rem !important;
    }

    .area-item {
        padding: 0.75rem 0.5rem !important;
    }
}

/* Animation Enhancement */
.wow.fadeInUp {
    animation-duration: 0.8s;
}




/* Service Card Styling */
.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.15) !important;
}

.service-card:hover .service-icon .rounded-circle {
    transform: scale(1.1) rotate(5deg);
}

/* Service Icon Animations */
.service-icon .rounded-circle {
    transition: all 0.3s ease;
}

/* Row Title Styling */
.row-title {
    transition: all 0.3s ease;
}

.row-title:hover h3 {
    transform: translateY(-2px);
}

.row-title h3 {
    transition: all 0.3s ease;
}

/* Badge Styling */
.badge {
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* CTA Section Enhancement */
.cta-section .rounded-3 {
    position: relative;
    overflow: hidden;
}

.cta-section .rounded-3::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.cta-section .rounded-3:hover::before {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Button Hover Effects */
.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    background: #333 !important;
}

.btn-outline-dark:hover {
    background: #333 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Section Header Enhancement */
.section-title h5::before {
    content: '';
    position: absolute;
    top: 50%;
    right: calc(100% + 15px);
    width: 50px;
    height: 2px;
    background: #ffc107;
    transform: translateY(-50%);
}

.section-title h5::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 15px);
    width: 50px;
    height: 2px;
    background: #ffc107;
    transform: translateY(-50%);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .service-card {
        margin-bottom: 2rem;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 768px) {
    .service-card {
        text-align: center;
    }

    .service-features .badge {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .section-title h5::before,
    .section-title h5::after {
        width: 30px;
    }
}

/* Animation Enhancement */
.wow.fadeInUp {
    animation-duration: 0.8s;
}




/* Horizontal Service Card Styling */
.horizontal-service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.horizontal-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.15) !important;
}

.horizontal-service-card:hover .service-icon-large .rounded-circle {
    transform: scale(1.1) rotate(5deg);
}

/* Service Icon Animations */
.service-icon-large .rounded-circle {
    transition: all 0.3s ease;
}

/* Service Features Vertical Styling */
.service-features-vertical .badge {
    transition: all 0.3s ease;
    width: 100%;
}

.service-features-vertical .badge:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Mini Service Styling */
.mini-service {
    transition: all 0.3s ease;
    cursor: pointer;
}

.mini-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2) !important;
}

.mini-service:hover i {
    transform: scale(1.2);
}

.mini-service i {
    transition: all 0.3s ease;
}

/* CTA Section Enhancement */
.cta-section .rounded-3 {
    position: relative;
    overflow: hidden;
}

.cta-section .rounded-3::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.cta-section .rounded-3:hover::before {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Button Hover Effects */
.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    background: #333 !important;
}

.btn-outline-dark:hover {
    background: #333 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Section Header Enhancement */
.section-title h5::before {
    content: '';
    position: absolute;
    top: 50%;
    right: calc(100% + 15px);
    width: 50px;
    height: 2px;
    background: #ffc107;
    transform: translateY(-50%);
}

.section-title h5::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 15px);
    width: 50px;
    height: 2px;
    background: #ffc107;
    transform: translateY(-50%);
}

/* Background Gradient Enhancement */
.special-services-section {
    position: relative;
}

.special-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffc107" opacity="0.03"><path d="M500 50Q600 0 700 50T900 50T1000 0V100H0V0Q100 50 300 50T500 50Z"/></svg>');
    background-size: cover;
    background-position: bottom;
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .horizontal-service-card .row {
        text-align: center;
    }

    .service-features-vertical {
        margin-top: 2rem;
    }

    .service-features-vertical .badge {
        display: inline-block !important;
        width: auto;
        margin: 0 5px 10px 5px;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 768px) {
    .service-icon-large .rounded-circle {
        width: 80px !important;
        height: 80px !important;
    }

    .service-icon-large i {
        font-size: 2rem !important;
    }

    .mini-service {
        margin-bottom: 1rem;
    }

    .section-title h5::before,
    .section-title h5::after {
        width: 30px;
    }
}

/* Animation Enhancement */
.wow.fadeInUp {
    animation-duration: 0.8s;
}
