@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');



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

body{
  font-family: "Roboto", sans-serif;
    color:#222;
    line-height:1.7;
}




h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", sans-serif;
}

/* HEADER WRAPPER */
.header111{
    height: 110px;
    background: #fff;
}

/* MAIN HEADER */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    padding: 10px 0;
    transition: all 0.4s ease;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* STICKY */
.header.sticky-active{
    padding: 6px 0;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

/* LOGO */
.navbar-brand img{
    max-width: 120px;
    transition: 0.4s;
}

.header.sticky-active .navbar-brand img{
    max-width: 90px;
}

/* NAVBAR */
nav.navbar.navbar-expand-lg{
    padding: 0 !important;
}

/* MENU */
.navbar-nav .nav-link{
    color: #000 !important;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
    font-size: 16px;
}

/* DROPDOWN */
.dropdown-menu{
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.dropdown-item{
    padding: 10px 18px;
    font-size: 15px;
}

/* BUTTON */
.btn-orange{
    background: #172845;
    color: #fff;
    padding: 10px 28px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-orange:hover{
    color:#fff;
    background:#ff6600;
}

/* HOVER DROPDOWN */
@media(min-width:992px){

    .nav-item.dropdown:hover .dropdown-menu{
        display:block;
        margin-top:0;
    }

}

/* MOBILE */
@media(max-width:991px){

    .navbar-collapse{
        background:#fff;
        padding:20px;
        margin-top:15px;
    }

    .navbar-nav .nav-link{
        margin-left:0;
        padding:10px 0;
    }

}


/* DESKTOP HOVER */
@media(min-width:992px){

    .nav-item.dropdown:hover .dropdown-menu{
        display:block;
        margin-top:0;
    }

}

/* MOBILE DROPDOWN */
@media(max-width:991px){

    .dropdown-menu{
        display:none;
    }

    .dropdown-menu.show-menu{
        display:block;
    }

}   

.btn-orange:hover{
    background:#e45f00;
    color:#fff;
}

/* HERO SLIDER */
.hero-slider .hero{
    height:100vh;
    display:flex;
    align-items:center;
    color:#fff;
    position:relative;
}

.slide-one{
    background:linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat;
}

.slide-two{
    background:linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
}

.slide-three{
    background:linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=2071&auto=format&fit=crop') center/cover no-repeat;
}

.hero h1{
    font-size:64px;
    font-weight:800;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    max-width:700px;
    margin-bottom:30px;
}

.carousel-control-prev,
.carousel-control-next{
    width:5%;
}

/* ABOUT */
.section-padding{
    padding:100px 0;
}

.section-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.orange-text{
    color:#ff6b00;
}

.about-img img{
    width:100%;
    border-radius:10px;
}

/* SERVICES */
.services{
    background:#f8f9fa;
}

.service-card {
    background: #ffffff00;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid white;
}

/*.service-card:hover{
    transform:translateY(-10px);
}
*/
.service-card i{
    font-size:50px;
    color:#ff6b00;
    margin-bottom:20px;
}

.testimonial-card{
    position:relative;
}

.testimonial-img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
    border:4px solid #ff6b00;
}

.stars{
    color:#ff6b00;
    margin-top:15px;
}

.service-card h4 {
    font-size: 24px;
    margin-bottom: 6px;
    font-weight: 700;
}

/* STATS */
.stats{
    background:#111;
    color:#fff;
}

.stat-box{
    text-align:center;
}

.stat-box h2{
    font-size:52px;
    color:#ff6b00;
    font-weight:800;
}

/* PROJECTS */
.project-card img{
    width:100%;
    border-radius:8px;
}

.project-card{
    overflow:hidden;
}

/* CTA */
.cta{
    background:#ff6b00;
    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
    font-weight:700;
}

/* FOOTER */


.footer h5{
    color:#fff;
    margin-bottom:20px;
}

.footer a{
    color:#ccc;
    text-decoration:none;
}

.footer a:hover{
    color:#c10818;
}

.copyright{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
}

@media(max-width:768px){
    .hero h1{
        font-size:42px;
    }

    .section-title{
        font-size:32px;
    }
}



a.navbar-brand img {
    width: 80px;
}




/* Dropdown Hover Open */

.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Optional Smooth Style */

.navbar .dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: none;
}

.navbar .dropdown-item {
    padding: 7px 20px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar .dropdown-item:hover {
    background: #c10819;
    color: #fff;
}



/* ================================
   DEL NDT SERVICES SECTION
================================ */

.del-ndt-services-section {
    background: #ffffff;
    overflow: hidden;
    padding: 90px 0px;
}

/* Left Content */

.del-ndt-title {
    font-size: 40px;
    font-weight: 700;
    color: #131734;
    margin-bottom: 20px;
}

.del-ndt-text {
    font-size: 17px;
    line-height: 1.8;
    color: #000000;
    max-width: 580px;
}

/* Buttons */

.del-ndt-btn-wrap {
    margin-top: 35px;
}

.del-ndt-btn-primary,
.del-ndt-btn-outline {
    min-width: 200px;
    height: 58px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.del-ndt-btn-primary {
    background: #071c4d;
    color: #fff;
}

.del-ndt-btn-primary:hover {
    background: #ff6b00;
    color: #fff;
}

.del-ndt-btn-outline {
    border: 1px solid #c60518;
    color: #c6071b;
    background: transparent;
}

.del-ndt-btn-outline:hover {
    background: #c60518;
    color: #fff;
}

/* Info Box */

.del-ndt-info-box {
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
}

.del-ndt-info-label {
    display: block;
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.del-ndt-info-value {
    font-size: 18px;
    font-weight: 700;
    color: #071c4d;
    margin: 0;
}

/* Note */

.del-ndt-note {
    font-size: 14px;
    color: #777;
}

/* Right Image */

.del-ndt-image-wrapper {
    position: relative;
}

.del-ndt-main-img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Contact Card */

.del-ndt-contact-card {
    position: absolute;
    left: 40px;
    bottom: -30px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.del-ndt-contact-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #071c4d;
}

.del-ndt-contact-card p {
    margin-bottom: 12px;
    color: #333;
    font-size: 16px;
}

.del-ndt-contact-card i {
    color: #071c4d;
    margin-right: 10px;
}

/* Responsive */

@media (max-width: 991px) {

    .del-ndt-title {
        font-size: 38px;
    }

    .del-ndt-contact-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
    }

}

@media (max-width: 767px) {

    .del-ndt-title {
        font-size: 32px;
    }

    .del-ndt-btn-primary,
    .del-ndt-btn-outline {
        width: 100%;
    }

}




/* ====================================
   CUSTOM NDT SERVICES SECTION
==================================== */

.custom-ndt-services-section {
    background: #f5f5f5;
}

/* Heading */

.custom-ndt-title {
    font-size: 42px;
    font-weight: 800;
    color: #071c4d;
    margin-bottom: 15px;
}

.custom-ndt-subtitle {
    font-size: 17px;
    color: #666;
    max-width: 700px;
    margin: auto;
}

/* Service Card */

.custom-ndt-service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    padding: 14px;
    height: 100%;
    border: 1px solid #dfe5ec;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.custom-ndt-service-card:hover {
    transform: translateY(-6px);
}

/* Image */

.custom-ndt-service-img {
    overflow: hidden;
    border-radius: 16px;
}

.custom-ndt-service-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.4s ease;
}

.custom-ndt-service-card:hover .custom-ndt-service-img img {
    transform: scale(1.05);
}

/* Content */

.custom-ndt-service-content {
    padding-top: 25px;
}

.custom-ndt-service-title {
    font-size: 18px;
    font-weight: 700;
    color: #071c4d;
    margin-bottom: 15px;
    line-height: 32px;
}

.custom-ndt-service-text {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 28px;
}
/* Button */
.custom-ndt-service-btn {
    width: 160px;
    height: 41px;
    border: 1px solid #C3081B;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #C3081B;
    font-weight: 600;
    transition: 0.3s ease;
}

.custom-ndt-service-btn:hover {
    background: #C3081B;
    color: #fff;
}

/* Responsive */

@media (max-width: 991px) {

    .custom-ndt-title {
        font-size: 34px;
    }

    .custom-ndt-service-title {
        font-size: 28px;
    }

}

@media (max-width: 767px) {

    .custom-ndt-title {
        font-size: 30px;
    }

    .custom-ndt-service-card {
        padding: 18px;
    }

    .custom-ndt-service-img img {
        height: 220px;
    }

}




/* ====================================
   WHY CHOOSE SECTION
==================================== */

.custom-why-choose-section {
    background: #0f2345;
    overflow: hidden;
}

/* Left Content */

.custom-why-title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.custom-why-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 420px;
}

