/********** Template CSS **********/

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 3px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 15px 0;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 0;
    outline: none;
    color: var(--bs-secondary);
	gap: 20;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .sticky-top {
        background: var(--bs-primary);
    }

    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    position: relative;
    margin-top: -100px;
    padding-top: 150px;
    overflow: hidden;
    background: rgba(216, 19, 36, 0.9);
}

.hero-header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/hero-header-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: animateUpDown 8s ease infinite;
    z-index: -1;
}

@keyframes animateUpDown { 
    0% { 
        top: 0px;
        left: 0px;
    }
    25% { 
        top: -15px;
        left: 15px;
    }
    50% { 
        top: 0px;
        left: 30px;
    }
    75% { 
        top: 15px;
        left: 15px;
    }
    100% { 
        top: 0px;
        left: 0px;
    }
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-light);
}



/*====================================
        AI HERO SECTION
        Luxury Dark Orange Theme
====================================*/

.ai-hero{

    position:relative;

    overflow:hidden;

    background:

    /* 40% Orange Luxury Glow */

    radial-gradient(
    circle at 85% 15%,
    rgba(244,123,33,.40),
    transparent 35%
    ),

    radial-gradient(
    circle at 15% 85%,
    rgba(244,123,33,.30),
    transparent 35%
    ),

    /* 20% Charcoal Layer */

    linear-gradient(
    135deg,
    #151515 0%,
    #151515 25%,
    transparent 60%
    ),

    /* 40% Premium Black Base */

    linear-gradient(
    135deg,
    #050505 0%,
    #0a0a0a 100%
    );

}


/*====================================
        BACKGROUND GLOW
====================================*/

.ai-hero::before{

    content:'';

    position:absolute;

    width:700px;

    height:700px;

    left:-250px;

    bottom:-250px;

    background:

    radial-gradient(
    circle,
    rgba(244,123,33,.55),
    transparent 65%
    );

    filter:blur(120px);

    opacity:.65;

}


.ai-hero::after{

    content:'';

    position:absolute;

    width:650px;

    height:650px;

    right:-250px;

    top:-250px;

    background:

    radial-gradient(
    circle,
    rgba(244,123,33,.45),
    transparent 65%
    );

    filter:blur(120px);

    opacity:.55;

}



/*====================================
        SWIPER SLIDE
====================================*/

.ai-hero .swiper-slide{

    min-height:100vh;

    display:flex;

    align-items:center;

}


.ai-hero .container{

    position:relative;

    z-index:5;

}



/*====================================
        HERO TAG
====================================*/

.hero-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(244,123,33,.10);

    border:1px solid rgba(244,123,33,.35);

    color:#f47b21;

    letter-spacing:2px;

    font-weight:700;

    font-size:14px;

    margin-bottom:20px;

}



/*====================================
        HEADING
====================================*/

.ai-hero h1{

    color:#ffffff;

    font-size:64px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

}


.ai-hero h1 span{

    color:#f47b21;

}



/*====================================
        PARAGRAPH
====================================*/

.ai-hero p{

    color:#d0d0d0;

    font-size:18px;

    line-height:34px;

    max-width:560px;

    margin-bottom:40px;

}



/*====================================
        BUTTONS
====================================*/

.hero-btns{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}


.btn-orange{

    display:inline-block;

    padding:16px 38px;

    background:#f47b21;

    color:#ffffff;

    text-decoration:none;

    border-radius:50px;

    font-weight:700;

    transition:.4s;

    box-shadow:
    0 0 30px rgba(244,123,33,.40);

}


.btn-orange:hover{

    background:#ffffff;

    color:#111111;

    transform:translateY(-4px);

}


.btn-outline{

    display:inline-block;

    padding:16px 38px;

    border:2px solid rgba(255,255,255,.15);

    color:#ffffff;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.4s;

}


.btn-outline:hover{

    background:#f47b21;

    border-color:#f47b21;

    color:#ffffff;

}



/*====================================
        IMAGE
====================================*/

.hero-img{

    position:relative;

    text-align:center;

}


.hero-img img{

    max-width:100%;

    animation:floating 5s ease-in-out infinite;

    filter:
    drop-shadow(0 0 50px rgba(244,123,33,.45));

}



/*====================================
        FLOATING ANIMATION
====================================*/

@keyframes floating{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0);
    }

}



/*====================================
        TEXT ANIMATION
====================================*/

.swiper-slide-active .hero-tag{

    animation:fadeUp .6s ease;

}


.swiper-slide-active h1{

    animation:fadeUp .9s ease;

}


.swiper-slide-active p{

    animation:fadeUp 1.2s ease;

}


.swiper-slide-active .hero-btns{

    animation:fadeUp 1.5s ease;

}


.swiper-slide-active .hero-img{

    animation:fadeUp 1.2s ease;

}


@keyframes fadeUp{

    0%{

        opacity:0;

        transform:translateY(50px);

    }

    100%{

        opacity:1;

        transform:translateY(0);

    }

}



/*====================================
        PAGINATION
====================================*/

.swiper-pagination{

    bottom:35px !important;

}


.swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#555555;

    opacity:1;

    transition:.4s;

}


.swiper-pagination-bullet-active{

    width:40px;

    border-radius:30px;

    background:#f47b21;

    box-shadow:
    0 0 20px rgba(244,123,33,.60);

}



/*====================================
        NAVIGATION ARROWS
====================================*/

.swiper-button-next,
.swiper-button-prev{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border:1px solid rgba(244,123,33,.15);

    transition:.4s;

}


.swiper-button-next:hover,
.swiper-button-prev:hover{

    background:#f47b21;

    border-color:#f47b21;

}


.swiper-button-next::after,
.swiper-button-prev::after{

    font-size:18px;

    color:#ffffff;

    font-weight:700;

}



/*====================================
        RESPONSIVE
====================================*/

@media(max-width:1200px){

    .ai-hero h1{

        font-size:55px;

    }

}


@media(max-width:991px){

    .ai-hero .swiper-slide{

        min-height:auto;

        padding:120px 0 80px;

        text-align:center;

    }

    .hero-img{

        margin-top:50px;

    }

    .ai-hero h1{

        font-size:44px;

    }

    .ai-hero p{

        margin:0 auto 35px;

    }

    .hero-btns{

        justify-content:center;

    }

}


