/* UKTradeIn Main CSS */
/* This is a starter production stylesheet. */

:root{
 --primary:#c8102e;
 --secondary:#111111;
 --accent:#ff3b30;
 --light:#f8f9fa;
 --dark:#0d0d0d;
 --text:#555;
 --white:#fff;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:Arial,sans-serif;color:var(--text);background:#fff;line-height:1.6}
img{max-width:100%;display:block}
a{text-decoration:none}
.section-padding{padding:100px 0}
.topbar{background:#111;color:#fff;padding:8px 0;font-size:14px}
.navbar{background:#fff;transition:.3s}
.navbar.sticky{position:fixed;top:0;left:0;width:100%;box-shadow:0 5px 20px rgba(0,0,0,.1);z-index:999}
.btn-primary{background:var(--primary);border-color:var(--primary)}
.hero{position:relative}
.hero-slide{min-height:100vh;display:flex;align-items:center;background:linear-gradient(135deg,#111,#2b0008);color:#fff}
.hero-tag{display:inline-block;background:rgba(255,255,255,.1);padding:8px 18px;border-radius:30px}
.hero h1 span{color:var(--primary)}
.feature-box,.service-card,.why-box,.process-box,.industry-box,.testimonial-card,.project-card,.counter-box,.tech-box{
background:#fff;border-radius:16px;padding:30px;box-shadow:0 10px 30px rgba(0,0,0,.08);transition:.3s}
.feature-box:hover,.service-card:hover,.why-box:hover,.project-card:hover{transform:translateY(-8px)}
.footer{background:#111;color:#ddd;padding:80px 0 30px}
.footer a{color:#ddd}
.footer a:hover{color:#fff}
.back-to-top{position:fixed;right:25px;bottom:25px;width:45px;height:45px;border-radius:50%;display:none;align-items:center;justify-content:center;background:var(--primary);color:#fff}
.back-to-top.show{display:flex}
@media(max-width:991px){
.section-padding{padding:70px 0}
.hero-slide{min-height:auto;padding:120px 0}
}


/* Extend this stylesheet with section-specific rules matching your HTML. */

.social-icons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
}

.social-icons a{
    width:25px;
    height:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#c8102e;
    color:#fff;
    font-size:11px;
    text-decoration:none;
    transition:all .3s ease;
}

.social-icons a:hover{
    background:#fff;
    color:#c8102e;
    /*transform:translateY(-2px);*/
    box-shadow:0 4px 10px rgba(200,16,46,.35);
}

/*==========================================================
NAVBAR
==========================================================*/

.navbar{
    position: sticky;
    top:0;
    z-index:9999;

    background:#fff;
    backdrop-filter: blur(12px);

    min-height:90px;

    padding:10px 0;

    transition:.35s ease;

    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.navbar .container{
    align-items:center;
}

/***/
.navbar .dropdown-toggle{
    display: flex;
    align-items: center;
}

.navbar .dropdown-toggle::after{
    display: inline-block;
    margin-left: .5rem;
    vertical-align: middle;
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent;
    border-bottom: 0;
}
/***/

/*=====================
LOGO
=====================*/

.navbar-brand{
    padding:0;
}

.navbar-brand img{
    height:68px;
    width:auto;
    transition:.3s;
}

.navbar-brand:hover img{
    transform:scale(1.04);
}

/*=====================
NAV LINKS
=====================*/

.navbar-nav{
    gap:8px;
}

.navbar-nav .nav-link{

    position:relative;

    color:#1b1b1b;

    font-size:15px;

    font-weight:600;

    padding:12px 14px;

    transition:.3s;
}

/* Animated underline */

/*=====================
NAV LINK HOVER EFFECT
=====================*/

.navbar-nav .nav-link::before{

    content:"";

    position:absolute;

    left:50%;

    bottom:4px;

    width:0;

    height:2px;

    background:#e60023;

    transition:.35s;

    transform:translateX(-50%);
}


.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before{

    width:70%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{

    color:#e60023;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-link:not(.dropdown-toggle).active::after{
    width:70%;
}

.navbar .dropdown-toggle{
    display:flex;
    align-items:center;
}

.navbar .dropdown-toggle::after{
    margin-left:8px;
    vertical-align:middle;
}

/*=====================
DROPDOWN
=====================*/

.dropdown-menu{

    border:none;

    border-radius:15px;

    padding:10px;

    margin-top:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.dropdown-item{

    padding:10px 15px;

    border-radius:10px;

    transition:.3s;

    font-size:14px;

    font-weight:500;
}

.dropdown-item:hover{

    background:#f8f8f8;

    color:#e60023;
}

/*=====================
REQUEST QUOTE BUTTON HOVER
=====================*/

.navbar .btn:hover{

    background:#000 !important;

    border-color:#000 !important;

    color:#fff !important;

    transform:translateY(-2px);

    box-shadow:0 15px 30px rgba(0,0,0,.25);
}
.navbar .btn{

    background:#e60023;

    border-color:#e60023;

    color:#fff;

    transition:all .35s ease;
}

/*=====================
TOGGLER
=====================*/

.navbar-toggler{

    border:none;

    box-shadow:none;
}

.navbar-toggler:focus{

    box-shadow:none;
}

/*=====================
MOBILE
=====================*/

@media (max-width:991px){

.navbar{

    min-height:auto;

    padding:10px 0;
}

.navbar-brand img{

    height:58px;
}

.navbar-collapse{

    margin-top:15px;

    padding:20px;

    border-radius:15px;

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.navbar-nav{

    gap:0;
}

.navbar-nav .nav-link{

    padding:12px 5px;
}

.navbar .btn{

    width:100%;

    margin-top:15px;
}

}



/* <!-- ==========================================================
HERO SECTION
=========================================================== --> */

.hero{
    position:relative;
}


.hero-slide{

    min-height:90vh;

    background-size:cover;

    background-position:center;

    position:relative;

    display:flex;

    align-items:center;

}


/* Background Images */


.slide1{

background-image:url("../images/hero/hero1.png");

}


.slide2{

background-image:url("../images/hero/hero2.png");

}


.slide3{

background-image:url("../images/hero/hero3.png");

}




.hero-overlay{

position:absolute;

inset:0;

background:
linear-gradient(
90deg,
rgba(0,0,0,.85),
rgba(0,0,0,.45),
rgba(0,0,0,.25)
);

}



.hero-content{

position:relative;
z-index:2;

opacity:1;
transform:none;

}


.hero-content.animate{

opacity:1;

transform:translateY(0);

}



.hero-tag{

display:inline-block;

background:#e30613;

padding:8px 20px;

border-radius:30px;

font-size:13px;

font-weight:600;

letter-spacing:1px;

margin-bottom:25px;

}



.hero h1{

font-size:65px;

font-weight:800;

line-height:1.15;

}



.hero h1 span{

display:block;

color:#e30613;

}



.hero p{

font-size:20px;

line-height:1.7;

max-width:650px;

color:#eee;

margin:25px 0;

}



.hero-buttons .btn{

padding:15px 35px;

border-radius:50px;

margin-right:15px;

font-weight:600;

}



.btn-primary{

background:#e30613;

border:none;

}


.btn-primary:hover{

background:#000;

}





.hero-stats{

display:flex;

gap:45px;

margin-top:45px;

}


.hero-stats div{

display:flex;

flex-direction:column;

}


.hero-stats strong{

font-size:35px;

}


.hero-stats span{

font-size:14px;

color:#ddd;

}






.swiper-button-next,
.swiper-button-prev{

color:white;

}


.swiper-pagination-bullet{

background:white;

opacity:.7;

}


.swiper-pagination-bullet-active{

background:#e30613;

}




@media(max-width:768px){


.hero-slide{

min-height:85vh;

}


.hero h1{

font-size:38px;

}


.hero p{

font-size:16px;

}


.hero-stats{

gap:20px;

}


.hero-stats strong{

font-size:25px;

}


}

/*=========================
        ABOUT
=========================*/

.about{
    background:#fff;
    padding:100px 0;
    overflow:hidden;
}

.about-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:520px;
}

.about-image img{
    width:100%;
    max-width:520px;
    height:auto;
    display:block;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    position:relative;
    z-index:2;
}

.about-image::before{
    content:"";
    position:absolute;
    width:230px;
    height:230px;
    background:#e53935;
    border-radius:50%;
    top:-30px;
    left:-30px;
    opacity:.08;
    z-index:0;
}

.about-image::after{
    content:"";
    position:absolute;
    width:140px;
    height:140px;
    background:#e53935;
    border-radius:50%;
    bottom:-20px;
    right:-20px;
    opacity:.06;
    z-index:0;
}

.experience-box{
    position:absolute;
    right:0;
    bottom:35px;
    background:#e53935;
    color:#fff;
    padding:22px 34px;
    border-radius:18px;
    box-shadow:0 18px 40px rgba(229,57,53,.35);
    z-index:3;
    text-align:center;
}

.experience-box h2{
    margin:0;
    font-size:48px;
    font-weight:700;
    line-height:1;
}

.experience-box span{
    display:block;
    margin-top:8px;
    font-size:15px;
    font-weight:500;
}

.section-title span{
    color:#e53935;
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-title h2{
    margin-top:15px;
    font-size:48px;
    font-weight:700;
    line-height:1.25;
}

.section-title h2 span{
    display:block;
    color:#e53935;
}

.about-text{
    margin:28px 0;
    color:#666;
    line-height:1.9;
    font-size:17px;
}

.about-list{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 0;
    font-weight:600;
    transition:.3s;
}

.about-list i{
    color:#e53935;
}

.about-list:hover{
    transform:translateX(8px);
}

.counter-box{
    background:#fff;
    border-radius:16px;
    padding:28px 15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.counter-box h3{
    margin:0;
    color:#e53935;
    font-size:38px;
    font-weight:700;
}

.counter-box p{
    margin-top:10px;
    color:#666;
}

.counter-box:hover{
    background:#e53935;
    transform:translateY(-8px);
}

.counter-box:hover h3,
.counter-box:hover p{
    color:#fff;
}

@media (max-width:991px){

    .about{
        padding:80px 0;
    }

    .about-image{
        min-height:auto;
        margin-bottom:50px;
    }

    .experience-box{
        right:20px;
        bottom:20px;
        padding:18px 28px;
    }

    .section-title h2{
        font-size:38px;
    }

}

@media (max-width:576px){

    .section-title h2{
        font-size:30px;
    }

    .experience-box{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:20px;
        display:inline-block;
    }

}

/*==========================================
    FEATURES SECTION
==========================================*/

.features{
    background:#f8f6f3;
    padding:100px 0;
}

.section-title h2{
    color:#111;
    font-size:2.5rem;
    font-weight:700;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    max-width:650px;
    margin:auto;
}

.feature-box{
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    transition:all .35s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.feature-box i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#e53935;
    color:#fff;
    font-size:32px;
    margin-bottom:25px;
    transition:all .35s ease;
}

.feature-box h4{
    color:#111;
    font-weight:600;
    margin-bottom:15px;
}

.feature-box p{
    color:#666;
    line-height:1.8;
    margin-bottom:0;
}

/* Hover Effect */

.feature-box:hover{
    transform:translateY(-12px);
    background:#e53935;
    border-color:#e53935;
    box-shadow:0 20px 40px rgba(229,57,53,.25);
}

.feature-box:hover h4,
.feature-box:hover p{
    color:#fff;
}

.feature-box:hover i{
    background:#fff;
    color:#e53935;
    transform:rotateY(180deg) scale(1.1);
}

/*==========================================================
TECHNOLOGY
==========================================================*/

.technology{
    position:relative;
    background:#f8f9fc;
    overflow:hidden;
}

.tech-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:.2;
}

.tech-shape-1{
    width:320px;
    height:320px;
    background:#d90429;
    top:-100px;
    left:-100px;
}

.tech-shape-2{
    width:350px;
    height:350px;
    background:#0d6efd;
    right:-120px;
    bottom:-120px;
}

.tech-card{

    background:#fff;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;

    border:1px solid #ececec;

    transition:.35s;

    height:100%;

    position:relative;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.tech-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:linear-gradient(90deg,#d90429,#ff6b6b);

    transform:scaleX(0);

    transition:.35s;

}

.tech-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.tech-card:hover::before{

    transform:scaleX(1);

}

.tech-card i{

    font-size:55px;

    margin-bottom:18px;

    transition:.35s;

}

.tech-card:hover i{

    transform:scale(1.15) rotate(5deg);

}

.tech-card h5{

    font-weight:700;

    margin-bottom:10px;

    color:#222;

}

.tech-card span{

    display:inline-block;

    background:#f4f4f4;

    color:#666;

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

/* Brand Colors */

.python{color:#3776ab;}
.php{color:#777bb4;}
.laravel{color:#ff2d20;}
.react{color:#61dafb;}
.vue{color:#42b883;}
.node{color:#68a063;}
.js{color:#f7df1e;}
.html{color:#e34f26;}
.css{color:#1572b6;}
.aws{color:#ff9900;}
.docker{color:#2496ed;}
.mysql{color:#00758f;}

@media(max-width:768px){

.tech-card{

padding:25px 15px;

}

.tech-card i{

font-size:42px;

}

.tech-card h5{

font-size:17px;

}

.tech-card span{

font-size:12px;

padding:5px 12px;

}

}

/*=========================================
WHY US PARALLAX
=========================================*/

.parallax-section{

    position:relative;

    padding:120px 0;

    background:url("../images/bg/why-bg.png") center center/cover fixed;

    overflow:hidden;
	
}

.parallax-section .overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.50);
}

.parallax-section .container{

    position:relative;

    z-index:2;
}

.parallax-section .section-title span{

    color:#ff3b3b;

    font-weight:700;

    letter-spacing:2px;
}

.parallax-section .section-title h2{

    color:#fff;

    font-size:42px;

    font-weight:700;

    margin-top:10px;
}

.parallax-section .section-title p{

    color:#ddd;

    max-width:700px;

    margin:20px auto 0;
}

.why-box{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.45s;

    height:100%;
}

.why-box:hover{

    transform:translateY(-15px);

    background:rgba(255,255,255,.12);

    box-shadow:0 25px 45px rgba(0,0,0,.35);
}

.why-box i{

    width:80px;

    height:80px;

    line-height:80px;

    border-radius:50%;

    background:#ff3b3b;

    color:#fff;

    font-size:32px;

    margin-bottom:25px;

    transition:.4s;
}

.why-box:hover i{

    transform:rotateY(180deg);

    background:#fff;

    color:#ff3b3b;
}

.why-box h4{

    color:#fff;

    margin-bottom:18px;

    font-weight:700;
}

.why-box p{

    color:#d5d5d5;

    margin:0;
}

/* Mobile */

@media(max-width:991px){

.parallax-section{

background-attachment:scroll;

padding:80px 0;

}

.parallax-section .section-title h2{

font-size:34px;

}

}


/*==================================================
COUNTER SECTION
==================================================*/

.counter-section{
    background:#f8f6f3;      /* Off-white */
    padding:100px 0;
}

.counter-box{
    background:#ffffff;
    border:1px solid #e8e8e8;
    border-radius:16px;
    padding:40px 20px;
    transition:all .35s ease;
    height:100%;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.counter-box:hover{
    background:#d90429;
    border-color:#d90429;
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(217,4,41,.25);
}

/* Number */
.counter-box:hover h2{
    color:#fff;
}

/* Text */
.counter-box:hover p{
    color:#fff;
}

.counter-box h2{
    font-size:3rem;
    font-weight:700;
    color:#d90429;
    margin-bottom:10px;
}

.counter-box p{
    color:#555;
    font-size:1rem;
    font-weight:500;
    margin:0;
}

/* Section Title */

.counter-section .section-title span{
    color:#d90429;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.counter-section .section-title h2{
    color:#111;
    margin-top:10px;
    margin-bottom:15px;
}

.counter-section .section-title p{
    color:#666;
    max-width:650px;
    margin:auto;
}

@media (max-width:768px){

    .counter-box{
        padding:30px 15px;
    }

    .counter-box h2{
        font-size:2.3rem;
    }

}

/*=========================================================
SERVICES
=========================================================*/

.services{
    background:#f7f8fb;
    position:relative;
    overflow:hidden;
}

.services .section-title p{
    max-width:700px;
    color:#fff;
}

.service-card{

    position:relative;

    width:100%;

    display:flex;
    flex-direction:column;

    background:rgba(255,255,255,.92);

    border-radius:22px;

    padding:38px 32px;

    overflow:hidden;

    transition:.45s;

    border:1px solid rgba(255,255,255,.6);

    backdrop-filter:blur(10px);

    box-shadow:
    0 10px 35px rgba(0,0,0,.06);

    min-height:100%;
}

/* Animated top border */

.service-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:linear-gradient(90deg,#ff0000,#ff4545);

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;
}

/* Floating background */

.service-card::after{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    background:radial-gradient(circle,
    rgba(255,0,0,.12),transparent 70%);

    right:-120px;
    top:-120px;

    transition:.5s;
}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.18);

    border-color:#ff1e1e;
}

.service-card:hover::before{

    transform:scaleX(1);
}

.service-card:hover::after{

    transform:scale(1.3);
}

/* ICON */

.service-icon{

    width:78px;
    height:78px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#ff0000,#b40000);

    color:#fff;

    font-size:32px;

    margin-bottom:25px;

    box-shadow:
    0 15px 30px rgba(255,0,0,.35);

    transition:.45s;
}

.service-card:hover .service-icon{

    transform:rotate(-8deg) scale(1.08);
}

/* TAG */

.service-tag{

    display:inline-block;

    align-self:flex-start;

    padding:6px 16px;

    border-radius:30px;

    background:#ffeaea;

    color:#d60000;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:18px;

    transition:.4s;
}

.service-card:hover .service-tag{

    background:#d60000;

    color:#fff;
}

/* Heading */

.service-card h4{

    font-size:24px;

    font-weight:700;

    color:#111;

    margin-bottom:18px;

    transition:.4s;
}

/* Paragraph */

.service-card p{

    color:#666;

    line-height:1.8;

    flex-grow:1;

    margin-bottom:28px;
}

/* Button */

.service-btn{

    color:#111;

    font-weight:700;

    text-decoration:none;

    display:inline-flex;

    align-items:center;

    gap:10px;

    transition:.4s;
}

.service-btn i{

    transition:.35s;
}

.service-card:hover .service-btn{

    color:#d60000;
}

.service-card:hover .service-btn i{

    transform:translateX(8px);
}

/* ACTIVE CARD */

.service-card.active{

    background:linear-gradient(135deg,#1d1d1d,#000);

    color:#fff;
}

.service-card.active h4{

    color:#fff;
}

.service-card.active p{

    color:#ddd;
}

.service-card.active .service-btn{

    color:#fff;
}

.service-card.active .service-tag{

    background:#ff1e1e;

    color:#fff;
}

/* Hover Active */

.service-card.active:hover{

    background:linear-gradient(135deg,#d60000,#830000);
}

/* Mobile */

@media(max-width:991px){

.service-card{

padding:30px;

}

.service-card h4{

font-size:22px;

}

}

/*=========================================================
PARALLAX BACKGROUND
=========================================================*/

.parallax-section{

    position:relative;

    background-image:url("../images/bg/services-bg.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    background-attachment:fixed;

    overflow:hidden;

}

.parallax-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.50);

}

.parallax-section .container{

    position:relative;

    z-index:2;

}

/*==================================
PROCESS SECTION
==================================*/

.process{
    background:#fff;
    position:relative;
    overflow:hidden;
}

.process .section-title p{
    max-width:700px;
    margin:20px auto 0;
    color:#666;
}

.process-wrapper{
    position:relative;
}

.process-line{
    position:absolute;
    top:70px;
    left:10%;
    width:80%;
    height:4px;
    background:linear-gradient(to right,#d60000,#111);
    z-index:0;
}

.process-box{
    position:relative;
    background:#fff;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    border:1px solid #ececec;
    box-shadow:0 20px 45px rgba(0,0,0,.07);
    transition:.4s;
    height:100%;
    z-index:2;
    overflow:hidden;
}

.process-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#d60000;
    transition:.4s;
}

.process-box:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(214,0,0,.20);
}

.process-box:hover::before{
    height:100%;
    opacity:.05;
}

.step-number{
    position:absolute;
    top:18px;
    right:18px;
    font-size:55px;
    font-weight:800;
    color:#f2f2f2;
    line-height:1;
    z-index:0;
}

.process-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:linear-gradient(135deg,#d60000,#ff4040);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    box-shadow:0 12px 30px rgba(214,0,0,.35);
    transition:.4s;
    position:relative;
    z-index:2;
}

.process-box:hover .process-icon{
    transform:rotateY(180deg) scale(1.08);
}

.process-box h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.process-box p{
    color:#666;
    line-height:1.8;
    margin:0;
}

.process-box:hover h4{
    color:#d60000;
}

@media(max-width:991px){

    .process-line{
        display:none;
    }

    .process-box{
        margin-bottom:20px;
    }

}

/*==========================================
INDUSTRIES
==========================================*/

.industries{
    background:#f8f8f8;
    position:relative;
    overflow:hidden;
}

.industry-card{

    position:relative;

    height:100%;

    background:#fff;

    border-radius:20px;

    padding:40px 28px;

    text-align:center;

    overflow:hidden;

    transition:.45s;

    border:1px solid #ececec;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.industry-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#ff0000,#990000);

    transition:.5s;

}

.industry-card:hover::before{

    left:0;

}

.industry-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(230,0,0,.18);

}

.industry-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#ff2323,#8b0000);

    color:#fff;

    font-size:34px;

    margin-bottom:28px;

    transition:.4s;

}

.industry-card:hover .industry-icon{

    transform:rotateY(180deg) scale(1.08);

    box-shadow:0 10px 35px rgba(255,0,0,.45);

}

.industry-card h4{

    font-size:22px;

    font-weight:700;

    color:#111;

    margin-bottom:15px;

}

.industry-card p{

    color:#666;

    font-size:15px;

    line-height:1.8;

    margin:0;

}

.industry-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(255,0,0,.05);

    border-radius:50%;

    top:-90px;

    right:-90px;

    transition:.5s;

}

.industry-card:hover::after{

    transform:scale(1.4);

    background:rgba(255,0,0,.08);

}

/* Mobile */

@media(max-width:768px){

.industry-card{

padding:35px 20px;

}

.industry-icon{

width:75px;

height:75px;

font-size:28px;

}

.industry-card h4{

font-size:20px;

}

}


/*=========================================
CTA SECTION
=========================================*/

.cta-section{
    padding:100px 0;
    background:linear-gradient(135deg,#f8f9fc,#eef4ff);
    position:relative;
    overflow:hidden;
}

.cta-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(220,38,38,.08);
    border-radius:50%;
    top:-180px;
    left:-120px;
    filter:blur(30px);
}

.cta-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(37,99,235,.08);
    border-radius:50%;
    bottom:-150px;
    right:-100px;
    filter:blur(25px);
}

.cta-wrapper{
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    border-radius:28px;
    padding:65px;
    color:#fff;
    position:relative;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.cta-wrapper::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
    top:-100px;
    right:-60px;
}

.cta-wrapper::after{
    content:"";
    position:absolute;
    width:140px;
    height:140px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
    bottom:-50px;
    left:-40px;
}

.cta-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:30px;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:20px;
    color:#fff;
}

.cta-wrapper h2{
    font-size:2.6rem;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.25;
}

.cta-wrapper p{
    font-size:1.08rem;
    color:rgba(255,255,255,.85);
    line-height:1.8;
    max-width:700px;
    margin-bottom:0;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 40px;
    background:#fff;
    color:#dc2626;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    font-size:1rem;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.cta-btn i{
    transition:.35s;
}

.cta-btn:hover{
    background:#dc2626;
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(220,38,38,.35);
}

.cta-btn:hover i{
    transform:translateX(6px);
}

@media(max-width:991px){

    .cta-wrapper{
        padding:45px 35px;
        text-align:center;
    }

    .cta-wrapper h2{
        font-size:2rem;
    }

}

@media(max-width:576px){

    .cta-section{
        padding:70px 0;
    }

    .cta-wrapper{
        padding:35px 25px;
    }

    .cta-wrapper h2{
        font-size:1.7rem;
    }

    .cta-btn{
        width:100%;
    }

}

/*==================================================
TESTIMONIALS
==================================================*/

/*==================================================
TESTIMONIALS
==================================================*/

.testimonials{

    position: relative;

    padding: 80px 0;

    background: linear-gradient(135deg,#b71c1c,#dc3545);

    overflow: hidden;

}

.testimonials::before{

    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

}

.testimonials::after{

    content:"";

    position:absolute;

    bottom:-150px;
    left:-150px;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

}

.testimonials .container{

    position:relative;

    z-index:2;

}

/* Fix Swiper height */
.testimonialSwiper{
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 35px;
}

.testimonialSwiper .swiper-wrapper{
    height: auto !important;
    align-items: stretch;
}

.testimonialSwiper .swiper-slide{
    height: auto !important;
    display: flex;
}

.testimonial-card{
    width: 100%;
    height: auto;
}

/* Section Title */

.testimonials .section-title span{

    color:#ffd8d8;

}

.testimonials .section-title h2{

    color:#fff;

}

.testimonials .section-title p{

    color:rgba(255,255,255,.85);

}

/* Cards */

.testimonial-card{

    background:#fff;

    border-radius:18px;

    padding:20px;

    border:none;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.25);

}

.quote{

    width:40px;
    height:40px;

    border-radius:50%;

    background:#dc3545;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:12px;

}

.stars{

    color:#ffc107;

    margin-bottom:12px;

}

.testimonial-card p{

    color:#555;

    font-size:14px;

    line-height:1.7;

    margin-bottom:18px;

}

.client{

    display:flex;

    align-items:center;

    gap:12px;

}

.client img{

    width:50px;

    height:50px;

    border-radius:50%;

    object-fit:cover;

}

.client h5{

    margin:0;

    color:#222;

}

.client span{

    color:#777;

    font-size:12px;

}

/* Pagination */

.swiper-pagination{

    margin-top:20px;

}

.swiper-pagination-bullet{

    background:rgba(255,255,255,.45);

    opacity:1;

}

.swiper-pagination-bullet-active{

    background:#fff;

    transform:scale(1.25);

}

@media(max-width:991px){

    .testimonials{

        padding:60px 0;

    }

}

@media(max-width:767px){

    .testimonial-card{

        padding:18px;

    }

}

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

.faq{
    background:#fff;
    position:relative;
}

.faq-accordion .accordion-item{
    border:none;
    margin-bottom:20px;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 12px 35px rgba(0,0,0,.07);
    transition:.35s;
}

.faq-accordion .accordion-item:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.faq-accordion .accordion-button{
    background:#fff;
    color:#222;
    font-size:18px;
    font-weight:600;
    padding:24px 28px;
    border:none;
    box-shadow:none;
    transition:.35s;
}

.faq-accordion .accordion-button i{
    color:#d61f26;
    width:24px;
    text-align:center;
    font-size:20px;
}

.faq-accordion .accordion-button:not(.collapsed){
    background:#d61f26;
    color:#fff;
}

.faq-accordion .accordion-button:not(.collapsed) i{
    color:#fff;
}

.faq-accordion .accordion-button:focus{
    box-shadow:none;
}

.faq-accordion .accordion-body{
    padding:25px 30px 30px;
    color:#666;
    font-size:16px;
    line-height:1.8;
    background:#fff;
}

.faq-accordion .accordion-button::after{
    background-size:18px;
    transition:.35s;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
}

@media(max-width:768px){

    .faq-accordion .accordion-button{
        font-size:16px;
        padding:18px 20px;
    }

    .faq-accordion .accordion-body{
        padding:20px;
        font-size:15px;
    }

}


/*=====================================================
CONTACT
=====================================================*/

.contact{
    background:#f7f8fc;
}

.contact-wrapper{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.contact-info{
    background:linear-gradient(160deg,#000,#930019);
    color:#fff;
    height:100%;
    padding:60px 40px;
}

.contact-tag{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:25px;
    font-size:14px;
}

.contact-info h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
}

.contact-info p{
    color:rgba(255,255,255,.9);
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-top:35px;
}

.contact-item .icon{
    width:55px;
    height:55px;
    border-radius:15px;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.contact-item h6{
    font-weight:700;
    margin-bottom:5px;
}

.contact-item p{
    margin:0;
}

.response-box{
    margin-top:45px;
    background:rgba(255,255,255,.12);
    padding:18px 20px;
    border-radius:15px;
    font-size:15px;
}

.response-box i{
    margin-right:10px;
}

.contact-social{
    margin-top:40px;
    display:flex;
    gap:12px;
}

.contact-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    background:rgba(255,255,255,.15);
    transition:.3s;
}

.contact-social a:hover{
    background:#fff;
    color:#c8102e;
    transform:translateY(-5px);
}

.contact-form-box{
    padding:60px;
}

.contact-form-box h3{
    font-weight:700;
    margin-bottom:10px;
}

.contact-form .form-control,
.contact-form .form-select,
.contact-form-box .form-control,
.contact-form-box .form-select{
    border:none;
    background:#f5f6fa;
    border-radius:12px;
    height:58px;
    padding:15px 20px;
    transition:.3s;
    box-shadow:none;
}

.contact-form textarea,
.contact-form-box textarea{
    min-height:170px;
    resize:none;
    padding-top:18px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus{
    background:#fff;
    border:1px solid #c8102e;
    box-shadow:0 0 0 .15rem rgba(200,16,46,.15);
}

.btn-contact{
    border:none;
    background:#c8102e;
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.btn-contact:hover{
    background:#111;
    transform:translateY(-3px);
}

@media(max-width:991px){

.contact-info{
    padding:45px 30px;
}

.contact-form-box{
    padding:40px 30px;
}

}


/*==================================================
NEWSLETTER
==================================================*/

.newsletter{
    position:relative;
    overflow:hidden;
    padding:100px 0;
    background:linear-gradient(135deg,#8b0000,#d60000);
}

.newsletter-wrapper{
    position:relative;
    z-index:2;
    background:#faf8f5;
    border-radius:25px;
    padding:60px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
    border:1px solid rgba(0,0,0,.06);
}

.newsletter .section-subtitle{
    color:#c1121f;
    display:inline-flex;
    align-items:center;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
    text-transform:uppercase;
}

.newsletter h2{
    color:#1a1a1a;
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.newsletter p{
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

.newsletter-features div{
    color:#333;
    font-weight:600;
}

.newsletter-features i{
    color:#d60000;
}

.newsletter-note{
    color:#666;
    margin-top:18px;
    font-size:14px;
}

.newsletter-form{
    margin-top:15px;
}

.newsletter-input{
    background:#fff;
    border-radius:60px;
    display:flex;
    align-items:center;
    padding:8px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.newsletter-input i{
    color:#d60000;
    font-size:18px;
    margin-left:20px;
}

.newsletter-input input{
    flex:1;
    border:none;
    outline:none;
    padding:16px;
    font-size:16px;
    background:transparent;
}

.newsletter-input button{
    border:none;
    padding:16px 34px;
    border-radius:50px;
    background:#d60000;
    color:#fff;
    font-weight:600;
    transition:.35s;
}

.newsletter-input button:hover{
    background:#111;
    transform:translateY(-2px);
}

.newsletter-note i{
    color:#4caf50;
    margin-right:8px;
}

/* Decorative Shapes */

.newsletter-shape{
    position:absolute;
    border-radius:50%;
    opacity:.15;
}

.shape-1{
    width:280px;
    height:280px;
    background:#fff;
    top:-100px;
    left:-80px;
}

.shape-2{
    width:220px;
    height:220px;
    background:#fff;
    right:-70px;
    bottom:-70px;
}

@media(max-width:991px){

.newsletter{
    padding:80px 0;
}

.newsletter-wrapper{
    padding:40px 30px;
}

.newsletter h2{
    font-size:32px;
}

.newsletter-input{
    flex-direction:column;
    border-radius:20px;
    padding:20px;
}

.newsletter-input i{
    display:none;
}

.newsletter-input input{
    width:100%;
    margin-bottom:15px;
}

.newsletter-input button{
    width:100%;
}

.newsletter-features{
    gap:12px;
}

}

/*==============================================================
FOOTER
==============================================================*/

.footer{

    background:linear-gradient(135deg,#111,#1c1c1c);

    color:#d9d9d9;

    padding:90px 0 30px;

    position:relative;

}

.footer-logo{

    max-width:220px;

    margin-bottom:25px;

}

.footer-desc{

    color:#bbb;

    line-height:1.9;

    border-left:4px solid var(--primary-color);

    padding-left:18px;

    margin-bottom:30px;

}

.footer h4{

    color:#fff;

    margin-bottom:25px;

    font-size:22px;

    position:relative;

}

.footer h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:45px;

    height:3px;

    background:var(--primary-color);

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#bbb;

    text-decoration:none;

    transition:.3s;

    position:relative;

}

.footer-links a::before{

    content:"›";

    color:var(--primary-color);

    margin-right:8px;

}

.footer-links a:hover{

    color:#fff;

    padding-left:8px;

}

.footer-contact div{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:18px;

}

.footer-contact i{

    color:var(--primary-color);

    width:20px;

    margin-top:5px;

}

.footer-hours{

    margin-top:30px;

    background:rgba(255,255,255,.05);

    padding:18px;

    border-radius:10px;

}

.footer-hours h6{

    color:#fff;

    margin-bottom:8px;

}

.footer-hours p{

    margin:0;

    color:#bbb;

}

.footer-social{

    display:flex;

    gap:12px;

}

.footer-social a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--primary-color);

    transform:translateY(-6px);

}

.footer-tech{

    margin:60px 0 40px;

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.footer-tech span{

    padding:10px 18px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    font-size:14px;

    transition:.3s;

}

.footer-tech span:hover{

    background:var(--primary-color);

    color:#fff;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    padding-top:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom p{

    margin:0;

}

.footer-bottom a{

    color:#bbb;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom a:hover{

    color:#fff;

}

.footer-bottom span{

    margin:0 12px;

    color:#666;

}

@media(max-width:768px){

.footer{

text-align:center;

}

.footer-desc{

border:none;

padding-left:0;

}

.footer h4::after{

left:50%;

transform:translateX(-50%);

}

.footer-contact div{

justify-content:center;

}

.footer-social{

justify-content:center;

}

.footer-tech{

justify-content:center;

}

.footer-bottom{

justify-content:center;

text-align:center;

}

}