@media (max-width: 1199px) {
    .fa-negative {
        margin-top: -100px;
    }
}

@media (max-width: 991px) {
    .fa-negative {
        margin-top: 50px;
    }

    .feature-item {
        margin-top: 50px;
    }

}

.feature-wrap {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 30px;
    padding-top: 67px;
    box-shadow: 1px 3px 12px #0000002e;
}

.feature-item {
    display: flex;
    gap: 14px;
    border-radius: 0px;
    padding: 20px;
    position: relative;
    box-shadow: none;
    flex-direction: column;
    text-align: center;
    border-right: 1px solid #cbcbcb;
    background-color: transparent;
}


.feature-item.no-border {
    border-right: none;
}

.feature-content h4 {
    color: #000;
}

.feature-content p {
    color: #000;
}

.fa-negative {
    margin-top: -100px;
}

.feature-wrap::before {
    content: "";
    position: absolute;
    left: 185px;
    right: 185px;
    bottom: 0;
    border-bottom: 5px solid var(--theme-color);
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.feature-item::before {
    content: none;
}

@media (max-width: 768px) {
    .feature-item {
        border-right: none;
        border-bottom: 1px solid #cbcbcb;
        /* optional, if you want divider lines on mobile */
    }

    .no-border {
        border-bottom: none;
        /* prevent double border on the last one */
    }

    .fa-negative {
        margin-top: 100px;
    }
}

.contact-info {
    background: #f6f6f6;
    border: none;
    box-shadow: 1px 0px 5px 1px #00000024;
}



.service-sidebar {
    position: sticky;
    top: 120px;
}

.service-sidebar .widget {
    background: #0088d51f;
    border-radius: 12px;
    box-shadow: none;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.service-sidebar .widget:hover {
    transform: translateY(-5px);
}

.service-sidebar .title {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    position: relative;
}

.service-sidebar .title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.service-sidebar .category a {
    display: block;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: #ffffff;
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-sidebar .category a:hover {
    background: var(--primary);
    color: white;
    padding-left: 20px;
}

.service-sidebar .category a i {
    margin-right: 8px;
    color: var(--secondary);
}

.service-sidebar .category a:hover i {
    color: white;
}

.service-download a {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f5f7ff;
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-download a:hover {
    background: var(--primary);
    color: white;
}

.service-download a i {
    font-size: 24px;
    margin-right: 15px;
    color: var(--secondary);
}

.service-download a:hover i {
    color: white;
}

.widget.project {
    background: linear-gradient(135deg, var(--primary), #0047ab) !important;
    color: white;
    text-align: center;
}

.widget.project h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
}

.widget.project .theme-btn2 {
    background: white;
    color: var(--primary);
    border: none;
    font-weight: 600;
}

.widget.project .theme-btn2:hover {
    background: var(--secondary);
    color: white;
}

.site-title-tagline {
    color: var(--theme-color);
    background: transparent;
}

.site-title-tagline i {
    background: var(--theme-color);
    color: var(--color-white);
}

.location-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    max-width: fit-content;
}

.location-icon {
    color: #dc3545;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.location-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.location-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.4);
}

.location-btn:hover::before {
    left: 100%;
}

.location-card:hover .location-icon {
    transform: scale(1.1) translateY(-2px);
}
.site-breadcrumb:after {
    content: "aikyatha developers";
    background-color: #04537f;
    border-radius: 70px;
    display: block;
    border: 12px solid #fff;
    padding: 10px 20px;
    position: absolute;
    bottom: -45px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    font-size: 26px;
}
@media (max-width: 768px) { 
    .site-breadcrumb:after {
        font-size: 18px;
    }
}
.service-icon .far {
    font-size: 30px;
    color: #fff;
    font-weight: 200;
    padding: 24px;
}
.floating-icon {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 50px;
    font-size: 35px;
    color: white;
    padding: 5px;
    border-radius: 50%;
    z-index: 9999;
    animation: ripple 1.5s infinite ease-out;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: bottom 0.3s ease;
}

.call-icon {
    left: 20px;
    background-color: #0d6efd; 
}
.whatsapp-icon {
    right: 20px;
    background-color: #25D366;
}
.call-icon:hover {
    color: #25D366; 
}
.whatsapp-icon:hover {
    color: #0d6efd; 
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
.dropdown-item.active, .dropdown-item:active {
    background-color: transparent;
}
.gallery-content::before {
    border-radius: 20px;
}
.gallery-img img {
    border-radius: 20px;
    border: 1px solid #eee;
}
.service-details .content .list li {
    font-weight: 500;
    color: var(--body-text-color);
    margin-top: 5px;
}






.leadership-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.leader-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.leader-header {
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--color-yellow) 100%);
    color: white;
    padding: 25px;
    text-align: center;
    position: relative;
}

.leader-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.leader-image i {
    font-size: 60px;
    color: var(--theme-color);
}

.leader-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.leader-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.leader-bio {
    padding: 30px;
    flex-grow: 1;
}

.leader-bio p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #444;
}

.leader-quote {
    background: #f5f9f5;
    padding: 20px;
    border-left: 4px solid var(--theme-color);
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.leader-quote p {
    font-style: italic;
    color: var(--theme-color);
    margin: 0;
}

.leader-highlights {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.leader-highlights h4 {
    color: var(--theme-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.highlight-item i {
    color: var(--theme-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

@media (min-width: 992px) {
    .leadership-container {
        flex-wrap: nowrap;
    }
    
    .leader-card {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .leader-header h3 {
        font-size: 1.5rem;
    }
    
    .leader-bio {
        padding: 20px;
    }
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    text-align: right;
    color: var(--theme-color);
    margin-top: 15px;
}
.leader-header h3 {
    color: #fff;
}
.about-item  .far {
    font-size: 30px;
    color: #fff;
    font-weight: 200;
    padding: 17px;
}