﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #07111f;
    color: #fff;
    overflow-x: hidden;
}

/* ================= CUSTOM SCROLLBAR ================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #ff7b00;
    border-radius: 20px;
}

/* ================= HEADER ================= */

header {
    width: 100%;
    padding: 18px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(14px);
    background: rgba(7,17,31,.75);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.logo img {
    height: 60px; /* Adjust size */
    width: auto;
    display: block;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 35px;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: .3s;
}

    nav a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0%;
        height: 2px;
        background: #ff7b00;
        transition: .3s;
    }

    nav a:hover::after {
        width: 100%;
    }

    nav a:hover {
        color: #ff7b00;
    }

/* ================= HERO ================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 7%;
    background: linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.75)), url('assest/hero1.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

    .hero::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7b00;
        filter: blur(180px);
        opacity: .18;
        right: -150px;
        top: 80px;
    }

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

    .hero-content h3 {
        color: #ff7b00;
        font-size: 22px;
        margin-bottom: 15px;
    }

    .hero-content h1 {
        font-size: 72px;
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .hero-content p {
        color: #d7d7d7;
        line-height: 1.9;
        font-size: 17px;
        margin-bottom: 40px;
    }

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    display: inline-block;
}

.btn-primary {
    background: #ff7b00;
    color: #fff;
    box-shadow: 0 10px 30px rgba(255,123,0,.35);
}

    .btn-primary:hover {
        transform: translateY(-5px);
    }

.btn-secondary {
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    backdrop-filter: blur(10px);
}

    .btn-secondary:hover {
        background: #fff;
        color: #000;
    }

/* ================= STATS ================= */

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
    padding: 0 7%;
    margin-top: -70px;
    position: relative;
    z-index: 2;
}

.stat-box {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.08);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: .3s;
}

    .stat-box:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,.08);
    }

    .stat-box h2 {
        font-size: 42px;
        color: #ff7b00;
    }

    .stat-box p {
        color: #cfcfcf;
        margin-top: 10px;
    }

/* ================= SECTION ================= */

section {
    padding: 40px 6%;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

    .section-title h2 {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .section-title p {
        color: #aaa;
        max-width: 700px;
        margin: auto;
        line-height: 1.8;
    }

/* ================= ABOUT ================= */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
}

.about-content h2 {
    font-size: 45px;
    margin-bottom: 25px;
}

.about-content p {
    line-height: 1.9;
    color: #bbb;
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 35px;
}

    .about-features div {
        background: #101c2d;
        padding: 18px;
        border-radius: 12px;
    }

    .about-features i {
        color: #ff7b00;
        margin-right: 10px;
    }

/* ================= PRODUCTS ================= */

.products {
    background: #0b1728;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.product-card {
    background: #111f33;
    border-radius: 22px;
    overflow: hidden;
    transition: .4s;
    border: 1px solid rgba(255,255,255,.05);
}

    .product-card:hover {
        transform: translateY(-12px);
    }

    .product-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.product-content {
    padding: 30px;
}

    .product-content h3 {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .product-content p {
        color: #bdbdbd;
        line-height: 1.8;
        margin-bottom: 25px;
    }

/* ================= WHY US ================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.why-box {
    background: #101c2d;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: .3s;
}

    .why-box:hover {
        transform: translateY(-10px);
    }

    .why-box i {
        font-size: 50px;
        color: #ff7b00;
        margin-bottom: 25px;
    }

    .why-box h3 {
        margin-bottom: 15px;
    }


/* ================= WHATSAPP ================= */

.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37,211,102,.4);
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .about,
    .contact-area {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    header {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

        nav a {
            margin: 10px;
        }

    .hero-content h1 {
        font-size: 40px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .about-content h2 {
        font-size: 34px;
    }
}

@keyframes float {
    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }
}

.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #07111f;
    position: relative;
}

    .about-hero::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7b00;
        filter: blur(180px);
        opacity: .15;
    }

    .about-hero h1 {
        font-size: 70px;
        max-width: 900px;
        margin: auto;
    }

.mission-section {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.mission-box {
    background: #101c2d;
    padding: 40px;
    border-radius: 20px;
    transition: .4s;
}

    .mission-box:hover {
        transform: translateY(-10px);
    }

.cert-card {
    background: #101c2d;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.timeline-item {
    padding: 25px;
    background: #101c2d;
    margin-bottom: 20px;
    border-left: 5px solid #ff7b00;
}

/* ================= CEO MESSAGE ================= */

.founder-message {
    padding: 120px 7%;
    position: relative;
}

.founder-content {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    padding: 70px 60px;
    border-radius: 30px;
    position: relative;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: 0.4s;
}

    /* Orange Glow */
    .founder-content::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(150px);
        opacity: 0.18;
        top: -100px;
        right: -100px;
    }

    /* Big Quote */
    .founder-content::after {
        content: '"';
        position: absolute;
        top: 15px;
        left: 40px;
        font-size: 140px;
        font-weight: 800;
        color: rgba(255,123,0,0.15);
        line-height: 1;
    }

    .founder-content:hover {
        transform: translateY(-10px);
        border-color: rgba(255,123,0,0.4);
        box-shadow: 0 25px 60px rgba(255,123,0,0.15);
    }

    .founder-content h2 {
        font-size: 48px;
        margin-bottom: 30px;
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .founder-content p {
        font-size: 20px;
        line-height: 2;
        color: #d6d6d6;
        max-width: 800px;
        margin: auto;
        position: relative;
        z-index: 2;
    }

    .founder-content h4 {
        margin-top: 35px;
        color: #ff7b00;
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 1px;
        position: relative;
        z-index: 2;
    }

/* Director Image */
.ceo-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px;
    border: 4px solid #ff7b00;
    box-shadow: 0 10px 40px rgba(255,123,0,0.3);
}

    .ceo-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Mobile */
@media(max-width:768px) {

    .founder-content {
        padding: 50px 30px;
    }

        .founder-content h2 {
            font-size: 34px;
        }

        .founder-content p {
            font-size: 16px;
        }

        .founder-content::after {
            font-size: 90px;
            left: 20px;
        }
}

/* ================= COUNTER SECTION ================= */

