.service-description {
    display: none;
    top: 50px;
}
.service-hover-effect:hover .service-content {
    display: none;
}
.service-hover-effect:hover .service-description.teams {
    overflow-y: scroll;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

/* Custom Scrollbar Styles */
/* For Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
    margin: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-color), #667eea);
    border-radius: 10px;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #667eea, var(--accent-color));
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}

::-webkit-scrollbar-corner {
    background: #f1f1f1;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) #f1f1f1;
}

/* Custom scrollbar for specific containers */
.service-description {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) transparent;
}

.service-description::-webkit-scrollbar {
    width: 6px;
}

.service-description::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.service-description::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 8px;
    opacity: 0.7;
}

.service-hover-effect:hover .service-description
{
    display: block;
    animation: description-slide 0.5s ease-in-out;
    line-height: 20px;
}
.service-hover-effect:hover .service-image a figure::before {
    background-color: rgba(var(--accent-color-rgb), 0.8);
    background-blend-mode: color;
    transition: background-color 0.5s ease-in-out;
}
@keyframes description-slide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-header
{
    height: 118px !important;
}
@media only screen and (max-width: 991px) {
    .main-header
    {
        height: 92px !important;
    }
}
.header-social-links{
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 30px;
}

.header-social-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-social-links ul li{
	display: inline-flex;
	margin-right: 10px;
}

.header-social-links ul li:last-child{
	margin-right: 0;
}

.header-social-links ul li a{
	display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    border-radius: 50%;
    height: 36px;
    width: 36px;
    transition: all 0.3s ease-in-out;
}

.header-social-links ul li a i{
	font-size: 18px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.header-social-links ul li a:hover{
	background: var(--white-color);
}

.header-social-links ul li a:hover i{
	color: var(--accent-color);
}
.sticky-header
{
    position: sticky !important;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: #000000df;
    transition: all 0.3s ease-in-out;
}
.nav-item.active > .nav-link {
    color: var(--accent-color) !important;
}
.page-gallery-box .photo-gallery img
{
    aspect-ratio: auto ;
    object-fit: contain;
}
.project-content
{
    background-color: #00000066;
    border-radius: 20px;
    color: white !important;
}
.project-content *
{
    color: white !important;
}
.project-modal-content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.project-title {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.8rem;
}

.project-category-badge .badge {
    font-size: 0.9rem;
    font-weight: 500;
}

.project-preview-card {
    position: relative;
    transition: transform 0.3s ease;
}

.project-preview-card:hover {
    transform: translateY(-2px);
}

.preview-overlay {
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.preview-image-container:hover .preview-overlay {
    opacity: 1;
}

.info-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef !important;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.info-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    font-size: 1.1rem;
}

.gallery-main .swiper {
    border-radius: 12px !important;
}

.gallery-thumbs .swiper-slide {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 3px solid #007bff;
    border-radius: 8px;
}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: -20px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: 700;
}

.swiper-pagination-bullet-active {
    background: #007bff !important;
}

.no-images {
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
}

@media (max-width: 768px) {
    .project-title {
        font-size: 1.5rem;
    }
    
    .info-card {
        margin-bottom: 1rem;
    }
    
    .gallery-main .swiper {
        height: 250px;
    }
}

