@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

/* RESET */
body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background: #000;
    color: #fff;
}

/* ================= HEADER ================= */
.mobile-menu-list a:hover {
    color: #C8102E;
}
.mobile-menu-list a {
    font-size: 36px !important;
    font-weight: 500;
}

.mobile-menu-list a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.site-header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    font-weight: 700;
    display: flex;
    align-items: center;

}

.main-nav a.active {
    /* border-bottom: 1px solid #C8102E; */
    padding: 4px 8px;
    font-size: 14px;
}

.main-nav span {
    color: #C8102E;
    font-family: Montserrat;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.4px;
    letter-spacing: -0.64px;
}

.menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

/* Background Video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.00) -11.95%,
            rgba(0, 0, 0, 0.80) 89.57%);
    z-index: 1;
}

/* Content above video */
.hero-content {
    position: relative;
    z-index: 2;
}


.hero-title {
    font-size: 54px;
    font-style: normal;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: -1.62px;
}

.hero-title span {
    color: #C8102E;
    font-family: Montserrat;
    font-size: 90px;
    font-style: italic;
    font-weight: 700;
    line-height: 84px;
    letter-spacing: -0.958px
}

.hero-subtitle {
    margin-top: 64px;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 33px;
}


/* ================= AIMTREX BUTTON ================= */
.aimtrex-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 260px;
    height: 70px;
    border: none;
    background: #C2262B;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    clip-path: polygon(5% 1%,
            /* top-left cut */
            100% 0%,
            /* top-right */
            100% 20%,
            /* right cut */
            100% 80%,
            94% 100%,
            /* bottom-right */
            0% 100%,
            /* bottom-left */
            0% 80%,
            /* left cut */
            0% 34%);
    transition: 0.3s ease;
}



/* Hover */
.aimtrex-btn:hover {
    background: #C2262B;
    transform: translateY(-2px);
}

/* Icon */
.aimtrex-btn .icon {
    font-size: 20px;
}

/* Mobile */
@media (max-width: 576px) {
    .aimtrex-btn {
        min-width: 220px;
        height: 60px;
        font-size: 16px;
    }
}


/* ================= HAMBURGER ================= */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    /* display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 6px 0; */
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.4s ease;
    z-index: 99;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu nav a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    margin: 15px 0;
    letter-spacing: 2px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* ================= SECTION ================= */
.proud-section {
    background: #000;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.section-title {
    color: #fff;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -1px;
    margin-bottom: 78px
}

/* ================= SWIPER ================= */
.proud-autoscroll {
    width: 100%;
}

.force-box {
    display: flex;
    justify-content: start;
    align-items: center;
}

.proud-autoscroll .swiper-slide {
    text-align: center;
    transition: 0.4s ease;
}

.proud-autoscroll .swiper-slide img {
    height: 90px;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.proud-autoscroll .swiper-slide p {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-left: 10px;
    text-align: left;
}

/* CENTER ACTIVE */
.proud-autoscroll .swiper-slide-active {
    opacity: 1;
}

.proud-autoscroll .swiper-slide-active img {
    /* filter: grayscale(0); */
    transform: scale(1.1);
}

/* SIDE FADE */
.proud-autoscroll .swiper-slide-prev,
.proud-autoscroll .swiper-slide-next {
    opacity: 1;
}

/* CLICK ANIMATION */
.proud-autoscroll .swiper-slide.clicked img {
    animation: pulse 0.6s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1.1);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .section-title {
        font-size: 20px;
    }

    .proud-autoscroll .swiper-slide img {
        height: 65px;
    }
}



/* ================= RESPONSIVE ================= */
@media (max-width: 767px) {
    .hero-title {
        font-size: 38px;
    }

    .site-header {
        position: relative;
    }
}



