/* google font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --main-color: #0096F1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

/* nav bar  nav link  right added  */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end;
    }
}



/* top bar  */
.top-bar {
    background-color: #404040;
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #F5922C;
}

.top-bar .bi {
    color: #F5922C;
    margin-right: 6px;
}

header {
    padding-left: 30px;
    padding-right: 30px;
    background-color: #ffff;

    /* background: linear-gradient(to right, #F5922C, #404040);
    background: linear-gradient(to bottom, #F5922C, #404040);
    background: linear-gradient(to bottom right, #F5922C, #404040); */

    position: sticky;
    top: 0px;
    z-index: 1000;
}

/* scroll to header logo size 6% */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
    /* Optional: to avoid transparent background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.shrink-logo img {
    width: 25% !important;
    transition: width 0.3s ease;
}

/* scroll to header logo size 6% */




.nav-link {
    color: #1f1e1e !important;
    color: #fff !important;
    color: #404040 !important;
    margin-right: 15px;
    /* font-weight: 700; */
}

.nav-link:hover {
    color: #F5922C !important;
}

/* hero section */

.hero {
    height: 90vh;
    display: flex;
}

.hero .left {
    width: 50%;
    height: 100%;
    padding: 100px;
    background-color: #E0E1DD;
}

.hero .right {
    width: 50%;

}

.hero .left .box {
    margin-top: 50px;
}


.hero .left .box h1 {
    font-weight: 800;
    font-size: 50px;
}

.hero-btn {
    display: inline-block;
    /*pm add css*/
    padding: 10px 20px;
    color: #fff;
    background: #000;
    /*border-radius: 5px;*/
    border-radius: 50px;
    /*pm add css*/
    transition: all 0.3s;
    text-decoration: none;
}

.hero-btn:hover {
    background-color: transparent;
    color: #000000;
    text-decoration: none;
    border: 1px solid #000;
}

.hero-btn2 {
    background-color: #404040;
}



