 /* Specific page styles matching Services layout */
 .services-layout {
     display: flex;
     gap: 40px;
     margin-top: 50px;
 }

 /* SIDEBAR (Left) */
 .service-sidebar {
     flex: 0 0 300px;
     /* Fixed width sidebar */
     background: #fff;
     padding: 0;
 }

 .service-nav-title {
     background-color: var(--secondary);
     /* Orange default */
     color: white;
     padding: 20px;
     font-size: 1.2rem;
     font-weight: 700;
     text-transform: uppercase;
     text-align: center;
 }

 .service-nav-list {
     list-style: none;
     padding: 0;
     margin: 0;
     border: 1px solid #eee;
     border-top: none;
 }

 .service-nav-item {
     display: block;
     padding: 15px 20px;
     font-weight: 600;
     color: #062365;
     text-decoration: none;
     border-bottom: 1px solid #eee;
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .service-nav-item:last-child {
     border-bottom: none;
 }

 .service-nav-item:hover {
     color: var(--secondary);
     background-color: #f9f9f9;
     padding-left: 25px;
     /* Slight slide effect */
 }

 .service-nav-item.active {
     color: #062365 !important;
     background-color: #f8fbff;
     /* Very light blue tint */
     border-left: 5px solid #062365;
     padding-left: 15px;
     /* Adjust padding to compensate for border */
 }

 /* CONTENT (Right) */
 .service-content-area {
     flex: 1;
     /* Necessary for flex item to shrink properly */
     min-width: 0;
     width: 100%;
 }

 .service-content-image {
     width: 100%;
     height: 400px;
     object-fit: cover;
     margin-bottom: 30px;
     border-radius: 4px;
 }

 .service-content-area h2,
 .service-content-area h3 {
     font-family: 'Open Sans', sans-serif !important;
     font-weight: 800 !important;
     font-size: 38px !important;
     color: #062365 !important;
     margin-bottom: 20px !important;
     text-transform: none !important;
 }

 .service-content-area p {
     color: #333;
     line-height: 1.8;
     margin-bottom: 20px;
     font-size: 0.95rem;
     text-align: justify;
 }

 @media (max-width: 992px) {
     .services-layout {
         flex-direction: column;
         gap: 15px;
         margin-top: 20px;
     }

     .service-sidebar {
         width: 100%;
         margin-bottom: 0;
     }

     .service-content-area h2,
     .service-content-area h3 {
         font-size: 24px !important;
         margin-bottom: 12px !important;
     }

     .service-content-area p {
         font-size: 0.9rem;
         margin-bottom: 12px;
     }

     .service-content-image {
         height: 250px;
         margin-bottom: 15px;
     }
 }

 @media (max-width: 768px) {
     .services-layout {
         gap: 10px;
         margin-top: 10px;
     }

     .service-nav-title {
         padding: 12px 15px;
         font-size: 1rem;
     }

     .service-nav-item {
         padding: 10px 15px;
         font-size: 0.9rem;
     }

     .service-content-area h2,
     .service-content-area h3 {
         font-size: 20px !important;
         margin-bottom: 10px !important;
     }

     .gallery-slider {
         height: 280px;
     }

     .logo-card {
         width: 100px !important;
         height: 65px !important;
     }

     .logos-wrapper {
         padding: 10px 0 !important;
         margin-bottom: 15px !important;
     }

     .solution-main {
         padding: 20px 0 !important;
     }

     .solution-description {
         margin-bottom: 15px !important;
     }
 }

 /* LOGO GRID / SCROLL */
 .logos-wrapper {
     position: relative;
     padding: 0 40px;
     /* Space for buttons */
 }

 .logos-container {
     display: flex;
     flex-wrap: nowrap;
     /* Single line */
     gap: 15px;
     overflow-x: auto;
     padding: 20px 0;
     margin-bottom: 30px;
     justify-content: flex-start;
     scrollbar-width: none;
     /* Firefox */
     -ms-overflow-style: none;
     /* IE and Edge */
     scroll-behavior: smooth;
 }

 .logos-container::-webkit-scrollbar {
     display: none;
 }

 .logo-card {
     flex: 0 0 auto;
     /* Don't shrink */
     width: 140px;
     /* Fixed width */
     height: 90px;
     border: 1px solid #e0e0e0;

     /* Button Styles */
 }

 /* Navigation Buttons */
 .logo-nav-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 30px;
     height: 30px;
     background: rgba(6, 35, 101, 0.8);
     border: none;
     border-radius: 50%;
     color: white;
     cursor: pointer;
     z-index: 5;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.8rem;
     transition: background 0.3s;
 }

 .logo-nav-btn:hover {
     background: var(--secondary);
 }

 .logo-nav-btn.prev {
     left: 0;
 }

 .logo-nav-btn.next {
     right: 0;
 }

 .hello {
     background: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 10px;
     transition: transform 0.2s,
         box-shadow 0.2s;
 }

 .logo-card:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
     border-color: var(--secondary);
 }

 .logo-card img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
     filter: none;
     /* Full color */
     opacity: 1;
     margin: 0;
 }

 /* GALLERY SLIDER */
 .gallery-slider {
     position: relative;
     width: 100%;
     height: 500px;
     /* Taller image area */
     overflow: hidden;
     margin: 0 0 30px 0;
     border-radius: 0;
     /* Clean edges */
 }

 .gallery-track {
     display: flex;
     transition: transform 0.5s ease-in-out;
     height: 100%;
 }

 .gallery-slide {
     min-width: 100%;
     height: 100%;
     position: relative;
 }

 .gallery-slide img {
     width: 100%;
     height: 100%;
     object-fit: contain
 }

 .gallery-nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 100%;
     display: flex;
     justify-content: space-between;
     padding: 0 20px;
     pointer-events: none;
     z-index: 10;
 }

 .gallery-btn {
     pointer-events: auto;
     background: rgba(255, 255, 255, 0.9);
     border: none;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     cursor: pointer;
     font-size: 1.2rem;
     color: var(--primary);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
 }

 .gallery-btn:hover {
     background: var(--secondary);
     color: white;
 }

 .gallery-dots {
     position: absolute;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 10px;
     z-index: 10;
 }

 .gallery-dot {
     width: 10px;
     height: 10px;
     background: rgba(255, 255, 255, 0.6);
     border-radius: 50%;
     cursor: pointer;
     transition: all 0.3s;
     border: 1px solid rgba(0, 0, 0, 0.1);
 }

 .gallery-dot.active {
     background: var(--secondary);
     /* Orange */
     transform: scale(1.2);
     border-color: var(--secondary);
 }

 .logos-wrapper {
     overflow: hidden;
     width: 100%;
     position: relative;
     padding: 20px 0;
     margin-bottom: 30px;
     /* Mask for fading edges */
     -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
     mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
 }

 .logos-track {
     display: flex;
     gap: 30px;
     /* Increased gap for better spacing */
     width: max-content;
     animation: scrollLogos 30s linear infinite;
 }

 .logo-card {
     flex: 0 0 auto;
     width: 140px;
     height: 90px;
     background: white;
     border: 1px solid #eee;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 10px;
     transition: transform 0.3s;
 }

 .logo-card:hover {
     transform: scale(1.05);
     border-color: var(--secondary);
     z-index: 1;
     /* Bring to front on hover */
 }

 .logo-card img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
     /* filter: grayscale(100%); Removed */
     /* opacity: 0.8; Removed */
     transition: all 0.3s;
 }

 .logo-card:hover img {
     filter: none;
     opacity: 1;
 }

 @keyframes scrollLogos {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }

     /* Move half the width (since we duplicated contents) */
 }

 /* Pause animation on hover */
 .logos-track:hover {
     animation-play-state: paused;
 }

/* Service-style paragraph formatting */
.service-style-content {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: justify;
}

.service-style-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: justify;
}

/* Ensure consistent title styling */
.solution-title {
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 800 !important;
    font-size: 38px !important;
    color: #062365 !important;
    margin-bottom: 20px !important;
    text-transform: none !important;
}

/* Responsive adjustments for solution content */
@media (max-width: 992px) {
    .solution-title {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }
    
    .service-style-content,
    .service-style-content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .solution-title {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }
    
    .service-style-content,
    .service-style-content p {
        font-size: 0.85rem;
        margin-bottom: 10px;
        text-align: left;
    }
}
/* Solution page sections styling - simplified */
.solution-description {
    /* No border, clean spacing */
}

.logos-section {
    /* No border, clean spacing */
}

.references-section {
    /* No border, clean spacing */
}

/* Responsive adjustments for sections */
@media (max-width: 768px) {
    .solution-description,
    .logos-section,
    .references-section {
        margin-bottom: 25px !important;
    }
}