.counter-section {
    padding: 100px 7%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
}

    /* Orange Glow Background */
    .counter-section::before {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(180px);
        opacity: 0.08;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

.counter-box {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 45px 25px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

    /* Hover Glow */
    .counter-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(255,123,0,0.15), transparent );
        opacity: 0;
        transition: 0.4s;
    }

    .counter-box:hover::before {
        opacity: 1;
    }

    .counter-box:hover {
        transform: translateY(-12px);
        border-color: rgba(255,123,0,0.4);
        box-shadow: 0 20px 50px rgba(255,123,0,0.15);
    }

    .counter-box h2 {
        font-size: 60px;
        font-weight: 800;
        color: #ff7b00;
        margin-bottom: 10px;
        line-height: 1;
    }

    .counter-box p {
        font-size: 16px;
        color: #d0d0d0;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

/* Animation */
.counter-box {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {

    .counter-section {
        gap: 20px;
        padding: 70px 5%;
    }

    .counter-box {
        padding: 35px 20px;
    }

        .counter-box h2 {
            font-size: 42px;
        }

        .counter-box p {
            font-size: 14px;
        }
}
.counter-box h2 {
    background: linear-gradient( 90deg, #ff7b00, #ffb347 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= WHY CHOOSE US ================= */

.why-premium {
    padding: 120px 7%;
    display: grid;
    gap: 35px;
}

.premium-card {
    position: relative;
    padding: 60px;
    border-radius: 30px;
    background: linear-gradient( 135deg, #101c2d, #16263d );
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
    transition: .5s;
}

    .premium-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 70px rgba(255,123,0,.15);
    }

    /* Huge Number */

    .premium-card span {
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 140px;
        font-weight: 800;
        color: rgba(255,255,255,.04);
        user-select: none;
    }

    /* Orange Line */

    .premium-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 8px;
        height: 100%;
        background: #ff7b00;
    }

    .premium-card h3 {
        font-size: 34px;
        margin-bottom: 20px;
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .premium-card p {
        font-size: 17px;
        color: #bcbcbc;
        max-width: 650px;
        line-height: 1.9;
        position: relative;
        z-index: 2;
    }

    /* Glow */

    .premium-card::after {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0;
        right: -80px;
        top: -80px;
        transition: .5s;
    }

    .premium-card:hover::after {
        opacity: .15;
    }

@media(max-width:768px) {

    .premium-card {
        padding: 40px 30px;
    }

        .premium-card h3 {
            font-size: 24px;
        }

        .premium-card span {
            font-size: 80px;
            right: 20px;
        }
}
/* ================= PREMIUM SECTION TITLE ================= */

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

    .section-title span {
        display: inline-block;
        color: #ff7b00;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        position: relative;
        padding: 0 25px;
    }

        /* Lines Left & Right */

        .section-title span::before,
        .section-title span::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 50px;
            height: 2px;
            background: #ff7b00;
        }

        .section-title span::before {
            left: -40px;
        }

        .section-title span::after {
            right: -40px;
        }

    .section-title h2 {
        font-size: clamp(40px,5vw,70px);
        font-weight: 800;
        line-height: 1.1;
        margin-top: 20px;
        background: linear-gradient( 180deg, #ffffff, #bfc8d6 );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title p {
        max-width: 700px;
        margin: 25px auto 0;
        color: #9fa8b5;
        line-height: 1.9;
        font-size: 16px;
    }
/* ================= CERTIFICATIONS ================= */

.certifications {
    padding: 120px 7%;
    position: relative;
    text-align: center;
}

    /* Background Glow */

    .certifications::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(220px);
        opacity: .08;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        pointer-events: none;
    }

    .certifications h2 {
        font-size: 60px;
        font-weight: 800;
        margin-bottom: 70px;
        color: #fff;
        position: relative;
    }

        .certifications h2::after {
            content: '';
            position: absolute;
            width: 120px;
            height: 4px;
            background: #ff7b00;
            left: 50%;
            bottom: -18px;
            transform: translateX(-50%);
            border-radius: 50px;
        }

/* Grid */

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 35px;
}

/* Cards */

.cert-card {
    position: relative;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    padding: 50px 35px;
    overflow: hidden;
    transition: .5s;
}

    /* Top Shine Effect */

    .cert-card::before {
        content: '';
        position: absolute;
        top: -100%;
        left: -100%;
        width: 200%;
        height: 200%;
        background: linear-gradient( 135deg, transparent, rgba(255,255,255,.08), transparent );
        transform: rotate(25deg);
        transition: .8s;
    }

    .cert-card:hover::before {
        top: 100%;
        left: 100%;
    }

    /* Premium Badge */

    .cert-card::after {
        content: '✓';
        position: absolute;
        top: 25px;
        right: 25px;
        width: 45px;
        height: 45px;
        background: #ff7b00;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        box-shadow: 0 0 20px rgba(255,123,0,.4);
    }

    .cert-card:hover {
        transform: translateY(-15px);
        border-color: rgba(255,123,0,.4);
        box-shadow: 0 25px 60px rgba(255,123,0,.15), inset 0 0 30px rgba(255,123,0,.05);
    }

.cert-card {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
}

/* Mobile */

@media(max-width:768px) {

    .certifications {
        padding: 80px 5%;
    }

        .certifications h2 {
            font-size: 38px;
        }

    .cert-card {
        padding: 40px 25px;
        font-size: 20px;
    }
}
.cert-card i {
    font-size: 60px;
    color: #ff7b00;
    margin-bottom: 25px;
}

.cert-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.cert-card p {
    color: #b8b8b8;
    line-height: 1.8;
}
.process-roadmap{
    max-width:1200px;
    margin:auto;
    padding:120px 7%;
    position:relative;
}

/* Center Line */

.process-roadmap::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:linear-gradient(
        to bottom,
        #ff7b00,
        rgba(255,123,0,.2)
    );
}

.roadmap-card{
    width:45%;
    background:#101c2d;
    padding:40px;
    border-radius:25px;
    position:relative;
    margin-bottom:60px;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.roadmap-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(255,123,0,.2);
}

.left{
    margin-right:auto;
}

.right{
    margin-left:auto;
}

/* Number */

.roadmap-card span{
    position:absolute;
    top:-20px;
    left:30px;

    width:70px;
    height:70px;

    background:#ff7b00;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    font-weight:700;
}

.roadmap-card h3{
    margin-top:30px;
    font-size:28px;
    margin-bottom:15px;
}

.roadmap-card p{
    color:#bcbcbc;
    line-height:1.8;
}
.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-card{
    background:linear-gradient(
        145deg,
        #101c2d,
        #162842
    );

    padding:50px 30px;
    border-radius:30px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.process-card::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:#ff7b00;
    filter:blur(120px);
    opacity:.08;
    top:-120px;
    right:-120px;
}

.process-card h2{
    font-size:80px;
    color:rgba(255,123,0,.15);
}

.process-card h3{
    margin:20px 0;
    font-size:24px;
}

.process-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

    .process-heading span {
        display: inline-block;
        color: #ff7b00;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 15px;
        position: relative;
    }

        .process-heading span::before,
        .process-heading span::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 50px;
            height: 2px;
            background: #ff7b00;
        }

        .process-heading span::before {
            left: -70px;
        }

        .process-heading span::after {
            right: -70px;
        }

    .process-heading h2 {
        font-size: clamp(40px,5vw,70px);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 25px;
        background: linear-gradient( 180deg, #ffffff, #c9d1db );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .process-heading p {
        color: #aeb6c2;
        font-size: 17px;
        line-height: 1.9;
        max-width: 750px;
        margin: auto;
    }
/* ================= MISSION VISION VALUES ================= */

.mission-section {
    padding: 120px 7%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 35px;
    position: relative;
}

    /* Background Glow */

    .mission-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(220px);
        opacity: .08;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        pointer-events: none;
    }

.mission-box {
    position: relative;
    overflow: hidden;
    padding: 50px 40px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    transition: .5s;
}

    /* Orange Top Border */

    .mission-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient( 90deg, #ff7b00, #ffb347 );
    }

    /* Giant Background Icon */

    .mission-box i {
        font-size: 65px;
        color: #ff7b00;
        margin-bottom: 25px;
        position: relative;
        z-index: 2;
    }

        .mission-box i::after {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            background: #ff7b00;
            border-radius: 50%;
            filter: blur(70px);
            opacity: .15;
        }

    /* Title */

    .mission-box h3 {
        font-size: 30px;
        margin-bottom: 20px;
        color: #fff;
    }

    /* Text */

    .mission-box p {
        color: #bfc6cf;
        line-height: 1.9;
        font-size: 16px;
    }

    /* Hover */

    .mission-box:hover {
        transform: translateY(-15px);
        border-color: rgba(255,123,0,.4);
        box-shadow: 0 25px 60px rgba(255,123,0,.15);
    }

    /* Corner Number */

    .mission-box:nth-child(1)::after {
        content: '01';
    }

    .mission-box:nth-child(2)::after {
        content: '02';
    }

    .mission-box:nth-child(3)::after {
        content: '03';
    }

    .mission-box::after {
        position: absolute;
        right: 25px;
        bottom: 10px;
        font-size: 90px;
        font-weight: 800;
        color: rgba(255,255,255,.04);
    }

