:root {
    color-scheme: light;
}

        :root {
            --brand-header: #0A2F5C;
            --brand-button: #0E4C92;
            --brand-button-hover: #08386B;
            --brand-text-primary: #0A2F5C;
            --primary: #1a73e8;
            --brand-bg-light: #EAF2FB;
            --brand-accent: #C9CED6;
            --white: #ffffff;
            --overlay-blue: rgba(10, 47, 92, 0.85);
            --scroll-speed: 40s; 
            /* Fixed container size to ensure uniform alignment */
            --logo-container-width: 220px;
            --logo-container-height: 120px;
            --logo-gap: 2rem;
             --footer-bg-image: url('images/services.webp');
        }

        body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            overflow-x: hidden;
            color: var(--brand-text-primary);
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--brand-bg-light);
            font-size: 0.75rem;
            padding: 8px 0;
            border-bottom: 1px solid var(--brand-accent);
        }

        .top-bar-accent {
            background-color: var(--brand-header);
            color: white;
            padding: 8px 15px;
            display: inline-block;
            margin-right: 15px;
            font-weight: 600;
        }

        .top-bar a {
            text-decoration: none;
            color: var(--brand-text-primary);
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 500;
        }

        .social-icons a {
            color: var(--brand-header);
            background: var(--brand-text-primary);
            border: 1px solid var(--brand-accent);
            width: 26px;
            height: 26px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: var(--brand-button);
            color: white;
            border-color: var(--brand-button);
        }

        /* Navbar & Logo Handling */
        .navbar {
            background-color: var(--brand-header) !important;
            padding: 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            background: white;
            padding: 10px 20px;
            margin-right: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 90px;
            width: auto;
            min-width: 140px;
            border-bottom: 4px solid var(--brand-accent);
        }

        .navbar-brand img {
            max-height: 150%;
            max-width: 180px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 600;
            padding: 32px 15px !important;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            transition: 0.3s;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--white) !important;
            background: rgba(255,255,255,0.1);
        }
        

        /* Dropdown Styling */
        .dropdown-menu {
            background-color: var(--white);
            border: 1px solid var(--brand-accent);
            border-radius: 0;
            margin-top: 0;
            padding: 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .dropdown-item {
            color: var(--brand-text-primary);
            padding: 12px 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            border-bottom: 1px solid var(--brand-bg-light);
        }

        .dropdown-item:hover {
            background-color: var(--brand-bg-light);
            color: var(--brand-button);
        }

        /* Action Button */
        .request-quote-btn {
            background: var(--white);
            color: var(--brand-button);
            border: none;
            padding: 15px 25px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.8rem;
            border-radius: 4px;
            margin-left: 20px;
            margin-top:15px;
            transition: 0.3s;
        }

        .request-quote-btn:hover {
            background: var(--brand-button);
            color: var(--white);
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        
        /* Mobile Responsive Adjustments */
        @media (max-width: 991px) {
            .navbar-brand { height: 70px; padding: 5px 15px; }
            .nav-link { padding: 15px !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
            .hero-title { font-size: 2.8rem; }
            .request-quote-btn { margin: 20px 0; width: 100%; }
        }

        @media (max-width: 576px) {
            .hero-title { font-size: 2.2rem; }
            .hero-section { padding: 80px 0; height: auto; }
            .top-bar { display: none; }
        }



        /* Hero Section Style Code */

    .hero-section {
        position: relative;
        height: 85vh;
        min-height: 650px;
        max-height: 1000px;
        /* Replace with your image_2e7389.jpg URL */
        background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('images/Dummy-banner.webp'); 
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        color: white;
        overflow: hidden;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding-top: 4rem;
        padding-bottom: 4rem;
        /* Increased left padding for "light space" feel */
        padding-left: 100%; 
    }

    .hero-subtitle {
        font-weight: 600;
        text-transform: uppercase;
        font-size: 1rem;
        margin-bottom: 1.25rem;
        letter-spacing: 2.5px;
        opacity: 0.95;
        display: block;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8.5vw, 5.5rem); 
        font-weight: 800;
        line-height: 1.05;
        margin-bottom: 2rem;
        text-transform: uppercase;
    }

    .hero-description {
        font-size: clamp(1.1rem, 2.2vw, 1.35rem);
        margin-bottom: 3.5rem;
        color: rgba(255,255,255,0.9);
        font-weight: 500;
        max-width: 750px;
        line-height: 1.7;
    }

    .btn-color {
        background-color: var(--brand-header);
        color: white;
        padding: 18px 45px;
        font-weight: 700;
        text-transform: uppercase;
        border: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        display: inline-block;
        border-radius: 4px;
        letter-spacing: 1.5px;
        font-size: 0.95rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .btn-color:hover {
        background-color: var(--brand-button-hover);
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    }

    /* --- Multi-Device Responsive Padding Adjustments --- */
    
    /* Desktop Large */
    @media (min-width: 1400px) {
        .hero-content {
            padding-left: 23%; /* Even more space on very wide screens */
        }
    }

    /* Tablets */
    @media (max-width: 991px) {
        .hero-section {
            height: 60vh;
        }
        .hero-content {
            padding-left: 10%; /* Maintain decent space on tablets */
        }
    }

    /* Mobile Devices */
    @media (max-width: 767px) {
        .hero-section {
            height: 90vh;
            min-height: 50vh;
            padding: 80px 0;
            background-position: 75% center;
        }
        .hero-content {
            /* Standard safe padding for mobile to prevent text touching edges */
            padding-left: 30px;
            padding-right: 30px;
        }
        .hero-title {
            margin-bottom: 1.5rem;
        }
        .hero-description {
            margin-bottom: 2.5rem;
            line-height: 1.5;
        }
        .btn-orange {
            width: 100%; 
            text-align: center;
        }
    }
    
    /* Small Mobile Adjustments */
    @media (max-width: 400px) {
        .hero-title {
            font-size: 1.9rem;
        }
        .hero-content {
            padding-left: 20px;
            padding-right: 20px;
        }
    }


    /* About Section Style Code */

    /* Keyframes for Continuous Floating Motion */
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        /* About Section Styles */
        .about-section { 
            padding: 50px 20px; 
            background: var(--white); 
            overflow: hidden; 
            perspective: 1000px; 
        }

        .about-container { 
            max-width: 1175px; 
            margin: auto; 
            display: flex; 
            align-items: center; 
            gap: 80px; 
        }
        
        .about-content { 
            flex: 1.2; 
            opacity: 0; 
            transform: translateY(30px); 
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); 
        }

        .about-image-wrapper { 
            flex: 0.8; 
            position: relative;
            opacity: 0; 
            transform: rotateY(-15deg) translateX(50px) scale(0.9);
            transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), 
                        transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        /* Reveal Animations Triggered by Scroll */
        .about-section.visible .about-content { 
            opacity: 1; 
            transform: translateY(0); 
        }

        .about-section.visible .about-image-wrapper { 
            opacity: 1; 
            transform: rotateY(0deg) translateX(0) scale(1); 
        }
        
        /* Apply the Floating Animation ONLY after the section becomes visible */
        /* .about-section.visible .about-image-wrapper img {
            animation: floating 4s ease-in-out infinite;
        } */



        .about-content h2 { 
            font-size: 36px; 
            font-weight: 800; 
            color: var(--brand-text-primary); 
            margin-bottom: 25px; 
            position: relative; 
        }


        .about-section.visible .about-content h2::after { 
            width: 60px; 
        }

        .about-content p { 
            font-size: 17px; 
            line-height: 1.8; 
            color: #444; 
            margin-bottom: 20px; 
        }
        
        .about-image-wrapper img { 
            width: 100%; 
            height: auto; 
            /* border-radius: 20px;  */
            position: relative;
            z-index: 1;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        @media (max-width: 991px) {
            .about-container { flex-direction: column; gap: 50px; }
            .about-container h2 { flex-direction: column; gap: 50px; }
            .about-content h2::after { left: 50%; transform: translateX(-50%); }
            .about-image-wrapper { transform: translateY(40px) scale(0.95); opacity: 0; }
            .about-section.visible .about-image-wrapper { transform: translateY(0) scale(1); }
            /* Reduce floating intensity on mobile */
            @keyframes floating {
                0% { transform: translateY(0px); }
                50% { transform: translateY(-10px); }
                100% { transform: translateY(0px); }
            }
        }

       .services-section{
    padding:50px 0;
    background-image: linear-gradient(#08386bc0, #08386be1), url('images/cta-img.webp');
    background-size:cover;
    background-position:right;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2{
    font-size:36px;
    color:var(--white);
    font-weight:700;
}

.section-header p{
    color:#ccc;
    font-size:17px;
}

/* =============================
   GRID LAYOUT
============================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

@media(max-width:992px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .services-grid{
        grid-template-columns:1fr;
    }
}

/* =============================
   CARD DESIGN
============================= */

.service-card{
    background:#fff;
    border-radius:6px;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    overflow:hidden;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.card-image-box{
    height:250px;
    overflow:hidden;
}

.card-image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.service-card:hover img{
    transform:scale(1.1);
}

/* Arrow Container */
.arrow-container{
    position:absolute;
    top:220px;
    right:20px;
    width:50px;
    height:50px;
}

/* Pulse Effect */
.pulse-wave{
    position:absolute;
    width:100%;
    height:100%;
    background:var(--brand-header);
    border-radius:50%;
    opacity:0.6;
    animation:pulse 2s infinite linear;
}

.pulse-wave-delayed{
    animation-delay:1s;
}

@keyframes pulse{
    0%{transform:scale(1);opacity:0.6;}
    100%{transform:scale(2.2);opacity:0;}
}

/* Arrow Button */
.card-arrow{
    position:relative;
    width:100%;
    height:100%;
    background:var(--brand-button);
    color:#fff;
    border:3px solid #fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:2;
    overflow:hidden;
    transition:0.3s;
}

.service-card:hover .card-arrow{
    background:var(--brand-button-hover);
}

.card-arrow:active{
    transform:scale(0.9);
}

/* Ripple Effect */
.ripple{
    position:absolute;
    background:rgba(255,255,255,0.5);
    border-radius:50%;
    transform:scale(0);
    animation:ripple 0.6s linear;
}

@keyframes ripple{
    to{
        transform:scale(4);
        opacity:0;
    }
}

.card-content{
    padding:45px 25px 30px;
}

.card-content h4{
    font-size:22px;
    margin-bottom:10px;
    font-weight:700;
    color:#333;
}

.card-content p{
    font-size:16px;
    line-height:1.7;
    color:#555;
}
                
        /* Footer Section Style Code*/

        .footer {
            position: relative;
            /* Overlay for readability + Background Image */
            background-image: linear-gradient(rgba(17, 17, 17, 0.94), rgba(10, 10, 10, 0.96));
            background-size: cover;
            background-position: center;
            background-attachment: scroll;          
            color: #ccc;
            padding: 50px 0 0;
            text-align: left;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1200px;
            margin: auto;
            padding: 0 20px;
            /* Updated to 4 equal-ish columns */
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .footer-logo {
            width: 180px;
            margin-bottom: 25px;
        }

        .footer-col h4 {
            color: #fff;
            margin-bottom: 30px;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 35px;
            height: 3px;
            background: var(--brand-button);
        }

        .footer-col p {
            line-height: 1.8;
            font-size: 15px;
            color: #bbb;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            text-decoration: none;
            color: #aaa;
            transition: 0.3s;
            position: relative;
            padding-bottom: 2px;
            font-size: 15px;
            display: inline-block;
        }

        .footer-col ul li a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

        .social-icons {
            margin-top: 25px;
            display: flex;
            gap: 10px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--brand-text-primary);
            color: #ffffff;
            font-size: 16px;
            border-radius: 4px;
            transition: 0.3s;
            text-decoration: none;
        }

        .social-icons a:hover {
            background: var(--brand-button);
            color: var(--white);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            text-align: center;
            padding: 25px;
            margin-top: 60px;
            font-size: 13px;
            color: #777;
        }

        .footer-col .fas, .footer-col .fa-location-dot {
            margin-top: 4px;
            margin-right: 12px;
            color: var(--brand-button);
            font-size: 16px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-item p {
            margin-bottom: 0;
        }

        #scrollTopBtn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--white);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        #scrollTopBtn i {
            color: #111;
            font-size: 18px;
        }

        #scrollTopBtn:hover {
            background: var(--white);
            transform: translateY(-5px);
        }

        /* Responsive Fixes */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 600px) {
            .footer-container {
                grid-template-columns: 1fr;
                text-align: left;
            }
            .footer-col h4::after {
                left: 5%;
                transform: translateX(-50%);
            }
            .social-icons, .contact-item {
                justify-content: left;
            }
            .contact-item {
                text-align: left;
                width: fit-content;
                /* margin-left: auto; */
                margin-right: auto;
            }
        }

        .link1{
            color: var(--white);
            text-decoration: none;
        }
        .link1:hover {
            color: var(--primary)
        }


        /* Contact Section Style Code */

        .contact-wrapper {
            position: relative;
            padding: 50px 0;
            display: flex;
            align-items: center;
            overflow: hidden;
            background-color: var(--brand-header);
        }

        /* Background Image Layer */
        .contact-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/services.webp');
            background-size: 200px;
            background-position: center;
            z-index: 1;
        }

        /* Blue Overlay Layer using --brand-header */
        .contact-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay-blue);
            z-index: 2;
        }

        .contact-wrapper .container {
            position: relative;
            z-index: 3;
        }

        .contact-header {
            color: var(--white);
            text-align: center;
            margin-bottom: 60px;
        }

        .contact-header h2 {
            font-weight: 700;
            font-size: 36px;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .contact-header p {
            font-size: 17px;
            opacity: 0.95;
        }

        /* Card Styling */
        .contact-card {
            background-color: var(--white);
            border: none;
            border-radius: 0; 
            padding: 50px 30px;
            text-align: center;
            height: 100%;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            background-color: var(--brand-bg-light); /* Subtle brand background on hover */
        }

        .icon-box {
            width: 75px;
            height: 75px;
            border: 2px solid var(--brand-button);
            color: var(--brand-button);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 25px auto;
            transition: all 0.3s ease;
        }

        .contact-card:hover .icon-box {
            background-color: var(--brand-button);
            color: var(--white);
            border-color: var(--brand-button);
        }

        .contact-card h4 {
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--brand-text-primary);
        }

        .contact-card p {
            font-size: 17px;
            line-height: 1.6;
            margin-bottom: 10px;
            color: #555;
        }

        .contact-info {
            font-weight: 700;
            color: var(--brand-button);
            display: block;
            text-decoration: none;
            margin-top: 10px;
            font-size: 1.1rem;
        }

        .contact-info:hover {
            color: var(--brand-button-hover);
        }

        .location-icon {
            color: var(--brand-button);
            margin-right: 8px;
        }

        /* Quality Assurane Section Style Code */

        .quality {
            background-color: #f4f7fa;
            color: #333;
            padding: 50px 0;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            font-weight: 700;
            margin-bottom: 50px;
            color: var(--brand-header);
            position: relative;
            font-size: 36px;
        }

        /* Card Styles */
        .ksp-card {
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 0px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
            /* Initial state for animation */
            opacity: 0;
            transform: translateY(30px);
        }

        .ksp-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .ksp-card:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 10px 25px rgba(10, 47, 92, 0.1);
            border-color: var(--brand-accent);
        }

        /* Highlight Card style using Brand Blue */
        .ksp-card.highlight {
            background: var(--brand-header);
            color: var(--white);
            box-shadow: 0 10px 20px rgba(10, 47, 92, 0.2);
            border: none;
        }

        .ksp-card.highlight .icon-wrapper {
            background: rgba(255, 255, 255, 0.15);
            color: var(--white);
        }

        .ksp-card.highlight .card-text {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
        }

        .ksp-card.highlight .card-title {
            color: var(--white);
        }

        /* Icon styling */
        .icon-wrapper {
            width: 50px;
            height: 50px;
            background: var(--brand-bg-light);
            color: var(--brand-header);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0px;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .card-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--brand-text-primary);
        }

        .card-text {
            font-size: 16px;
            color: #555;
            line-height: 1.6;
        }

        .small {
            font-size: 16px;
        }

        /* Grid layout adjustments */
        .cards-container {
            max-width: 1100px;
        }

        .quality-header {
            margin-bottom: 30px;
            font-weight: 700;
            color: var(--brand-header);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 36px;
            margin-top: 30px;
        }
        
        .instrument-card .icon-wrapper {
            background: var(--brand-bg-light);
            color: var(--brand-header);
        }


        /* ===== HERO SECTION ===== */
