:root {
            --ns-teal: #1E6C78;
            --ns-orange: #F28C28;
            --ns-dark: #212529;
            --ns-light: #f8f9fa;
            --ns-text: #555;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--ns-text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--ns-teal);
            font-weight: 600;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.2rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            display: block;
            width: 60px;
            height: 3px;
            background: var(--ns-orange);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .btn-primary {
            background-color: var(--ns-orange);
            border-color: var(--ns-orange);
            font-weight: 500;
            padding: 10px 25px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #e07a16;
            border-color: #e07a16;
            transform: translateY(-2px);
        }
        
        /* Navbar */
        .navbar {
            background-color: #fff;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--ns-teal) !important;
        }

        .navbar-nav .nav-link {
            color: var(--ns-teal);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: var(--ns-orange);
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        }
        .dropdown-item:hover {
            background-color: var(--ns-teal);
            color: white;
        }

        /* Hero Section */
        #hero {
            width: 100%;
            height: 90vh;
            background: linear-gradient(rgba(30, 108, 120, 0.8), rgba(30, 108, 120, 0.8)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?q=80&w=1932&auto=format&fit=crop') center center;
            background-size: cover;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        #hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        #hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        /* Sections General */
        section {
            padding: 80px 0;
            overflow: hidden;
        }
        .bg-light {
            background-color: var(--ns-light) !important;
        }

        /* Stats Section */
        .stats-box {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stats-box h3 {
            font-size: 2.5rem;
            color: var(--ns-orange);
            font-weight: 700;
            margin-bottom: 10px;
        }
        .stats-box p {
            color: var(--ns-teal);
            font-weight: 500;
        }

        /* Solutions Section */
        .solution-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }
        .solution-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }
        .solution-icon {
            font-size: 2.5rem;
            color: var(--ns-orange);
            margin-bottom: 20px;
        }
        .solution-card h4 {
            color: var(--ns-teal);
            font-weight: 600;
            margin-bottom: 15px;
        }
        .solution-card ul {
            list-style: none;
            padding: 0;
        }
        .solution-card ul li {
            padding-left: 28px;
            position: relative;
            margin-bottom: 10px;
        }
        .solution-card ul i {
            position: absolute;
            left: 0;
            top: 5px;
            font-size: 20px;
            color: var(--ns-orange);
        }

        /* CTA Section */
        #cta {
            background: linear-gradient(rgba(30, 108, 120, 0.9), rgba(30, 108, 120, 0.9)), url('https://images.unsplash.com/photo-1516387938699-a93567ec168e?q=80&w=2071&auto=format&fit=crop') center center;
            background-size: cover;
            color: white;
            text-align: center;
        }
        #cta h2 {
            color: white;
        }

        /* Contact Form */
        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .form-control {
            padding: 12px 15px;
            border: 1px solid #e9ecef;
            border-radius: 4px;
            margin-bottom: 20px;
        }
        .form-control:focus {
            border-color: var(--ns-teal);
            box-shadow: 0 0 0 0.2rem rgba(30, 108, 120, 0.25);
        }

        /* Footer */
        footer {
            background-color: var(--ns-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 0 0;
        }
        footer h5 {
            color: var(--ns-orange);
            font-weight: 600;
            margin-bottom: 20px;
        }
        footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--ns-orange);
        }
        footer .list-unstyled li {
            margin-bottom: 10px;
        }
        .footer-bottom {
            background-color: rgba(0,0,0,0.2);
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }

        /* Page Content */
        .page-header {
            background: linear-gradient(rgba(30, 108, 120, 0.8), rgba(30, 108, 120, 0.8)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?q=80&w=2070&auto=format&fit=crop') center center;
            background-size: cover;
            padding: 100px 0;
            color: white;
            text-align: center;
        }
        .page-header h1 {
            color: white;
            font-size: 2.8rem;
        }

        @media (max-width: 768px) {
            #hero h1 {
                font-size: 2.5rem;
            }
            .section-title h2 {
                font-size: 1.8rem;
            }
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
        }

        /* Clients Section */
        .clients-section {
            padding: 80px 0;
        }
        
        .client-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        .client-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }
        .client-logo {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: var(--ns-light);
        }
        .client-logo img {
            max-height: 80px;
            max-width: 100%;
        }
        .client-info {
            padding: 25px;
        }
        .client-info h3 {
            color: var(--ns-teal);
            margin-bottom: 15px;
        }
        .client-info p {
            margin-bottom: 20px;
        }
        .client-industry {
            display: inline-block;
            background: var(--ns-light);
            color: var(--ns-teal);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        /* Testimonials */
        .testimonial-section {
            background: var(--ns-light);
            padding: 80px 0;
        }
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            position: relative;
            margin-top: 40px;
        }
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 60px;
            color: var(--ns-light);
            font-family: Georgia, serif;
            line-height: 1;
        }
        .testimonial-text {
            position: relative;
            z-index: 1;
            font-style: italic;
            margin-bottom: 20px;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        .author-info h5 {
            margin-bottom: 5px;
            color: var(--ns-teal);
        }
        .author-info p {
            color: var(--ns-text);
            margin: 0;
            font-size: 0.9rem;
        }

        /* Partners Section */
        .partners-section {
            padding: 80px 0;
        }
        .partner-logo {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .partner-logo img {
            max-height: 70px;
            max-width: 100%;
        }
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(30, 108, 120, 0.9), rgba(30, 108, 120, 0.9)), url('https://images.unsplash.com/photo-1516387938699-a93567ec168e?q=80&w=2071&auto=format&fit=crop') center center;
            background-size: cover;
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        .cta-section h2 {
            color: white;
            margin-bottom: 30px;
        }