/*=========================
      HEADER
==========================*/

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
}

.main-header{
    background:#000;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,.4);
}

.navbar{
    padding:14px 0;
}

.navbar-brand img{
    height:60px;
    transition:.4s;
}

.navbar-brand img:hover{
    transform:scale(1.05);
}

.navbar-nav .nav-link{
    color:#fff;
    font-size:17px;
    font-weight:600;
    margin:0 12px;
    position:relative;
    transition:.3s;
}

.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#ffc107;
    transition:.4s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width:100%;
}

.navbar-nav .nav-link:hover{
    color:#ffc107;
}

.dropdown-menu{
    border:none;
    border-radius:10px;
    padding:10px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.dropdown-item{
    padding:10px 20px;
    transition:.3s;
}

.dropdown-item:hover{
    background:#ffc107;
    color:#000;
}

.btn-warning{
    font-weight:600;
    transition:.3s;
}

.btn-warning:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(255,193,7,.4);
}

@media(max-width:991px){

    .navbar-nav{
        margin:20px 0;
        text-align:center;
    }

    .navbar-nav .nav-link{
        margin:10px 0;
    }

    .btn-warning{
        display:block;
        width:200px;
        margin:15px auto;
    }

}










.products-section{
    background:#f7f7f7;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.title-line{
    display:inline-block;
    width:80px;
    height:5px;
    background:#ffc107;
    border-radius:50px;
}

.product-card{

    background:#fff;

    border:1px solid #ddd;

    border-radius:10px;

    overflow:hidden;

    transition:.4s;

    text-align:center;

    height:100%;
}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

    border-color:#ffc107;

}

.product-img{

    padding:30px;

    height:240px;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}

.product-img img{

    max-height:180px;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-content{

    padding:20px;

}

.product-content h4{

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;

}

.product-btn{

    text-decoration:none;

    color:#111;

    font-weight:700;

    transition:.3s;

}

.product-btn:hover{

    color:#ffc107;

    letter-spacing:1px;

}

@media(max-width:991px){

.section-title{
    font-size:32px;
}

.product-img{
    height:200px;
}

}


/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Barlow", sans-serif;
    background: #080808;
    color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


}


/* =====================================================
   ISO BADGE
===================================================== */

.iso-badge {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 40px;

    padding: 15px 20px;

    width: fit-content;

    border-left: 3px solid #ed1c24;

    background: rgba(255,255,255,.04);
}

.iso-icon {
    color: #ed1c24;

    font-size: 35px;
}

.iso-badge strong,
.iso-badge span {
    display: block;
}

.iso-badge strong {
    font-size: 15px;
}

.iso-badge span {
    color: #777;

    font-size: 10px;

    letter-spacing: 2px;
}


/* =====================================================
   HERO VISUAL
===================================================== */

.hero-visual {
    height: 500px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}

.rotating-ring {
    width: 360px;

    height: 360px;

    border: 1px solid
        rgba(237,28,36,.5);

    border-radius: 50%;

    box-shadow:
        0 0 70px
        rgba(237,28,36,.15);

    animation:
        rotateRing 18s linear infinite;
}

.precision-circle {
    position: absolute;

    width: 210px;

    height: 210px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle,
            #202020,
            #080808
        );

    border: 2px solid #ed1c24;

    box-shadow:
        0 0 50px
        rgba(237,28,36,.3);

    text-align: center;
}

.precision-circle i {
    color: #ed1c24;

    font-size: 55px;

    animation:
        gearRotate 10s linear infinite;
}

.precision-circle span {
    margin-top: 8px;

    font-size: 17px;

    font-weight: 800;

    letter-spacing: 3px;
}

.precision-circle small {
    color: #777;

    font-size: 10px;

    letter-spacing: 2px;
}

.laser-beam {
    position: absolute;

    width: 80%;

    height: 2px;

    background: #ed1c24;

    box-shadow:
        0 0 20px #ed1c24;

    animation:
        laserSweep 4s ease-in-out infinite;
}


/* =====================================================
   COMPANY SECTION
===================================================== */

.company-section {
    padding: 120px 0;

    background: #f5f5f5;

    color: #111;
}

.about-image-wrapper {
    position: relative;

    padding: 15px;
}

.about-image-wrapper::after {
    content: "";

    position: absolute;

    inset: 0;

    border: 2px solid #ed1c24;

    transform:
        translate(18px,18px);

    transition: .5s;
}

.about-image-wrapper:hover::after {
    transform:
        translate(7px,7px);
}