/* ================= FLAGSHIP SECTION ================= */
.flagship-section {
    background: radial-gradient(circle at top, #0C0C0C, #000 70%);
    padding: 120px 0;
    color: #fff;
}

.solution-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LEFT CONTENT */
.highlight-label {
    display: inline-block;
    letter-spacing: 2px;
    color: #878787;
    margin-bottom: 20px;
    position: relative;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin-left: 16px;
}

.high-light-box {
    position: relative;
    margin-top: 30px;
}

.high-light-box .shape {
    left: 0;
}

.flagship-content h2 {
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: -1.8px;
}

.flagship-content h2 span {
    color: #c8102e;
}

.flagship-content p {
    margin-top: 30px;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

/* ================= CARDS ================= */
.solution-card {
    position: relative;
    overflow: hidden;
    height: 340px;
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Overlay */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.85));
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

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

.card-overlay h4 {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -1.5px;
    margin-bottom: 0;
}

.arrow {
    font-size: 22px;
    margin-top: 10px;
    align-self: flex-end;
}

.shape {
    width: 11px;
    height: 11px;
    display: grid;
    grid-template-columns: 1fr 4px;
    grid-template-rows: 4px 1fr;
    position: absolute;
    right: 8px;
    top: 7px;
}

.top {
    grid-column: 1 / -1;
    background: #c8102e;
    /* red */
}

.right {
    grid-row: 2;
    grid-column: 2;
    background: #c8102e;
}

.center {
    grid-row: 2;
    grid-column: 1;
    background: transparent;
}


/* Hover effect */
.solution-card:hover img {
    transform: scale(1.08);
}

/* ================= Pioneer SECTION ================= */

.stats-section {
    position: relative;
    min-height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.85));
    z-index: 1;
}

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

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

.stats-title {
    margin-bottom: 70px;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -1px;
}

.stats-title .red {
    color: #C2262B;
}

.stats-row {
    align-items: flex-start;
}

.stat h3 {
    font-size: 90px;
    font-style: normal;
    font-weight: 600;
    line-height: 90px;
    letter-spacing: -2.7px;
}

.stat sup {
    font-size: 32px;
    color: #C2262B;
}

sup {
    top: -1.5em;
    left: 7px;
}

.stat hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 20px 0;
    width: 100%;
}

.stat h4 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.stat p {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.5px;
    color: #888B8D;
}

/* ================= Our expertise SECTION ================= */
.expertise-section {
    background: #000;
    padding: 100px 0;
    color: #fff;
}

.section-tag {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.7;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
}

.section-title span {
    color: #C2262B;
}

.expertise-card {
    position: relative;
    display: block;
    height: 480px;
    overflow: hidden;
    clip-path: polygon(8% 0%,
            100% 0%,
            100% 92%,
            92% 100%,
            0% 100%,
            0% 8%);
}

.expertise-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.85));
}

.card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.card-content h4 {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    color: #fff;
}

.arrow {
    font-size: 28px;
}

.expertise-card:hover video {
    transform: scale(1.05);
    transition: 0.5s ease;
}


/* ================= About SECTION ================= */
.about-section {
    position: relative;
    height: 70vh;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top: 1px solid #888B8D;
    border-bottom: 1px solid #888B8D;
}

.warriors-content {
    padding: 50px;
    border-left: 1px solid #888B8D;
    border-right: 1px solid #888B8D;
    position: relative;
}

.custom-border {
    border-top: 1px solid #888B8D;
    border-bottom: 1px solid #888B8D;
    padding: 0px;
    margin: 0;
}


.about-label .about-label {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 14px;
    letter-spacing: 2px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-label .highlight-label {
    text-transform: uppercase;
}


.about-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
}

.about-desc {
    font-size: 36px;
    color: #cfcfcf;
    margin-bottom: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -2px;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid #C2262B;
    color: #C2262B;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: #C2262B;
    color: #fff;
}


/* ================= Nation SECTION ================= */

.projects-section {
    background: #0c0c0c;
    color: #fff;
    padding: 100px 0;
}

.section-tag {
    color: #aaa;
    letter-spacing: 2px;
    font-size: 14px;
}

.projects-title {
    font-size: 56px;
    line-height: 1.1;
    margin: 20px 0;
}

.projects-title span {
    color: #C2262B;
}

.projectSwiper {
    height: 520px;
}

.projectSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 6px; */
    clip-path: polygon(0% 0%,
            /* top-left cut */
            100% 0%,
            /* top-right */
            100% 100%,
            /* right cut */
            100% 100%,
            94% 100%,
            /* bottom-right */
            0% 100%,
            /* bottom-left */
            0% 80%,
            /* left cut */
            0% 34%);
    transition: 0.3s ease;
    position: relative;
}