.hero-gallery-section {
    position: relative;
    width: 100%;
    height: 20vh;
    /* min-height: 280px; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
}

/* Grayscale Effect */
.hero-gallery-section::before{
    content:"";
    position:absolute;
    inset:0;
    background: inherit;
    filter: grayscale(100%);
    z-index:0;
}

/* Dark Overlay */
.hero-gallery-overlay{
    position:absolute;
    inset:0;
    background: rgba(0, 0, 0, 0.918);
    z-index:1;
}

/* Content */
.hero-gallery-content{
    position:relative;
    z-index:2;
    text-align:center;
    padding:0 20px;
}

/* Breadcrumb */
.hero-gallery-breadcrumb{
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.hero-gallery-breadcrumb a{
    color:var(--primary);
    text-decoration:none;
    font-weight:500;
}

.hero-gallery-breadcrumb .divider{
    color:var(--white);
    opacity:0.5;
    margin:0 6px;
}

.hero-gallery-breadcrumb .active-item{
    color:var(--white);
    font-weight:600;
}

/* Title */
.hero-gallery-title{
    font-size:clamp(28px,6vw,60px);
    font-weight:700;
    color:var(--white);
    letter-spacing:4px;
    margin:0;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width:992px){
    .hero-gallery-section{
        height:35vh;
        min-height:250px;
    }
}

/* Mobile */
@media (max-width:576px){
    .hero-gallery-section{
        height:30vh;
        min-height:220px;
    }

    .hero-gallery-title{
        letter-spacing:2px;
    }

    .hero-gallery-breadcrumb{
        font-size:12px;
    }
}

        /* Gallery Grid Section */

/* Section */
.gallery-section{
    padding:50px 0;
}

.section-title{
    font-size:36px;
    font-weight:700;
    margin-bottom:50px;
    text-align:center;
}

/* Gallery Item */
.gallery-item{
    position:relative;
    overflow:hidden;
    cursor:pointer;
    aspect-ratio:1/1;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition:0.3s ease;
}

.gallery-item:hover{
    transform:translateY(-6px);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

/* Overlay */
.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    color:white;
    opacity:0;
    transition:0.3s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.zoom-icon{
    font-size:28px;
    margin-bottom:8px;
}

/* Modal */
.modal-content{
    background:transparent;
    border:none;
}

.lightbox-img{
    max-width:100%;
    max-height:90vh;
    border-radius:10px;
}

.btn-close-white{
    position:fixed;
    top:150px;
    right:500px;
    z-index:1055;
    color:var(--brand-button);
}



/* Map Viewing Section */

.map-banner {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.map-banner iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%);
}



/* Section */
.partner-section{
    padding:50px 0;
    text-align:center;
    background:#f5f5f5;
}

.partner-section h2{
    font-size:36px;
    font-weight:700;
    text-align:center;
    margin-bottom:40px;
}

/* Slider */
.slider{
    position:relative;
    max-width:1000px;
    margin:auto;
    overflow:hidden;
    padding:0 60px; /* space for arrows */
    box-sizing:border-box;
}

/* Wrapper */
.slider-wrapper{
    overflow:hidden;
}

/* Track */
.slide-track{
    display:flex;
    transition: transform 0.5s ease;
}

/* Slides */
.slide{
    flex: 0 0 25%; /* Desktop 4 logos */
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px 10px;
    box-sizing:border-box;
}

/* Logo */
.slide img{
    width:180px;
    height:80px;
    object-fit:contain;
    filter:none;  /* full color logos */
    opacity:1;
    transition: transform 0.3s ease;
}

.slide img:hover{
    transform: scale(1.08);
}

/* Arrow buttons inside slider */
.nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    background:#000;
    color:#fff;
    border:none;
    cursor:pointer;
    z-index:20;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    transition:0.3s;
}

.nav:hover{
    background:#444;
}

/* Arrow positions inside slider */
.prev{
    left:10px;
}

.next{
    right:10px;
}

/* Tablet (≤992px) */
@media(max-width:992px){
    .slide{
        flex: 0 0 50%; /* 2 logos per view */
    }
}

/* Mobile (≤768px) */
@media(max-width:768px){
    .slide{
        flex: 0 0 100%; /* 1 logo per view */
    }

    .slide img{
        width:150px;
        height:70px;
    }

    .nav{
        width:40px;
        height:40px;
        font-size:18px;
    }

    .prev{
        left:10px;
    }

    .next{
        right:10px;
    }
}

/* Satisfaction Section Code */

 .about-satisfaction-area{
  padding:50px 20px;
  position:relative;
  background: url('images/Dummy-banner.webp') center/cover no-repeat;
  color:#fff;
  overflow:hidden;
}

/* Dark overlay */
.about-satisfaction-area::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: var(--overlay-blue);
  z-index:0;
}