@media(max-width:767px){

    .ai-hero h1{

        font-size:34px;

    }

    .ai-hero p{

        font-size:16px;

        line-height:28px;

    }

    .hero-tag{

        font-size:13px;

        letter-spacing:1px;

    }

    .btn-orange,
    .btn-outline{

        width:100%;

        text-align:center;

        padding:15px;

    }

    .hero-btns{

        gap:12px;

    }

    .hero-img img{

        width:90%;

    }

    .ai-hero::before{

        width:450px;

        height:450px;

        left:-120px;

        bottom:-120px;

    }

    .ai-hero::after{

        width:350px;

        height:350px;

    }

}


@media(max-width:480px){

    .ai-hero h1{

        font-size:28px;

    }

    .ai-hero p{

        font-size:15px;

        line-height:26px;

    }

    .hero-img img{

        width:100%;

    }

}


/*=========================================
PREMIUM ABOUT SECTION
70% DARK + 30% ORANGE GRADIENT
Primary : #f47b21
Dark    : #0a0a0a
=========================================*/

.about-area{
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background:

    /* 40% Orange Glow */
    radial-gradient(
    circle at 80% 20%,
    rgba(244,123,33,.45),
    transparent 40%
    ),

    radial-gradient(
    circle at 20% 80%,
    rgba(244,123,33,.30),
    transparent 35%
    ),


    /* 20% Charcoal Layer */
    linear-gradient(
    135deg,
    #151515 0%,
    #151515 25%,
    transparent 55%
    ),


    /* 40% Black Base */
    linear-gradient(
    135deg,
    #050505 0%,
    #0a0a0a 100%
    );


}

/* Decorative Glow */

.about-area::before{
    content:'';
    position:absolute;
    top:-180px;
    right:-120px;
    width:550px;
    height:550px;
    background:#f47b21;
    border-radius:50%;
    filter:blur(150px);
    opacity:.18;
}

.about-area::after{
    content:'';
    position:absolute;
    bottom:-180px;
    left:-120px;
    width:400px;
    height:400px;
    background:#f47b21;
    border-radius:50%;
    filter:blur(130px);
    opacity:.08;
}

/* Content */

.about-content{
    position:relative;
    z-index:2;
}

.about-label{
    display:inline-block;
    padding:12px 24px;
    background:rgba(244,123,33,.12);
    border:1px solid rgba(244,123,33,.25);
    border-radius:50px;
    color:#f47b21;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.about-area h2{
    font-size:55px;
    font-weight:800;
    line-height:1.2;
    color:#fff;
    margin-bottom:25px;
}

.about-area h2 span{
    color:#f47b21;
}

.about-area p{
    color:rgba(255,255,255,.82);
    font-size:17px;
    line-height:1.9;
    margin-bottom:35px;
}

/* Feature List */

.about-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:40px;
}

.about-list div{
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    padding:18px 20px;
    border-radius:16px;
    font-weight:600;
    transition:.35s ease;
}

.about-list div:hover{
    transform:translateY(-6px);
    border-color:#f47b21;
    box-shadow:0 15px 35px rgba(244,123,33,.20);
}

.about-list i{
    color:#f47b21;
    margin-right:10px;
    font-size:18px;
}

/* Button */

.theme-btn{
    display:inline-block;
    padding:16px 40px;
    background:#f47b21;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.35s ease;
    box-shadow:0 10px 25px rgba(244,123,33,.30);
}

.theme-btn:hover{
    background:#fff;
    color:#0a0a0a;
    transform:translateY(-3px);
}

/* Image */

.about-image{
    position:relative;
    text-align:center;
    z-index:2;
}

.about-image img{
    width:100%;
    max-width:620px;
    border-radius:25px;
    box-shadow:0 30px 70px rgba(0,0,0,.30);
}

/* Experience Box */

.experience{
    position:absolute;
    right:20px;
    bottom:30px;
    width:190px;
    height:190px;
    background:#fff;
    border-radius:24px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.experience h3{
    font-size:62px;
    line-height:1;
    margin:0;
    color:#f47b21;
    font-weight:800;
}

.experience p{
    margin:8px 0 0;
    color:#444;
    font-size:15px;
    font-weight:600;
    text-align:center;
}

/* Responsive */

@media(max-width:1199px){

.about-area h2{
    font-size:46px;
}

}

@media(max-width:991px){

.about-area{
    padding:80px 0;
}

.about-area h2{
    font-size:38px;
}

.about-list{
    grid-template-columns:1fr;
}

.about-image{
    margin-top:50px;
}

.experience{
    width:150px;
    height:150px;
}

.experience h3{
    font-size:46px;
}

}

@media(max-width:767px){

.about-area{
    padding:70px 0;
}

.about-area h2{
    font-size:30px;
}

.about-area p{
    font-size:16px;
}

.about-label{
    font-size:13px;
    padding:10px 18px;
}

.about-list div{
    padding:15px;
}

.theme-btn{
    padding:14px 30px;
}

.experience{
    width:120px;
    height:120px;
    right:10px;
    bottom:10px;
}

.experience h3{
    font-size:36px;
}

.experience p{
    font-size:12px;
}

}


/*==========================
    SERVICES SECTION
==========================*/

/*====================================
        SERVICES SECTION
====================================*/

.services-section{

    position:relative;

    padding:100px 0;

    overflow:hidden;

    background:

    radial-gradient(
    circle at 85% 15%,
    rgba(244,123,33,.45),
    transparent 38%
    ),

    radial-gradient(
    circle at 15% 85%,
    rgba(244,123,33,.35),
    transparent 35%
    ),

    linear-gradient(
    135deg,
    #151515 0%,
    #151515 30%,
    transparent 65%
    ),

    linear-gradient(
    135deg,
    #050505 0%,
    #0a0a0a 100%
    );

}


/* Background Glow */

.services-section::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    top:-300px;

    left:-220px;

    background:
    radial-gradient(
    circle,
    rgba(244,123,33,.55),
    transparent 65%
    );

    filter:blur(100px);

    opacity:.65;

}


