body {
    font-family: "roboto", system-ui;
    font-size: clamp(15px, 2vw, 18px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-family: "Raleway", system-ui;
    font-size: clamp(29px, 3.125vw, 65px);
    font-weight: 400;
    line-height: 1.2em;
}

.font-bigger {
    font-size: clamp(22px, 3.3vw, 80px) !important;
}

h2 {
    font-size: clamp(22px, 4vw, 40px);
    font-weight: 500;
    line-height: 1.1em;
    font-family: "poppins", system-ui;
}

h3 {
    font-size: clamp(24px, 4vw, 28px);
    line-height: 1.2em;
    font-weight: 600;
    font-family: "poppins", system-ui;
}

h4 {
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.2em;
    font-family: "poppins", system-ui;
}

h5 {
    font-size: clamp(18px, 2.5vw, 23px);
    line-height: 1.2em;
    font-family: "poppins", sans-serif;
    color: #464646;
}

h6 {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.4em;
    font-family: "poppins", system-ui;
}

p,
a {
    font-style: normal;
    font-weight: 400;
    font-size: clamp(15px, 2vw, 16px) !important;
    font-family: "roboto", sans-serif;
    color: #464646 !important;
}



.home-font {
    line-height: 72px;
}


ul {
    margin: 0;
    padding: 0;
}

footer li,
header li {
    list-style: none;
}

a,
a:hover,
a:focus {
    text-decoration: none !important;
}

img {
    border-style: none;
}

.uppernav {
    color: #333333;
    background-color: #F8C301;
}

header .navbar {
    background: #000000c0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

#hero_section {
    margin-top: 125px;
}

@media(max-width: 992px) {
    #hero_section {
        margin-top: 122px;
    }
}


@media(max-width: 768px) {
    #hero_section {
        margin-top: 121px;
    }
}


@media(max-width: 576px) {
    #hero_section {
        margin-top: 130px;
    }
}

.nav-link {
    color: #fff !important;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

    .nav-link:hover,
    .nav-link.active {
        font-weight: 700 !important;
        padding: 0.5rem 0.9rem !important;
    }

.site-footer {
    background: #1c1c1c;
    padding: 40px 0 30px;
    text-align: center;
    color: #d4d4d4;
    font-size: 14px;
}

.social-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
}

    .social-wrapper a {
        color: #d4d4d4;
        text-decoration: none;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: 0.3s;
    }

        .social-wrapper a:hover {
            color: #ffffff;
        }

.site-footer hr {
    border-color: #fff;
    max-width: 900px;
    margin: 20px auto;
}

.copy-text,
.powered {
    margin: 5px 0 0;
    font-size: 13px;
}

@media (max-width:576px) {
    .social-wrapper {
        gap: 15px;
    }

        .social-wrapper a {
            font-size: 13px;
        }
}

footer p,
footer a {
    color: #fff !important;
}

.white-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ffffff' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.navbar-toggler {
    border: var(--bs-border-width) solid #FFF0 !important;
}

    .navbar-toggler:focus {
        box-shadow: UNSET !important;
    }


.offcanvas.show:not(.hiding),
.offcanvas.showing {
    transform: none;
    height: 100vh;
}

@media (max-width: 992px) {
    .nav-link {
        text-align: center;
    }

    .offcanvas {
        background: #000000cc !important;
    }
}

.btn-close.white-close {
    --bs-btn-close-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 0 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E");
    filter: none !important;
    opacity: 1;
}

.btn-white-outline {
    background: transparent;
    color: #fff !important;
    padding: 10px 36px;
    border: 1px solid #fff;
    display: inline-block;
    width: fit-content;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: .3px;
    transition: all .35s ease;
}

    /* Shine Effect */
    .btn-white-outline::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,.45), transparent );
        transition: .6s ease;
    }

    /* Hover state */
    .btn-white-outline:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 22px rgba(0,0,0,.25);
    }

        /* Shine sweep animation */
        .btn-white-outline:hover::before {
            left: 140%;
        }


.btn-yellow {
    background: linear-gradient(135deg, #F8C301, #ffda3a);
    color: #000 !important;
    padding: 13px 40px;
    border-radius: 3px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
}

    /* Shine layer */
    .btn-yellow::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,.5), transparent );
        transition: .6s ease;
    }

    /* Hover Effects */
    .btn-yellow:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,.18);
    }

        /* Shine movement */
        .btn-yellow:hover::before {
            left: 140%;
        }

    /* Download icon motion */
    .btn-yellow i {
        transition: transform .3s ease;
    }

    .btn-yellow:hover i {
        transform: translateY(3px);
    }


.bg-blue {
    background-color: #18367E;
}

.scroll-down svg {
    position: absolute;
    bottom: -1px;
    left: 120px;
    width: 240px;
}

