/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
    --primary-color: #ff5a3c;
    --secondary-color: #ed7136;
    --white-color: #ffffff;
    --dark-color: #111111;
    --text-color: #555555;
}

/* Global Style */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6{
    color: var(--dark-color);
    font-weight: 600;
}

/* Links */
a{
    text-decoration: none;
    color: var(--primary-color);
    transition: 0.3s ease;
}

a:hover{
    color: var(--secondary-color);
}

/* Buttons */
.btn-primary-custom{
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-primary-custom:hover{
    background-color: var(--secondary-color);
    color: #fff;
}

/* Navbar */




/* Section Spacing */
.section-padding{
    padding: 80px 0;
}

/* Card Design */
.custom-card{
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.custom-card:hover{
    transform: translateY(-5px);
}

/* Footer */
footer{
    background-color: var(--dark-color);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}


        /* =========================
           GLOBAL
        ==========================*/

       

        /* =========================
           HEADER START
        ==========================*/

       .main-header{

position:fixed;
top:0;
left:0;
width:100%;
padding:25px 0;
z-index:999;
transition:.4s;
}

        /* SCROLL HEADER */

       .main-header.sticky{

background:#fff;
box-shadow:0 10px 30px rgba(0,0,0,.08);
padding:15px 0;
}

      .custom-navbar{

display:flex;
align-items:center;
}
        .container{
            max-width: 1320px;
        }

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

        .navbar-brand{

            font-size: 58px;
            font-weight: 800;

            color: #ffffff !important;

            line-height: 1;

            letter-spacing: -2px;

            transition: 0.3s ease;
        }

        .navbar-brand span{
            color: var(--primary-color);
        }

        /* LOGO COLOR AFTER SCROLL */

        .main-header.sticky .navbar-brand{
            color: #111111 !important;
        }

        /* =========================
           MENU
        ==========================*/

        .navbar-collapse{
            flex-grow: 0;
            display: flex;
            align-items: center;
            flex: 1;
        }

        .navbar-nav{
            gap: 34px;
            margin: auto;
        }

        .navbar-nav .nav-link{

            color: #ffffff !important;

            font-size: 18px;

            font-weight: 600;

            padding: 0 !important;

            transition: 0.3s ease;

            position: relative;
        }

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

            color: var(--primary-color) !important;
        }

        /* MENU COLOR AFTER SCROLL */

        .main-header.sticky .nav-link{
            color: #111111 !important;
        }

        .main-header.sticky .nav-link:hover,
        .main-header.sticky .nav-link.active{
            color: var(--primary-color) !important;
        }

        /* DROPDOWN ICON */

        .dropdown-toggle::after{

            border: none;

            content: "\F282";

            font-family: bootstrap-icons !important;

            font-size: 11px;

            vertical-align: middle;

            margin-left: 6px;

            font-weight: 700;
        }

        /* =========================
           RIGHT SIDE
        ==========================*/

        .header-right{

            margin-left: auto;

            gap: 28px;
        }

        /* =========================
           BUTTON
        ==========================*/

        .header-btn{

            height: 62px;
margin-left: 93px;
            padding: 0 38px;

            background: var(--primary-color);

            border-radius: 60px;

            color: #ffffff !important;

            font-size: 18px;

            font-weight: 600;

            display: flex;

            align-items: center;

            gap: 12px;

            transition: 0.3s ease;
        }

        .header-btn:hover{

            background: var(--secondary-color);

            transform: translateY(-3px);
        }

        /* =========================
           SEARCH ICON
        ==========================*/

        .search-icon{

            font-size: 30px;

            color: #ffffff !important;

            transition: 0.3s ease;
        }

        .search-icon:hover{
            color: var(--primary-color) !important;
        }

        .main-header.sticky .search-icon{
            color: #111111 !important;
        }

        /* =========================
           CUSTOM MENU ICON
        ==========================*/

        .menu-toggle{

            width: 48px;

            height: 34px;

            display: flex;

            flex-direction: column;

            justify-content: space-between;

            cursor: pointer;
        }

        .menu-toggle span{

            width: 100%;

            height: 4px;

            background: #ffffff;

            border-radius: 50px;

            position: relative;

            transition: 0.3s ease;
        }

        .menu-toggle span:nth-child(2){
            width: 72%;
            margin-left: auto;
        }

        /* ORANGE DOT */

        .menu-toggle span::after{

            content: "";

            width: 8px;

            height: 8px;

            background: var(--primary-color);

            border-radius: 50%;

            position: absolute;

            right: -12px;

            top: -2px;
        }

        .menu-toggle:hover span{
            background: var(--primary-color);
        }

        /* MENU COLOR AFTER SCROLL */

        .main-header.sticky .menu-toggle span{
            background: #111111;
        }

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

        .navbar-toggler{

            border: none;

            box-shadow: none !important;
        }

        .navbar-toggler i{

            color: #ffffff;

            font-size: 34px;
        }

        .main-header.sticky .navbar-toggler i{
            color: #111111;
        }

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

        @media(max-width:991px){

            .main-header{

                background: #ffffff;

                padding: 15px 0;
            }

            .navbar-brand{

                font-size: 42px;

                color: #111111 !important;

                margin-right: 0;
            }

            .navbar-collapse{

                background: #ffffff;

                margin-top: 20px;

                padding: 25px;

                border-radius: 20px;

                box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            }

            .navbar-nav{

                gap: 18px;
            }

            .navbar-nav .nav-link{

                color: #111111 !important;
            }

            .search-icon{

                color: #111111 !important;
            }

            .menu-toggle span{

                background: #111111;
            }

            .header-right{

                flex-direction: column;

                align-items: flex-start !important;

                margin-top: 25px;
            }

            .header-btn{

                width: 100%;

                justify-content: center;

                height: 56px;

                font-size: 16px;
            }
        }

        /* =========================
           DEMO HERO SECTION
        ==========================*/

        .hero-section{

            height: 100vh;

            background:
            linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
            url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=1600&auto=format&fit=crop');

            background-size: cover;

            background-position: center;

            display: flex;

            align-items: center;

            justify-content: center;

            text-align: center;
        }

        .hero-section h1{

            color: #ffffff;

            font-size: 80px;

            font-weight: 800;
        }



        /* =========================
   HERO SECTION
=========================*/

.hero-section{

    position: relative;

    width: 100%;

    min-height: 100vh;

    background:
    radial-gradient(circle at center, rgba(255,90,60,0.15), transparent 40%),
    linear-gradient(90deg,#070707,#160b05,#070707);

    overflow: hidden;

    display: flex;

    align-items: center;

    padding-top: 120px;
}

/* GRID LINES */

.hero-section::before{

    content: "";

    position: absolute;

    width: 100%;

    height: 100%;

    background-image:

    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

    background-size: 80px 80px;

    top: 0;
    left: 0;
}

/* PARTICLES */

.particles{

    position: absolute;

    width: 100%;
    height: 100%;

    top: 0;
    left: 0;

    overflow: hidden;
}

.particles::before,
.particles::after{

    content: "";

    position: absolute;

    width: 6px;
    height: 6px;

    background: var(--primary-color);

    border-radius: 50%;

    box-shadow:
    200px 100px #ff5a3c,
    500px 250px #ff5a3c,
    700px 400px #ff5a3c,
    1000px 150px #ff5a3c,
    1200px 350px #ff5a3c;

    animation: particleMove 12s linear infinite;
}

.particles::after{

    animation-delay: 6s;
}

@keyframes particleMove{

    0%{
        transform: translateY(0px);
        opacity: 0;
    }

    50%{
        opacity: 1;
    }

    100%{
        transform: translateY(-80px);
        opacity: 0;
    }
}

/* HERO CONTENT */

.hero-content{
    position: relative;
    z-index: 2;
}

.hero-subtitle{

    color: var(--primary-color);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    display: inline-block;

    margin-bottom: 20px;
}

.hero-content h1{

    font-size: 40px;

    font-weight: 800;

    line-height: 1.1;

    color: #ffffff;

    margin-bottom: 25px;
}

.hero-content p{

    color: rgba(255,255,255,0.75);

    font-size: 18px;

    max-width: 500px;

    margin-bottom: 35px;
}

/* BUTTON */

.hero-btn{

    width: fit-content;

    height: 58px;

    padding: 0 34px;

    border-radius: 60px;

    background: var(--primary-color);

    color: #ffffff !important;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

    transition: 0.3s ease;
}

.hero-btn:hover{

    background: var(--secondary-color);

    transform: translateY(-3px);
}

/* IMAGE SIDE */

.hero-image-wrapper{

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: center;

    align-items: center;
}

/* BIG CIRCLE */

.hero-circle{

    position: absolute;

    width: 520px;

    height: 520px;

    border: 2px solid rgba(255,90,60,0.18);

    border-radius: 50%;

    animation: rotateCircle 15s linear infinite;
}

.hero-circle::before{

    content: "";

    position: absolute;

    inset: 35px;

    border: 1px solid rgba(255,90,60,0.15);

    border-radius: 50%;
}

.hero-circle::after{

    content: "";

    position: absolute;

    inset: 70px;

    border: 1px solid rgba(255,90,60,0.12);

    border-radius: 50%;
}

@keyframes rotateCircle{

    100%{
        transform: rotate(360deg);
    }
}

/* PERSON IMAGE */

.hero-person{

    position: relative;

    z-index: 2;

    width: 500px;

    animation: floatPerson 4s ease-in-out infinite;
}

@keyframes floatPerson{

    50%{
        transform: translateY(-12px);
    }
}

/* GRAPH */

.hero-graph{

    position: absolute;

    top: 40px;
    right: 10px;

    width: 240px;

    z-index: 1;

    animation: graphMove 3s ease-in-out infinite;
}

@keyframes graphMove{

    50%{
        transform: translateY(-10px);
    }
}

/* ROCKET */

.hero-rocket{

    position: absolute;

    left: -30px;
    bottom: 20px;

    width: 120px;

    animation: rocketMove 3s ease-in-out infinite;
}

@keyframes rocketMove{

    50%{
        transform: translateY(-20px);
    }
}

/* CARD */

.hero-card{

    position: absolute;

    left: 20px;
    bottom: 20px;

    width: 180px;

    background: #ffffff;

    border-radius: 20px;

    padding: 25px;

    z-index: 3;

    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.hero-card h4{

    font-size: 42px;

    font-weight: 800;

    color: #111;

    margin-bottom: 5px;
}

.hero-card p{

    margin: 0;

    color: #555;
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-section{

        padding-top: 160px;

        text-align: center;
    }

    .hero-content h1{

        font-size: 48px;
    }

    .hero-content p{

        margin: auto;
        margin-bottom: 30px;
    }

    .hero-image-wrapper{

        margin-top: 60px;
    }

    .hero-person{

        width: 320px;
    }

    .hero-circle{

        width: 340px;
        height: 340px;
    }

    .hero-graph{

        width: 140px;
    }

    .hero-rocket{

        width: 80px;
    }

    .hero-card{

        width: 140px;

        padding: 18px;
    }

    .hero-card h4{

        font-size: 28px;
    }
}


/* =========================
   PROCESS + ABOUT SECTION
=========================*/

.process-about-section{

    background: #f7f5f2;

    padding: 120px 0;

    position: relative;
}

/* TITLE */

.section-title{

    margin-bottom: 80px;
}

.section-subtitle{

    color: var(--primary-color);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    display: inline-block;

    margin-bottom: 12px;
}

.section-title h2{

    font-size: 52px;

    font-weight: 800;

    color: #111;

    margin: 0;
}

/* PROCESS */

.process-row{

    margin-bottom: 120px;
}

.process-item{

    text-align: center;

    position: relative;
}

.process-circle{

    width: 120px;

    height: 120px;

    background: #fff;

    border-radius: 50%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    z-index: 2;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.process-circle::before{

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    border: 1px solid rgba(255,90,60,0.25);

    border-radius: 50%;
}

.process-circle i{

    font-size: 42px;

    color: var(--primary-color);
}

.process-number{

    display: block;

    font-size: 32px;

    font-weight: 700;

    color: rgba(255,90,60,0.6);

    margin: 25px 0 18px;
}

.process-item h4{

    font-size: 20px;

    line-height: 1.7;

    color: #111;

    max-width: 260px;

    margin: auto;
}

/* ABOUT */

.about-image-wrapper{

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;
}

.about-circle{

    position: absolute;

    width: 520px;

    height: 520px;

    border: 1px solid rgba(255,90,60,0.15);

    border-radius: 50%;
}

.small-circle{

    width: 400px;

    height: 400px;
}

.about-person{

    width: 430px;

    position: relative;

    z-index: 2;
}

/* CARD */

.about-card{

    position: absolute;

    left: 40px;

    bottom: 30px;

    background: var(--primary-color);

    color: #fff;

    padding: 35px;

    border-radius: 20px;

    width: 240px;

    z-index: 3;
}

.about-card h3{

    font-size: 52px;

    font-weight: 800;

    margin-bottom: 10px;

    color: #fff;
}

.about-card p{

    margin: 0;

    line-height: 1.7;

    font-size: 15px;
}

/* CONTENT */

.about-content{

    padding-left: 30px;
}

.about-content h2{

    font-size: 58px;

    font-weight: 800;

    line-height: 1.2;

    color: #111;

    margin-bottom: 25px;
}

.about-content p{

    font-size: 17px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 35px;
}

/* BOX */

.about-box{

    background: #fff;

    border-radius: 24px;

    padding: 25px;

    display: flex;

    gap: 25px;

    border: 1px solid rgba(0,0,0,0.06);
}

.custom-box{

    width: 45%;

    background: #f8f8f8;

    border-radius: 20px;

    padding: 30px;
}

.custom-box h4{

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 15px;
}

.custom-box p{

    font-size: 15px;

    margin-bottom: 25px;
}

.about-list{

    width: 55%;
}

.about-list ul{

    padding: 0;

    margin: 0 0 30px;

    list-style: none;
}

.about-list ul li{

    position: relative;

    padding-left: 28px;

    margin-bottom: 18px;

    font-size: 16px;

    color: #444;
}

.about-list ul li::before{

    content: "";

    position: absolute;

    left: 0;
    top: 8px;

    width: 10px;

    height: 10px;

    background: var(--primary-color);

    border-radius: 50%;
}

/* LIVE CHAT */

.live-chat{

    display: flex;

    align-items: center;

    gap: 15px;
}

.chat-icon{

    width: 60px;

    height: 60px;

    border-radius: 50%;

    border: 2px solid var(--primary-color);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-color);

    font-size: 24px;
}

.live-chat h5{

    margin: 0;

    font-size: 22px;

    font-weight: 700;
}

.live-chat span{

    color: #666;
}

/* RESPONSIVE */

@media(max-width:991px){

    .process-row{

        gap: 50px;
    }

    .section-title h2{

        font-size: 36px;
    }

    .about-row{

        margin-top: 100px;
    }

    .about-content{

        padding-left: 0;

        margin-top: 60px;
    }

    .about-content h2{

        font-size: 38px;
    }

    .about-box{

        flex-direction: column;
    }

    .custom-box,
    .about-list{

        width: 100%;
    }

    .about-circle{

        width: 320px;
        height: 320px;
    }

    .small-circle{

        width: 250px;
        height: 250px;
    }

    .about-person{

        width: 280px;
    }

    .about-card{

        width: 190px;

        padding: 25px;

        left: 0;
    }

    .about-card h3{

        font-size: 38px;
    }
}




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

.services-section{

    position: relative;

    background:
    radial-gradient(circle at center,
    rgba(255,90,60,0.22),
    transparent 35%),

    linear-gradient(90deg,#070707,#120904,#070707);

    padding: 120px 0 180px;

    overflow: hidden;
}

/* DOT PATTERN */

.services-section::before{

    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    top: 0;
    left: 0;

    background-image: radial-gradient(
    rgba(255,255,255,0.10) 1px,
    transparent 1px);

    background-size: 36px 36px;

    opacity: 0.5;
}

/* PARTICLES */

.service-particles{

    position: absolute;

    width: 100%;
    height: 100%;

    top: 0;
    left: 0;

    overflow: hidden;
}

.service-particles::before{

    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    background: var(--primary-color);

    border-radius: 50%;

    box-shadow:
    100px 120px #ff5a3c,
    350px 200px #ff5a3c,
    650px 90px #ff5a3c,
    850px 300px #ff5a3c,
    1150px 180px #ff5a3c,
    1400px 250px #ff5a3c;

    animation: particleMove 8s linear infinite;
}

/* TITLE */

.services-title{

    position: relative;

    z-index: 2;

    margin-bottom: 70px;
}

.services-title h2{

    color: #ffffff;

    font-size: 58px;

    font-weight: 800;

    max-width: 950px;

    margin: auto;

    line-height: 1.2;
}

/* SERVICE BOX */

.service-row{

    row-gap: 30px;

    position: relative;

    z-index: 2;
}

.service-box{

    position: relative;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 22px;

    padding: 40px;

    min-height: 240px;

    backdrop-filter: blur(12px);

    transition: 0.4s ease;

    overflow: hidden;
}

.service-box:hover{

    transform: translateY(-8px);

    border-color: rgba(255,90,60,0.5);
}

/* ACTIVE */

.active-box{

    margin-top: -40px;
}

/* NUMBER */

.service-number{

    position: absolute;

    top: 28px;
    right: 28px;

    color: rgba(255,90,60,0.8);

    font-size: 18px;

    font-weight: 700;
}

/* ICON */

.service-icon{

    width: 72px;

    height: 72px;

    border-radius: 18px;

    background: rgba(255,90,60,0.12);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 30px;
}

.service-icon i{

    color: var(--primary-color);

    font-size: 34px;
}

/* TITLE */

.service-box h3{

    color: #ffffff;

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 18px;
}

/* TEXT */

.service-box p{

    color: rgba(255,255,255,0.72);

    line-height: 1.8;

    margin: 0;
}

/* ROCKET */

.rocket-center{

    position: relative;

    width: 100%;

    height: 280px;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 2;
}

/* CIRCLE */

.rocket-circle{

    position: absolute;

    width: 800px;

    height: 800px;

    border: 1px solid rgba(255,90,60,0.25);

    border-radius: 50%;
}

/* ROCKET IMAGE */

.rocket-image{

    width: 180px;

    position: relative;

    z-index: 3;

    animation: rocketMove 3s ease-in-out infinite;
}

/* SECOND ROW */

.second-row{

    margin-top: -20px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .services-section{

        padding: 90px 0 120px;
    }

    .services-title h2{

        font-size: 38px;
    }

    .active-box{

        margin-top: 0;
    }

    .service-box{

        min-height: auto;

        padding: 30px;
    }

    .service-box h3{

        font-size: 24px;
    }

    .rocket-center{

        height: 200px;
    }

    .rocket-circle{

        width: 400px;
        height: 400px;
    }

    .rocket-image{

        width: 110px;
    }

    .second-row{

        margin-top: 20px;
    }
}


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

.faq-section{

    padding: 120px 0;

    background: #f8f6f2;
}

/* LEFT SIDE */

.faq-left{

    background:
    radial-gradient(rgba(255,90,60,0.12) 1px, transparent 1px);

    background-size: 18px 18px;

    padding: 45px;

    border-radius: 35px;

    position: relative;
}

/* TOP BOX */

.faq-info-box{

    background: #fff;

    border-radius: 30px;

    padding: 50px;

    margin-bottom: 50px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.faq-info-box h2{

    font-size: 62px;

    line-height: 1.15;

    font-weight: 800;

    color: #111;

    margin: 18px 0 22px;
}

.faq-info-box p{

    font-size: 19px;

    color: #666;

    line-height: 1.8;

    margin: 0;
}

/* ASSISTANCE */

.assistance-box h3{

    font-size: 48px;

    font-weight: 800;

    color: #111;

    margin-bottom: 35px;
}

/* HELP BOX */

.help-box{

    background: #fff;

    border-radius: 24px;

    padding: 32px;

    display: flex;

    align-items: center;

    gap: 22px;

    margin-bottom: 25px;

    transition: 0.3s ease;
}

.help-box:hover{

    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

/* ICON */

.help-icon{

    width: 75px;

    height: 75px;

    border-radius: 50%;

    background: var(--primary-color);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;
}

.help-icon i{

    color: #fff;

    font-size: 30px;
}

.help-box h4{

    font-size: 34px;

    font-weight: 700;

    color: #111;

    margin: 0;
}

/* RIGHT SIDE */

.faq-right{

    padding-left: 45px;
}

/* FAQ ITEM */

.faq-item{

    border-bottom: 1px solid rgba(0,0,0,0.08);

    padding: 30px 0;
}

/* QUESTION */

.faq-question{

    width: 100%;

    background: transparent;

    border: none;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0;

    text-align: left;
}

.faq-question span{

    font-size: 34px;

    font-weight: 700;

    color: #111;

    line-height: 1.5;

    transition: 0.3s ease;
}

/* ICON */

.faq-question i{

    font-size: 24px;

    color: #111;

    transition: 0.3s ease;
}

/* ACTIVE */

.faq-item.active .faq-question span{

    color: var(--primary-color);
}

.faq-item.active .faq-question i{

    color: var(--primary-color);

    transform: rotate(90deg);
}

/* ANSWER */

.faq-answer{

    padding-top: 28px;

    max-width: 90%;
}

.faq-answer p{

    font-size: 22px;

    line-height: 1.9;

    color: #777;

    margin: 0;
}

/* HOVER */

.faq-item:hover .faq-question span{

    color: var(--primary-color);
}

.faq-item:hover .faq-question i{

    color: var(--primary-color);
}

/* RESPONSIVE */

@media(max-width:991px){

    .faq-section{

        padding: 80px 0;
    }

    .faq-left{

        padding: 30px;
    }

    .faq-info-box{

        padding: 35px;
    }

    .faq-info-box h2{

        font-size: 42px;
    }

    .assistance-box h3{

        font-size: 34px;
    }

    .help-box h4{

        font-size: 24px;
    }

    .faq-right{

        padding-left: 0;

        margin-top: 50px;
    }

    .faq-question span{

        font-size: 22px;
    }

    .faq-answer p{

        font-size: 17px;
    }
}

/* FAQ ANSWER */

.faq-answer{

    max-height: 0;

    overflow: hidden;

    transition: all 0.4s ease;
}

/* ACTIVE FAQ */

.faq-item.active .faq-answer{

    max-height: 300px;

    padding-top: 25px;
}

.main-footer{
background:#0d0502;
position:relative;
padding-top:100px;
color:#fff;
overflow:hidden;
}

.container{
width:1200px;
max-width:95%;
margin:auto;
}

.footer-grid{
display:grid;
grid-template-columns:1.2fr 1fr 1fr 1fr;
gap:80px;
}

.footer-logo img{
width:200px;
margin-bottom:30px;
}

.contact-box{
display:flex;
gap:50px;
margin-bottom:30px;
}

.contact-item h5{
font-size:14px;
font-weight:700;
margin-bottom:10px;
}

.contact-item p{
color:#bbb;
font-size:24px;
}

.footer-about hr{
border-color:#222;
margin:25px 0;
}

.social-links{
display:flex;
flex-wrap:wrap;
gap:12px;
}

.social-links a{
border:1px solid #f28c00;
padding:10px 18px;
border-radius:30px;
color:#fff;
text-decoration:none;
font-size:15px;
transition:.4s;
}

.social-links a:hover{
background:#f28c00;
}

.footer-col h3{
font-size:34px;
margin-bottom:30px;
position:relative;
}

.footer-col h3::before{
content:"•";
color:#f28c00;
margin-right:10px;
}

.footer-col ul{
padding:0;
list-style:none;
}

.footer-col ul li{
margin-bottom:22px;
}

.footer-col ul li a{
color:#ccc;
text-decoration:none;
font-size:18px;
transition:.4s;
}

.footer-col ul li a:hover{
color:#f28c00;
padding-left:8px;
}

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

.newsletter-form{
display:flex;
border:1px solid #333;
border-radius:10px;
overflow:hidden;
margin-bottom:30px;
}

.newsletter-form input{
flex:1;
padding:18px;
background:transparent;
border:none;
color:#fff;
outline:none;
}

.newsletter-form button{
width:60px;
border:none;
background:#f28c00;
color:#fff;
cursor:pointer;
font-size:18px;
}

.award-text{
font-size:18px;
color:#ddd;
}

.footer-bottom{
border-top:1px solid #222;
margin-top:80px;
padding:30px 0;
text-align:center;
color:#999;
}

.footer-bottom span{
color:#f28c00;
}

@media(max-width:991px){

.footer-grid{
grid-template-columns:1fr;
gap:40px;
}

.contact-box{
flex-direction:column;
gap:20px;
}

}