/* Info Boxes */

.custom-why-info-box {
    background: rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(4px);
}

.custom-why-label {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
    font-family: "Segoe UI", sans-serif;
}
.custom-why-info-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    font-family: "Segoe UI", sans-serif;
}

/* Right Content */

.custom-why-right {
    padding-left: 20px;
}


.custom-why-right-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}


.custom-why-right-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
    line-height: 1.8;
}

/* Button */

.custom-why-btn {
    width: 100%;
    max-width: 360px;
    height: 60px;
    background: #fff;
    color: #0f2345;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s ease;
}

.custom-why-btn:hover {
    background: #ff6b00;
    color: #fff;
}

/* Responsive */

@media (max-width: 991px) {

    .custom-why-title {
        font-size: 40px;
    }

    .custom-why-info-title {
        font-size: 28px;
    }

    .custom-why-right {
        padding-left: 0;
    }

}

@media (max-width: 767px) {

    .custom-why-title {
        font-size: 32px;
    }

    .custom-why-text,
    .custom-why-right-text {
        font-size: 16px;
    }

    .custom-why-info-box {
        padding: 24px;
    }

    .custom-why-info-title {
        font-size: 24px;
    }

    .custom-why-right-title {
        font-size: 30px;
    }

}


/* ====================================
   INDUSTRIES SECTION
==================================== */

