    /* General Reset */
    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        overflow-x: hidden;
        font-family: Arial, sans-serif;
    }

    body {
        background-color: #f4f4f4;
        color: #333;
        scroll-behavior: smooth;
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Accessibility: Skip Link */
    .skip-link {
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        background: #fa8c14;
        color: #fff;
        padding: 12px 24px;
        border-radius: 0 0 8px 8px;
        font-weight: 600;
        text-decoration: none;
        z-index: 9999;
        transition: top 0.2s ease;
    }

    .skip-link:focus {
        top: 0;
        outline: 3px solid #fff;
        outline-offset: 2px;
    }

    /* Accessibility: Focus States */
    a:focus-visible,
    button:focus-visible {
        outline: 3px solid #fa8c14;
        outline-offset: 3px;
    }

    /* Accessibility: Reduced Motion */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }

    /* Menu Icon for Accessibility */
    .menu-icon {
        display: block;
        width: 24px;
        height: 3px;
        background: #fff;
        position: relative;
    }

    .menu-icon::before,
    .menu-icon::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 3px;
        background: #fff;
        left: 0;
    }

    .menu-icon::before {
        top: -8px;
    }

    .menu-icon::after {
        top: 8px;
    }

    /* Top Navigation */
    .top-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        z-index: 1001;
        transform: translateY(-100%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
    }

    .top-nav.active {
        transform: translateY(65px);
        visibility: visible;
    }

    .nav-main {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .nav-main > li {
        border-bottom: 1px solid #333;
    }

    .nav-main > li > a,
    .nav-dropdown-toggle {
        display: block;
        width: 100%;
        padding: 16px 24px;
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        background: none;
        border: none;
        text-align: left;
        cursor: pointer;
        font-family: inherit;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-main > li > a:hover,
    .nav-main > li > a:focus,
    .nav-dropdown-toggle:hover,
    .nav-dropdown-toggle:focus {
        background: #2a2a2a;
        color: var(--accent-color);
    }

    .nav-dropdown-toggle::after {
        content: '+';
        float: right;
        font-size: 1.2rem;
        transition: transform 0.2s ease;
    }

    .nav-dropdown-toggle[aria-expanded="true"]::after {
        content: '-';
    }

    .nav-main > li > a.active {
        color: var(--accent-color);
    }

    /* Dropdown */
    .has-dropdown {
        position: relative;
    }

    .nav-dropdown {
        list-style: none;
        padding: 0;
        margin: 0;
        background: #252525;
        display: none;
    }

    .nav-dropdown.active {
        display: block;
    }

    .nav-dropdown li {
        border-bottom: 1px solid #333;
    }

    .nav-dropdown li:last-child {
        border-bottom: none;
    }

    .nav-dropdown a {
        display: block;
        padding: 14px 24px 14px 40px;
        color: #ccc;
        text-decoration: none;
        font-size: 0.95rem;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-dropdown a:hover,
    .nav-dropdown a:focus {
        background: #333;
        color: var(--accent-color);
    }

    .nav-dropdown a.active {
        color: var(--accent-color);
        border-left: 3px solid var(--accent-color);
        padding-left: 37px;
    }

    /* Menu toggle */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: 20px;
        top: 12px;
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.7);
        border: none;
        border-radius: 6px;
        cursor: pointer;
        z-index: 1002;
        padding: 0;
    }

    .menu-toggle:hover {
        background: rgba(0, 0, 0, 0.9);
    }

    /* Fixed Header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 65px;
        padding: 20px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between; /* Ensures logo stays left and nav stays centered */
        box-shadow: 0 4px 10px rgba(1, 1, 1, 1);
        z-index: 1000;
    }


    /* Shrinking Header Effect */
    header.shrink {
        padding: 15px 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }


    /* Logo - Keep it on the left */
    .logo {
        position: absolute;
        left: 20px; /* Adjust as needed */
    }
        
    .logo img {
        width: 120px;
        transition: width 0.5s ease;
    }

    header.shrink .logo img {
        width: 100px;
    }


    /* Centered Navigation */
    nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
        padding: 0;
    }

    nav ul li {
        margin: 0;
    }


    nav ul li a {
        text-decoration: none;
        color: white;
        font-weight: bold;
        transition: color 0.3s;
    }

    nav ul li a:hover {
        color: #ff6600;
    }

    .hero {
        position: relative;
        width: 100vw; /* Full width */
        height: 80vh; /* Full height */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center; /* Centers horizontally */
        align-items: center; /* Centers vertically */
        text-align: center;
    }

    .hero-text {
        position: absolute;
        top: 40%;
        left: 37%;
        transform: translate(-10%, -10%);
        background: rgba(0, 0, 0, 0.85);
        padding: 35px 45px;
        border-radius: 20px;
        color: #fff;
        text-align: center;
        width: auto;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .hero-text p {
        font-size: 1.15rem;
        font-weight: 500;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .hero-text {
        opacity: 1;
        transition: opacity 0.4s ease-out, transform 0.8s ease-out;
    }

    .hero-text.hidden {
        opacity: 0;
    }

    .footer-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact p {
  margin: 4px 0;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--accent-color);
}

.footer-copy {
  margin-top: 10px;
  color: #999;
  font-size: 0.85rem;
}



    /* Hero Image Blur & Tint */
    .hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: blur(1px) brightness(80px);
    }


    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(255, 140, 0, 0.5), rgba(34, 139, 34, 0.5));
        mix-blend-mode: multiply;
    }


    .hero {
        background-color: transparent; /* Remove unnecessary color */
    }




    .hero-text.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Content Section (Prevents Overlapping) */
    .content {
        padding: 100px 20px;
        background: white;
    }

    /* Services Section */
    .services-section {
        background: #f9f9f9;
        padding: 60px 5%;
        max-width: 1400px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
        color: #222;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .section-header p {
        font-size: 1.05rem;
        color: #666;
    }

    /* Featured Card - SMP Brand */
    .featured-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
        border-radius: 12px;
        padding: 40px;
        margin-bottom: 30px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        cursor: pointer;
        transition: box-shadow 0.3s ease, transform 0.2s ease;
        border-left: 4px solid #fa8c14;
    }

    .featured-card:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

    .featured-content {
        flex: 1;
        padding-right: 40px;
    }

    .featured-content h3 {
        font-size: 1.6rem;
        color: #222;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .featured-content p {
        font-size: 1rem;
        color: #555;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .learn-more {
        display: inline-block;
        color: #fa8c14;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .featured-image {
        flex-shrink: 0;
    }

    .featured-image img {
        width: 200px;
        height: auto;
        border-radius: 8px;
    }

    /* Services Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service-card {
        background: #fff;
        border-radius: 12px;
        padding: 40px 28px;
        min-height: 480px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        cursor: pointer;
        transition: box-shadow 0.3s ease, transform 0.2s ease;
        display: flex;
        flex-direction: column;
    }

    .service-card:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

    .service-icon {
        margin-bottom: 16px;
    }

    .service-icon img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 8px;
    }

    .service-info h3 {
        font-size: 1.15rem;
        color: #222;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .service-info p {
        font-size: 0.92rem;
        color: #666;
        line-height: 1.6;
    }

    .service-info .learn-more {
        display: inline-block;
        margin-top: 15px;
        color: #fa8c14;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .service-card:hover .service-info .learn-more {
        text-decoration: underline;
    }

    /* Tablet breakpoint */
    @media (max-width: 1024px) and (min-width: 769px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .service-card {
            padding: 20px;
        }

        .featured-card {
            padding: 30px;
        }

        .featured-content h3 {
            font-size: 1.4rem;
        }

        .featured-image img {
            width: 160px;
        }
    }

    html, body {
        overflow-x: hidden;
    }
    .service h2 {
        font-size: 24px;
        font-weight: bold;
        color: #ff4500; /* Brighter Orange */
        text-shadow: 2px 2px 4px rgba(245, 177, 109, 0.33);
    }

    .service h3 {
        font-size: 1.5rem;
        margin: 10px 0;
    }

    /* Footer */
    footer {
        text-align: center;
        padding: 20px;
        background: #000000;
        color: white;
    }

    /* Responsive */
    @media (max-width: 768px) {

        /* Fix Hero Section on Mobile */
        .hero-text {
            width: 85%;
            padding: 25px 20px;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.9);
        }

        .hero-text h1 {
            font-size: 1.6rem;
        }

        .hero-text p {
            font-size: 1rem;
        }
    
        /* Services Section Mobile */
        .services-section {
            padding: 40px 4%;
        }

        .section-header {
            margin-bottom: 24px;
        }

        .section-header h2 {
            font-size: 1.5rem;
        }

        .section-header p {
            font-size: 0.95rem;
        }

        /* Featured Card Mobile */
        .featured-card {
            flex-direction: column;
            padding: 24px;
            border-left: none;
            border-top: 4px solid #fa8c14;
        }

        .featured-content {
            padding-right: 0;
            text-align: center;
            order: 2;
        }

        .featured-content h3 {
            font-size: 1.3rem;
        }

        .featured-content p {
            font-size: 0.92rem;
        }

        .featured-image {
            order: 1;
            margin-bottom: 20px;
        }

        .featured-image img {
            width: 150px;
        }

        /* Services Grid Mobile */
        .services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .service-card {
            padding: 24px;
            min-height: auto;
        }

        .service-icon img {
            height: 200px;
        }

        .service-info h3 {
            font-size: 1.2rem;
            margin-top: 15px;
        }

        .service-info p {
            font-size: 1rem;
            margin-top: 10px;
        }

        .service-info .learn-more {
            margin-top: 12px;
        }
    
        /* Fix Footer Padding */
        footer {
            padding: 15px;
            font-size: 0.9rem;
        }
    }


    


    /* Service Card Links */
    a.featured-card,
    a.service-card {
        text-decoration: none;
        color: inherit;
    }

    /* Service Page Styles */
    .page-content {
        max-width: 1100px;
        margin: 0 auto;
        padding: 50px 5%;
    }

    .content-block {
        margin-bottom: 40px;
    }

    .content-block p,
    .content-section p {
        font-size: 1.05rem;
        color: #444;
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .content-section {
        margin: 40px 0;
    }

    .content-section h2 {
        font-size: 1.5rem;
        color: #222;
        margin-bottom: 16px;
        font-weight: 600;
    }

    .content-section.highlight-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        color: #fff;
        padding: 40px;
        border-radius: 12px;
        margin: 50px 0;
    }

    .content-section.highlight-section h2 {
        color: #fa8c14;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .content-section.highlight-section p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        line-height: 1.9;
    }

    .content-section.highlight-section p:last-child {
        color: #fa8c14;
        font-weight: 600;
        font-size: 1.15rem;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .content-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 50px;
    }

    .content-card {
        background: #fff;
        border-radius: 8px;
        padding: 28px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .content-card h3 {
        font-size: 1.15rem;
        color: #222;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .content-card p {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.6;
    }

    .industries-section {
        background: #f9f9f9;
        border-radius: 8px;
        padding: 40px;
        margin-bottom: 40px;
    }

    .industries-section h2 {
        font-size: 1.4rem;
        color: #222;
        margin-bottom: 24px;
        font-weight: 600;
        text-align: center;
    }

    .industries-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .industry-item {
        padding: 16px 0;
    }

    .industry-item h4 {
        font-size: 1rem;
        color: #333;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .industry-item p {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.5;
    }

    .cta-section {
        text-align: center;
        padding: 30px 0;
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .cta-button {
        display: inline-block;
        background: #fa8c14;
        color: #fff;
        padding: 14px 32px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: background 0.2s ease;
    }

    .cta-button:hover {
        background: #e07a0c;
    }

    .back-link {
        color: #666;
        text-decoration: none;
        font-size: 0.95rem;
    }

    .back-link:hover {
        color: #333;
    }

    /* Service Page Mobile */
    @media (max-width: 768px) {
        .page-content {
            padding: 30px 5%;
        }

        .content-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .content-card {
            padding: 20px;
        }

        .industries-section {
            padding: 24px;
        }

        .industries-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .cta-section {
            flex-direction: column;
            gap: 16px;
        }

        .cta-button {
            width: 100%;
            text-align: center;
        }

        .content-section.highlight-section {
            padding: 28px 20px;
            margin: 30px 0;
        }

        .content-section.highlight-section h2 {
            font-size: 1.3rem;
        }

        .content-section.highlight-section p {
            font-size: 1rem;
        }
    }

    /* Page Banner */
    .page-banner {
        background: rgba(0, 0, 0, 0.8);
        color: white;
        text-align: center;
        padding: 60px 20px;
        font-size: 2rem;
    }

    /* About Section */
    .about-content {
        padding: 40px 20px;
        text-align: center;
        font-size: 1.2rem;
        max-width: 800px;
        margin: auto;
    }

    /* Contact Form */
    .contact-form {
        padding: 40px 20px;
        max-width: 600px;
        margin: auto;
    }

    .contact-form form {
        display: flex;
        flex-direction: column;
    }

    .contact-form label {
        margin-top: 10px;
    }

    .contact-form input, .contact-form textarea {
        padding: 10px;
        margin-top: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .contact-form button {
        margin-top: 20px;
        padding: 10px;
        background: #ff6600;
        color: white;
        border: none;
        cursor: pointer;
    }

    .contact-form button:hover {
        background: #cc5500;
    }

    .nav-links {
        flex: 2;
        text-align: center;
    }
    
    .nav-links ul {
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 2rem;
    }
    
    .nav-links a {
        color: #000000;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
    }
    
    .nav-links a:hover {
        color: var(--accent-color);
    }
    
    .nav-links a.active {
        color: var(--accent-color);
    }
    :root {
        --accent-color: #fa8c14;
    }
    
    .service img {
        border-radius: 10px; /* Optional for rounded corners */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }


    /* Sign-in button */
.sign-in {
    margin-left: auto; /* Pushes sign-in to the right */
}

.sign-in-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.sign-in-button:hover {
.sign-in {
    margin-left: auto; /* Pushes sign-in to the right */
}}

.sign-in-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.sign-in-button:hover {
    background-color: #fa8c14;
}

/* ================================
   WHY SMP SECTION
   ================================ */
.why-section {
    padding: 80px 5%;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
}

.why-icon {
    width: 250px;
    height: 250px;
    margin: 0 auto 25px;
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-card h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 30px 20px;
    }
}

/* ================================
   COVERAGE SECTION
   ================================ */
.coverage-section {
    padding: 80px 5%;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.coverage-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.coverage-content > p {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 40px;
}

.coverage-areas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.coverage-areas span {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.coverage-areas span:hover {
    background: #fa8c14;
    border-color: #fa8c14;
}

@media (max-width: 600px) {
    .coverage-areas span {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ================================
   HOME CTA SECTION
   ================================ */
.home-cta-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #fa8c14 0%, #e07000 100%);
    text-align: center;
}

.home-cta-content h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.home-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.home-cta-section .cta-button {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.home-cta-section .cta-button:hover {
    background: #1a1a1a;
    color: #fff;
}

@media (max-width: 600px) {
    .home-cta-content h2 {
        font-size: 1.8rem;
    }

    .home-cta-content p {
        font-size: 1rem;
    }
}
