/* google fonts */

/* @import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed: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&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap'); */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Varialbes */
:root {
    /* --primary-color: #2a3764; */
    --primary-color: #111a49;
    /* --secondary-color: #FC0012; */
    --secondary-color: #ea6d01;
    --black-color: #000000;
    --white-color: #ffffff;
    /* --color-tertiary: #F63837; */
    --body-color: #EDF3F7;
    --grey-bg: #ECF2FB;
    --primary-font: "Poppins", sans-serif;
    /* --primary-font: "Barlow Condensed", sans-serif; */
    --secondary-font: "Roboto", sans-serif;
}

body {
    font-family: "Poppins", sans-serif;
    /* font-family: "Barlow Condensed", sans-serif; */
    font-family: "Roboto", sans-serif;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
    font-optical-sizing: auto;
    background-color: var(--white-color);
}

a {
    color: inherit !important;
    text-decoration: none !important;
    font-family: inherit !important;
}

li {
    list-style-type: none;
}

ol,
ul {
    padding-left: 0px;
}

h1 {
    font-size: 35px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 25px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

:target {
    scroll-margin-top: 120px;
}

.primary-heading {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 700;
}

.secondary-heading {
    font-family: var(--primary-font);
    /* color: var(--primary-color); */
    color: var(--black-color) !important;
    font-size: 20px;
    font-weight: 600;
}

.sub-heading {
    font-family: var(--primary-font);
    color: var(--secondary-color) !important;
    /* color: #CBA266 !important; */
    font-size: 16px !important;
    /* line-height: 0px; */
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    /* letter-spacing: 0.6px; */
    /* opacity: 1; */
}

.sub-heading1 {
    font-family: var(--primary-font);
    color: var(--color-primary);
    font-size: 18px !important;
    /* line-height: 21px; */
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    /* letter-spacing: 0.6px; */
    opacity: 1;
}

.para {
    font-family: var(--secondary-font);
    color: var(--black-color);
    font-size: 16px;
    font-style: normal;
    text-align: justify;
}

/* .regular-text {
    font-family: var(--secondary-font);
    color: var(--dark-color);
    font-size: 16px;
} */

.grey-bg {
    background-color: var(--grey-bg);
}

/* button style */

/* Shine Effect Button */
.shine-button:hover {
    color: var(--white-color);
}

.shine-button {
    position: relative;
    padding: 14px 20px !important;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--primary-font);
    color: var(--white-color) !important;
    background: linear-gradient(45deg, #ea6d01, #ea6d01);
    /* background: linear-gradient(45deg, rgb(245 48 12), rgb(243 46 13)); */
    border: none;
    cursor: pointer;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 15px 0px 15px 0px;
}

.shine-content {
    position: relative;
    z-index: 1;
}

/* Shine effect */
.shine-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.5s ease;
}


.shine-button:hover::before {
    transform: rotate(45deg) translateY(100%);
    color: var(--light) !important;
}

/* Keyframe animation for icon */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Default icon state */
.shine-button .icon {
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Apply animation on hover */
.shine-button:hover .icon {
    animation: slideInLeft 0.4s forwards;
    color: var(--light);
}


/* button style 2 */

.fill-btn1 {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    color: var(--secondary-color);
    border: 3px solid var(--black-color);
    font-family: var(--primary-font) !important;
    border-radius: 0 25px 0 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
    min-width: 130px;
}

.fill-btn1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--black-color);
    color: var(--white-color) !important;
    transition: left 0.3s ease;
    z-index: -1;
}

.fill-btn1:hover::before {
    left: 0;
}

.fill-btn1:hover {
    color: var(--white-color) !important;
    border: 3px solid var(--black-color) !important;
}

/* top strip */

.top-social-icon a:hover {
    background-color: var(--secondary-color) !important;
    color: var(--white-color) !important;
    border: 0px !important;
}


.top-strip-sec {
    background-color: var(--primary-color);
}