/* Floating Animation */

.mission-box {
    animation: floatCard 6s ease-in-out infinite;
}

    .mission-box:nth-child(2) {
        animation-delay: .8s;
    }

    .mission-box:nth-child(3) {
        animation-delay: 1.5s;
    }

@keyframes floatCard {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Mobile */

@media(max-width:768px) {

    .mission-box {
        padding: 40px 30px;
    }

        .mission-box h3 {
            font-size: 24px;
        }

        .mission-box::after {
            font-size: 60px;
        }
}

/* ================= COMPANY STORY ================= */

.company-story {
    padding: 120px 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

    /* Orange Glow */

    .company-story::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(220px);
        opacity: .08;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        pointer-events: none;
    }

/* ================= IMAGE ================= */

.story-image {
    position: relative;
    overflow: visible;
}

    .story-image img {
        width: 100%;
        display: block;
        border-radius: 30px;
        object-fit: cover;
        box-shadow: 0 30px 80px rgba(0,0,0,.35);
    }

    .story-image:hover img {
        transform: scale(1.05);
    }

    /* Decorative Border */

   .story-image::before{
    content:"";
    position:absolute;
    inset:-18px;
    border:2px solid rgba(255,123,0,.35);
    border-radius:38px;
    z-index:-1;
}

    

/* ================= CONTENT ================= */

.story-content {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    padding: 60px;
    position: relative;
}

    /* Small Label */

    .story-content::before {
        content: 'ABOUT COMPANY';
        display: inline-block;
        color: #ff7b00;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    /* Title */

    .story-content h2 {
        font-size: 60px;
        line-height: 1.1;
        margin-bottom: 25px;
        background: linear-gradient( 180deg, #fff, #cfd6df );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Text */

    .story-content p {
        color: #b7c0cb;
        line-height: 2;
        font-size: 17px;
        margin-bottom: 20px;
    }

    /* Hover Effect */

    .story-content:hover {
        border-color: rgba(255,123,0,.4);
        box-shadow: 0 25px 70px rgba(255,123,0,.12);
    }

/* ================= RESPONSIVE ================= */

@media(max-width:991px) {

    .company-story {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-content {
        padding: 40px;
    }

        .story-content h2 {
            font-size: 42px;
        }

    .story-image::after {
        right: 20px;
        bottom: 20px;
    }
}

@media(max-width:768px) {

    .story-content {
        padding: 30px;
    }

        .story-content h2 {
            font-size: 34px;
        }

        .story-content p {
            font-size: 15px;
        }

    .story-image::after {
        font-size: 13px;
        padding: 15px 18px;
    }
}
/* ================= ABOUT HERO ================= */

.about-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 7%;
    position: relative;
    overflow: hidden;
    background: linear-gradient( rgba(5,12,22,.85), rgba(5,12,22,.92) ),  url('assest/image3.png');
    ;
    background-size: cover;
    background-position: center;
}

    /* Orange Glow */

    .about-hero::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(220px);
        opacity: .15;
        top: -100px;
        right: -100px;
    }

    /* Secondary Glow */

    .about-hero::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(180px);
        opacity: .08;
        bottom: -100px;
        left: -100px;
    }

/* Content Box */

.about-hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

    /* Small Label */

    .about-hero-content span {
        display: inline-block;
        color: #ff7b00;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 20px;
        position: relative;
    }

        /* Decorative Lines */

        .about-hero-content span::before,
        .about-hero-content span::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 60px;
            height: 2px;
            background: #ff7b00;
        }

        .about-hero-content span::before {
            left: -80px;
        }

        .about-hero-content span::after {
            right: -80px;
        }

    /* Heading */

    .about-hero-content h1 {
        font-size: clamp(48px,6vw,90px);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 30px;
        background: linear-gradient( 180deg, #ffffff, #cdd5df );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Paragraph */

    .about-hero-content p {
        max-width: 750px;
        margin: auto;
        color: #c4ccd6;
        font-size: 18px;
        line-height: 2;
    }

/* Glass Effect Card */

.about-hero-content {
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.06);
    padding: 60px;
    border-radius: 35px;
}

    /* Hover Effect */

    .about-hero-content:hover {
        border-color: rgba(255,123,0,.3);
        box-shadow: 0 30px 80px rgba(255,123,0,.10);
    }

/* ================= MOBILE ================= */

@media(max-width:768px) {

    .about-hero {
        min-height: 75vh;
        padding: 120px 5%;
    }

    .about-hero-content {
        padding: 35px;
    }

        .about-hero-content span::before,
        .about-hero-content span::after {
            display: none;
        }

        .about-hero-content p {
            font-size: 16px;
        }
}
.about-hero {
    animation: heroZoom 10s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

/* ================= PRODUCT HERO ================= */

.product-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 7%;
    position: relative;
    overflow: hidden;
    background: linear-gradient( rgba(7,17,31,.85), rgba(7,17,31,.95) ), url('https://images.unsplash.com/photo-1565008447742-97f6f38c985c?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

    /* Orange Glow */

    .product-hero::before {
        content: '';
        position: absolute;
        width: 550px;
        height: 550px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(220px);
        opacity: .15;
        top: -150px;
        right: -150px;
    }

    /* Secondary Glow */

    .product-hero::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(180px);
        opacity: .08;
        bottom: -100px;
        left: -100px;
    }

/* Glass Content Box */

.product-hero-content {
    max-width: 950px;
    position: relative;
    z-index: 2;
    padding: 70px;
    border-radius: 35px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.08);
}

    /* Small Label */

    .product-hero-content span {
        display: inline-block;
        color: #ff7b00;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 5px;
        text-transform: uppercase;
        margin-bottom: 25px;
        position: relative;
    }

        /* Decorative Lines */

        .product-hero-content span::before,
        .product-hero-content span::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 60px;
            height: 2px;
            background: #ff7b00;
        }

        .product-hero-content span::before {
            left: -80px;
        }

        .product-hero-content span::after {
            right: -80px;
        }

    /* Heading */

    .product-hero-content h1 {
        font-size: clamp(55px,7vw,95px);
        font-weight: 800;
        line-height: 1.05;
        margin-bottom: 30px;
        background: linear-gradient( 180deg, #ffffff, #cfd6de );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Paragraph */

    .product-hero-content p {
        max-width: 750px;
        margin: auto;
        color: #c3ccd6;
        font-size: 18px;
        line-height: 2;
    }

    /* Hover Effect */

    .product-hero-content:hover {
        border-color: rgba(255,123,0,.3);
        box-shadow: 0 25px 80px rgba(255,123,0,.12);
    }

/* Floating Animation */

.product-hero-content {
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Mobile */

@media(max-width:768px) {

    .product-hero {
        min-height: 80vh;
        padding: 120px 5%;
    }

    .product-hero-content {
        padding: 40px 25px;
    }

        .product-hero-content span::before,
        .product-hero-content span::after {
            display: none;
        }

        .product-hero-content p {
            font-size: 16px;
        }
}

/* ================= PRODUCT SHOWCASE ================= */

.product-showcase {
    padding: 120px 7%;
    position: relative;
}

    /* Background Glow */

    .product-showcase::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(220px);
        opacity: .08;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        pointer-events: none;
    }

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 35px;
    padding: 50px;
    overflow: hidden;
    position: relative;
}

    /* Decorative Glow */

    .product-card::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: #ff7b00;
        filter: blur(140px);
        opacity: .08;
        right: -100px;
        top: -100px;
    }

/* ================= IMAGE ================= */

.product-image {
    position: relative;
}

    .product-image img {
        width: 100%;
        border-radius: 25px;
        display: block;
        transition: .5s;
    }

/* Floating Effect */

.product-card:hover .product-image img {
    transform: scale(1.05) rotate(-2deg);
}

/* Border Frame */

.product-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255,123,0,.3);
    border-radius: 25px;
    z-index: -1;
}