.video-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.video-container video {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

/* about section */
.about-section {
    background-color: #F5F5F5;
    padding: 60px 0;
}

.about-title {
    color: #F5922C;
    font-weight: 700;
}

.about-text {
    color: #404040;
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight {
    color: #F5922C;
    font-weight: 600;
}



/* metri */

/* .metrics-section {
    background-color: #20211f;
    color: white;
    padding: 60px 0;
}

.metric-card {
    background-color: #F5922C;
    color: #000;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metric-number {
    font-size: 32px;
 
    font-weight: bold;
}

.metric-label {
    font-size: 17.6px;
 
    margin-top: 10px;
}

.metrics-section h2 {
    font-weight: 700;
} */

/* clients home */

.clients-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.clients-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.client-logo img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.client-logo img:hover {
    transform: scale(1.1);
}

@media (max-width: 576px) {
    .client-logo img {
        max-width: 100px;
    }
}

/* new metric section */

.metrics-section {
    background-color: #404040;
    color: white;
    padding: 60px 0;
}

.metric-box {
    /* border-left: 5px solid #F5922C; */
    padding-left: 15px;
}

.metric-number {
    font-size: 2rem;
    font-weight: bold;
    color: #F5922C;
}

.metric-label {
    font-size: 1rem;
    margin-top: 5px;
}

.unit {
    font-size: 1rem;
    color: #F5922C;
}

/* infra  */
.infrastructure-section {
    background-color: #404040;
    color: white;
    padding: 60px 0;
}

.infrastructure-section h2 {
    color: #F5922C;
    margin-bottom: 30px;
    font-weight: bold;
}

.infra-icon {
    font-size: 40px;
    color: #F5922C;
    margin-bottom: 20px;
}

.infra-card {
    background-color: #2e2e2e;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.infra-card:hover {
    transform: translateY(-10px);
}

/* infra */


/* why choose */
.why-choose-section {
    background-color: #fff;
    padding: 60px 0;
}

.section-title {
    color: #F5922C;
    font-weight: 700;
    margin-bottom: 40px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* background-color: #f9f9f9; */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-icon {
    font-size: 30px;
    color: #404040;
    color: #F5922C;
    flex-shrink: 0;
}

.why-text h5 {
    color: #404040;
    color: #F5922C;
    font-weight: 600;
    margin-bottom: 5px;
}

.why-text h5 i {

    font-size: 25px !important;
}

.why-text p {
    margin: 0;
    color: #333;
    color: #Fff;
}

@media (max-width: 576px) {
    .why-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

.why-img {
    max-height: 540px;
}

/* .why-choose-section {
    background: url(../banner/black-bg.jpg);
} */

/* main heading */

.main-head {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: bold;
    color: #F5922C;
}

.nav-item.active .nav-link {
    color: #F5922C !important;
}


/* ind we serve */
.industries-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.section-title {
    color: #F5922C;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.swiper-slide {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.industry-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.industry-caption {
    background-color: #404040;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
}

.swiper-button-prev,
.swiper-button-next {
    color: #F5922C;
}









/* services section  */
.services-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.service-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
}

/*pm add css*/
.service-card-body ul {
    padding-left: 1.2rem;
    /* Add indentation */
    margin-top: 0.5rem;
    list-style-type: disc;
    /* Default bullet style */
    color: #333;
    /* Text color */
    font-size: 15px;
    /* Font size */
    line-height: 1.6;
    /* Line spacing for better readability */
}

.service-card-body ul li {
    margin-bottom: 8px;
    /* Space between list items */
}

.service-header {
    color: #F5922C;
}

.icon-box {
    font-size: 40px;
    color: #404040;
    margin-bottom: 15px;
}

.service-card-body {
    padding: 25px;
}

.btn-orange {
    background-color: #F5922C;
    color: white;
    border: none;
}

.btn-orange:hover {
    background-color: #e67c1e;
}



/* footer */

.footer {
    background-color: #343a40;
    background-color: #404040;
    color: white;
    padding: 40px 0;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: none;
}

.footer .fa {
    margin-right: 10px;
}

.footer .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0 0;
    font-size: 14px;
    border-top: 1px solid #777;
    margin-top: 20px;
}

.company-logo {
    max-width: 200px;
    margin-bottom: 15px;
}





/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    /* padding: 20px 0; */
    position: relative;
}

.page-title h1 {
    font-size: 24px;
    font-weight: 300;
    margin: 0 0 5px 0;
    font-weight: 800;
    color: #fff;
    color: #e67c1e;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
    color: #FFf;
}

.page-title .breadcrumbs ol li a {
    color: #FFF;
    text-decoration: none;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
    color: #fff !important;
}

/*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/

.page-banner {
    background: url(../Banner/banner2.jpg);

    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
        url(../Banner/banner4.jpeg);
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(../Banner/page-banner.jpg);


    background-position: 10% 162%;
    background-size: cover;

}

.blur {
    /* backdrop-filter: blur(10px);
    backdrop-filter: blur(10px) brightness(1.2); */
    padding: 20px 0px;
}



/* about us page  */

.vision-mission-section {
    background-color: #404040;
    color: #fff;
    padding: 60px 0;
}

.section-title {
    color: #e67c1e;
    margin-bottom: 20px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.6;
}



.vision-mission-label {
    text-align: right;
    font-weight: 600;
    font-size: 1.2rem;
    color: #e67c1e;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .vision-mission-label {
        text-align: left;
        margin-bottom: 5px;
    }
}

.icon {
    font-size: 2rem;
    color: #e67c1e;
}



/* portfolio */

.section-header {
    background-color: #404040;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.section-header h2 {
    color: #F5922C;
    font-weight: bold;
}

.section-content {
    background-color: #f8f9fa;
    padding: 40px 20px;
}

.section-content p {
    color: #404040;
}

.product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-photo {
    width: 250px;
    height: 200px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
}

/****************************************
              ceo page  
 *****************************************/

.ceo-section {
    background-color: #fff;
    padding: 60px 20px;
    color: #404040;
}

.ceo-title {
    color: #F5922C;
    font-weight: bold;
    margin-bottom: 30px;
}