.custom-industries-section {
    background: #f5f5f5;
}

/* Card */

.custom-industries-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #d7d7d7;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.custom-industries-card:hover {
    transform: translateY(-6px);
}

/* Image */

.custom-industries-img {
    overflow: hidden;
}

.custom-industries-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.4s ease;
}

.custom-industries-card:hover .custom-industries-img img {
    transform: scale(1.05);
}

/* Content */

.custom-industries-content {
    padding: 32px;
}

.custom-industries-title {
    font-size: 22px;
    font-weight: 700;
    color: #071c4d;
    margin-bottom: 20px;
    line-height: 26px;
}

.custom-industries-text {
    font-size: 15px;
    line-height: 1.8;
    color: #000000;
    margin: 0;
}

/* Responsive */

@media (max-width: 991px) {

    .custom-industries-title {
        font-size: 30px;
    }

}

@media (max-width: 767px) {

    .custom-industries-content {
        padding: 24px;
    }

    .custom-industries-title {
        font-size: 26px;
    }

    .custom-industries-text {
        font-size: 16px;
    }

    .custom-industries-img img {
        height: 240px;
    }

}



.services{
    position: relative;
    z-index: 1;
}

.services::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65); /* overlay color */
    z-index: -1;
}



.service-card.testimonial-card p {
    color: white;
}


.service-card.testimonial-card h4 {
    color: white;
    font-size: 18px;
    line-height: 22px;
}



.service-card.testimonial-card small{
   color: white;
    
}


.carousel-control-prev {
    left: -55px !important;
}

.carousel-control-next {
    right: -55px;
}




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

.contact-info h2, .quote-form h2 {
    font-size: 34px;
    font-weight: 700;
    color: #06153b;
    margin-bottom: 20px;
}

.contact-text{
    max-width:450px;
    color:#444;
    line-height:1.7;
    margin-bottom:50px;
}

.info-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:35px;
}

.icon{
    font-size:34px;
    color:#06153b;
    min-width:40px;
}

.info-item h5{
    font-size:20px;
    font-weight:600;
    color:#06153b;
    margin-bottom:4px;
}

.info-item p{
    margin:0;
    color:#333;
    line-height:1.6;
}

.quote-form{
    background:#fff;
    padding:35px;
    border:1px solid #ddd;
    border-radius:6px;
}

.quote-form h2{
    margin-bottom:25px;
}

.quote-form input,
.quote-form textarea{
    width:100%;
    border:1px solid #d8d8d8;
    border-radius:8px;
    padding:15px;
    margin-bottom:18px;
    font-size:16px;
    outline:none;
}

.quote-form textarea{
    height:140px;
    resize:none;
}

.quote-form button{
    background:#fff;
    border:2px solid #06153b;
    color:#06153b;
    padding:12px 40px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.quote-form button:hover{
    background:#06153b;
    color:#fff;
}

@media(max-width:991px){

    .contact-info{
        margin-bottom:50px;
    }

    .contact-info h2,
    .quote-form h2{
        font-size:36px;
    }
}



.contact-text {
    font-size: 16px;

    color: #000000;
    line-height: 24px;
    margin-bottom: 50px;
}


.del-footer {
    background: #0E1229;
    padding: 80px 0 30px;
    color: #ffffff;
}

.del-footer-logo{
    max-width:120px;
    margin-bottom:20px;
}

.del-footer-tagline{
    color:#d6d6d6;
    font-size:15px;
    margin-top:15px;
}

.del-footer-widget h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 24px;
}