.top-strip-sec a {
    color: var(--white-color) !important;
    text-decoration: none;
    font-family: var(--primary-font) !important;
    font-size: 14px;
}

.top-social-icon a {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
    border-radius: 7px 0 7px 0 !important;
    border: 1px solid var(--white-color) !important;
    /* background-color: var(--white-color); */
}



/* navbar */

.bg-light {
    background: var(--white-color);
}

.navbar-brand img {
    width: 170px;
    transition: all 0.3s ease;
}

.nav-link {
    font-size: 16px !important;
    font-family: var(--primary-font) !important;
    text-transform: uppercase;
    font-weight: 500 !important;
    text-decoration: none;
    /* letter-spacing: 1px !important; */
    color: var(--dark-color);
    padding: 5px 10px;
}

.nav-item .active {
    font-weight: 600 !important;
    color: var(--secondary-color) !important;
    /* text-decoration: underline !important; */
}

@media (min-width: 992px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-menu {
    background-color: var(--primary-color) !important;
}

.dropdown-item:hover {
    color: var(--black-color) !important;
    background-color: var(--secondary-color) !important;
}

/* .dropdown li .border-bottom{
    border: 1px dotted var(--black-color) !important;
} */

.dropdown-menu li>a {
    padding: 10px 20px !important;
}

.header-wrapper {
    position: relative;
    width: 100%;
    z-index: 1050;
    background: #ffffff00;
    transition: all 0.3s ease;
}

/* FIXED HEADER */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.35s ease;
    background-color: var(--white-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

/* LOGO */
.logo-img {
    width: 320px;
    transition: all 0.3s ease;
}

/* .header-fixed .logo-img {
    width: 220px;
} */

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 1040;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

}

/* navbar button */


/* .header-wrapper .container {
    width: 95%;
} 
.menu-button-wrapper {
    background: var(--secondary-color);
    border-bottom-right-radius: 50px;
} */

/* banner */

.carousel-caption {
    bottom: 20% !important;
}

.carousel-caption {
    position: absolute !important;
    right: 40% !important;
    bottom: 7.5rem !important;
    left: 10% !important;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    /* text-align: center; */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 20px 20px;
    transition: all 0.3s ease;
}

.banner-text h2 {
    font-family: var(--primary-font);
    font-size: 45px !important;
    font-weight: 700 !important;
    /* letter-spacing: 2px; */
}

.banner-text p {
    font-size: 16px;
    /* font-weight: 500 !important; */
}

.banner-overlay {
    position: relative;
}

.banner-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.40); */
    background: linear-gradient(90deg, #111a49d3, #ffffff5d);
    /* overlay darkness */
    z-index: 1;
}

.banner-overlay img {
    position: relative;
    z-index: 0;
}

.carousel-caption {
    z-index: 2;
}

.hero-tag {
    font-family: var(--primary-font) !important;
    font-size: 12px !important;
    font-weight: 700;
    border: 2px solid var(--secondary-color);
    padding: 5px 15px;
    width: fit-content;
    background-color: #ffffff66;
    border-radius: 10px 0 10px 0;
}

.hero-line {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hero-span {
    color: var(--secondary-color);
}


/* about section */

.font-by-penta-li li {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    font-family: var(--secondary-font);
}

.font-by-penta-li li:hover i {
    color: var(--primary-color);
}

.font-by-penta-li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* services section */

.service-section-box img {
    height: 50px;
    width: 50px;
    filter: invert(47%) sepia(25%) saturate(4676%) hue-rotate(5deg) brightness(96%) contrast(99%);
}

.service-card {
    display: flex;
    align-items: center;
    justify-content: start;
}

.about-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img {
    position: absolute;
    width: 50%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border-top: 5px solid var(--secondary-color);
    border-right: 5px solid var(--secondary-color);
    border-bottom: 5px solid var(--primary-color);
    border-left: 5px solid var(--primary-color);
    z-index: -1;
}

/* product section */

.service-section-box a {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #006DC8;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.service-section-box a i {
    opacity: 0;
    transform: translateX(-10px);
    margin-top: 5px;
    transition: opacity 0.3s ease, transform 0.5s ease;
}

/* why choose us */

.why-icon {
    width: 60px;
    height: auto;
    filter: invert(47%) sepia(25%) saturate(4676%) hue-rotate(5deg) brightness(96%) contrast(99%);
}

/* video section */

.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    transition: .4s;
}