.services-section::after{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    right:-200px;

    bottom:-250px;

    background:
    radial-gradient(
    circle,
    rgba(244,123,33,.45),
    transparent 65%
    );

    filter:blur(100px);

    opacity:.55;

}


/* Section Title */

.section-title{

    position:relative;

    z-index:2;

}


.section-title span{

    display:inline-block;

    padding:10px 22px;

    border:1px solid rgba(244,123,33,.45);

    color:#f47b21;

    border-radius:50px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

    background:rgba(244,123,33,.10);

}


.section-title h2{

    color:#ffffff;

    font-size:52px;

    font-weight:800;

    margin-bottom:20px;

}


.section-title h2 strong{

    color:#f47b21;

}


.section-title p{

    color:#d0d0d0;

    max-width:760px;

    margin:auto;

    line-height:30px;

    font-size:17px;

}


/*==========================
        SERVICE CARD
==========================*/

.service-card{

    position:relative;

    height:100%;

    overflow:hidden;

    border-radius:24px;

    background:
    linear-gradient(
    145deg,
    rgba(21,21,21,.95),
    rgba(10,10,10,.90)
    );

    border:1px solid rgba(244,123,33,.15);

    transition:.45s;

    backdrop-filter:blur(12px);

}


.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:#f47b21;

    transform:scaleX(0);

    transition:.4s;

    z-index:3;

}


.service-card:hover::before{

    transform:scaleX(1);

}


.service-card:hover{

    transform:translateY(-12px);

    border-color:#f47b21;

    box-shadow:
    0 25px 60px rgba(244,123,33,.25);

}


/* Service Image */

.service-img{

    position:relative;

    height:240px;

    overflow:hidden;

}


.service-img img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}


.service-card:hover .service-img img{

    transform:scale(1.08);

}


/* Image Overlay */

.service-img::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(10,10,10,.95),
    rgba(10,10,10,.20)
    );

}


/* Content */

.service-content{

    padding:30px;

}


.service-content h4{

    color:#ffffff;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}


.service-content p{

    color:#bdbdbd;

    line-height:28px;

    font-size:16px;

    margin:0;

}


/* Hover Glow */

.service-card:hover::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    right:-80px;

    bottom:-80px;

    background:#f47b21;

    filter:blur(100px);

    opacity:.20;

}


/* Responsive */

@media(max-width:991px){

    .section-title h2{
        font-size:38px;
    }

    .service-img{
        height:220px;
    }

}


@media(max-width:767px){

    .services-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:30px;
    }

    .service-img{
        height:200px;
    }

    .service-content{
        padding:25px;
    }

}

/*==============================
Why Choose Us - Light Version
==============================*/

/* ============================
   WHY CHOOSE SECTION LUXURY
============================ */

.why-choose-section{

    padding:100px 0;

    position:relative;

    overflow:hidden;


    background:

    /* 40% Orange Glow */
    radial-gradient(
    circle at 80% 20%,
    rgba(244,123,33,.45),
    transparent 40%
    ),

    radial-gradient(
    circle at 20% 80%,
    rgba(244,123,33,.30),
    transparent 35%
    ),


    /* 20% Charcoal Layer */
    linear-gradient(
    135deg,
    #151515 0%,
    #151515 25%,
    transparent 55%
    ),


    /* 40% Black Base */
    linear-gradient(
    135deg,
    #050505 0%,
    #0a0a0a 100%
    );

}


/* Orange Luxury Glow Top */

.why-choose-section::before{

    content:"";

    position:absolute;

    width:550px;
    height:550px;

    background:

    radial-gradient(
    circle,
    rgba(244,123,33,.35),
    transparent 65%
    );

    filter:blur(80px);

    top:-250px;

    right:-180px;

    opacity:.6;

}


/* Orange Bottom Reflection */

.why-choose-section::after{

    content:"";

    position:absolute;

    width:450px;
    height:450px;


    background:

    radial-gradient(
    circle,
    rgba(244,123,33,.25),
    transparent 65%
    );


    filter:blur(90px);

    bottom:-200px;

    left:-150px;

    opacity:.5;

}



.section-title{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

    position:relative;

    z-index:2;

}


.section-title span{

    display:inline-block;

    color:#f47b21;

    font-size:15px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:12px;

}


.section-title h2{

    font-size:42px;

    font-weight:800;

    color:#ffffff;

    margin-bottom:18px;

}


.section-title h2 span{

    color:#f47b21;

}


.section-title p{

    color:#b5b5b5;

    line-height:30px;

    font-size:17px;

}



/* GRID */

.choose-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    position:relative;

    z-index:2;

}



/* LUXURY GLASS CARD */

.choose-card{

    position:relative;

    padding:35px;

    border-radius:22px;

    background:

    linear-gradient(
    145deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.02)
    );


    border:1px solid rgba(255,255,255,.12);


    backdrop-filter:blur(12px);


    transition:.4s;


    overflow:hidden;

}



/* Orange Top Line */

.choose-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#f47b21;

    transform:scaleX(0);

    transition:.4s;

}



.choose-card:hover::before{

    transform:scaleX(1);

}



.choose-card:hover{

    transform:translateY(-12px);

    border-color:#f47b21;


    box-shadow:

    0 25px 60px rgba(244,123,33,.20);

}




/* ICON */

.icon{

    width:75px;

    height:75px;

    border-radius:20px;


    background:

    linear-gradient(
    135deg,
    #f47b21,
    #ff9b4b
    );


    color:#fff;


    display:flex;

    align-items:center;

    justify-content:center;


    font-size:32px;


    margin-bottom:25px;


    box-shadow:

    0 10px 30px rgba(244,123,33,.35);

}



.choose-card h3{

    font-size:24px;

    font-weight:700;

    color:#ffffff;

    margin-bottom:15px;

}



.choose-card p{

    color:#bdbdbd;

    line-height:28px;

    font-size:16px;

}




/* RESPONSIVE */

@media(max-width:991px){

.choose-grid{

grid-template-columns:repeat(2,1fr);

}


.section-title h2{

font-size:36px;

}

}