/* ================= CONTENT ================= */

.product-info span {
    display: inline-block;
    color: #ff7b00;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product-info h2 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient( 180deg, #ffffff, #cfd6de );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-info p {
    color: #b7c0cb;
    line-height: 2;
    font-size: 17px;
    margin-bottom: 30px;
}

/* Features */

.product-info ul {
    list-style: none;
    margin-bottom: 35px;
}

    .product-info ul li {
        margin-bottom: 15px;
        color: #d6dde5;
        font-size: 16px;
        padding-left: 10px;
    }

/* Button */

.product-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient( 135deg, #ff7b00, #ff9d00 );
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
    box-shadow: 0 15px 35px rgba(255,123,0,.25);
}

    .product-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(255,123,0,.35);
    }

/* Hover Card */

.product-card:hover {
    border-color: rgba(255,123,0,.25);
    box-shadow: 0 30px 80px rgba(255,123,0,.10);
}

/* ================= MOBILE ================= */

@media(max-width:991px) {

    .product-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 35px;
    }

    .product-info h2 {
        font-size: 42px;
    }
}

@media(max-width:768px) {

    .product-showcase {
        padding: 80px 5%;
    }

    .product-info h2 {
        font-size: 34px;
    }

    .product-info p {
        font-size: 15px;
    }

    .product-btn {
        width: 100%;
        text-align: center;
    }
}
.product-info{
    position:relative;
}

.product-info::after{
    content:'01';

    position:absolute;

    right:0;
    top:-30px;

    font-size:180px;
    font-weight:800;

    color:rgba(255,255,255,.03);

    pointer-events:none;
}
/* ================= PRODUCT RANGE ================= */

.range-section {
    padding: 120px 7%;
    position: relative;
}

    .range-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(220px);
        opacity: .08;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

/* Grid */

.range-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 35px;
}

/* Cards */

.range-card {
    position: relative;
    overflow: hidden;
    padding: 45px 35px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    transition: .5s;
}

    /* Top Border */

    .range-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient( 90deg, #ff7b00, #ffb347 );
    }

    /* Huge Background Number */

    .range-card:nth-child(1)::after {
        content: '01';
    }

    .range-card:nth-child(2)::after {
        content: '02';
    }

    .range-card:nth-child(3)::after {
        content: '03';
    }

    .range-card:nth-child(4)::after {
        content: '04';
    }

    .range-card::after {
        position: absolute;
        right: 20px;
        bottom: -10px;
        font-size: 90px;
        font-weight: 800;
        color: rgba(255,255,255,.04);
    }

    /* Icons */

    .range-card i {
        font-size: 60px;
        color: #ff7b00;
        margin-bottom: 25px;
        transition: .4s;
    }

    /* Content */

    .range-card h3 {
        font-size: 28px;
        color: #fff;
        margin-bottom: 15px;
    }

    .range-card p {
        color: #bcc4ce;
        line-height: 1.9;
    }

    /* Hover */

    .range-card:hover {
        transform: translateY(-15px);
        border-color: rgba(255,123,0,.3);
        box-shadow: 0 25px 60px rgba(255,123,0,.15);
    }

        .range-card:hover i {
            transform: scale(1.15) rotate(8deg);
        }

        /* Orange Glow */

        .range-card:hover::before {
            box-shadow: 0 0 25px #ff7b00;
        }

/* Mobile */

@media(max-width:768px) {

    .range-section {
        padding: 80px 5%;
    }

    .range-card {
        padding: 35px 25px;
    }

        .range-card h3 {
            font-size: 22px;
        }

        .range-card i {
            font-size: 50px;
        }
}

/* ================= SPECIFICATION SECTION ================= */

.spec-section {
    padding: 120px 7%;
    position: relative;
}

    /* Orange Glow */

    .spec-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(220px);
        opacity: .08;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }


.product-spec {
    width: 90%;
    max-width: 1100px;
    margin: 60px auto;
}

.product-name {
    font-size: 40px;
    font-weight: 800;
    color: #2b2b2b;
    margin-bottom: 18px;
}

    .product-name span {
        color: #ff7b00;
    }

.spec-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #555;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.product-image {
    width: 220px;
    min-width: 220px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #fafafa;
    
}

    .product-image img {
        width: 140px;
        transition: .4s;
    }

        .product-image img:hover {
            transform: scale(1.08);
        }

.spec-card {
    position: relative;
}

    .spec-card::before {
        content: "";
        position: absolute;
        left: 220px; /* Adjust to match the image width */
        top: 0;
        bottom: 0;
        width: 2px;
        background: #666;
    }

.table-area {
    width: 100%;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr 1fr 1fr .8fr;
}

.table-header {
    background: #ff7b00;
    font-weight: 700;
    color: #fff;
}

    .table-header div {
        padding: 15px;
        border-right: 2px solid #555;
        text-align: center;
    }

        .table-header div:last-child {
            border-right: none;
        }

.table-row {
    border-top: 2px solid #555;
}

    .table-row div {
        padding: 15px;
        text-align: center;
        border-right: 2px solid #555;
        font-weight: 600;
        color: dimgrey;
    }

        .table-row div:last-child {
            border-right: none;
        }

        .table-row:nth-child(odd){
             background:#ffffff;
        }

    .table-row:nth-child(even) {
        background: #fff5f5;
    }

    .table-row:hover {
        background: #ffe5e5;
    }

/* ================= CATALOGUE SECTION ================= */

.catalogue-section {
    padding: 120px 7%;
    position: relative;
}

    /* Background Glow */

    .catalogue-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(220px);
        opacity: .08;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

/* Main Box */