.video-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .18);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    display: block;
}

/* Overlay */

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .15);
    transition: .4s;
}

.video-wrapper:hover .play-overlay {
    background: rgba(0, 0, 0, .25);
}

/* Play Button */

.play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    background: rgba(122, 11, 11, .9);
    backdrop-filter: blur(10px);
    position: relative;
    transition: .35s;
    box-shadow: 0 10px 35px rgba(122, 11, 11, .45);
}

.play-btn:hover {
    color: #fff;
    transform: scale(1.1);
    background: #7a0b0b;
}

/* Ripple Animation */

.play-btn::before,
.play-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .6);
    animation: ripple 2.5s infinite;
}

.play-btn::after {
    animation-delay: 1.2s;
}

@keyframes ripple {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }

}

/* Play Icon */

.play-btn i {
    position: relative;
    left: 2px;
    z-index: 2;
}

/* Responsive */

@media(max-width:768px) {

    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }

}

@media(max-width:576px) {

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

}


/* product page */

.img-wrap {
    border-right: 1px solid var(--secondary-color);
}

.img-wrapper {
    width: 90%;
    height: auto;
    margin: auto;
}


.numbers {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 8px;
}

/* about us page */

.value-icon i {
    font-size: 60px;
    color: var(--secondary-color);
}

/* contact page */

.contact-info-box,
.contact-form-box {
    border-radius: 30px;
}

.contact-form-box {
    border: 2px solid var(--primary-color);
}

.contact-icon {
    background-color: var(--secondary-color);
    width: 45px;
    height: 45px;
    border-radius: 50px;
}

.contact-icon i {
    font-size: 20px;
    color: var(--white-color);
}

.map-wrapper iframe {
    height: 400px !important;
    width: auto;
    border-radius: 20px;
}

.contact-heading {
    padding: 10px;
    background-color: var(--primary-color);
    border-radius: 25px 25px 0 0;
}

.foot-a {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--secondary-font) !important;

    &:hover {
        color: var(--secondary-color) !important;
    }

}


/* footer section */

.footer-section {
    background-color: var(--primary-color);

}

.footer-links li {
    margin-bottom: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: start;
}

.footer-contact-item i {
    color: var(--secondary-color);
    font-size: 20px;
    /* margin-top: 10px; */
    flex-shrink: 0;
    margin-right: 10px;
    margin-bottom: 10px;
}

.footer-links a::before {
    content: '\f105';
    /* fa-angle-right unicode */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    /* required for solid icons */
    color: var(--secondary-color);
    margin-right: 8px;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color) !important;

    & i:hover {
        color: var(--white-color) !important;
    }
}

/* .social-icon {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--black-color) !important;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 0 15px 0;
    transition: all 0.1s ease;

    &:hover {
        background: var(--white-color) !important;
        color: var(--secondary-color) !important;
        font-size: 23px;
    }
} */



#scrollUpBtn {
    position: fixed;
    bottom: 40px;
    right: 30px;
    height: 35px;
    width: 35px;
    padding: 10px;
    border-radius: 3px;
    border: none;
    z-index: 999;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-self: center;
    scroll-behavior: smooth !important;
}

#scrollUpBtn i {
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-self: center;
}

@media (max-width:991px) {

    .hero-layout {
        height: clamp(440px, 80vh, 700px);
        display: block;
    }

    .hero-right,
    .hero-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-left {
        display: none;
    }

    .hero-content {
        left: 30px;
        right: 30px;
        top: 71%;
        width: auto;
        padding: 35px;
        border-radius: 35px 0 0 0;
        background: rgba(0, 0, 0, .90);
    }
}