@media(max-width:767px){


.why-choose-section{

padding:70px 0;

}


.choose-grid{

grid-template-columns:1fr;

}


.section-title h2{

font-size:30px;

}


.choose-card{

padding:28px;

}

}


/*====================================
        INDUSTRIES WE SERVE
====================================*/

.industries-section{

    position:relative;

    padding:100px 0;

    overflow:hidden;

    background:

    radial-gradient(
    circle at 85% 15%,
    rgba(244,123,33,.45),
    transparent 35%
    ),

    radial-gradient(
    circle at 15% 85%,
    rgba(244,123,33,.35),
    transparent 35%
    ),

    linear-gradient(
    135deg,
    #151515 0%,
    #151515 25%,
    transparent 60%
    ),

    linear-gradient(
    135deg,
    #050505 0%,
    #0a0a0a 100%
    );

}


.industries-section::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    top:-300px;

    left:-250px;

    background:
    radial-gradient(
    circle,
    rgba(244,123,33,.55),
    transparent 65%
    );

    filter:blur(100px);

    opacity:.65;

}


.industries-section::after{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    right:-200px;

    bottom:-250px;

    background:
    radial-gradient(
    circle,
    rgba(244,123,33,.45),
    transparent 65%
    );

    filter:blur(100px);

    opacity:.55;

}


.section-title{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:0 auto 60px;

}


.section-title span{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    border:1px solid rgba(244,123,33,.3);

    background:rgba(244,123,33,.08);

    color:#f47b21;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}


.section-title h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin-bottom:20px;

}


.section-title h2 strong{

    color:#f47b21;

}


.section-title p{

    color:#cfcfcf;

    line-height:30px;

    font-size:17px;

}


.industry-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    position:relative;

    z-index:2;

}


.industry-card{

    background:
    linear-gradient(
    145deg,
    rgba(21,21,21,.95),
    rgba(10,10,10,.90)
    );

    border:1px solid rgba(244,123,33,.15);

    border-radius:22px;

    padding:30px;

    text-align:center;

    transition:.4s;

    backdrop-filter:blur(10px);

}


.industry-card:hover{

    transform:translateY(-10px);

    border-color:#f47b21;

    box-shadow:0 25px 60px rgba(244,123,33,.20);

}


.industry-icon{

    width:80px;

    height:80px;

    margin:0 auto 20px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
    135deg,
    #f47b21,
    #ff9b4b
    );

    box-shadow:0 15px 35px rgba(244,123,33,.35);

}


.industry-icon i{

    color:#fff;

    font-size:32px;

}


.industry-card h4{

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}


.industry-card p{

    color:#bcbcbc;

    line-height:28px;

    font-size:15px;

}


@media(max-width:1199px){

.industry-grid{
grid-template-columns:repeat(3,1fr);
}

}


@media(max-width:991px){

.industry-grid{
grid-template-columns:repeat(2,1fr);
}

.section-title h2{
font-size:38px;
}

}


@media(max-width:767px){

.industries-section{
padding:70px 0;
}

.industry-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:30px;
}

}



/*====================================
        CTA SECTION
====================================*/

.cta-section{

    position:relative;

    padding:100px 0;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #050505 0%,
    #0a0a0a 100%
    );

}


/* Orange Glow */

.cta-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    top:-200px;

    left:-150px;

    background:#f47b21;

    filter:blur(150px);

    opacity:.25;

}


.cta-section::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    right:-150px;

    bottom:-200px;

    background:#f47b21;

    filter:blur(140px);

    opacity:.20;

}


/* CTA BOX */

.cta-box{

    position:relative;

    z-index:2;

    padding:70px;

    border-radius:30px;

    background:

    linear-gradient(
    145deg,
    rgba(21,21,21,.95),
    rgba(10,10,10,.90)
    );

    border:1px solid rgba(244,123,33,.20);

    box-shadow:
    0 25px 80px rgba(0,0,0,.35);

}


/* Tag */

.cta-tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(244,123,33,.10);

    border:1px solid rgba(244,123,33,.30);

    color:#f47b21;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}


/* Heading */

.cta-box h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:20px;

}


.cta-box h2 strong{

    color:#f47b21;

}


/* Text */

.cta-box p{

    color:#cfcfcf;

    font-size:17px;

    line-height:30px;

    margin-bottom:0;

}


/* Buttons */

.cta-btns{

    display:flex;

    gap:15px;

    justify-content:flex-end;

    flex-wrap:wrap;

}


.cta-btn{

    display:inline-block;

    padding:16px 32px;

    background:#f47b21;

    color:#fff;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    transition:.4s;

}


.cta-btn:hover{

    background:#fff;

    color:#0a0a0a;

}


.cta-btn-outline{

    display:inline-block;

    padding:16px 32px;

    border:2px solid #f47b21;

    color:#fff;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    transition:.4s;

}


.cta-btn-outline:hover{

    background:#f47b21;

    color:#fff;

}


/* Responsive */

@media(max-width:991px){

    .cta-box{
        padding:50px 40px;
        text-align:center;
    }

    .cta-box h2{
        font-size:38px;
    }

    .cta-btns{
        justify-content:center;
        margin-top:30px;
    }

}


@media(max-width:767px){

    .cta-section{
        padding:70px 0;
    }

    .cta-box{
        padding:35px 25px;
    }

    .cta-box h2{
        font-size:30px;
    }

}




/*==============================
        HERO SECTION
===============================*/
/*====================================================
        AI HERO SECTION
=====================================================*/

.hero-area{
    position:relative;
    overflow:hidden;
    background:#0a0a0a;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:100px 0;
}


/*====================================================
        BACKGROUND GLOW
=====================================================*/


.hero-bg{
    position:absolute;
    inset:0;
}


.hero-bg::before{

    content:"";
    position:absolute;

    width:500px;
    height:500px;

    background:#f47b21;

    border-radius:50%;

    filter:blur(170px);

    opacity:.14;

    left:-200px;
    top:-200px;

}



.hero-bg::after{

    content:"";
    position:absolute;

    width:450px;
    height:450px;

    background:#f47b21;

    border-radius:50%;

    filter:blur(170px);

    opacity:.12;

    right:-200px;
    bottom:-200px;

}



/*====================================================
        LEFT CONTENT
=====================================================*/


