.it-slider-wrap
 {
  padding-top: 0px!important;
 }

/* Related Projects Styling */
.related-projects-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.related-project-card {
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f0f0f0;
}

.related-project-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.related-project-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 15px;
    padding: 15px;
}

.related-project-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
}

.related-project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-project-card:hover .related-project-thumb img {
    transform: scale(1.1);
}

.related-project-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-project-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-project-card:hover .related-project-title {
    color: #E03B3B;
}

.related-project-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Team Member Card Styling */
.team-member-card {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Project Tags Styling */
.project-tags .badge {
    font-weight: 500;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.project-tags .badge:hover {
    background-color: #E03B3B !important;
    color: white !important;
    border-color: #E03B3B;
}

/* Gallery Overlay Styling */
.it-sv-details-thumb-sm {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.it-sv-details-thumb-sm a {
    display: block;
    position: relative;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(224, 59, 59, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 32px;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.it-sv-details-thumb-sm:hover .gallery-overlay {
    opacity: 1;
}

.it-sv-details-thumb-sm:hover .gallery-overlay i {
    transform: scale(1);
}

/* Circular Badge Styling */
.it-breadcrumb-badge {
    position: relative;
}

.it-badge-circle {
    position: relative;
    width: 186px;
    height: 186px;
    display: inline-block;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.it-badge-svg {
    width: 100%;
    height: 100%;
}

.it-badge-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate-reverse 20s linear infinite;
}

@keyframes rotate-reverse {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

.it-badge-icon svg {
    width: 100%;
    height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .related-project-thumb {
        width: 80px;
        height: 80px;
    }
    
    .related-project-title {
        font-size: 14px;
    }
    
    .related-project-desc {
        font-size: 12px;
    }
    
    .it-badge-circle {
        width: 150px;
        height: 150px;
    }
    
    .it-badge-svg text {
        font-size: 9px;
        letter-spacing: 2.5px;
    }
    
    .it-badge-icon {
        width: 65px;
        height: 65px;
    }
}


.logo-sticky {
    display: none;
}

.header-sticky .logo-normal {
    display: none;
}

.header-sticky .logo-sticky {
    display: block;
}

.item-logo-icon
{
    padding: 4px;
}


.partner-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}
/* Mobile Menu Toggler */
.it-menu-bar {
    font-size: 24px;
    color: var(--it-common-black);
    cursor: pointer;
    padding: 5px;
}

.it-menu-bar:hover {
    color: var(--it-theme-1);
}

/* Mobile Language Toggler */
.itoffcanvas__language a {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.itoffcanvas__language a:hover,
.itoffcanvas__language a.active {
    color: var(--it-theme-1);
}

.itoffcanvas__language span {
    font-size: 14px;
}

/* WhatsApp Icon Styling */
.fa-whatsapp {
    color: #25D366 !important;
}