.about-satisfaction-wrapper{
  max-width:1100px;
  margin:auto;
  position:relative;
  z-index:2;
}

.about-satisfaction-box{
  opacity:0;
  transform:translateY(50px);
  transition:all 1s ease;
}

.about-satisfaction-area.active .about-satisfaction-box{
  opacity:1;
  transform:translateY(0);
}

.about-satisfaction-title{
  font-size:36px;
  font-weight:800;
  text-align:center;
  margin-bottom:35px;
  color:#ffffff;
}

.about-satisfaction-box p{
  font-size:17px;
  line-height:1.9;
  margin-bottom:22px;
  text-align:justify;
  color:#f1f1f1;
}

/* Responsive */
@media(max-width:768px){
  .about-satisfaction-title{
    font-size:36px;
  }
}


/* WHY CHOOSE SECTION */
.ksp-whychoose-section {
    position: relative;
    padding: 50px 0 100px;
    background: url('images/industrial-bg.jpg') center center/cover no-repeat;
    z-index: 1;
}

.ksp-why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.ksp-why-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
}

.ksp-why-subtitle {
    color: #cccccc;
    margin-bottom: 60px;
    font-size: 17px;
}

/* CARD WRAPPER */
.ksp-why-card-wrapper {
    position: relative;
    z-index: 2;
}