.hero-content{

    position:relative;
    z-index:5;

}



.hero-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(244,123,33,.10);

    border:1px solid rgba(244,123,33,.35);

    color:#f47b21;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}



.hero-content h1{

    color:#fff;

    font-size:65px;

    line-height:1.08;

    font-weight:800;

    margin-bottom:25px;

}



.hero-content h1 span{

    color:#f47b21;

}



.hero-content p{

    color:#bdbdbd;

    font-size:17px;

    line-height:32px;

    max-width:560px;

    margin-bottom:35px;

}



/*====================================================
        BUTTON
=====================================================*/


.hero-btn{

    display:flex;

    gap:18px;

}



.btn-one,
.btn-two{

    padding:15px 38px;

    border-radius:50px;

    font-weight:700;

    text-decoration:none;

    transition:.4s;

}



.btn-one{

    background:#f47b21;

    color:#fff;

}



.btn-one:hover{

    background:#fff;

    color:#111;

}



.btn-two{

    border:2px solid #f47b21;

    color:#fff;

}



.btn-two:hover{

    background:#f47b21;

}



/*====================================================
        RIGHT AI ORBIT
=====================================================*/


.hero-circle{

    width:480px;

    height:480px;

    position:relative;

    margin:auto;

}



/* Outer Rings */


.hero-circle::before{

    content:"";

    position:absolute;

    width:430px;

    height:430px;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    border:1px dashed rgba(255,255,255,.15);

}



.hero-circle::after{

    content:"";

    position:absolute;

    width:330px;

    height:330px;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    border:1px solid rgba(244,123,33,.25);

}



/*====================================================
        CENTER AI CORE
=====================================================*/


.center-box{

    width:190px;

    height:190px;

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:#151515;

    border:2px solid rgba(244,123,33,.5);

    display:flex;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    z-index:10;

    box-shadow:0 0 50px rgba(244,123,33,.35);

    animation:pulse 3s infinite;

}



.center-box::before{

    content:"";

    position:absolute;

    width:230px;

    height:230px;

    border-radius:50%;

    border:1px dashed rgba(244,123,33,.4);

    animation:spin 20s linear infinite;

}



.center-icon{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#f47b21;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:12px;

}



.center-icon i{

    font-size:30px;

    color:white;

}



.center-box h2{

    color:#fff;

    font-size:22px;

    margin:0;

}



.center-box p{

    color:#aaa;

    font-size:12px;

    margin:5px;

}



/*====================================================
        ROTATING ORBIT
=====================================================*/


.orbit{

    position:absolute;

    inset:0;

    animation:spin 35s linear infinite;

}




/*====================================================
        SERVICE CIRCLE
=====================================================*/


.service{

    width:90px;

    height:90px;

    position:absolute;

    border-radius:50%;

    background:#171717;

    border:1px solid rgba(255,255,255,.10);

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    color:#fff;

    animation:reverseSpin 35s linear infinite;

    box-shadow:0 15px 35px rgba(0,0,0,.4);

}



.service i{

    font-size:26px;

    color:#f47b21;

    margin-bottom:5px;

}



.service span{

    font-size:12px;

    font-weight:600;

}




.service:hover{

    background:#f47b21;

    transform:scale(1.1);

}



.service:hover i{

    color:#fff;

}




/*====================================================
        ORBIT POSITION
=====================================================*/


.s1{

    top:0;

    left:50%;

    transform:translateX(-50%);

}


.s2{

    top:70px;

    right:20px;
	transform:translateX(-50%);

}



.s3{

    right:0;

    top:50%;

    transform:translateY(-50%);

}



.s4{

    bottom:70px;

    right:20px;
	

}



.s5{

    bottom:0;

    left:50%;

    transform:translateX(-50%);

}



.s6{

    bottom:70px;

    left:20px;

}



.s7{

    left:0;

    top:50%;

    transform:translateY(-50%);

}




/*====================================================
        ANIMATION
=====================================================*/


@keyframes spin{

from{

transform:rotate(0deg);

}

to{

transform:rotate(360deg);

}

}



@keyframes reverseSpin{

from{

transform:rotate(0deg);

}

to{

transform:rotate(-360deg);

}

}




@keyframes pulse{


0%{

box-shadow:0 0 25px rgba(244,123,33,.2);

}


50%{

box-shadow:0 0 70px rgba(244,123,33,.5);

}


100%{

box-shadow:0 0 25px rgba(244,123,33,.2);

}


}




/*====================================================
        LARGE SCREEN
=====================================================*/


@media(max-width:1199px){


.hero-content h1{

font-size:55px;

}


.hero-circle{

width:450px;

height:450px;

}


.hero-circle::before{

width:370px;

height:370px;

}



.hero-circle::after{

width:280px;

height:280px;

}



}



/*====================================================
        TABLET
=====================================================*/


@media(max-width:991px){


.hero-area{

text-align:center;

padding:80px 0;

}



.hero-content{

margin-bottom:60px;

}



.hero-content p{

margin-left:auto;

margin-right:auto;

}



.hero-btn{

justify-content:center;

}



.hero-circle{

width:380px;

height:380px;

}



.service{

width:70px;

height:70px;

}



.service i{

font-size:20px;

}



}




/*====================================================
        MOBILE
=====================================================*/


@media(max-width:576px){


.hero-content h1{

font-size:36px;

}



.hero-content p{

font-size:15px;

line-height:28px;

}



.hero-btn{

flex-direction:column;

align-items:center;

}



.btn-one,
.btn-two{

width:220px;

}



.hero-circle{

width:300px;

height:300px;

}



.hero-circle::before{

width:250px;

height:250px;

}



.hero-circle::after{

width:190px;

height:190px;

}



.center-box{

width:110px;

height:110px;

}



.center-icon{

width:40px;

height:40px;

}



.center-icon i{

font-size:18px;

}



.center-box h2{

font-size:14px;

}



.center-box p{

display:none;

}



.service{

width:45px;

height:45px;

}



.service span{

display:none;

}



.service i{

font-size:15px;

}



.s2{

right:0;

top:40px;

}



.s4{

right:0;

bottom:40px;

}



.s6{

left:0;

bottom:40px;

}



}