@media (max-width:576px) {

    /* .hero-layout {
        height: 80vh;
        min-height: 440px;
        max-height: 600px;
    } */

    .hero-layout {
        height: clamp(440px, 80vh, 700px);
        display: block;
    }

    .hero-right {
        height: 100%;
    }

    .hero-right img {
        width: 100%;
        height: 70%;
        object-fit: cover;
        object-position: center center;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        top: 76%;
        padding: 25px;
    }

    .hero-content h2 {
        font-size: 25px !important;
    }

    .fill-btn {
        text-align: center;
        margin: auto !important;
    }
}



/* ════════════════════════════════
           PAGE HERO BANNER
        ════════════════════════════════ */
.service-hero {
    position: relative;
    min-height: max-content;
    background: var(--black-color);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

/* Diagonal angled dark panel */
.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(105deg, rgba(0, 0, 0, 0.97) 50%, rgba(206, 146, 51, 0.18) 100%); */
    z-index: 1;
}

/* Industrial grid texture */
.service-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(206, 146, 51, 0.06) 60px),
        repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(206, 146, 51, 0.06) 60px);
    z-index: 0;
}

.service-hero-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.25;
}

/* Diagonal clip mask on image side */
.service-hero-img-mask {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, #000000d1 18%, transparent 40%);
    z-index: 2;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    padding: 30px 0 30px 0;
}

.service-hero-tag {
    font-family: var(--primary-font);
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-hero-tagline {
    font-family: var(--secondary-font);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 300;
}

.service-hero-tagline strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}


/* responsive Media Querry */

@media only screen and (max-width: 768px) {

    .primary-heading {
        font-size: 22px;
        text-align: center;
    }

    .sub-heading {
        text-align: center;
    }

    .secondary-heading {
        font-size: 18px;
    }

    .navbar-brand img {
        width: 110px;
        transition: all 0.3s ease;
    }

    .carousel-item img {
        height: 300px !important;
        width: max-content !important;
        background-position: 50% 50%;
        /* object-fit: cover !important; */
    }

    .carousel-caption {
        position: absolute !important;
        right: 8% !important;
        bottom: 35px !important;
        left: 10% !important;
        padding-top: 0.25rem !important;
    }

    .banner-text h2 {
        /* font-family: var(--primary-font); */
        font-size: 22px !important;
        font-weight: 600 !important;
        letter-spacing: 1px;
    }

    .banner-text p {
        font-size: 14px I !important;
        text-align: start;
    }

    .rever-sec-for-penta {
        display: flex;
        flex-direction: column-reverse;
    }

    .banner-overlay::before {
        content: "";
        position: absolute;
        inset: 0;
        /* background: rgba(0, 0, 0, 0.40); */
        background: linear-gradient(90deg, #111a49d3, #ffffff5d);
        /* overlay darkness */
        z-index: 1;
    }

    .hero-tag {
        margin-bottom: 10px;
    }

    .img-wrapper {
        width: 100% !important;
        height: auto;
        margin: auto;
    }

}


@media (min-width: 768px) and (max-width: 991.98px) {

    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
    }

    .carousel-caption {
        position: absolute !important;
        right: 10% !important;
        bottom: 30px !important;
        left: 8% !important;
        padding-top: 0.25rem !important;
    }

    .banner-text h2 {
        /* font-family: var(--primary-font); */
        font-size: 40px !important;
        font-weight: 600 !important;
        letter-spacing: 1px;
    }

    .banner-text p {
        font-size: 14px I !important;
        text-align: start;
    }

}


@media (min-width: 992px) and (max-width: 1199.98px) {

    .carousel-caption {
        position: absolute !important;
        right: 25% !important;
        bottom: 35px !important;
        left: 10% !important;
        padding-top: 0.25rem !important;
    }

    .banner-text h2 {
        /* font-family: var(--primary-font); */
        font-size: 35px !important;
        font-weight: 600 !important;
        letter-spacing: 1px;
    }

    .banner-text p {
        font-size: 14px I !important;
        text-align: start;
    }

}