.catalogue-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
    padding: 80px 60px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 35px;
    position: relative;
    overflow: hidden;
    transition: .4s;
}

    /* Decorative Glow */

    .catalogue-box::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(120px);
        opacity: .10;
        top: -150px;
        right: -150px;
    }

    /* PDF Icon */

    .catalogue-box::after {
        content: '📄';
        position: absolute;
        right: 30px;
        top: 20px;
        font-size: 100px;
        opacity: .05;
    }

    /* Heading */

    .catalogue-box h2 {
        font-size: 55px;
        font-weight: 800;
        margin-bottom: 20px;
        background: linear-gradient( 180deg, #ffffff, #cfd6de );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Paragraph */

    .catalogue-box p {
        max-width: 650px;
        margin: 0 auto 35px;
        color: #bcc4ce;
        line-height: 1.9;
        font-size: 17px;
    }

/* Button */

.catalogue-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient( 135deg, #ff7b00, #ff9d00 );
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(255,123,0,.25);
}

    .catalogue-btn::before {
        content: '⬇';
        font-size: 18px;
    }

    .catalogue-btn:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(255,123,0,.35);
    }

/* Hover Card */

.catalogue-box:hover {
    border-color: rgba(255,123,0,.3);
    box-shadow: 0 30px 80px rgba(255,123,0,.12);
}

/* Mobile */

@media(max-width:768px) {

    .catalogue-section {
        padding: 80px 5%;
    }

    .catalogue-box {
        padding: 50px 30px;
    }

        .catalogue-box h2 {
            font-size: 36px;
        }

        .catalogue-box p {
            font-size: 15px;
        }

    .catalogue-btn {
        width: 100%;
        justify-content: center;
    }
}
.catalogue-icon {
    font-size: 80px;
    color: #ff7b00;
    margin-bottom: 25px;
    display: block;
}

/* ================= DEALER CTA ================= */

.dealer-cta {
    padding: 100px 7%;
    margin: 120px 7%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, rgba(255,123,0,.15), rgba(255,123,0,.05) );
    border: 1px solid rgba(255,123,0,.15);
    backdrop-filter: blur(20px);
    border-radius: 35px;
}

    /* Orange Glow */

    .dealer-cta::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(180px);
        opacity: .15;
        top: -150px;
        right: -150px;
    }

    /* Second Glow */

    .dealer-cta::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(160px);
        opacity: .08;
        bottom: -120px;
        left: -120px;
    }

    /* Heading */

    .dealer-cta h2 {
        position: relative;
        z-index: 2;
        font-size: clamp(42px,5vw,70px);
        font-weight: 800;
        margin-bottom: 20px;
        background: linear-gradient( 180deg, #ffffff, #d0d8e1 );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Paragraph */

    .dealer-cta p {
        position: relative;
        z-index: 2;
        max-width: 700px;
        margin: auto auto 35px;
        color: #c3ccd6;
        font-size: 18px;
        line-height: 1.9;
    }

    /* Button */

    .dealer-cta .btn {
        position: relative;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 18px 45px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: .4s;
    }

        /* Icon */

        .dealer-cta .btn::before {
            content: '🤝';
        }

        /* Hover */

        .dealer-cta .btn:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 60px rgba(255,123,0,.35);
        }

/* Floating Animation */

.dealer-cta {
    animation: dealerFloat 6s ease-in-out infinite;
}

@keyframes dealerFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Mobile */

@media(max-width:768px) {

    .dealer-cta {
        margin: 80px 5%;
        padding: 70px 30px;
    }

        .dealer-cta h2 {
            font-size: 34px;
        }

        .dealer-cta p {
            font-size: 15px;
        }

        .dealer-cta .btn {
            width: 100%;
            justify-content: center;
        }
}
.dealer-cta span {
    display: inline-block;
    color: #ff7b00;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.dealer-cta h2::after {
    content: 'PARTNER';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 140px;
    font-weight: 800;
    color: rgba(255,255,255,.03);
    z-index: -1;
    pointer-events: none;
}

/* ================= CONTACT HERO ================= */

.contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 7%;
    position: relative;
    overflow: hidden;
    background: linear-gradient( rgba(7,17,31,.85), rgba(7,17,31,.95) ), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

    /* Orange Glow Effects */

    .contact-hero::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 400px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(250px);
        opacity: .15;
        top: -200px;
        right: -150px;
    }

    .contact-hero::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 250px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(180px);
        opacity: .08;
        bottom: -100px;
        left: -100px;
    }

/* Content Box */

.contact-hero-content {
    max-width: 950px;
    position: relative;
    z-index: 2;
    padding: 60px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 35px;
    transition: .4s;
}

    /* Small Label */

    .contact-hero-content span {
        display: inline-block;
        color: #ff7b00;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 5px;
        text-transform: uppercase;
        margin-bottom: 20px;
        position: relative;
    }

        .contact-hero-content span::before,
        .contact-hero-content span::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 60px;
            height: 2px;
            background: #ff7b00;
        }

        .contact-hero-content span::before {
            left: -80px;
        }

        .contact-hero-content span::after {
            right: -80px;
        }

    /* Main Heading */

    .contact-hero-content h1 {
        font-size: clamp(50px,7vw,55px);
        font-weight: 600;
        line-height: 1.1;
        margin-bottom: 30px;
        background: linear-gradient( 180deg, #ffffff, #cfd6de );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Description */

    .contact-hero-content p {
        max-width: 700px;
        margin: auto;
        color: #c3ccd6;
        font-size: 16px;
        line-height: 2;
    }

    /* Hover Effect */

    .contact-hero-content:hover {
        border-color: rgba(255,123,0,.35);
        box-shadow: 0 30px 80px rgba(255,123,0,.12);
    }

/* Floating Animation */

.contact-hero-content {
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Mobile */

@media(max-width:768px) {

    .contact-hero {
        min-height: 80vh;
        padding: 120px 5%;
    }

    .contact-hero-content {
        padding: 40px 25px;
    }

        .contact-hero-content span::before,
        .contact-hero-content span::after {
            display: none;
        }

        .contact-hero-content p {
            font-size: 16px;
        }
}
/* ================= CONTACT CARDS ================= */

.contact-cards {
    padding: 100px 7%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    position: relative;
}

    /* Background Glow */

    .contact-cards::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(220px);
        opacity: .08;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        pointer-events: none;
    }

/* Card */

.contact-card {
    position: relative;
    overflow: hidden;
    padding: 45px 35px;
    text-align: center;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    transition: .5s;
}

    /* Top Orange Border */

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient( 90deg, #ff7b00, #ffb347 );
    }

    /* Icon Circle */

    .contact-card i {
        width: 90px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 36px;
        color: #ff7b00;
        border-radius: 50%;
        background: rgba(255,123,0,.08);
        border: 1px solid rgba(255,123,0,.25);
        transition: .4s;
    }

    /* Title */

    .contact-card h3 {
        color: #fff;
        font-size: 26px;
        margin-bottom: 15px;
    }

    /* Text */

    .contact-card p {
        color: #bcc4ce;
        line-height: 1.8;
        font-size: 15px;
    }

    /* Hover */

    .contact-card:hover {
        transform: translateY(-15px);
        border-color: rgba(255,123,0,.3);
        box-shadow: 0 25px 60px rgba(255,123,0,.15);
    }

        .contact-card:hover i {
            background: #ff7b00;
            color: #fff;
            transform: rotate(12deg) scale(1.1);
        }

    /* Card Number Watermark */

    .contact-card:nth-child(1)::after {
        content: '01';
    }

    .contact-card:nth-child(2)::after {
        content: '02';
    }

    .contact-card:nth-child(3)::after {
        content: '03';
    }

    .contact-card:nth-child(4)::after {
        content: '04';
    }

    .contact-card::after {
        position: absolute;
        right: 20px;
        bottom: -10px;
        font-size: 90px;
        font-weight: 800;
        color: rgba(255,255,255,.03);
        pointer-events: none;
    }

/* Floating Animation */

.contact-card {
    animation: cardFloat 6s ease-in-out infinite;
}

    .contact-card:nth-child(2) {
        animation-delay: .5s;
    }

    .contact-card:nth-child(3) {
        animation-delay: 1s;
    }

    .contact-card:nth-child(4) {
        animation-delay: 1.5s;
    }

@keyframes cardFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Mobile */

@media(max-width:768px) {

    .contact-cards {
        padding: 80px 5%;
    }

    .contact-card {
        padding: 35px 25px;
    }

        .contact-card h3 {
            font-size: 22px;
        }

        .contact-card i {
            width: 75px;
            height: 75px;
            font-size: 30px;
        }
}

/* ================= CONTACT WRAPPER ================= */

.contact-wrapper {
    padding: 120px 7%;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
    position: relative;
}

    /* Orange Glow Background */

    .contact-wrapper::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(220px);
        opacity: .08;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        pointer-events: none;
    }

/* ================= FORM ================= */

.contact-form {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    z-index: 2;
    transition: .4s;
}

    .contact-form:hover {
        border-color: rgba(255,123,0,.35);
        box-shadow: 0 25px 70px rgba(255,123,0,.12);
    }

    .contact-form h2 {
        font-size: 42px;
        margin-bottom: 35px;
        color: #fff;
    }

    /* Inputs */

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        padding: 18px 22px;
        margin-bottom: 20px;
        border-radius: 15px;
        border: 1px solid rgba(255,255,255,.08);
        background: rgba(255,255,255,.03);
        color: #fff;
        outline: none;
        font-size: 15px;
        transition: .3s;
    }

    .contact-form textarea {
        min-height: 160px;
        resize: none;
    }

    .contact-form select option {
        background: #101c2d;
        color: #fff;
    }

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
        border-color: #ff7b00;
        box-shadow: 0 0 25px rgba(255,123,0,.15);
    }

    /* Button */

    .contact-form button {
        width: 100%;
        padding: 18px;
        border: none;
        border-radius: 50px;
        background: linear-gradient(135deg,#ff7b00,#ff9d00);
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: .4s;
        box-shadow: 0 15px 35px rgba(255,123,0,.25);
    }

        .contact-form button:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(255,123,0,.35);
        }