/*====================================================
                ABOUT SECTION
====================================================*/
.about-section{

    position:relative;
    padding:120px 0;
    overflow:hidden;
    z-index:1;

    background:

    /* Orange Luxury Glow - Top Right */
    radial-gradient(
        circle at 85% 15%,
        rgba(244,123,33,.45),
        transparent 35%
    ),

    /* Orange Luxury Glow - Bottom Left */
    radial-gradient(
        circle at 15% 85%,
        rgba(244,123,33,.35),
        transparent 35%
    ),

    /* Deep Charcoal Layer */
    linear-gradient(
        135deg,
        #151515 0%,
        #151515 35%,
        transparent 65%
    ),

    /* Premium Black Base */
    linear-gradient(
        135deg,
        #050505 0%,
        #0a0a0a 100%
    );

}


/*====================================================
                BACKGROUND GLOW
====================================================*/

.about-section::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    background:#f47b21;
    border-radius:50%;
    filter:blur(180px);
    opacity:.10;
    top:-250px;
    left:-220px;
    z-index:-1;
}

.about-section::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#f47b21;
    border-radius:50%;
    filter:blur(180px);
    opacity:.08;
    right:-220px;
    bottom:-220px;
    z-index:-1;
}


/*====================================================
                IMAGE SECTION
====================================================*/

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:25px;
    position:relative;
    z-index:2;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.about-image::before{
    content:"";
    position:absolute;
    inset:-15px;
    border-radius:30px;
    border:1px solid rgba(244,123,33,.15);
    z-index:1;
}


/*====================================================
            EXPERIENCE BOX
====================================================*/

.experience-box{
    position:absolute;
    right:25px;
    bottom:25px;
    background:linear-gradient(
        135deg,
        #f47b21,
        #da6511
    );
    padding:25px 30px;
    border-radius:20px;
    text-align:center;
    z-index:5;
    color:#fff;
    box-shadow:
    0 20px 50px rgba(244,123,33,.35),
    0 10px 25px rgba(0,0,0,.30);
}

.experience-box h2{
    font-size:50px;
    line-height:1;
    margin:0;
    font-weight:800;
    color:#fff;
}

.experience-box span{
    font-size:14px;
    letter-spacing:.5px;
}


/*====================================================
                CONTENT
====================================================*/

.about-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(244,123,33,.08);
    border:1px solid rgba(244,123,33,.25);
    color:#f47b21;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
}

.about-title{
    font-size:52px;
    line-height:1.2;
    font-weight:800;
    color:#fff;
    margin:25px 0;
}

.about-title span{
    color:#f47b21;
}

.about-text{
    color:rgba(255,255,255,.75);
    font-size:16px;
    line-height:32px;
    margin-bottom:18px;
}


/*====================================================
                FEATURES
====================================================*/

.about-feature{
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px 18px;
    margin-bottom:15px;
    border-radius:14px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-weight:600;
    transition:.4s;
}

.about-feature:hover{
    transform:translateY(-5px);
    border-color:rgba(244,123,33,.35);
    background:rgba(244,123,33,.08);
}

.about-feature i{
    color:#f47b21;
    font-size:20px;
}


/*====================================================
                BUTTON
====================================================*/

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 35px;
    border-radius:50px;
    background:#f47b21;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
    margin-top:15px;
}

.about-btn:hover{
    background:#fff;
    color:#111;
    transform:translateY(-3px);
}


/*====================================================
                SOCIAL ICONS
====================================================*/

.about-social{
    display:flex;
    gap:12px;
    margin-top:30px;
}

.about-social a{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.about-social a:hover{
    background:#f47b21;
    border-color:#f47b21;
    transform:translateY(-4px);
}


/*====================================================
                FLOATING SHAPES
====================================================*/

.about-shape-one{
    position:absolute;
    width:140px;
    height:140px;
    border:1px solid rgba(244,123,33,.12);
    border-radius:50%;
    top:120px;
    right:10%;
    animation:float 8s ease-in-out infinite;
}

.about-shape-two{
    position:absolute;
    width:70px;
    height:70px;
    background:rgba(244,123,33,.06);
    border-radius:15px;
    left:8%;
    bottom:120px;
    transform:rotate(45deg);
    animation:float 10s ease-in-out infinite;
}


/*====================================================
                ANIMATION
====================================================*/

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }

}


/*====================================================
                TABLET
====================================================*/

@media(max-width:991px){

    .about-section{
        padding:90px 0;
    }

    .about-title{
        font-size:40px;
    }

    .about-image{
        margin-bottom:40px;
    }

    .experience-box{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:20px;
        display:inline-block;
    }

}


/*====================================================
                MOBILE
====================================================*/

@media(max-width:576px){

    .about-section{
        padding:70px 0;
    }

    .about-title{
        font-size:30px;
        line-height:1.3;
    }

    .about-text{
        font-size:15px;
        line-height:28px;
    }

    .experience-box{
        padding:20px;
    }

    .experience-box h2{
        font-size:38px;
    }

    .about-feature{
        padding:14px;
    }

    .about-btn{
        width:100%;
        justify-content:center;
    }

    .about-social{
        justify-content:center;
    }

}

/*========================================
        VISION MISSION VALUES
========================================*/

.vmv-section{

    position:relative;
    padding:120px 0;
    overflow:hidden;

    background:

    /* Orange Luxury Glow Top Right */
    radial-gradient(
        circle at 85% 15%,
        rgba(244,123,33,.45),
        transparent 35%
    ),

    /* Orange Luxury Glow Bottom Left */
    radial-gradient(
        circle at 15% 85%,
        rgba(244,123,33,.35),
        transparent 35%
    ),

    /* Deep Charcoal Layer */
    linear-gradient(
        135deg,
        #151515 0%,
        #151515 35%,
        transparent 65%
    ),

    /* Premium Black Base */
    linear-gradient(
        135deg,
        #050505 0%,
        #0a0a0a 100%
    );

}
/* Orange Glow */

.vmv-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#f47b21;
    border-radius:50%;
    filter:blur(180px);
    opacity:.08;
    top:-220px;
    left:-180px;
}

