/* nav bar start */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(1, 1, 61);
    opacity: 1;
    padding: 10px 5%;
    position: relative;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;


}

.logo img {
    height: 64px;
    height: 64px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    filter: brightness(2.4);



}


.logo h1 {
    font-size: clamp(14px, 3vw, 18px);
    color: #074b6f;
    font-weight: 700;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: red;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}


.menu-toggle {
    display: none;
}

.menu-toggle:checked+.burger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 7px);
}

.menu-toggle:checked+.burger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked+.burger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
}

@media (max-width: 768px) {
    header {
        padding: 10px 20px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: 20px;
        background-color: rgb(1, 1, 61);

        flex-direction: column;
        align-items: flex-start;
        width: 200px;
        border-radius: 10px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: all 0.4s ease;
        z-index: 1000;
    }

    .nav-links a {
        color: white;
        width: 100%;
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover {
        background-color: #eee;
        color: #074b6f;
    }

    .nav-links a::after {
        display: none;
    }

    .menu-toggle:checked~.nav-links {
        padding: 10px 0;
        max-height: 500px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .burger {
        display: flex;
    }
}


@media (max-width: 400px) {
    .logo h1 {
        display: none;
    }

    .logo img {
        height: 35px;
        width: 35px;
    }

    .nav-links {
        width: 180px;
        right: 10px;
    }
}

/* nav bar end  */



/* Now start the footer */



.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding-top: 40px;
}

.footer_container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

.footer_box {
    flex: 1;
}



.footer-image {
    display: flex;
    justify-between: center;
    align-items: center;

}





.footer_logo {
    height: 64px;
    height: 64px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    filter: brightness(2.4);
}

.footer_box h3 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer_box p {
    font-size: 14px;
    line-height: 1.6;
}


.footer_box a {
    display: block;
    text-decoration: none;
    color: #cbd5e1;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer_box a:hover {
    color: #38bdf8;
}

.social_icons {
    margin-top: 15px;
}

.social_icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #1e293b;
    color: #ffffff;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.social_icons a:hover {
    background: rgb(246, 8, 8);
}


.contact_item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.contact_item i {
    color: #38bdf8;
}


.footer_bottom {
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    background: #020617;
    font-size: 14px;
}


@media (max-width: 768px) {
    .footer_container {
        flex-direction: column;
        text-align: center;
    }

    .contact_item {
        justify-content: center;
    }
}

/* footer end  */















/* another page about section hero  */


.about-banner {
    background-image: url('../image/banner.webp');
    background-size: cover;
    background-position: center;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: #fff;
}

.gradient-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(20, 20, 20, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.about-banner-content {
    text-align: center;
    padding-top: 30px;
    max-width: 900px;
}

.main-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    margin-top: 48px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    position: relative;
}

.title-underline {
    width: 120px;
    height: 4px;
    background-color: rgb(26, 163, 211);
    margin: 10px auto 20px;
    border-radius: 2px;
}

.sub-title {
    font-size: 20px;
    font-weight: 400;
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.6;
}

.breadcrumb {
    font-size: 16px;
    /* color: #ccc; */
    display: flex;

    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #ffc107;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.breadcrumb a:hover::after {
    transform: scaleX(1);
}

.breadcrumb span {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 32px;
    }

    .sub-title {
        font-size: 16px;
    }

    .title-underline {
        width: 80px;
    }
}

/* another page about section hero end */















.hero-banner {
    width: 100%;
    height: 80vh;
    background-image: url("../image/manpower3.jpg");
    /* tumhari image */
    background-size: cover;
    background-position: center;
    position: relative;
    font-family: Arial, sans-serif;
    overflow: hidden;
}


.banner-glass {
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: #ffffff;
    padding: 0 20px;
}

/* text styling */
.banner-glass h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.banner-glass p {
    max-width: 800px;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #eaeaea;
}