.about-image-wrapper img {
    position: relative;

    z-index: 2;

    width: 100%;

    transition: .8s;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.image-number {
    position: absolute;

    z-index: 4;

    top: 0;

    left: 0;

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ed1c24;

    color: #fff;

    font-size: 20px;

    font-weight: 800;
}

.image-caption {
    position: absolute;

    z-index: 5;

    left: 35px;

    bottom: 35px;

    padding: 15px 20px;

    background: rgba(0,0,0,.88);

    color: #fff;

    border-left: 4px solid #ed1c24;
}

.image-caption strong,
.image-caption span {
    display: block;
}

.image-caption span {
    color: #aaa;

    font-size: 10px;

    letter-spacing: 2px;
}


/* =====================================================
   SECTION TITLES
===================================================== */

.section-label {
    color: #ed1c24;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 4px;
}

.company-section h2,
.why-section h2 {
    margin: 15px 0 25px;

    font-size:
        clamp(38px,5vw,58px);

    line-height: 1;

    font-weight: 800;
}

.company-section h2 span,
.why-section h2 span {
    color: #ed1c24;
}

.lead-text {
    font-size: 19px;

    color: #555;

    line-height: 1.8;
}

.company-section p:not(.lead-text) {
    color: #777;

    line-height: 1.8;
}

.text-link {
    display: inline-flex;

    gap: 12px;

    margin-top: 20px;

    color: #ed1c24;

    font-weight: 800;

    transition: .3s;
}

.text-link:hover {
    gap: 20px;
}


/* =====================================================
   STATS
===================================================== */

.stats-section {
    background: #101010;
}

.stat-box {
    min-height: 190px;

    padding: 35px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-right: 1px solid #292929;
}

.stat-box i {
    color: #ed1c24;

    font-size: 30px;

    margin-bottom: 10px;
}

.stat-box strong {
    font-size: 40px;

    font-weight: 800;
}

.stat-box span {
    color: #777;

    font-size: 10px;

    letter-spacing: 2px;
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {
    padding: 120px 0;

    background: #f4f4f4;

    color: #111;
}

.section-heading {
    max-width: 850px;

    margin: auto;
}

.section-heading h2 {
    margin: 15px 0;

    font-size:
        clamp(38px,5vw,58px);

    font-weight: 800;
}

.section-heading h2 span {
    color: #ed1c24;
}

.section-heading p {
    color: #888;

    font-size: 18px;
}

.service-card {
    height: 100%;

    position: relative;

    padding: 35px 30px;

    background: #fff;

    border: 1px solid #ddd;

    overflow: hidden;

    transition: .5s;
}

.service-card::before {
    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 0;

    height: 4px;

    background: #ed1c24;

    transition: .5s;
}

.service-card:hover {
    transform:
        translateY(-10px);

    border-color: #ed1c24;

    box-shadow:
        0 25px 50px
        rgba(0,0,0,.12);
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #111;

    color: #ed1c24;

    font-size: 30px;

    transition: .4s;
}

.service-card:hover .service-icon {
    background: #ed1c24;

    color: #fff;

    transform:
        rotate(-5deg);
}

.service-number {
    position: absolute;

    top: 20px;

    right: 20px;

    color: #ddd;

    font-size: 35px;

    font-weight: 800;
}

.service-card h3 {
    margin-top: 25px;

    font-size: 22px;

    line-height: 1.2;
}

.service-card h3 span {
    display: block;

    color: #ed1c24;
}

.service-card p {
    color: #777;

    line-height: 1.7;
}

.service-card a {
    display: inline-flex;

    gap: 10px;

    color: #ed1c24;

    font-weight: 700;

    margin-top: 10px;
}


/* =====================================================
   WHY CHOOSE
===================================================== */

.why-section {
    padding: 120px 0;

    background: #090909;
}

.why-section h2 {
    color: #fff;
}

.why-section > .container
p {
    color: #888;

    line-height: 1.8;
}

.quality-box {
    display: flex;

    gap: 15px;

    align-items: center;

    margin-top: 30px;

    padding: 20px;

    background: #131313;

    border-left: 3px solid #ed1c24;
}

.quality-box i {
    color: #ed1c24;

    font-size: 35px;
}

.quality-box strong,
.quality-box span {
    display: block;
}

.quality-box span {
    color: #777;

    font-size: 13px;
}

.why-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.why-item {
    display: grid;

    grid-template-columns:
        40px 50px 1fr;

    align-items: center;

    gap: 15px;

    padding: 18px;

    background: #111;

    border: 1px solid #222;

    transition: .4s;
}

.why-item:hover {
    transform:
        translateX(8px);

    border-color: #ed1c24;

    background: #151515;
}

.why-item > span {
    color: #333;

    font-weight: 800;
}

.why-item i {
    color: #ed1c24;

    font-size: 24px;
}

.why-item strong {
    color: #fff;

    display: block;
}

.why-item p {
    margin: 3px 0 0;

    color: #666 !important;

    font-size: 13px;

    line-height: 1.5;
}


/* =====================================================
   MISSION / VISION
===================================================== */

.mission-section {
    padding: 110px 0;

    background: #f4f4f4;

    color: #111;
}

.mission-card {
    height: 100%;

    padding: 45px;

    background: #fff;

    border: 1px solid #ddd;

    position: relative;

    overflow: hidden;

    transition: .5s;
}

.mission-card::after {
    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    right: -80px;

    bottom: -80px;

    border-radius: 50%;

    background:
        rgba(237,28,36,.07);
}

.mission-card:hover {
    transform:
        translateY(-8px);

    border-color: #ed1c24;
}

.mission-icon {
    color: #ed1c24;

    font-size: 42px;
}

.mission-card > span {
    display: block;

    margin-top: 20px;

    color: #ed1c24;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}

.mission-card h3 {
    margin: 12px 0 20px;

    font-size: 30px;
}

.mission-card h3 span {
    color: #ed1c24;
}

.mission-card p {
    color: #777;

    line-height: 1.8;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #ed1c24,
            #a9090f
        );

    text-align: center;
}

.cta-content h2 {
    margin: 15px 0;

    font-size:
        clamp(40px,6vw,65px);

    font-weight: 800;
}

.cta-content h2 span {
    color: #111;
}

.cta-content p {
    color: rgba(255,255,255,.8);

    font-size: 18px;
}

.cta-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 30px;
}

.cta-buttons .btn-main {
    background: #111;
}

.cta-buttons .btn-main:hover {
    background: #fff;

    color: #111;
}

.cta-buttons .btn-outline {
    border-color: #fff;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding: 70px 0 25px;

    background: #050505;

    color: #777;
}

.footer-brand {
    color: #fff;

    font-size: 25px;

    font-weight: 800;

    letter-spacing: 2px;
}

.footer-brand span {
    color: #ed1c24;
}

.footer p {
    line-height: 1.8;
}

.footer h5 {
    color: #fff;

    font-size: 14px;

    letter-spacing: 2px;
}

.footer a {
    display: block;

    color: #777;

    margin: 10px 0;

    transition: .3s;
}

.footer a:hover {
    color: #ed1c24;
}

.footer hr {
    border-color: #222;

    margin-top: 40px;
}

.copyright {
    font-size: 13px;
}


/* =====================================================
   ANIMATIONS
===================================================== */

.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;

    transition:
        opacity 1s ease,
        transform 1s ease;
}