.vmv-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#f47b21;
    border-radius:50%;
    filter:blur(180px);
    opacity:.06;
    right:-180px;
    bottom:-200px;
}

/* Title */

.section-title{
    max-width:750px;
    margin:0 auto 70px;
    position:relative;
    z-index:2;
}

.section-title span{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(244,123,33,.08);
    border:1px solid rgba(244,123,33,.25);
    color:#f47b21;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.section-title h2{
    color:#fff;
    font-size:52px;
    font-weight:800;
    margin-bottom:20px;
}

.section-title p{
    color:rgba(255,255,255,.75);
    line-height:30px;
}

/* Cards */

.vmv-card{
    position:relative;
    z-index:2;
    height:100%;
    padding:45px 35px;
    border-radius:25px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    transition:.4s;
}

.vmv-card:hover{
    transform:translateY(-10px);
    border-color:rgba(244,123,33,.35);
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.vmv-card.active{
    border-color:rgba(244,123,33,.35);
    box-shadow:0 20px 60px rgba(244,123,33,.15);
}

/* Icon */

.vmv-icon{
    width:85px;
    height:85px;
    border-radius:50%;
    background:rgba(244,123,33,.12);
    border:1px solid rgba(244,123,33,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.vmv-icon i{
    font-size:34px;
    color:#f47b21;
}

/* Text */

.vmv-card h3{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.vmv-card p{
    color:rgba(255,255,255,.75);
    line-height:30px;
    margin:0;
}

.vmv-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.vmv-card ul li{
    color:rgba(255,255,255,.80);
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.vmv-card ul li:last-child{
    border:none;
}

.vmv-card ul li::before{
    content:"✓";
    color:#f47b21;
    font-weight:700;
    margin-right:10px;
}

/* Responsive */

@media(max-width:991px){

    .vmv-section{
        padding:90px 0;
    }

    .section-title h2{
        font-size:40px;
    }

    .vmv-card{
        margin-bottom:20px;
    }
}

@media(max-width:576px){

    .vmv-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:30px;
    }

    .vmv-card{
        padding:35px 25px;
    }
}


/*====================================================
        NOVIQO TECH PREMIUM HEADER
        COLORS:
        Orange #f47b21
        Black  #0a0a0a
        Charcoal #151515
=====================================================*/



/* RESET */

*{
    box-sizing:border-box;
}


body{

    margin:0;

    padding-top:140px;

    background:#0a0a0a;

}



/*====================================================
        MAIN FIXED HEADER
=====================================================*/


.main-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:99999;

    transition:.4s ease;

}





/*====================================================
        TOP HEADER
=====================================================*/


.header-top{

    height:50px;

    background:#151515;

    border-bottom:

    1px solid rgba(255,255,255,.08);

}



.header-top .container{

    height:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

}




.header-info{

    display:flex;

    gap:30px;

}



.header-info span{

    color:#cfcfcf;

    font-size:14px;

}



.header-info i{

    color:#f47b21;

    margin-right:8px;

}





.header-social{

    display:flex;

    gap:12px;

}



.header-social a{

    width:34px;

    height:34px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#0a0a0a;

    color:#fff;

    transition:.3s;

}



.header-social a:hover{

    background:#f47b21;

    transform:translateY(-3px);

}





/*====================================================
        NAVBAR
=====================================================*/


.nav-wrapper{


    background:

    rgba(10,10,10,.92);


    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);


    border-bottom:

    1px solid rgba(255,255,255,.06);


}



.navbar{


    min-height:85px;

    padding:0;

    transition:.4s ease;

}




/*=================================
        LOGO IMAGE
==================================*/

.navbar-brand{
    display:flex;
    align-items:center;
    padding:0;
}

.navbar-brand img{

    height:70px;
    width:auto;

    display:block;

    object-fit:contain;

    transition:.4s ease;
}



/* Scroll Logo Size */

.main-header.scrolled .navbar-brand img{

    height:58px;

}



/* Hover Effect */

.navbar-brand img:hover{

    transform:scale(1.03);

}



/* Mobile */

@media(max-width:991px){

    .navbar-brand img{

        height:55px;

    }

    .main-header.scrolled .navbar-brand img{

        height:50px;

    }

}



.navbar-brand span{

    color:#f47b21;

}





.navbar-nav{

    gap:5px;

}



.navbar-nav .nav-link{


    color:#fff !important;

    font-size:16px;

    font-weight:600;

    padding:30px 18px !important;

    position:relative;

    transition:.3s;


}



.navbar-nav .nav-link:hover,
.navbar-nav .active{


    color:#f47b21 !important;


}





.navbar-nav .nav-link:after{


    content:"";

    position:absolute;

    bottom:20px;

    left:18px;

    height:2px;

    width:0;

    background:#f47b21;

    transition:.3s;


}



.navbar-nav .nav-link:hover:after{


    width:55%;


}







/*====================================================
        DROPDOWN
=====================================================*/


.dropdown-menu{


    background:#151515;

    border:1px solid rgba(244,123,33,.15);

    border-radius:15px;

    padding:12px;

    min-width:260px;

    margin-top:0;


    box-shadow:

    0 20px 60px rgba(0,0,0,.5);


}



.dropdown-item{


    color:#fff;

    padding:12px 15px;

    border-radius:10px;

    transition:.3s;


}



.dropdown-item:hover{


    background:#f47b21;

    color:#fff;


}



@media(min-width:992px){


.dropdown:hover .dropdown-menu{


    display:block;


}


}






/*====================================================
        CONTACT BUTTON
=====================================================*/


.header-btn{


    display:inline-flex;

    align-items:center;

    gap:10px;


    padding:14px 32px;


    background:#f47b21;


    color:#fff;


    border-radius:50px;


    text-decoration:none;


    font-weight:700;


    box-shadow:

    0 0 35px rgba(244,123,33,.35);


    transition:.4s;


}



.header-btn:hover{


    background:#fff;

    color:#111;

    transform:translateY(-3px);


}







/*====================================================
        SCROLL HEADER
=====================================================*/


.main-header.scrolled .header-top{


    display:none;


}



.main-header.scrolled .navbar{


    min-height:70px;


}



.main-header.scrolled .nav-wrapper{


    background:#0a0a0a;


    box-shadow:

    0 10px 50px rgba(0,0,0,.5),

    0 0 25px rgba(244,123,33,.10);


}




.main-header.scrolled .navbar-nav .nav-link{


    padding:22px 18px !important;


}







/*====================================================
        HERO SPACE FIX
=====================================================*/


.hero-area,
.hero-section,
.digital-hero{


    padding-top:80px;


}



/* If hero immediately after header */

.main-header + .hero-area,
.main-header + .hero-section,
.main-header + .digital-hero{


    padding-top:80px;


}







/*====================================================
        MOBILE
=====================================================*/


.navbar-toggler{


    border:none;

    color:#fff;

    font-size:25px;


}



.navbar-toggler:focus{


    box-shadow:none;


}





@media(max-width:991px){



body{

    padding-top:70px;

}



.header-top{

    display:none;

}



.navbar{


    min-height:70px;


}



.navbar-collapse{


    margin-top:15px;


    background:#151515;


    padding:20px;


    border-radius:20px;


}



.navbar-nav .nav-link{


    padding:12px 10px !important;


}



.navbar-nav .nav-link:after{


    display:none;


}



.dropdown-menu{


    background:#0a0a0a;


}



.header-btn{


    width:100%;

    justify-content:center;

    margin-top:15px;


}



.hero-area,
.hero-section,
.digital-hero{


    padding-top:50px;


}



}





/* SMALL MOBILE */

@media(max-width:576px){


.navbar-brand h2{

    font-size:26px;

}


}




/*=================================
        CONTACT SECTION
==================================*/

.contact-section{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:

    radial-gradient(
        circle at 85% 15%,
        rgba(244,123,33,.25),
        transparent 35%
    ),

    radial-gradient(
        circle at 15% 85%,
        rgba(244,123,33,.18),
        transparent 35%
    ),

    linear-gradient(
        135deg,
        #151515 0%,
        #0a0a0a 100%
    );

}



/* Glow Effect */

.contact-section::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:#f47b21;

    border-radius:50%;

    filter:blur(180px);

    opacity:.08;

    top:-100px;
    right:-100px;

}



/* Section Title */

.section-title{

    max-width:750px;

    margin:0 auto 70px;
}



.section-title span{

    color:#f47b21;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;
}



.section-title h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin:15px 0 20px;
}