/* button */
.banner-btn {
    padding: 12px 32px;
    background-color: #c1121f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

.banner-btn:hover {
    background-color: #9a0e18;
}

/* responsive */
@media (max-width: 768px) {
    .hero-banner {
        height: 70vh;
    }

    .banner-glass h1 {
        font-size: 2rem;
    }

    .banner-glass p {
        font-size: 1rem;
    }
}

/* hero section end  */

.company-intro {
    background: #ffffff;
    padding: 70px 10%;
    text-align: center;
}

.company-intro h2 {
    color: #0a1f44;
    margin-bottom: 20px;
}

.company-intro p {
    max-width: 800px;
    margin: auto;
    color: #444;
    line-height: 1.7;
}











/* test section start */

.service-detail {
    background: #f5f5f5;
    padding: 70px 10%;
}

.service-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.service-text h2 {
    color: #0a1f44;
    margin-bottom: 15px;
}

.service-text ul {
    margin-top: 15px;
}

.service-text li {
    margin-bottom: 10px;
    list-style: none;
}





.why-us {
    background: #0a1f44;
    padding: 70px 10%;
    color: #ffffff;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.why-box {
    background: rgba(255, 255, 255, 0.12);
    padding: 25px;
    border-radius: 6px;
    font-weight: 600;
}





.clients {
    padding: 70px 10%;
    background: #ffffff;
    text-align: center;
}

.carousel {
    overflow: hidden;
    margin-top: 40px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: slide 12s infinite linear;
}

.client-card {
    min-width: 48%;
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.client-card img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
}



@keyframes slide {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}








/* ===== Testimonial Section ===== */
.testimonial-section {
    padding: 80px 0;
    background: #f5f5f5;
}

/* LEFT carousel */
.testimonial-carousel p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Adjusted testimonial item layout */
.testimonial-carousel .testimonial-item {
    display: flex;
    flex-direction: column;
}

.testimonial-carousel .testimonial-item .client-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-carousel .testimonial-item .client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    /* space between image and text */
}

.testimonial-carousel .testimonial-item .client-info div h5 {
    margin: 0;
    font-weight: 600;
}

.testimonial-carousel .testimonial-item .client-info div small {
    display: block;
    font-size: 14px;
    color: #888;
}

/* Arrows */
.owl-nav {
    position: absolute;
    bottom: -50px;
    left: 0;
}

.owl-nav button {
    background: #0a1f44 !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.owl-nav button:hover {
    background: #d32f2f !important;
}

/* RIGHT card */
.testimonial-card {
    background: #0a1f44;
    color: #fff;
    padding: 50px 40px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card h6 {
    color: #d32f2f;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.testimonial-card h2 {
    font-size: 36px;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-card {
        margin-top: 40px;
        text-align: center;
    }
}

/* test section end */




























/* about section start */


/* General Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* About Page Styling */
.about-page section {
    padding: 60px 0;
    text-align: center;
}

.about-page h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-page p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

/* Mission & Vision Modern */
.mission-vision {
    padding: 80px 0;
    background: #f4f7fb;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    position: relative;
    padding: 40px 35px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Gradient border effect */
.mv-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #1e90ff, #00c6ff);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Tag */
.mv-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #1e90ff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Heading */
.mv-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #111;
}

/* Text */
.mv-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}


/* Core Values Grid */
.core-values .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Experience Stats Grid */
.experience-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 30px;
    text-align: center;
}

.stat-card {
    background: #1e90ff;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .mission-vision .mv-grid {
        flex-direction: column;
        text-align: center;
    }
}

/* about section end */




/* service section start */

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

/* Services Section */
.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #111;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 280px;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Image */
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlay */
.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-overlay h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-overlay p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button */
.enquire-btn {
    padding: 12px 24px;
    background: #e60000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.enquire-btn:hover {
    background: #c40000;
    transform: translateY(-2px);
}

/* Hover Effects */
.service-card:hover img {
    transform: scale(1.1);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

/* Responsive */
@media(max-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}












/* products section */


.working-section {
    padding: 80px 0;
    background: #ffffff;
}

.working-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.working-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Image box */
.working-image {
    /* background: #f4f4f4; */
    /* padding: 40px; */
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.working-image img {
    width: 100%;
    max-width: 570px;
    border-radius: 10px;
    /* height: 600px; */
}

/* Content */
.working-content h2 {
    font-size: 32px;
    color: #0096d6;
    margin-bottom: 30px;
    line-height: 1.3;
}

.working-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
}

.working-content strong {
    color: #000;
}

/* Responsive */
@media(max-width:900px) {
    .working-grid {
        grid-template-columns: 1fr;
    }

    .working-content h2 {
        font-size: 26px;
    }
}









/* contact section start */


.contact-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.contact-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #222;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
}

/* Left Info */
.contact-info h3 {
    font-size: 26px;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

/* Right Form */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

.contact-form button {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #c92f3c;
}

/* Map */
.contact-map {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive */
@media(max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .contact-heading {
        font-size: 28px;
    }
}