.reveal {
    transform:
        translateY(60px);
}

.reveal-left {
    transform:
        translateX(-80px);
}

.reveal-right {
    transform:
        translateX(80px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;

    transform:
        translate(0);
}


/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rotateRing {

    from {
        transform:
            rotate(0deg);
    }

    to {
        transform:
            rotate(360deg);
    }

}

@keyframes gearRotate {

    from {
        transform:
            rotate(0deg);
    }

    to {
        transform:
            rotate(360deg);
    }

}

@keyframes laserSweep {

    0%,
    100% {
        transform:
            translateY(-180px);

        opacity: .2;
    }

    50% {
        transform:
            translateY(180px);

        opacity: 1;
    }

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .about-hero {
        padding-top: 100px;
    }

    .hero-visual {
        margin-top: 40px;

        height: 380px;
    }

    .why-section,
    .company-section,
    .services-section {
        padding: 80px 0;
    }

    .cta-buttons {
        flex-direction: column;

        align-items: center;
    }

}


@media (max-width: 767px) {

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-description {
        font-size: 16px;
    }

    .rotating-ring {
        width: 270px;
        height: 270px;
    }

    .precision-circle {
        width: 170px;
        height: 170px;
    }

    .precision-circle i {
        font-size: 42px;
    }

    .why-item {
        grid-template-columns:
            30px 40px 1fr;
    }

    .mission-card {
        padding: 30px;
    }

}


@media (max-width: 480px) {

    .hero-buttons {
        flex-direction: column;
    }

    .btn-main,
    .btn-outline {
        justify-content: center;

        width: 100%;
    }

    .iso-badge {
        width: 100%;
    }

}