/* CARD STYLE */
.ksp-why-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.ksp-why-card:hover {
    transform: translateY(-10px);
}

.ksp-why-icon {
    font-size: 40px;
    color: var(--brand-button);
    margin-bottom: 20px;
}

.ksp-why-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 22px;
}

.ksp-why-card p {
    font-size: 16px;
    color: #555;
}

/* Logo Section Code To Contact Page */

/* Full screen section */
.logo-section {
    margin-bottom: 0px;
    align-items: center;
}

/* Big Logo */
.main-logo {
    width: 350px;
    max-width: 80%;
    transition: transform 0.5s ease, opacity 1s ease;
    opacity: 1;
}

/* Hover effect */
.main-logo:hover {
    transform: scale(1.1);
}




/* Services Page Inside Sections Style Code */
/* --- Main Content Layout --- */
      .sand-section {
    background: #f8f9fb;
}

.section-heading {
    font-weight: 700;
    font-size: 36px;
    color: #0f2b46;
}

.section-subtext {
    /* max-width: 800px; */
    margin: auto;
    color: #555;
    font-size: 17px;
}



.specs-bar {
    background: #0f2b46;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 30px;
    flex-wrap: wrap;
    border-left: 6px solid #0f2b46;
}

.spec-item {
    display: flex;
    gap: 15px;
    align-items: center;
    min-width: 250px;
}