/* ================= RIGHT SIDE ================= */

.contact-side {
    background: linear-gradient( 135deg, rgba(255,123,0,.15), rgba(255,123,0,.05) );
    border: 1px solid rgba(255,123,0,.15);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

    .contact-side::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(140px);
        opacity: .12;
        top: -100px;
        right: -100px;
    }

    .contact-side h2 {
        font-size: 38px;
        margin-bottom: 35px;
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .contact-side ul {
        list-style: none;
        position: relative;
        z-index: 2;
    }

        .contact-side ul li {
            padding: 18px 20px;
            margin-bottom: 15px;
            border-radius: 15px;
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.06);
            color: #d9d9d9;
            transition: .3s;
            font-size: 16px;
        }

            .contact-side ul li:hover {
                transform: translateX(10px);
                border-color: rgba(255,123,0,.3);
                color: #fff;
            }

/* ================= MOBILE ================= */

@media(max-width:991px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .contact-side {
        padding: 40px 30px;
    }
}

@media(max-width:768px) {

    .contact-wrapper {
        padding: 80px 5%;
    }

    .contact-form h2,
    .contact-side h2 {
        font-size: 30px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .contact-side {
        padding: 30px 25px;
    }
}

/* ================= FACILITY SECTION ================= */

.facility-section {
    padding: 120px 7%;
    position: relative;
}

    .facility-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(220px);
        opacity: .08;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        pointer-events: none;
    }

/* Grid */

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

/* Card */

.facility-box {
    position: relative;
    overflow: hidden;
    padding: 50px 40px;
    border-radius: 30px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    transition: .5s;
}

    /* Top Orange Border */

    .facility-box::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient( 90deg, #ff7b00, #ffb347 );
    }

    /* Background Number */

    .facility-box:nth-child(1)::after {
        content: '01';
    }

    .facility-box:nth-child(2)::after {
        content: '02';
    }

    .facility-box:nth-child(3)::after {
        content: '03';
    }

    .facility-box::after {
        position: absolute;
        right: 20px;
        bottom: -10px;
        font-size: 90px;
        font-weight: 800;
        color: rgba(255,255,255,.04);
    }

    /* Hover */

    .facility-box:hover {
        transform: translateY(-15px);
        border-color: rgba(255,123,0,.3);
        box-shadow: 0 25px 60px rgba(255,123,0,.15);
    }

    /* Heading */

    .facility-box h3 {
        font-size: 28px;
        color: #fff;
        margin-bottom: 18px;
        position: relative;
        z-index: 2;
    }

    /* Description */

    .facility-box p {
        color: #bcc4ce;
        line-height: 1.9;
        font-size: 16px;
        position: relative;
        z-index: 2;
    }

    /* Orange Glow */

    .facility-box .glow {
        position: absolute;
        width: 200px;
        height: 200px;
        background: #ff7b00;
        filter: blur(100px);
        opacity: .08;
        top: -100px;
        right: -100px;
    }

/* Mobile */

@media(max-width:768px) {

    .facility-section {
        padding: 80px 5%;
    }

    .facility-box {
        padding: 40px 25px;
    }

        .facility-box h3 {
            font-size: 22px;
        }

        .facility-box::after {
            font-size: 60px;
        }
}
.facility-box i {
    font-size: 60px;
    color: #ff7b00;
    margin-bottom: 25px;
    display: block;
    transition: .4s;
}

.facility-box:hover i {
    transform: scale(1.15) rotate(8deg);
}

/* ================= FAQ SECTION ================= */

.faq-section {
    padding: 120px 7%;
    position: relative;
}

    .faq-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(220px);
        opacity: .08;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        pointer-events: none;
    }

/* FAQ BOX */

.faq-box {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 25px;
    transition: .4s;
    position: relative;
    overflow: hidden;
}

    .faq-box::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 100%;
        background: #ff7b00;
    }

    .faq-box:hover {
        transform: translateY(-8px);
        border-color: rgba(255,123,0,.3);
        box-shadow: 0 20px 50px rgba(255,123,0,.12);
    }

    .faq-box h3 {
        font-size: 24px;
        color: #fff;
        margin-bottom: 15px;
        padding-right: 40px;
        position: relative;
    }

        .faq-box h3::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 0;
            color: #ff7b00;
            font-size: 30px;
            font-weight: 700;
        }

    .faq-box p {
        color: #bcc4ce;
        line-height: 1.9;
        font-size: 16px;
    }

/* Mobile */

@media(max-width:768px) {

    .faq-section {
        padding: 80px 5%;
    }

    .faq-box {
        padding: 25px 20px;
    }

        .faq-box h3 {
            font-size: 20px;
        }

        .faq-box p {
            font-size: 15px;
        }
}
.faq-box p {
    max-height: 0;
    overflow: hidden;
    transition: .4s;
}

.faq-box.active p {
    max-height: 200px;
    margin-top: 15px;
}

.faq-box.active h3::after {
    content: '−';
}
/* ================= CTA ================= */

.contact-cta {
    margin: 120px 7%;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background: #0d1523;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
}

    /* Orange Side Strip */

    .contact-cta::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 8px;
        height: 100%;
        background: #ff7b00;
    }

    /* Orange Glow */

    .contact-cta::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(180px);
        opacity: .12;
        right: -150px;
        top: 50%;
        transform: translateY(-50%);
    }

/* Content */

.cta-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

    .cta-content span {
        color: #ff7b00;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .cta-content h2 {
        font-size: 60px;
        line-height: 1.1;
        color: #fff;
        margin: 20px 0;
    }

    .cta-content p {
        color: #bcc4ce;
        font-size: 18px;
        line-height: 1.8;
    }

/* Button */

.cta-action {
    position: relative;
    z-index: 2;
}

    .cta-action a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 220px;
        height: 70px;
        border-radius: 60px;
        background: #ff7b00;
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
        transition: .4s;
    }

        .cta-action a:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255,123,0,.35);
        }

/* Mobile */