.ceo-photo {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ceo-name {
    font-weight: bold;
    margin-top: 20px;
    color: #F5922C;
}

.company-name {
    font-style: italic;
}

.left .metric-number {
    font-size: 70px;
}

.left .metric-box {
    position: relative;
}

.left .metric-box .over {
    position: absolute;
    left: 13%;
    top: -9%;
}

.right .metric-number {
    font-size: 60px;
}


/* Home contac us section */

.home-contact {
    background-color: #f8f9fa;
}

.home-contact h2 {
    color: #F5922C;
    font-weight: 700;
}

.home-contact p,
.home-contact li {
    color: #404040;
    font-size: 1rem;
}

.home-contact ul li {
    margin-bottom: 0.75rem;
}

.home-contact a.contact-link {
    color: #404040;
    text-decoration: none;
    font-weight: 500;
}

.home-contact a.contact-link:hover {
    color: #F5922C;
    text-decoration: underline;
}


/* Home form css */
.btn-custom {
    background-color: #e67c1e !important;
    color: white !important;
}

.btn-custom:hover {
    background-color: #cf6b12 !important;
}

.form-check-label {
    margin-right: 15px !important;
}


/* contact us page css  */

/* .contact-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  } */

.contact-card h2 {
    color: #F5922C;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-card p {
    color: #404040;
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-icon {
    font-weight: 500;
    color: #404040;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.contact-icon i {
    color: #F5922C;
    margin-right: 10px;
    font-size: 18px;
}

.whatsapp-button {
    background-color: #000000;
    color: #ffffff;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.whatsapp-button i {
    margin-right: 10px;
    font-size: 20px;
    color: #25D366;
}

.whatsapp-button:hover {
    background-color: transparent;
    color: #000000;
    text-decoration: none;
    border: 1px solid black;
}



/* bootom right side  button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    font-size: 16px;
    text-decoration: none;
    z-index: 9999;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #404040;
    border: 1px solid #404040;
}

.whatsapp-icon {
    margin-right: 10px;
    font-size: 20px;
    font-weight: 900;
}


@media(max-width:676px) {
    .footer {
        text-align: center !important;
    }
}




/* about page our  team srctiopn  */

.team-section {
    padding: 60px 0;
    background-color: #fff;
}

.team-title {
    color: #404040;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
}

.team-card {
    border: none;
    border-radius: 10px;
    background-color: #f2f2f2;
    padding: 25px;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #F5922C;
}

.team-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #F5922C;
}

.team-role {
    font-size: 1rem;
    font-weight: 500;
    color: #404040;
    margin-bottom: 10px;
}

.team-about {
    font-size: 0.95rem;
    color: #333;
}

@media(max-width:667px) {
    .navbar-brand {
        width: 70% !important;
    }

    .top-bar a {
        font-size: 13px !important;
    }

    .hero {
        height: auto !important;
        display: flex;
        flex-direction: column;
    }

    .hero .left {
        width: 100%;
        padding: 30px;
    }

    .hero .right {
        width: 100%;
    }

    .video-container video {
        height: auto !important;
    }

    .left .metric-box .over {
        left: 25%;
    }

}


/* .form-container {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        } */

input.form-control,
textarea.form-control {
    border: none;
    border-bottom: 2px solid black;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    background-color: transparent;
}

input.form-control:focus,
textarea.form-control:focus {

    border: none !important;
    box-shadow: none !important;
    border-bottom: 2px solid #F5922C !important;
    background-color: transparent !important;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
    color: #aaa;
}

/* .btn-custom {
            background-color: #007bff;
            color: white;
            border: none;
        }

        .btn-custom:hover {
            background-color: #0056b3;
        } */


.services-page {
    background-color: #E0E1DD;
    padding: 60px 0px !important;
}

.services-page h1 {
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    color: #00060f;
}

.s-wrap img {
    border-radius: 50%;
}

.s-wrap h5 {
    font-weight: bold;
}

.s-wrap .now-m-btn {
    background-color: #0d1b2a;
    color: #Fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s;
}

.s-wrap .now-m-btn:hover {
    background-color: transparent;
    border: 1px solid #0d1b2a;
    color: #0d1b2a;
    font-weight: 500;
}


/* services page section css */

.section-container {
    background-color: #404040;
    color: white;
    padding: 60px 0;
}

.highlight {
    color: #F5922C;
}

.section-image {
    max-width: 100%;
    border-radius: 8px;
}

.key-benefits li {
    margin-bottom: 10px;
}

.redy-to h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 00;
}