.del-footer-widget ul{
    padding:0;
    margin:0;
    list-style:none;
}

.del-footer-widget ul li{
    margin-bottom:6px;
    position:relative;
    padding-left:18px;
}


.del-footer-widget ul li{
    position:relative;
    padding-left:22px;
}

.del-footer-widget ul li::before{
    content:"\f192";
    font-family:"Font Awesome 5 Free";
    font-weight:900;
    position:absolute;
    left:0;
    top:2px;
    font-size:12px;
    color:#d9d9d9;
}





.del-footer-widget ul li a {
    color: #d8d8d8;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;

    font-family: poppins;
}

.del-footer-widget ul li a:hover {
    color: #c10818;
}

.del-contact-item{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    color:#d8d8d8;
}

.del-contact-item i{
    font-size:18px;
}

.del-social-links{
    margin-top:20px;
}

.del-social-links a{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    color:#fff;
    text-decoration:none;
    margin-right:8px;
    transition:0.3s;
}

.del-social-links a:hover{
    background:#ffffff;
    color:#030a35;
}

.del-footer-bottom{
    margin-top:80px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.1);
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.del-copyright {
    color: #ffffff;
    font-size: 14px;
    font-family: 'Poppins';
    line-height: 21px;
    font-weight: 400;
}

.del-terms a{
    color: #ffffff;
    font-size: 14px;
    font-family: 'Poppins';
    line-height: 21px;
    font-weight: 400;
}

.del-terms a:hover{
    text-decoration:underline;
}

@media(max-width:991px){

    .del-footer-widget,
    .del-footer-logo-box{
        margin-bottom:40px;
    }

    .del-footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

}/* Navbar toggler icon black */
.navbar-toggler{
    border-color:#000;
}

.navbar-toggler:focus{
    box-shadow:none;
}

.navbar-toggler-icon{
    filter: brightness(0);
}










.custom-breadcrumb{
    position: relative;
  padding: 150px 0px;
    background: url('../images/download.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;   position: center center;
}

.custom-breadcrumb::before,
.custom-breadcrumb::after{
    content: "";
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.2);
    z-index: 1;
}

.custom-breadcrumb::before{
    left: 0;
}

.custom-breadcrumb::after{
    right: 0;
}

.breadcrumb-overlay{
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.55);
    z-index: 2;
}

.breadcrumb-content{
    position: relative;
    z-index: 3;
    text-align: center;
}
.breadcrumb-content h1 {
    margin: 0 0 15px;
    font-size: 34px;
    font-weight: 700;
    color: #00184d;
    text-transform: capitalize;
    line-height: 34px;
    font-family: 'Open Sans';
}
.breadcrumb-nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.breadcrumb-nav a{
    color: #ff3b7a;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav span{
    color: #222;
}

@media(max-width:768px){

    .custom-breadcrumb{
        height: 250px;
    }

    .breadcrumb-content h1{
        font-size: 28px;
    }

    .breadcrumb-nav{
        font-size: 14px;
    }

    .custom-breadcrumb::before,
    .custom-breadcrumb::after{
        width: 60px;
    }
}







/* =========================
   CUSTOM GALLERY SECTION
========================= */

.custom-gallery-section{
    padding:80px 0;
    background:#f8f9fa;
}

.custom-gallery-heading{
    margin-bottom:50px;
}

.custom-gallery-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.custom-gallery-text{
    font-size:16px;
    color:#666;
}

.custom-gallery-item{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:16px;
}

.custom-gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.4s;
}

.custom-gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.4s;
}

.custom-gallery-overlay i{
    color:#fff;
    font-size:34px;
}

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

.custom-gallery-item:hover .custom-gallery-overlay{
    opacity:1;
}

/* Responsive */

@media(max-width:768px){

    .custom-gallery-title{
        font-size:32px;
    }

    .custom-gallery-item img{
        height:240px;
    }

}




.about-page-section{
    padding: 70px 0px;
}

.about-section h4 {
    font-size: 34px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #131734;
    font-family: 'Open Sans';
}

.about-section p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;  text-align: justify;
}


.about-section img {
    border-radius: 20px;
}


.ml-2000{
    margin-left: 40px;
}



.about-section img{
    transition:0.7s ease;
    position:relative;
}

.about-section img:hover{
    transform:translateY(-30px);
}



.ndt-why-choose-section {
    background: #f7f7f7;  padding: 70px;
}