@media(max-width:991px) {

    .contact-cta {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .cta-content h2 {
        font-size: 42px;
    }
}

/* ================= SERVICES HERO ================= */

.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 7%;
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, #07111f 0%, #0f1d32 100% );
}

    /* Orange Glow */

    .service-hero::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(250px);
        opacity: .12;
        top: -200px;
        right: -150px;
    }

    .service-hero::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(200px);
        opacity: .08;
        bottom: -150px;
        left: -150px;
    }

/* Content */

.service-hero-content {
    max-width: 850px;
    text-align: center;
    position: relative;
    z-index: 2;
}

    /* Badge */

    .service-hero-content span {
        display: inline-block;
        padding: 12px 28px;
        border-radius: 50px;
        background: rgba(255,123,0,.08);
        border: 1px solid rgba(255,123,0,.2);
        color: #ff7b00;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 30px;
    }

    /* Heading */

    .service-hero-content h1 {
        font-size: clamp(50px,6vw,90px);
        line-height: 1.05;
        font-weight: 800;
        color: #fff;
        margin-bottom: 25px;
    }

    /* Paragraph */

    .service-hero-content p {
        max-width: 700px;
        margin: auto;
        font-size: 18px;
        line-height: 1.9;
        color: #b8c2cc;
        margin-bottom: 40px;
    }

    /* Button */

    .service-hero-content a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 18px 40px;
        border-radius: 60px;
        background: linear-gradient( 135deg, #ff7b00, #ff9d00 );
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        transition: .4s;
        box-shadow: 0 15px 35px rgba(255,123,0,.25);
    }

        .service-hero-content a:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 60px rgba(255,123,0,.35);
        }

    /* Watermark */

    .service-hero-content h1::after {
        content: 'SERVICES';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        font-size: 180px;
        font-weight: 900;
        color: rgba(255,255,255,.03);
        z-index: -1;
        white-space: nowrap;
    }

/* Mobile */

@media(max-width:768px) {

    .service-hero {
        min-height: 80vh;
        padding: 100px 5%;
    }

    .service-hero-content h1 {
        font-size: 42px;
    }

    .service-hero-content p {
        font-size: 15px;
    }

    .service-hero-content a {
        width: 100%;
    }

    .service-hero-content h1::after {
        font-size: 80px;
    }
}
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #ff7b00;
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}
/* ================= SERVICES SECTION ================= */

.services-section {
    padding: 120px 7%;
    position: relative;
    overflow: hidden;
}

    .services-section::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(250px);
        opacity: .06;
        top: -200px;
        right: -200px;
    }

/* Grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Card */

.service-card {
    position: relative;
    overflow: hidden;
    padding: 45px 35px;
    background: #0f1827;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 30px;
    transition: .5s;
}

    /* Hover Glow */

    .service-card::before {
        content: '';
        position: absolute;
        width: 220px;
        height: 220px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0;
        top: -100px;
        right: -100px;
        transition: .5s;
    }

    .service-card:hover::before {
        opacity: .12;
    }

    .service-card:hover {
        transform: translateY(-12px);
        border-color: rgba(255,123,0,.25);
        box-shadow: 0 25px 50px rgba(0,0,0,.25);
    }

    /* Icon */

    .service-card i {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: #ff7b00;
        border-radius: 20px;
        background: rgba(255,123,0,.08);
        margin-bottom: 25px;
        transition: .4s;
    }

    .service-card:hover i {
        transform: rotate(-10deg) scale(1.1);
    }

    /* Heading */

    .service-card h3 {
        color: #fff;
        font-size: 26px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    /* Text */

    .service-card p {
        color: #b8c2cc;
        line-height: 1.9;
        font-size: 15px;
    }

    /* Number Effect */

    .service-card:nth-child(1)::after {
        content: '01';
    }

    .service-card:nth-child(2)::after {
        content: '02';
    }

    .service-card:nth-child(3)::after {
        content: '03';
    }

    .service-card:nth-child(4)::after {
        content: '04';
    }

    .service-card:nth-child(5)::after {
        content: '05';
    }

    .service-card:nth-child(6)::after {
        content: '06';
    }

    .service-card::after {
        position: absolute;
        right: 25px;
        bottom: 10px;
        font-size: 70px;
        font-weight: 800;
        color: rgba(255,255,255,.03);
        pointer-events: none;
    }

/* Mobile */

@media(max-width:768px) {

    .services-section {
        padding: 80px 5%;
    }

    .service-card {
        padding: 35px 25px;
    }

        .service-card h3 {
            font-size: 22px;
        }

        .service-card i {
            width: 70px;
            height: 70px;
            font-size: 28px;
        }
}

/* ================= INDUSTRIES SECTION ================= */

.industries {
    padding: 120px 7%;
    position: relative;
    overflow: hidden;
}

    /* Background Glow */

    .industries::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(220px);
        opacity: .06;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

/* Grid */

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

    /* Industry Card */

    .industry-grid div {
        position: relative;
        padding: 35px 30px;
        background: #0f1827;
        border: 1px solid rgba(255,255,255,.06);
        border-radius: 25px;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        transition: .4s;
        overflow: hidden;
    }

        /* Orange Border */

        .industry-grid div::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 5px;
            height: 100%;
            background: #ff7b00;
        }

        /* Hover Effect */

        .industry-grid div:hover {
            transform: translateY(-10px);
            border-color: rgba(255,123,0,.25);
            box-shadow: 0 20px 50px rgba(0,0,0,.2), 0 0 40px rgba(255,123,0,.08);
        }

        /* Number Effect */

        .industry-grid div:nth-child(1)::after {
            content: '01';
        }

        .industry-grid div:nth-child(2)::after {
            content: '02';
        }

        .industry-grid div:nth-child(3)::after {
            content: '03';
        }

        .industry-grid div:nth-child(4)::after {
            content: '04';
        }

        .industry-grid div:nth-child(5)::after {
            content: '05';
        }

        .industry-grid div:nth-child(6)::after {
            content: '06';
        }

        .industry-grid div::after {
            position: absolute;
            right: 20px;
            bottom: 5px;
            font-size: 60px;
            font-weight: 800;
            color: rgba(255,255,255,.03);
            pointer-events: none;
        }

/* Mobile */

@media(max-width:768px) {

    .industries {
        padding: 80px 5%;
    }

    .industry-grid {
        gap: 20px;
    }

        .industry-grid div {
            padding: 28px 22px;
            font-size: 16px;
        }
}
.industry-grid div i {
    color: #ff7b00;
    font-size: 22px;
    margin-right: 12px;
}
/* ================= BENEFITS SECTION ================= */

.service-benefits {
    padding: 120px 7%;
    position: relative;
    overflow: hidden;
}

    .service-benefits::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(250px);
        opacity: .06;
        top: -200px;
        left: -200px;
    }

/* Grid */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Card */

.benefit-card {
    position: relative;
    overflow: hidden;
    padding: 45px 35px;
    background: linear-gradient( 180deg, rgba(255,255,255,.04), rgba(255,255,255,.02) );
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    transition: .5s;
}

    /* Top Orange Line */

    .benefit-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient( 90deg, #ff7b00, #ffb347 );
    }

    /* Hover Glow */

    .benefit-card::after {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0;
        top: -120px;
        right: -120px;
        transition: .5s;
    }

    .benefit-card:hover::after {
        opacity: .12;
    }

    .benefit-card:hover {
        transform: translateY(-12px);
        border-color: rgba(255,123,0,.25);
        box-shadow: 0 25px 50px rgba(0,0,0,.25);
    }

    /* Number Background */

    .benefit-card:nth-child(1) .number {
        content: '01';
    }

    .benefit-card:nth-child(2) .number {
        content: '02';
    }

    .benefit-card:nth-child(3) .number {
        content: '03';
    }

    .benefit-card:nth-child(4) .number {
        content: '04';
    }

    /* Heading */

    .benefit-card h3 {
        font-size: 26px;
        color: #fff;
        margin-bottom: 15px;
        position: relative;
        z-index: 2;
    }

    /* Paragraph */

    .benefit-card p {
        color: #b8c2cc;
        line-height: 1.9;
        font-size: 15px;
        position: relative;
        z-index: 2;
    }

    /* Large Background Number */

    .benefit-card span {
        position: absolute;
        right: 25px;
        bottom: 10px;
        font-size: 70px;
        font-weight: 800;
        color: rgba(255,255,255,.03);
        pointer-events: none;
    }