.spec-item i {
    font-size: 28px;
    color: var(--white);
}

.spec-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-bg-light);
    display: block;
}

.feature-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border: 1px solid #eaeaea;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-card i {
    font-size: 40px;
    color: #0f2b46;
    margin-bottom: 20px;
}

.feature-card h5 {
    font-size: 22px;
}

.quality-section {
    background: #fff;
    padding: 40px;
    border-left: 5px solid #0f2b46;
}
.quality-section h4{
    font-size: 22px;
}

.step-box {
    background: #fff;
    padding: 20px;
    display: flex;
    gap: 15px;
    border: 1px solid #eee;
    align-items: flex-start;
}

.workflow-section h3{
    font-size: 36px;
}

.workflow-section h6{
    font-size: 22px;
}

.step-box span {
    font-size: 22px;
    font-weight: bold;
    color: var(--brand-button-hover);
}


/* Instrument Section */

.instrument-card{
    padding: 25px 20px;
    background: #fff;
    height: 100%;
    transition: 0.3s ease;
}

.instrument-card:hover{
    transform: translateY(-5px);
}

.image-wrapper{
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    background: #f8f8f8;
}

.image-wrapper img{
    width: 100%;
    height: 85%;
    object-fit: cover; /* full image visible */
    padding: 10px;
}