.ndt-section-heading h2{
    font-size:36px;
    font-weight:700;
    color:#00184d;
    margin-bottom:15px;
}

.ndt-section-heading p{
    max-width:950px;
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin-bottom:10px;
}

.ndt-section-heading h6{
    color:#00184d;
    font-weight:600;
}

.ndt-feature-box{
    text-align:center;
    padding:15px;
    transition:.3s;
}

.ndt-feature-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:#00184d;
}

.ndt-feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #192b49;
    margin-bottom: 10px;
    /* min-height: 52px; */
    line-height: 24px;
}

.ndt-feature-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    font-weight: 400;
  font-family: "Segoe UI", sans-serif;
}

.ndt-feature-box:hover{
    transform:translateY(-5px);
}

.ndt-promise-section h3{
    color:#00184d;
    font-weight:700;
    margin-bottom:15px;
}

.ndt-promise-section p{
    color:#666;
    line-height:1.8;
}

.ndt-promise-section strong{
    color:#00184d;
    display:block;
    margin-top:10px;
}

.ndt-promise-section span{
    color:#00184d;
    font-weight:600;
}


.ndt-feature-icon i {
    font-size: 50px;
    color: black;
}



img.projectt {
    width: 100%;
    object-fit: cover;
    height: 340px;
}

.bg-garyyy {
    background-color:#F0F8FF;
}

.projecttsssss.text-center.jkll h4 {
    font-size: 34px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 20px;
}


.projecttsssss.text-center.jkll p {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
}


ul.listt{
    list-style:none;
    padding-left:0;
    margin:0;
}

ul.listt li{
    position:relative;
    padding-left:22px;
    margin-bottom:10px;
}

ul.listt li::before{
    content:"\f192";
    font-family:"Font Awesome 5 Free";
    font-weight:900;
    position:absolute;
    left:0;
    top:2px;
    font-size:12px;
    color:black;
}


.about-section h6 {
    font-weight: 700;
    margin-bottom: 12px;
}



/* =========================
   CUSTOM APPLICATION SECTION
========================= */

.custom-app-section{
    padding:80px 0;
    background:#f3f3f3;
}

/* Gallery */

.custom-app-gallery{
    display:flex;
    gap:20px;
    align-items:center;
}

.custom-app-small{
    display:flex;
    flex-direction:column;
    gap:20px;
    width:35%;
}

.custom-app-small-img{
    width:100%;
    height:190px;
    object-fit:cover;
    border-radius:22px;
}

.custom-app-large{
    width:65%;
}

.custom-app-large-img{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:22px;
}

/* Content */

.custom-app-content{
    padding-left:40px;
}

.custom-app-title {
    font-size: 34px;
    font-weight: 700;
    color: #001b57;
    margin-bottom: 20px;
    line-height: 34px;
}

.custom-app-text {
    font-size: 16px;
    line-height: 24px;
    color: #222;
    margin-bottom: 25px;
    font-weight: 400;
}

.custom-app-list{
    list-style:none;
    padding:0;
    margin:0;
}

.custom-app-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 9px;
    font-size: 16px;
    font-weight: 500;
    color: #111;
}

.custom-app-list li::before{
    content:"\f192";
    font-family:"Font Awesome 5 Free";
    font-weight:900;
    position:absolute;
    left:0;
    top:3px;
    font-size:14px;
    color:#001b57;
}

/* Responsive */

@media(max-width:991px){

    .custom-app-gallery{
        flex-direction:column;
    }

    .custom-app-small,
    .custom-app-large{
        width:100%;
    }

    .custom-app-content{
        padding-left:0;
    }

    .custom-app-title{
        font-size:38px;
    }

}


.ms-lg-3888{
    margin-left: 60px;
}

.nav-link{
    font-size: 16px;
    font-weight: 500;
    font-family: poppins;  line-height: 24px;
}







@media (max-width:767px){

    .ml-2000{
        margin-left:0px;
    }
.about-section img {
    width: 100%;
}
}








.contact-section{
    scroll-margin-top: 120px;
}



.custom-ndt-services-section{
    scroll-margin-top: 120px;
}

@media(max-width:991px){

    .navbar{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .navbar-brand{
        margin-right:0;
    }

    .navbar-brand img{
        max-width:90px;
    }

    .navbar-toggler{
        margin-left:auto !important;
        margin-right:0 !important;
        border:none;
        box-shadow:none !important;
        padding:0;
    }

}button.navbar-toggler {
    margin-right: 40px !important;
}