.section-title p{

    color:#bdbdbd;

    line-height:30px;
}



/* Contact Card */

.contact-card{

    height:100%;

    text-align:center;

    padding:45px 30px;

    border-radius:25px;

    background:

    linear-gradient(
        135deg,
        #151515,
        #0a0a0a
    );

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}



.contact-card:hover{

    transform:translateY(-10px);

    border-color:rgba(244,123,33,.35);

    box-shadow:

    0 20px 50px rgba(244,123,33,.12);

}



/* Icon */

.contact-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(244,123,33,.12);

    border:1px solid rgba(244,123,33,.25);

}



.contact-icon i{

    font-size:34px;

    color:#f47b21;
}



/* Text */

.contact-card h4{

    color:#fff;

    font-size:24px;

    margin-bottom:15px;

    font-weight:700;
}



.contact-card p{

    color:#bdbdbd;

    line-height:30px;

    margin:0;
}



/* Mobile */

@media(max-width:991px){

    .contact-section{

        padding:80px 0;

    }

    .section-title h2{

        font-size:36px;

    }

}


@media(max-width:576px){

    .section-title h2{

        font-size:30px;

    }

    .contact-card{

        padding:35px 20px;

    }

}
/*** Footer ***/
/*=================================
        PREMIUM FOOTER
==================================*/

.footer-area{

    position:relative;

    padding:90px 0 0;

    overflow:hidden;

    background:

    radial-gradient(
    circle at 85% 15%,
    rgba(244,123,33,.25),
    transparent 30%
    ),

    radial-gradient(
    circle at 15% 85%,
    rgba(244,123,33,.18),
    transparent 35%
    ),

    linear-gradient(
    135deg,
    #151515 0%,
    #0a0a0a 100%
    );

    border-top:1px solid rgba(244,123,33,.12);
}



/* Glow */

.footer-area::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:#f47b21;

    border-radius:50%;

    filter:blur(180px);

    opacity:.08;

    top:-120px;
    right:-120px;
}



/* Logo */

.footer-logo{

    color:#fff;

    font-size:38px;

    font-weight:800;

    margin-bottom:20px;
}

.footer-logo span{

    color:#f47b21;
}



/* Widget */

.footer-widget h4{

    color:#fff;

    font-size:22px;

    margin-bottom:25px;

    position:relative;
}

.footer-widget h4::after{

    content:"";

    width:45px;

    height:2px;

    background:#f47b21;

    position:absolute;

    left:0;
    bottom:-10px;
}



.footer-widget p{

    color:#bdbdbd;

    line-height:30px;
}



/* Links */

.footer-widget ul{

    padding:0;

    margin:0;
}

.footer-widget ul li{

    list-style:none;

    margin-bottom:14px;
}

.footer-widget ul li a{

    color:#bdbdbd;

    text-decoration:none;

    transition:.3s;
}

.footer-widget ul li a:hover{

    color:#f47b21;

    padding-left:8px;
}



/* Contact */

.footer-contact p{

    color:#bdbdbd;

    margin-bottom:15px;
}

.footer-contact i{

    color:#f47b21;

    width:25px;
}



/* Social */

.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;
}

.footer-social a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#151515;

    color:#fff;

    transition:.4s;
}

.footer-social a:hover{

    background:#f47b21;

    transform:translateY(-5px);
}



/* Copyright */

.footer-bottom{

    margin-top:70px;

    padding:25px 0;

    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom p{

    color:#999;

    margin:0;
}

.footer-bottom a{

    color:#999;

    margin-left:20px;

    text-decoration:none;

    transition:.3s;
}

.footer-bottom a:hover{

    color:#f47b21;
}



/* Mobile */

@media(max-width:991px){

    .footer-widget{

        margin-bottom:30px;
    }

    .footer-bottom{

        text-align:center;
    }

    .footer-bottom a{

        margin:0 10px;
    }

}