.card-title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-text{
    color: #666;
    line-height: 1.6;
}



/* 404 page section code on 404 page */

.error-section{
    min-height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.error-box{
    text-align:center;
    max-width:650px;
    margin:auto;
    position:relative;
    z-index:2;
}

.error-code{
    font-size:180px;
    font-weight:800;
    color:var(--brand-button);
    line-height:1;
    margin-bottom:10px;
}

.error-title{
    font-size:46px;
    font-weight:700;
    color:var(--brand-header);
    margin-bottom:20px;
}

.error-desc{
    max-width:520px;
    margin:0 auto 40px;
    color:#6c757d;
    font-size:18px;
    line-height:1.8;
}

.error-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--brand-button);
    color:var(--white);
    text-decoration:none;
    padding:15px 36px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.error-btn:hover{
    background:var(--brand-button-hover);
    color:var(--white);
    transform:translateY(-3px);
}

.error-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:var(--brand-bg-light);
    border-radius:50%;
    top:-170px;
    left:-170px;
    opacity:.7;
}

.error-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:var(--brand-accent);
    border-radius:50%;
    right:-150px;
    bottom:-150px;
    opacity:.4;
}

@media(max-width:768px){

    .error-code{
        font-size:110px;
    }

    .error-title{
        font-size:32px;
    }

    .error-desc{
        font-size:16px;
        padding:0 20px;
    }

    .error-btn{
        padding:13px 28px;
    }

}