.redy-to p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.redy-to {
    padding: 80px 0px;
    background: url(../banner/redy-bg.jpg);
    background: linear-gradient(rgba(0, 0, 0, 0.796), rgba(0, 0, 0, 0.758)), url(../banner/redy-bg-2.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.redy-to .D-btn {
    color: #000000;
    background-color: #fff;
    padding: 12px 15px;
    text-decoration: none !important;
    font-size: 17px;
    border-radius: 25px;
    transition: all 0.3s;
}

.redy-to .D-btn:hover {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

@media(max-width:550px) {
    .services-page h1 {
        font-size: 30px;
    }

    .redy-to h2 {
        font-size: 25px;
    }

    .redy-to p {
        font-size: 15px;
    }
}



.gallery {
    background-color: #E0E1DD;
}

.gallery img {
    border-radius: 5px;
}

/* facelity section */
.facility-section {
    background-color: #404040;
    color: white;
    padding: 60px 0;
}

.facility-title {
    color: #F5922C;
    font-weight: bold;
}

.facility-description {
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight-line {
    width: 80px;
    height: 4px;
    background-color: #F5922C;
    margin: 20px 0;
}

/*  */

.section-title2 {
    background-color: #F5922C;
    color: white;
    padding: 1.2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card-custom {
    border-left: 5px solid #F5922C;
    background-color: white;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.highlight {
    color: #F5922C;
    font-weight: 600;
}

ul {
    padding-left: 1.2rem;
}

.a-why {
    background-color: #E0E1DD;
}

.a-why h2 {
    font-size: 50px;
    font-weight: 800;
    color: #00060f;
}

.a-why p {
    font-size: 20px;
}

.a-why h3 {
    font-size: 20px;
    color: #00060f;
    font-weight: 700;
}


.about-facility {
    background-color: #404040;
    color: white;
    padding: 60px 20px;
}

.about-facility h2 {
    color: #e67c1e;
    margin-bottom: 30px;
    font-weight: bold;
}

.about-facility p {
    font-size: 1.1rem;
    line-height: 1.7;
}


.get-in-touch {
    background-color: #404040;
    background-color: #e0e1dd;
    color: white;
    padding: 60px 20px;
}

.get-in-touch h2 {
    color: #00060f;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 25px;
}

.get-in-touch p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #00060f;
}

.get-in-touch .btn-contact {
    background-color: rgb(13 27 42);
    color: white;
    border: none;
    padding: 7px 30px;
    border-radius: 50px;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.get-in-touch .btn-contact:hover {
    background-color: transparent;
    border: 1px solid #0d1b2a;
    color: #000;
}

.head {
    font-size: 50px;
    font-weight: 800;
    color: #00060f;
}


@media(max-width:550px) {

    .ceo-title {
        text-align: center !important;
    }

    .ceo-section {
        text-align: center !important;
    }

    .about-section {
        text-align: center !important;
    }

    .head {
        font-size: 20px;
    }
}




.vision-section {
    background-color: #0D1B2A;
    color: #fff;
    padding-top: 70px;
    padding-bottom: 60px;
}

.head-box {
    background-color: #fff;
    color: #404040;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 0px 0px 10px 10px;
    position: absolute;
    top: -94px;

}

.head-box-wrap {
    position: relative;
}

.vision-section p {
    font-size: 20px;
}


.port h2 {
    font-size: 60px;
}

.port p {
    color: #000;
}

.contact h2 {
    text-align: center;
    line-height: normal;
    font-size: 50px;
    font-weight: 700;
    color: #000;
}

@media(max-width:700px) {
    .port h2 {
        font-size: 30px;
    }

    .contact h2 {
        font-size: 30px;
    }
}