    /* Enhanced Industrial Website Custom Styles */
    :root {
        --primary-color: #0056b3;
        --secondary-color: #6c757d;
        --dark-color: #212529;
        --light-color: #f8f9fa;
        --accent-color: #ffc107;
        --danger-color: #dc3545;
    }

    /* Preloader Styles */
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--primary-color);
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .loader {
        width: 50px;
        height: 50px;
        border: 5px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: white;
        animation: spin 1s ease-in-out infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    /* Scroll to Top Button */
    .scroll-to-top {
        position: fixed;
        bottom: 30px;
        right: 15px;
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        cursor: pointer;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .scroll-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .scroll-to-top:hover {
        background: #004494;
        transform: translateY(-5px);
    }

    /* General Styles */
    body {
        font-family: 'Roboto', sans-serif;
        line-height: 1.7;
        color: #333;
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Oswald', sans-serif;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .section-title {
        position: relative;
        display: inline-block;
        margin-bottom: 1.5rem;
    }

    .section-title:after {
        content: '';
        position: absolute;
        width: 60%;
        height: 4px;
        background: var(--primary-color);
        bottom: -10px;
        left: 0;
        border-radius: 2px;
    }

    .btn {
        border-radius: 50px;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 12px 28px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
    }

    .btn-primary {
        background-color: var(--primary-color);
        background-image: linear-gradient(to right, #0056b3, #007bff);
    }

    .btn-primary:hover {
        background-image: linear-gradient(to right, #004494, #0069d9);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3);
    }

    .btn-outline-light:hover {
        color: var(--primary-color) !important;
    }

    /* Header Styles */
    .navbar {
        padding: 15px 0;
        transition: all 0.4s ease;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar.scrolled {
        padding: 10px 0;
        background-color: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .logo-container {
        position: relative;
    }

    #Partners img {
        max-width: 50%;
    }

    .logo-bg {
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, var(--primary-color), #007bff);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
    }

    .logo-bg:hover {
        transform: rotate(15deg);
    }

    .logo-text {
        color: white;
        font-weight: bold;
        font-size: 1.8rem;
    }

    .nav-link {
        color: #495057 !important;
        font-weight: 500;
        padding: 8px 15px !important;
        margin: 0 5px;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color) !important;
    }

    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
    }

    /* Hero Section */
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url('../images/bg.jpeg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .advanced-hero-section {

        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url('../images/bg.jpeg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
    }



    .hero-content {
        z-index: 2;
    }

    .hero-title {
        font-size: 3.5rem;
        line-height: 1.2;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
    }

    .hero-card {
        transform: perspective(1000px) rotateY(5deg);
        transition: all 0.5s ease;
        border: none;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .hero-card:hover {
        transform: perspective(1000px) rotateY(0deg);
    }

    .feature-list li {
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }

    .feature-list li:hover {
        transform: translateX(10px);
    }

    .feature-icon {
        width: 25px;
        height: 25px;
        background: var(--primary-color);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        color: white;
        font-size: 12px;
    }

    /* Statistics Section */
    .stats-section {
        background: linear-gradient(135deg, var(--primary-color), #007bff);
        position: relative;
        overflow: hidden;
    }

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../images/stastatic.jpeg');
        background-size: cover;
        background-position: center;
        opacity: 0.1;
    }

    .stat-item {
        padding: 30px 15px;
        transition: all 0.4s ease;
        position: relative;
        z-index: 1;
    }

    .stat-item:hover {
        transform: translateY(-10px);
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        background: linear-gradient(to right, white, #f8f9fa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* About Section */
    .about-section {
        background-color: #f8f9fa;
        position: relative;
    }

    .about-img {
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        transition: all 0.5s ease;
        transform: perspective(1000px) rotateY(-5deg);
    }

    .about-img:hover {
        transform: perspective(1000px) rotateY(0deg);
    }

    #about .icon-box {
        margin: 0 auto 20px;
    }

    .icon-box {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 86, 179, 0.1);
        color: var(--primary-color);
        font-size: 2rem;
        transition: all 0.4s ease;
    }

    .feature-card:hover .icon-box {
        background: var(--primary-color);
        color: white;
        transform: rotate(15deg) scale(1.1);
    }

    /* Services Section */
    .services-section {
        position: relative;
    }

    .service-card {
        border: none;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        height: 100%;
    }

    .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 15px 40px rgba(0, 86, 179, 0.15);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        background: linear-gradient(135deg, var(--primary-color), #007bff);
        color: white;
        font-size: 1.8rem;
        transition: all 0.4s ease;
    }

    .service-card:hover .service-icon {
        transform: rotate(15deg) scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
    }

    /* Clients Section */
    .clients-section {
        background-color: #f8f9fa;
    }

    .client-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100px;
        padding: 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        margin: 10px;
        opacity: 0.7;
    }

    .client-logo:hover {
        transform: scale(1.1);
        opacity: 1;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    /* Testimonials */
    .testimonial-section {
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
            url('../images/testimonial.jpeg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        color: white;
    }

    .testimonial-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 30px;
        transition: all 0.4s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
    }

    .testimonial-img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(255, 255, 255, 0.3);
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, var(--primary-color), #007bff);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
        animation: pulse 8s infinite linear;
    }

    @keyframes pulse {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* Footer */
    .footer {
        background-color: var(--dark-color);
        color: white;
        position: relative;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
        display: block;
        margin-bottom: 10px;
        text-decoration: none;
    }

    .footer-links a:hover {
        color: white;
        transform: translateX(5px);
    }

    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        color: #0077f7;
        margin-right: 10px;
        transition: all 0.3s ease;
        text-decoration: none;
        font-size: 20px;
    }

    .social-icon:hover {
        background: #d4e9ff;
        transform: translateY(-5px);
    }

    .newsletter-input {
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: white;
        border-radius: 50px;
        padding: 12px 20px;
    }

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .newsletter-btn {
        border-radius: 50px;
        padding: 12px 25px;
        background: var(--accent-color);
        color: var(--dark-color);
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .newsletter-btn:hover {
        background: #ffab00;
        transform: translateY(-3px);
    }

    /* Animations */
    .animate-up {
        animation: fadeInUp 1s ease-out;
    }

    .animate-left {
        animation: fadeInLeft 1s ease-out;
    }

    .animate-right {
        animation: fadeInRight 1s ease-out;
    }

    .animate-delay-1 {
        animation-delay: 0.2s;
    }

    .animate-delay-2 {
        animation-delay: 0.4s;
    }

    .animate-delay-3 {
        animation-delay: 0.6s;
    }

    .hover-scale {
        transition: transform 0.4s ease;
    }

    .hover-scale:hover {
        transform: scale(1.05);
    }

    /* Responsive Design */
    @media (max-width: 1199.98px) {
        .hero-title {
            font-size: 3rem;
        }
    }

    @media (max-width: 991.98px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .hero-card {
            margin-top: 50px;
            transform: none !important;
        }

        .about-img {
            margin-bottom: 30px;
            transform: none !important;
        }
    }

    @media (max-width: 767.98px) {
        .hero-title {
            font-size: 2.2rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .stat-number {
            font-size: 2.5rem;
        }

        .section-title:after {
            width: 40%;
        }
    }

    @media (max-width: 575.98px) {
        .hero-title {
            font-size: 1.8rem;
        }

        .btn {
            padding: 10px 20px;
            font-size: 0.9rem;
        }

        .icon-box {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }
    }

    .hero-title {
        color: #ffffff !important;
    }


    @media (max-width: 1199.98px) {
        #home-top {
            margin-top: 65px;
        }
    }


    .gallery-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url('../images/earth.jpeg');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 120px 0 80px;
        text-align: center;
    }

    .section-title {
        position: relative;
        display: inline-block;
        margin-bottom: 2rem;
    }

    .section-title:after {
        content: '';
        position: absolute;
        width: 60%;
        height: 4px;
        background: var(--primary-color);
        bottom: -10px;
        left: 20%;
        border-radius: 2px;
    }

    .gallery-filter {
        margin-bottom: 40px;
    }

    .filter-btn {
        background: none;
        border: none;
        padding: 8px 20px;
        margin: 0 5px;
        color: var(--dark-color);
        font-weight: 500;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: var(--primary-color);
        color: white;
    }

    .gallery-item {
        margin-bottom: 30px;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
    }

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .gallery-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .gallery-item:hover .gallery-img {
        transform: scale(1.05);
    }

    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 15px;
        transform: translateY(100%);
        transition: all 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
        transform: translateY(0);
    }

    .gallery-caption {
        margin-bottom: 0;
        font-weight: 500;
    }

    .gallery-category {
        font-size: 0.8rem;
        color: var(--accent-color);
        margin-bottom: 5px;
    }

    .video-thumbnail {
        position: relative;
    }

    .video-play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 24px;
        transition: all 0.3s ease;
    }

    .video-thumbnail:hover .video-play-btn {
        background: var(--primary-color);
        color: white;
        transform: translate(-50%, -50%) scale(1.1);
    }

    .stats-section {
        background: linear-gradient(135deg, var(--primary-color), #007bff);
        color: white;
        padding: 60px 0;
    }

    .stat-item {
        text-align: center;
        padding: 20px;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    /* Lightbox Customization */
    .lightbox .lb-image {
        border: 5px solid white;
        border-radius: 3px;
    }

    .lightbox .lb-nav a.lb-next,
    .lightbox .lb-nav a.lb-prev {
        opacity: 1;
    }

    .lightbox .lb-close {
        opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 767.98px) {
        .gallery-hero {
            padding: 100px 0 60px;
        }

        .gallery-img {
            height: 200px;
        }

        .filter-btn {
            margin: 5px;
            padding: 6px 15px;
            font-size: 0.9rem;
        }
    }

    .video-thumbnail a {
        text-decoration: none;
    }


    .blog-hero {
        background:
            linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url('../images/bg.jpeg') center/cover no-repeat;

    }

    .blog-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .blog-category {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 2;
    }

    .author-img {
        width: 40px;
        height: 40px;
        object-fit: cover;
    }

    .tag-badge {
        background-color: #f0f4f8;
        color: #3a506b;
    }


    .team-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url('../images/g1.jpeg');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 120px 0 80px;
        text-align: center;
    }

    .section-title {
        position: relative;
        display: inline-block;
        margin-bottom: 2rem;
    }

    .section-title:after {
        content: '';
        position: absolute;
        width: 60%;
        height: 4px;
        background: var(--primary-color);
        bottom: -10px;
        left: 20%;
        border-radius: 2px;
    }

    .team-card {
        border: none;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        margin-bottom: 30px;
        background: white;
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .team-img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-bottom: 4px solid var(--primary-color);
    }

    .team-social {
        position: absolute;
        top: 15px;
        right: 15px;
        display: flex;
        flex-direction: column;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .team-card:hover .team-social {
        opacity: 1;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.9);
        color: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 5px;
        transition: all 0.3s ease;
    }

    .social-icon:hover {
        background: var(--primary-color);
        color: white;
        transform: scale(1.1);
    }

    .team-info {
        padding: 20px;
        text-align: center;
    }

    .team-name {
        font-weight: 700;
        margin-bottom: 5px;
        color: var(--dark-color);
    }

    .team-position {
        color: var(--primary-color);
        font-weight: 500;
        margin-bottom: 15px;
        display: block;
    }

    .team-bio {
        color: var(--secondary-color);
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .team-divider {
        width: 100px;
        height: 2px;
        background: #eee;
        margin: 20px auto;
    }

    .team-specialty {
        font-size: 0.8rem;
        color: var(--secondary-color);
        font-style: italic;
    }

    .department-header {
        background: var(--primary-color);
        color: white;
        padding: 80px 0 40px;
        margin-bottom: 40px;
        position: relative;
    }

    .department-header h2 {
        color: white;
    }

    .department-header::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 20px solid var(--primary-color);
    }

    .team-cta {
        background: linear-gradient(135deg, var(--primary-color), #007bff);
        color: white;
        padding: 80px 0;
        text-align: center;
    }

    .team-cta .btn {
        border-radius: 50px;
        padding: 12px 30px;
        font-weight: 600;
        margin-top: 20px;
    }

    /* Responsive Design */
    @media (max-width: 767.98px) {
        .team-hero {
            padding: 100px 0 60px;
        }

        .team-img {
            height: 220px;
        }

        .team-social {
            opacity: 1;
            flex-direction: row;
            top: auto;
            bottom: 15px;
            right: 50%;
            transform: translateX(50%);
        }

        .social-icon {
            margin: 0 5px;
        }
    }

    #content-head {
        margin-top: 45px;
    }

    #text-on-img {
        background-color: black;
        opacity: 0.8;
        border-radius: 20px;
    }

    #footer-last {
        padding-bottom: 20px;
    }