        /* Global Styles */
        :root {
            --primary: #0056b3;  /* Deep blue (trust/professionalism) */
            --secondary: #e67e22; /* Orange (CTAs/energy) */
            --dark: #2c3e50;     /* Dark blue (headers) */
            --light: #f8f9fa;     /* Light gray (backgrounds) */
            --accent: #3498db;    /* Light blue (accents) */
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background: var(--secondary);
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--secondary);
        }
        .btn:hover {
            background: transparent;
            color: var(--secondary);
        }
        .btn-outline {
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }
        .btn-outline:hover {
            background: var(--secondary);
            color: #fff;
        }
        section {
            padding: 80px 0;
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            color: var(--dark);
            position: relative;
            padding-bottom: 15px;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--secondary);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 15px;
        }

        /* Header */
        header {
            background-color: var(--dark);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #fff;
            font-size: 1.8rem;
            font-weight: 700;
        }
        .logo span {
            color: var(--secondary);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: var(--secondary);
        }
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            color: #fff;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517502884422-41eaead166d4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
            color: #fff;
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: #fff;
            font-size: 2rem;
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
            40% {transform: translateY(-20px) translateX(-50%);}
            60% {transform: translateY(-10px) translateX(-50%);}
        }

        /* About Section */
        .about {
            background-color: var(--light);
        }
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .about-img {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        .about-content h2 {
            text-align: left;
        }
        .about-content h2:after {
            left: 0;
            transform: none;
        }
        .about-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .about-features {
            margin-top: 30px;
        }
        .about-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        .about-feature i {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 5px;
        }

        /* Products Section */
        .products {
            background-color: #fff;
        }
        .section-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }
        .product-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .product-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .product-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .product-card-content {
            padding: 25px;
        }
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        .product-card ul {
            margin-left: 20px;
            margin-bottom: 25px;
            color: #555;
        }
        .product-card ul li {
            margin-bottom: 8px;
        }
        .view-all {
            text-align: center;
            margin-top: 50px;
        }

        /* Features Section */
        .features {
            background-color: var(--light);
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .feature-item {
            padding: 40px 30px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
        }
        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .feature-item i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        .feature-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        .feature-item p {
            color: #666;
        }

        /* Projects Section */
        .projects {
            background-color: #fff;
        }
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        .project-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 250px;
        }
        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .project-card:hover img {
            transform: scale(1.1);
        }
        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: #fff;
            padding: 20px;
        }
        .project-overlay h3 {
            color: #fff;
            margin-bottom: 5px;
        }
        .project-overlay p {
            color: #ddd;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: var(--light);
        }
        .testimonial-slider {
            max-width: 800px;
            margin: 50px auto 0;
            position: relative;
        }
        .testimonial {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        .testimonial img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 3px solid var(--secondary);
        }
        .testimonial p {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
        }
        .testimonial h4 {
            color: var(--dark);
            margin-bottom: 5px;
        }
        .testimonial .position {
            color: var(--secondary);
            font-weight: 500;
        }

      /* Clients Section */
.clients {
    background-color: #fff;
    overflow: hidden;
}
.clients-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}
.clients-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 20s linear infinite;
}
.client-logo {
    flex-shrink: 0;

    opacity: 0.7;
    transition: all 0.3s ease;
    text-align: center;
    width: 150px;
}

.client-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

        /* Contact Section */
        .contact {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
            color: #fff;
            position: relative;
        }
        .contact:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 86, 179, 0.8);
            mix-blend-mode: multiply;
        }
        .contact .container {
            position: relative;
            z-index: 1;
        }
        .contact h2 {
            color: #fff;
        }
        .contact h2:after {
            background: var(--secondary);
        }
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        .contact-info h3 {
            color: #fff;
            margin-bottom: 30px;
            font-size: 1.8rem;
        }
        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        .contact-detail i {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 5px;
        }
        .contact-detail-content h4 {
            color: #fff;
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        .contact-detail-content p, .contact-detail-content a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .contact-detail-content a:hover {
            color: var(--secondary);
        }
        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: none;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
        }
        .contact-form textarea {
            height: 150px;
        }
        .contact-form button {
            width: 100%;
            padding: 15px;
            background: var(--secondary);
            color: #fff;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .contact-form button:hover {
            background: #d35400;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: #fff;
            padding: 50px 0 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h3 {
            color: #fff;
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary);
        }
        .footer-col p {
            color: #bbb;
            margin-bottom: 15px;
        }
        .footer-links li {
            list-style: none;
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s;
        }
        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            right: 30px;
            bottom: 30px;
            background: #25D366;
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: all 0.3s;
        }
        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .about-container, .contact-container {
                grid-template-columns: 1fr;
            }
            .about-content h2 {
                text-align: center;
            }
            .about-content h2:after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        @media (max-width: 768px) {
            header {
                padding: 15px 0;
            }
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            nav ul {
                margin-top: 20px;
                flex-direction: column;
                align-items: center;
            }
            nav ul li {
                margin: 10px 0;
            }
            .hero {
                padding: 150px 0 80px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 80%;
                margin: 0 auto;
            }
            section {
                padding: 60px 0;
            }
            h2 {
                font-size: 2rem;
            }
        }

        /* Salient Features Section */
.salient-features {
  background: #ffffff;
  padding: 60px 0;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header h1 {
  font-size: 28px;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
}

.subheading {
  text-align: center;
  font-size: 18px;
  color: #e67e22;
  margin-bottom: 30px;
  font-weight: bold;
}

.intro-text {
  margin-bottom: 40px;
  line-height: 1.6;
  color: #555;
  text-align: center;
  font-size: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* 3-Column Layout */
.features-columns {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.features-left, .features-right {
  flex: 1;
}

.features-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-caption {
  background: #f5f5f5;
  padding: 15px;
  text-align: center;
  width: 100%;
  margin-top: 10px;
}

.image-caption h3 {
  font-size: 18px;
  color: #333;
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
}

.feature-item {
  margin-bottom: 30px;
}

.feature-item h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.feature-item p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .features-columns {
    flex-direction: column;
  }
  
  .features-image {
    order: 1;
    margin: 30px 0;
  }
  
  .features-left, .features-right {
    order: 2;
  }
  
  .features-image img {
    height: 300px;
  }
}