@media (max-width:1200px) {
    .scroll-down svg {
        left: 50%;
        transform: translateX(-50%);
    }
}

#service .col {
    background: #F5F5F5;
}

/* BG overlay section */
.infra-section {
    background: url("../img/deep-mnc-infrastructure-units.png") center/cover no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

    /* 
.infra-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
} */

    .infra-section .container {
        position: relative;
        z-index: 2;
    }

/* Wrapper */
.infra-wrapper {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Card */
.infra-card {
    background: #fff;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .infra-card {
        padding: 30px 25px;
    }

    .infra-wrapper {
        border-radius: 6px;
    }
}


.craft-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all .5s ease;
}

    .craft-card .craft-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .craft-card .craft-overlay {
        position: absolute;
        z-index: 2;
        background: #000000A6;
        backdrop-filter: blur(3px);
        color: #fff;
        bottom: 0px;
        width: 100%;
        height: 0%;
        left: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        opacity: 0;
        transform: scale(1.2);
        transition: all .5s ease-in-out;
        pointer-events: none;
    }

    .craft-card:hover .craft-overlay {
        height: 100%;
        transform: scale(1);
        opacity: 1;
    }

    .craft-card .expand-icon {
        position: absolute;
        pointer-events: none;
        background-color: #F8C301;
        width: 30px;
        height: 30px;
        opacity: 0;
        top: -30px;
        border-radius: 6px;
        right: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 3;
        transform: scale(1.2);
        transition: all 0.5s ease-in-out;
    }

    .craft-card:hover .expand-icon {
        top: 10px;
        opacity: 1;
        transform: scale(1);
    }

.bg-grey {
    background-color: #f5f5f5;
}



#our-service .maincontainer {
    position: relative;
    width: 100%;
    min-height: 234px;
    perspective: 800px;
}

    #our-service .maincontainer .front,
    #our-service .maincontainer .back {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        justify-content: center;
        align-items: center;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        flex-direction: column;
        display: flex;
        text-align: center;
        backface-visibility: hidden;
        transition: transform .6s ease;
        overflow: hidden;
    }

/* Front */
#our-service .front {
    transform: rotateY(0deg);
    background: #F5F5F5;
}

    #our-service .front img {
        width: auto;
        height: 80px;
        object-fit: cover;
        margin-bottom: 18px;
    }

    #our-service .front h5 {
        color: #252525;
    }

/* Back */
#our-service .back {
    background: #18367E;
    color: #fff;
    padding: 20px;
    transform: rotateY(180deg);
    border-radius: 10px;
}



#our-service .maincontainer .back p {
    margin: 0;
}

/* Hover Flip */
#our-service .maincontainer:hover .front {
    transform: rotateY(-180deg);
}

#our-service .maincontainer:hover .back {
    transform: rotateY(0deg);
}



/*manan*/


#serving-customers-across-the-globe {
    background: url('../img/deep-smc-serving-our-customers-img.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.heading-content {
    padding-top: 100px;
    padding-bottom: 200px;
}

.testimonial-img img {
    margin-top: -45px;
}

.content-space {
    padding: 24px 40px 45px 40px;
}

#testimonial-content {
    margin-top: -100px;
}

@media(max-width: 768px) {
    .content-space {
        padding: 16px 19px 35px 19px;
    }
}

#our-customers {
    background: #F5F5F5;
}

.custom-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

    .custom-underline::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 210px;
        height: 2px;
        background-color: #F8C301;
    }

.img-top {
    margin-top: -16px !important;
}

    .img-top img {
        width: 30px !important;
        margin: auto;
    }

.card-content {
    padding: 25px 23px 35px 20px;
}

.owl-stage {
    margin-bottom: 35px !important;
}

.custom-arrow {
    background: #18367E !important;
    color: #fff !important;
    padding: 6px 10px 6px 13px;
    transition: 0.4s ease-in-out;
}

    .custom-arrow:hover {
        background: #F8C301 !important;
        color: #18367E !important;
    }

.owl-prev {
    position: absolute;
    top: 265px;
    left: -65px;
}

.owl-next {
    position: absolute;
    top: 265px;
    right: -65px;
}


@media (max-width: 992px) {
    .owl-prev,
    .owl-next {
        position: unset !important;
        top: unset !important;
        left: unset !important;
        right: unset !important;
    }
}

.owl-stage {
    display: flex;
    align-items: stretch;
}

.bg-yellow {
    background: #F8C301;
    border-start-start-radius: 10px;
    border-start-end-radius: 10px;
}

.bg-gradient {
    background: linear-gradient( 270deg, hsla(47, 99%, 49%, 0.6) 0%, hsla(222, 68%, 29%, 0.6) 99% ) !important;
    padding: 20px;
    margin-top: 40px;
}

