.owl-next, .owl-prev {
    background-color: white !important;
}

.card-img, .card-img-top {
    height: 180px;
    object-fit: cover;
}


/* Sticky Contact Icons */
.sticky-contact-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sticky-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: bounce 2s infinite;
}

.sticky-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: white;
    text-decoration: none !important;
}

.sticky-icon:focus {
    text-decoration: none !important;
    color: white;
}

.sticky-icon:visited {
    text-decoration: none !important;
    color: white;
}

.sticky-icon:active {
    text-decoration: none !important;
    color: white;
}

.email-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sticky-contact-icons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .sticky-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Lead Generation Form Styles */
.lead-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.lead-form-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.3s ease;
}

.lead-form-overlay.active .lead-form-container {
    transform: translateY(0);
    opacity: 1;
}

.lead-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 15px;
    border-bottom: 1px solid #eee;
}

.lead-form-header h4 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.close-form {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-form:hover {
    background: #f5f5f5;
    color: #333;
}

.lead-form {
    padding: 25px;
}

.lead-form .form-group {
    margin-bottom: 20px;
}

.lead-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.lead-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.lead-form .form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.lead-form .btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lead-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Mobile responsive for lead form */
@media (max-width: 768px) {
    .lead-form-container {
        width: 95%;
        margin: 20px;
    }
    
    .lead-form {
        padding: 20px;
    }
    
    .lead-form-header {
        padding: 15px 20px 10px;
    }
}

/* Mobile Menu Text Wrapping Fix */
@media (max-width: 991px) {
    #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li a {
        white-space: normal !important;
        word-wrap: break-word !important;
        line-height: 1.4 !important;
        padding: 8px 12px !important;
        text-align: left !important;
    }
    
    #header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > a {
        white-space: normal !important;
        word-wrap: break-word !important;
        line-height: 1.4 !important;
        padding: 8px 12px !important;
    }
}

/* Mobile Menu Contact Information Styling */
.offcanvas-body .border-top {
    border-color: #e9ecef !important;
}

/* Contact Icon Links */
.contact-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-icon-link:hover {
    background-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    text-decoration: none;
}

.contact-icon-link:hover img {
    filter: brightness(0) invert(1);
}

.contact-icon-link img {
    transition: all 0.3s ease;
}

/* Team Member Cards */
.team-member-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member-card .social-icons a {
    text-decoration: none;
}

/* Team Member Centering */
.team-member-wrapper {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Ensure proper centering for single team member */
.row.justify-content-center .col-md-3 {
    display: flex;
    justify-content: center;
}

/* Responsive centering */
@media (max-width: 768px) {
    .team-member-wrapper {
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .team-member-wrapper {
        max-width: 100%;
    }
}

/* Enhanced Service Icon Cards */
.service-icon-card {
    text-align: center;
    padding: 40px 20px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.service-icon-card:hover {
    transform: translateY(-10px);
}

.service-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon-bg {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #75a4d6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(117, 164, 214, 0.2);
    position: relative;
    overflow: hidden;
}

.service-icon-card:hover .service-icon-bg {
    transform: scale(1.1) rotate(5deg);
    background: #5a8bc4;
    box-shadow: 0 8px 25px rgba(117, 164, 214, 0.3);
}

.service-icon-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: #75a4d6;
    opacity: 0.2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.service-icon-inner {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-icon-card:hover .service-icon-inner {
    transform: scale(1.1);
}

.service-icon-shine {
    display: none;
}


.service-content {
    text-align: center;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-icon-card:hover .service-title {
    color: #007bff;
    transform: translateY(-2px);
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    transition: all 0.3s ease;
}

.service-icon-card:hover .service-description {
    color: #495057;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-icon-card {
        padding: 30px 15px;
    }
    
    .service-icon-bg {
        width: 100px;
        height: 100px;
    }
    
    .service-icon-inner img {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 768px) {
    .service-icon-card {
        padding: 25px 10px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
}

/* Animation Enhancements */
.service-icon-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-icon-card:nth-child(1) { animation-delay: 0.1s; }
.service-icon-card:nth-child(2) { animation-delay: 0.3s; }
.service-icon-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}