.triangle {
    position: absolute;
    top: -8px;
}

.project-info .info-block {
    margin-bottom: 40px;
}

.project-info span {
    color: #BFBFBF;
    border-bottom: 1px solid #BFBFBF;
    display: block;
    padding-bottom: 7px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.project-info h4 {
    font-size: 22px;
    margin-top: 5px;
}

.slide-count {
    margin-top: 40px;
    font-size: 18px;
}

.view-all {
    display: inline-block;
    margin-top: 30px;
    color: #fff;
    text-decoration: none;
}

.view-all sup {
    color: #C2262B;
}

/* ================= News SECTION ================= */
.news-section {
    background: #000;
    color: #fff;
    padding: 80px 40px;
}

.section-tag {
    color: #aaa;
    letter-spacing: 2px;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
}

.section-title span {
    color: #C2262B;
}

.news-card {
    background: #000;
    overflow: hidden;
}

.news-card img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: 2s ease-in-out;
}



/* .news-card img:hover {
    transform: scale(1.3);
} */

.news-card.large img {
    height: 420px;
    object-fit: cover;
}

.news-card.small img {
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px 0;
}

.news-content small {
    color: #888;
}

.news-content h4 {
    font-size: 20px;
    line-height: 1.3;
    margin: 10px 0 15px;
}

.news-content a {
    border: 1px solid #C2262B;
    color: #C2262B;
    padding: 6px 14px;
    font-size: 12px;
    text-decoration: none;
}
.rigt-arrow-view{
    color: #C2262B;
    margin-right: 10px;
}

.checkout{
    display: flex;
    justify-content: end;
    align-items: end;
}

.checkout a {
    color: #fff;
    height: 162px;
    display: flex;
    align-items: center;
}

/* ================= FAQ SECTION ================= */
.faq-section {
    background: #fff;
    padding: 90px 60px;
}

.doubt{
    color: #000;
}

.faq-left h2 {
    font-size: 52px;
    font-weight: 500;
}

.faq-left span {
    color: #C8102E;
}

.faq-left p {
    color: #777;
    margin: 25px 0;
}

.ask-link {
    color: #C8102E;
    text-decoration: none;
    font-weight: 500;
}

.faq-title {
    font-size: 26px;
    margin-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    font-size: 18px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-btn .icon {
    width: 16px;
    height: 16px;
    position: relative;
    transition: transform 0.6s ease;
}

.faq-btn .icon::before,
.faq-btn .icon::after {
    content: "";
    position: absolute;
    background: #C2262B;
}

.faq-btn .icon::before {
    width: 16px;
    height: 2px;
    top: 7px;
    left: 0;
}

.faq-btn .icon::after {
    width: 2px;
    height: 16px;
    left: 7px;
    top: 0;
    transition: opacity 0.3s ease;
}

/* CONTENT */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.faq-content p {
    padding-bottom: 20px;
    color: #555;
}

/* ACTIVE STATE */
.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-item.active .icon {
    transform: rotate(360deg);
}

.faq-item.active .icon::after {
    opacity: 0;
    /* minus icon */
}

/* ================= FAQ SECTION ================= */

.aimtrex-footer {
  background: #000;
  color: #aaa;
  padding: 120px 40px 40px;
  position: relative;
  overflow: hidden;
}

.footer-brand-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-main {
  position: relative;
  z-index: 2;
}

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

.footer-form input,
.footer-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  padding: 10px 0;
  color: #fff;
  margin-bottom: 25px;
}

.footer-form textarea {
  resize: none;
  height: 60px;
}

.footer-btn {
  color: #fff;
  text-decoration: none;
}

.footer-links a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact .sales-link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.footer-bottom {
  margin-top: 80px;
  align-items: center;
}

.socials i {
  color: #aaa;
  margin-left: 15px;
  font-size: 18px;
}

.footer-bottom p {
  margin-top: 10px;
    color: #FFF;
    font-family: Montserrat;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 50.6px;
    letter-spacing: -0.22px;
}

.footer-bottom span {
  color: #C8102E;
    font-style: italic;
}

.makes-lion {
    margin-bottom: 20px;
}

.footer-sales {
    color: #FFF !important;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28.6px;
    letter-spacing: -1.1px;
}