/* Mobile */

@media(max-width:768px) {

    .service-benefits {
        padding: 80px 5%;
    }

    .benefits-grid {
        gap: 20px;
        margin-top: 40px;
    }

    .benefit-card {
        padding: 35px 25px;
    }

        .benefit-card h3 {
            font-size: 22px;
        }
}
/* ================= SERVICE CTA ================= */

.service-cta {
    padding: 80px 7%;
    margin: 120px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
    background: #0f1827;
    border-radius: 35px;
    border: 1px solid rgba(255,255,255,.06);
}

    /* Orange Accent */

    .service-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient( 90deg, #ff7b00, #ffb347 );
    }

    /* Watermark */

    .service-cta::after {
        content: '24/7';
        position: absolute;
        right: 40px;
        bottom: -20px;
        font-size: 140px;
        font-weight: 900;
        color: rgba(255,255,255,.03);
        pointer-events: none;
    }

/* Left Content */

.cta-left {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

    .cta-left span {
        display: inline-block;
        color: #ff7b00;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .cta-left h2 {
        color: #fff;
        font-size: 60px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .cta-left p {
        color: #b8c2cc;
        font-size: 17px;
        line-height: 1.9;
    }

/* Button Area */

.cta-right {
    position: relative;
    z-index: 2;
}

    .cta-right a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 220px;
        height: 70px;
        border-radius: 60px;
        text-decoration: none;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        background: linear-gradient( 135deg, #ff7b00, #ff9d00 );
        transition: .4s;
        box-shadow: 0 15px 35px rgba(255,123,0,.25);
    }

        .cta-right a:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(255,123,0,.35);
        }

/* Mobile */

@media(max-width:991px) {

    .service-cta {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
        margin: 80px 5%;
    }

    .cta-left h2 {
        font-size: 40px;
    }

    .cta-right {
        width: 100%;
    }

        .cta-right a {
            width: 100%;
        }

    .service-cta::after {
        font-size: 80px;
        right: 20px;
    }
}

/*==============================
    PRODUCT VIDEO GALLERY
==============================*/

.video-gallery {
    padding: 90px 7%;
    background: #07111f;
    position: relative;
    overflow: hidden;
}

    .video-gallery::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        background: #ff2b2b15;
        border-radius: 50%;
        top: -180px;
        left: -120px;
        filter: blur(80px);
    }

    .video-gallery::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #0047ff10;
        border-radius: 50%;
        bottom: -120px;
        right: -80px;
        filter: blur(70px);
    }

/*==============================
    Grid
==============================*/

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(290px,1fr));
    gap: 28px;
    position: relative;
    z-index: 2;
}

/*==============================
    Card
==============================*/

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: .45s;
}

    .video-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 55px rgba(227,28,36,.18);
    }

    /*==============================
    VIDEO SIZE
==============================*/

    .video-card video {
        width: 100%;
        height: 260px; /* Smaller video */

        object-fit: cover;
        display: block;
        transition: .6s;
    }

    .video-card:hover video {
        transform: scale(1.08);
    }

    /*==============================
    Overlay
==============================*/

    .video-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0,0,0,.75), rgba(0,0,0,.15), transparent);
    }

/*==============================
    Play Button
==============================*/

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #e31c24;
    z-index: 3;
    transition: .4s;
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
}

    .play-btn::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid #fff;
        animation: pulse 2s infinite;
    }

@keyframes pulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.video-card:hover .play-btn {
    transform: translate(-50%,-50%) scale(1.12);
}

/*==============================
    Product Info
==============================*/

.video-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
    z-index: 4;
}

    .video-info h3 {
        color: #fff;
        font-size: 20px;
        margin-bottom: 6px;
    }

    .video-info p {
        color: #ddd;
        font-size: 14px;
    }

/*==============================
    Modal
==============================*/

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(10px);
}

    .video-modal video {
        width: 30%;
        max-width: 800px;
        border-radius: 20px;
        border: 4px solid white;
        box-shadow: 0 30px 80px rgba(0,0,0,.45);
    }

.close-video {
    position: absolute;
    top: 25px;
    right: 45px;
    font-size: 48px;
    color: white;
    cursor: pointer;
    transition: .3s;
}

    .close-video:hover {
        color: #ff2b2b;
        transform: rotate(90deg);
    }

/*=========================================
        PREMIUM FOOTER
=========================================*/

.footer {
    position: relative;
    margin-top: 2px;
    background: #07111f;
    color: #fff;
    overflow: hidden;
}

    .footer::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: #e31c2410;
        border-radius: 50%;
        filter: blur(100px);
        top: -200px;
        left: -150px;
    }

    .footer::after {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        background: #ffffff08;
        border-radius: 50%;
        filter: blur(120px);
        bottom: -180px;
        right: -120px;
        pointer-events: none;
    }

/*================ MAIN =================*/

.footer-main {
    width: 90%;
    margin: auto;
    padding: 110px 0 70px;
    text-align: center;
    position: relative;
}

/* Watermark */

.footer-watermark {
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    font-size: 170px;
    font-weight: 800;
    color: rgba(255,255,255,.03);
    letter-spacing: 18px;
    user-select: none;
}

/* Logo */

.footer-logo {
    width: 180px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.footer-desc {
    max-width: 700px;
    margin: auto;
    color: #bfc7d2;
    line-height: 1.9;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/*================ CONTACT =================*/

.footer-contact {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.contact-box {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 30px;
    transition: .4s;
}

    .contact-box:hover {
        transform: translateY(-10px);
        border-color: #ff7b00;
        box-shadow: 0 20px 50px rgba(227,28,36,.2);
    }

    .contact-box i {
        font-size: 30px;
        color: #ff7b00;
        margin-bottom: 18px;
    }

    .contact-box h4 {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .contact-box p {
        color: #c9d2dc;
        line-height: 1.7;
    }

/*================ SOCIAL =================*/

.footer-social {
    margin-top: 55px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

    .footer-social a {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        transition: .4s;
        font-size: 18px;
    }

        .footer-social a:hover {
            background: #ff7b00;
            transform: translateY(-8px) rotate(360deg);
        }

/*================ BOTTOM =================*/

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #aeb8c4;
    font-size: 15px;
    position: relative;
    z-index: 10;
}

    .footer-bottom span {
        color: #e31c24;
        font-weight: 600;
    }

/*================ MOBILE =================*/

@media(max-width:992px) {

    .footer-contact {
        grid-template-columns: 1fr;
    }

    .footer-watermark {
        font-size: 90px;
        letter-spacing: 8px;
    }
}

@media(max-width:768px) {

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-red,
    .btn-white {
        text-align: center;
    }
}
.footer-link {
    color: #E31C24;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 9999;
}

    .footer-link:hover {
        color: #ff7b00;
        text-decoration: underline;
    }