 
        :root {
            --primary-blue: #1a7f8c;
            --secondary-orange: #f57c00;
            --accent-teal: #26a69a;
            --light-blue: #e8f4fd;
            --dark-blue: #0e5364;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            scroll-behavior: smooth;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .navbar-brand h1 {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-bottom: 0;
        }
        
        .navbar-brand p {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 0;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 5px;
            padding: 8px 15px !important;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .nav-link:hover, .nav-link.active {
            color: white !important;
            background-color: var(--primary-blue);
        }
        /* Logo Styles */
        .navbar-brand img {
            transition: transform 3.05s ease;
        }

        /*.navbar-brand:hover img {
           transform: scale(2.05);
        } */

        /* Mobile responsive logo */
        @media (max-width: 768px) {
            .navbar-brand img {
                height: 40px !important;
            }
            
            .navbar-brand h1 {
                font-size: 1.2rem;
            }
        }

        /* Footer logo */
        .footer img {
            filter: brightness(0) invert(1);
            opacity: 0.9;
        }

        .footer img:hover {
            opacity: 1;
        }
        
        .hero-section {
            background: linear-gradient(rgba(10, 64, 74, 0.9), rgba(13, 83, 95, 0.85)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 100px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-title h2 {
            color: var(--primary-blue);
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--secondary-orange);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 20px auto 0;
            font-size: large;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid var(--primary-blue);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 40px;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        .key-feature-item {
            text-align: center;
            padding: 20px 15px;
            border-radius: 8px;
            background-color: white;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: transform 0.3s;
        }
        
        .key-feature-item:hover {
            transform: translateY(-5px);
        }
        
        .key-feature-item i {
            color: var(--secondary-orange);
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .spec-table th {
            background-color: var(--primary-blue);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .spec-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .spec-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .spec-table tr:hover {
            background-color: var(--light-blue);
        }
        
        .color-palette-item {
            height: 100px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s;
        }
        
        .color-palette-item:hover {
            transform: scale(1.05);
        }
        /* Technical Data Table Styles */
        .technical-table {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(37, 160, 150, 0.08);
            margin-top: 20px;
            margin-bottom: 30px;
        }

        .technical-table thead {
            background-color: var(--primary-blue);
            color: white;
        }

        .technical-table th {
            padding: 15px;
            font-weight: 600;
            text-align: left;
            border-bottom: 2px solid var(--primary-blue);
        }

        .technical-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
            vertical-align: middle;
        }

        .technical-table tr:nth-child(even) {
            background-color: var(--light-blue);
        }

        .technical-table tr:hover {
            background-color: rgba(26, 75, 140, 0.05);
        }

        .technical-table td:first-child {
            font-weight: 600;
            text-align: left;
            background-color: rgba(26, 75, 140, 0.1);
        }

        .technical-table sup {
            font-size: 0.7em;
            vertical-align: super;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .technical-table {
                font-size: 0.9rem;
            }
            
            .technical-table th,
            .technical-table td {
                padding: 8px 10px;
            }
        }

        @media (max-width: 576px) {
            .technical-table {
                font-size: 0.8rem;
            }
            
            .technical-table thead {
                display: none;
            }
            
            .technical-table tbody tr {
                display: block;
                margin-bottom: 15px;
                border: 1px solid #ddd;
                border-radius: 5px;
            }
            
            .technical-table tbody td {
                display: block;
                text-align: right;
                padding: 10px;
                border-bottom: 1px solid #eee;
            }
            
            .technical-table tbody td::before {
                content: attr(data-label);
                float: left;
                font-weight: 600;
                color: var(--primary-blue);
            }
            
            .technical-table tbody td:first-child {
                background-color: var(--primary-blue);
                color: white;
                font-weight: 600;
                text-align: center;
            }
            
            .technical-table tbody td:first-child::before {
                display: none;
            }
        }
        
        .contact-info-box {
            background-color: var(--light-gray);
            border-radius: 8px;
            padding: 30px;
            height: 100%;
            border-left: 4px solid var(--primary-blue);
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-item i {
            color: var(--secondary-orange);
            font-size: 20px;
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--primary-blue);
            color: white;
            border-radius: 50%;
            font-size: 18px;
            transition: all 0.3s;
            text-decoration: none;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        
        .social-icon:hover {
            background-color: var(--secondary-orange);
            transform: translateY(-3px);
        }
        
        .map-container {
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .footer {
            background-color: var(--dark-blue);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary-orange);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 10px;
            margin-top: 10px;
            color:white;
            font-size: 0.9rem;
        }
        
        .product-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
        
        .product-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        /* GALLERY SLIDER STYLES */
        .gallery-slider {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-slider .carousel-item {
            height: 500px;
        }
        
        .gallery-slider .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
        
        .gallery-slider .carousel-caption {
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px 20px 20px;
            text-align: left;
        }
        
        .gallery-slider .carousel-caption h5 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        
        .gallery-slider .carousel-caption p {
            color: #ddd;
            font-size: 1rem;
        }
        
        .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            margin: 0 20px;
        }
        
        .carousel-control-prev:hover, .carousel-control-next:hover {
            background-color: var(--primary-blue);
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
            border: 2px solid transparent;
            background-color: rgba(255, 255, 255, 0.5);
        }
        
        .carousel-indicators button.active {
            background-color: var(--secondary-orange);
            border-color: white;
        }
        
        .about-section {
            background-color: var(--light-gray);
            padding: 100px 0;
        }
        
        /* CONTACT FORM STYLES */
        .contact-form-container {
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            border-top: 4px solid var(--accent-teal);
        }
        
        .contact-form-container h3 {
            color: var(--primary-blue);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .contact-form-container h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-orange);
            bottom: 0;
            left: 0;
        }
        
        .form-control {
            border: 1px solid #ddd;
            border-radius: 6px;
            padding: 12px 15px;
            margin-bottom: 20px;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(26, 75, 140, 0.25);
        }
        
        .submit-btn {
            background-color: var(--secondary-orange);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 6px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s;
        }
        
        .submit-btn:hover {
            background-color: var(--primary-blue);
            transform: translateY(-2px);
        }
        
        .cta-button {
            background-color: var(--secondary-orange);
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            border: 2px solid var(--secondary-orange);
            transition: all 0.3s;
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: var(--secondary-orange);
        }
        
        .sticky-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1030;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        /* Add padding to body to account for fixed navbar */
        body {
            padding-top: 76px;
        }
        
        /* Section padding for proper spacing */
        section {
            padding: 80px 0;
        }
        
        #features, #offerings, #specifications, #gallery, #contact {
            padding: 80px 0;
        }
        
        /* Ensure sections have proper spacing */
        .section-padding {
            padding: 80px 0;
        }
        
        /* Direct contact link styles */
        .contact-link {
            color: var(--primary-blue);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }
        
        .contact-link:hover {
            color: var(--secondary-orange);
            text-decoration: underline;
        }
        a.text-white{
            text-decoration: none;
            color: #aaa;
            display: inline;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
                min-height: auto;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .color-palette-item {
                height: 80px;
            }
            
            .navbar-nav {
                background-color: white;
                padding: 15px;
                border-radius: 8px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                margin-top: 10px;
            }
            
            section {
                padding: 60px 0;
            }
            
            #features, #offerings, #specifications, #gallery, #contact {
                padding: 60px 0;
            }
            
            .gallery-slider .carousel-item {
                height: 350px;
            }
            
            .contact-form-container {
                padding: 25px;
            }
            
            body {
                padding-top: 70px;
            }
        }
        
        @media (max-width: 576px) {
            .gallery-slider .carousel-item {
                height: 300px;
            }
            
            .gallery-slider .carousel-caption {
                padding: 20px 15px 15px;
            }
            
            .gallery-slider .carousel-caption h5 {
                font-size: 1.2rem;
            }
            
            .carousel-control-prev, .carousel-control-next {
                width: 40px;
                height: 40px;
                margin: 0 10px;
            }
        }
    