@media(max-width: 992px) {
    .bg-gradient {
        margin-top: 0px;
    }

    .bg-yellow {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.bg-yellow h3, .bg-yellow p {
    padding-right: 22px;
    padding-left: 40px;
}

@media(max-width: 576px) {
    .bg-yellow h3, .bg-yellow p {
        padding-right: 12px;
        padding-left: 12px;
    }
}

.bg-gradient {
    position: relative;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    z-index: 3;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.35));
    animation: softPulseBlack 2.6s ease-in-out infinite;
    cursor: pointer;
}

@keyframes softPulseBlack {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.35));
    }

    50% {
        transform: translate(-50%, -50%) scale(1.07);
        opacity: 0.95;
        filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.45));
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.35));
    }
}


.video-box {
    position: relative;
    cursor: pointer;
}

.play-icon {
    position: absolute;
    width: 70px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 1.8s infinite ease-in-out;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.6));
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
}


#deep-smc-inner-banner {
    background: url('../img/smc-deep-inner-banner.png'), url('../img/smc-deep-inner-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-down {
    margin-top: 125px;
}

.inner-banner-heading {
    padding-top: 130px;
    padding-bottom: 130px;
}

.custom-head-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

    .custom-head-underline::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 150px;
        height: 2px;
        background-color: #F8C301;
    }

@media(max-width: 1200px) {
    .custom-head-underline::after {
        width: 95px;
    }
}

@media(max-width: 992px) {
    .banner-down {
        margin-top: 123px;
    }
}

@media(max-width: 768px) {
    .banner-down {
        margin-top: 121px;
    }
}

@media(max-width: 576px) {
    .banner-down {
        margin-top: 129px;
    }
}


@media(max-width: 417px) {
    .banner-down {
        margin-top: 153px;
    }
}

.link-hover:hover {
    color: #F8C301 !important;
}

.bg-light-grey {
    background: #f5f5f5 !important;
    padding: 30px 40px;
}

@media(max-width: 768px) {
    .bg-light-grey {
        padding: 15px 15px;
    }
}

.bg-greish {
    background: #f5f5f5 !important;
    padding: 16px;
}

#why-deep-smc {
    background: url('../img/deep-why-us.png'), url('../img/deep-why-us.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

    #why-deep-smc::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgb(0 0 0 / 52%);
        z-index: 0;
    }

    #why-deep-smc .container {
        position: relative;
        z-index: 1;
    }

.heading-why {
    padding-top: 130px;
    padding-bottom: 130px;
}

.color-blue {
    color: #18367E !important;
}

.news-and-events h6 {
    color: #464646 !important;
    font-weight: 400 !important;
}

#deep-smc-customer .owl-next {
    position: absolute;
    top: 95px;
    right: -80px;
}

#deep-smc-customer .owl-prev {
    position: absolute;
    top: 95px;
    left: -80px;
}

.active {
    color: #F8C301 !important;
    font-weight: 700 !important;
}

#site-content h3 a {
    font-size: clamp(24px, 4vw, 28px) !important;
    font-weight: 600 !important;
    font-family: "poppins", system-ui;
}

.page-banner {
    position: relative;
    height: 340px;
    overflow: hidden;
}

    .page-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.page-banner-title {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.machine-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

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

.no-bullets {
    list-style: none;
    padding-left: 0;
}

    .no-bullets li {
        margin-bottom: 7px;
        padding-left: 14px;
        position: relative;
    }

        .no-bullets li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
            color: #0d2a50;
        }

.table small {
    color: #666;
}

.spec-table {
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 8px;
    overflow: hidden;
}

.spec-wrapper {
    padding: 20px 0;
}

.amada-punch-press-machine .table-responsive {
    overflow-x: auto;
}

    .amada-punch-press-machine .table-responsive table {
        min-width: 640px;
    }

.text-blue {
    color: #18367E
}

.infra-banner {
    background: url('assets/img/infrastructure-banner.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 327px;
    padding-bottom: 250px;
}

@media (max-width: 992px) {

    .infra-banner {
        padding-top: 227px;
        padding-bottom: 150px;
    }
}

@media (max-width: 576px) {

    .infra-banner {
        padding-top: 262px;
        padding-bottom: 89px;
    }
}

.text-shadows {
    text-shadow: 0 0 4px #000000cc, 0 0 4px #0000005c;
}

@media(max-width: 768px) {
    .content_banner {
        background: #18367E !important;
        height: 165px !important;
    }

    #hero_section .owl-dots {
        display: none !important;
    }
}

@media(max-width: 992px) {


    .owl-prev, .owl-next {
        display: none !important;
    }

    #hero_section .owl-dots {
        margin-top: -34px !important;
        z-index: 99999 !important;
        position: relative !important;
    }

    .btn-yellow, .btn-white-outline {
        padding: 9px 30px;
    }
}


@media(max-width: 416px) {
    @media (max-width: 576px) {
        #hero_section {
            margin-top: 150px;
        }
    }
}
