/* ===============================
   SERVICES SECTION
================================ */

:root {
    --card-bg: #315b9e;
    --card-bg-hover: #1d3366;
    --text-light: #f8fafc;
    --text-muted: #cbd5e1;
    --icon-accent: #7ecbff; /* sky blue accent */
}

/* Section Base */
.services-section {
    padding: 100px 70px;
    background: #ffffff;
    text-align: center;
}

/* Titles */
.section-title {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-subtitle {
    margin-bottom: 45px;
    color: #555;
    font-size: 1.1rem;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

/* Cards */
.service-card {
    background: var(--card-bg);
    padding: 36px 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    transition: all 0.35s ease;
    text-align: center;
}

.service-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

/* ===============================
   ICONS — FIXED & VISIBLE
================================ */

.icon-box img {
    width: 64px;
    margin-bottom: 18px;
    filter: none; 
    transition: transform 0.35s ease, filter 0.35s ease;
}

/* Subtle premium hover effect */
.service-card:hover .icon-box img {
    transform: translateY(-4px) scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(126, 203, 255, 0.35));
}

/* Text */
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-light);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 80px 25px;
    }
}



.logo-carousel-section {
    padding: 60px 0;
    overflow: hidden;
    background: #fafafa;
}

.carousel-section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.logo-carousel-container {
    width: 100%;
    overflow-x: auto;                
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;           
    -ms-overflow-style: none;         
}

.logo-carousel-container::-webkit-scrollbar {
    display: none;
}


.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 35s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}


.logo-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    min-width: 100%;
}

.logo-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 3vw;
    min-width: 140px;
    opacity: .85;
    transition: .3s;
}

.logo-list li:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: none;            
    transition: transform 0.3s ease;
}

.logo-list li:hover .logo-img {
    transform: scale(1.08);
}

.logo-list span {
    font-size: 14px;
    margin-top: 8px;
    font-weight: 600;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}
