﻿/*==================================================
NIXXON PRO HELP
style.css (Part-1)
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7fbff;
    color:#333;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.4s;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

section{
    position:relative;
    padding:90px 0;
}

.container{
    max-width:1200px;
}


/*=========================================
TOP BAR
=========================================*/

.topbar{
    background:#0d47a1;
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.top-contact a{
    color:#fff;
    margin-right:20px;
    font-weight:500;
}

.top-contact a i{
    margin-right:8px;
    color:#ffc107;
}

.top-social a{
    width:35px;
    height:35px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#fff;
    margin-left:8px;
}

.top-social a:hover{
    background:#ff9800;
    color:#fff;
}


/*=========================================
NAVBAR
=========================================*/

.navbar{
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    padding:15px 0;
    z-index:999;
}

.navbar-brand img{
    height:65px;
}

.navbar-nav .nav-item{
    margin-left:10px;
}

.navbar-nav .nav-link{
    color:#1c1c1c;
    font-weight:600;
    padding:12px 18px;
    border-radius:30px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#fff;
    background:#0d47a1;
}

.signup-btn{
    background:#00b050;
    color:#fff;
    padding:12px 28px;
    border-radius:30px;
    font-weight:600;
}

.signup-btn:hover{
    background:#069144;
    color:#fff;
}

.signin-btn{
    background:#ff9800;
    color:#fff;
    padding:12px 28px;
    border-radius:30px;
    font-weight:600;
}

.signin-btn:hover{
    background:#ef8a00;
    color:#fff;
}


/*=========================================
HERO SECTION
=========================================*/

.hero-section{
    background:linear-gradient(135deg,#0d47a1,#1565c0);
    color:#fff;
    padding:120px 0;
    overflow:hidden;
}

.hero-section h5{
    font-size:18px;
    font-weight:600;
    letter-spacing:2px;
    color:#ffcc00;
    margin-bottom:20px;
}

.hero-section h1{
    font-size:58px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-section h1 span{
    display:block;
    color:#ffcc00;
}

.hero-section p{
    font-size:18px;
    opacity:.95;
    margin-bottom:35px;
}

.hero-btn .btn{
    padding:16px 36px;
    border-radius:40px;
    font-size:16px;
    font-weight:600;
    margin-right:15px;
}

.btn-register{
    background:#00b050;
    color:#fff;
}

.btn-register:hover{
    background:#079645;
    color:#fff;
}

.btn-plan{
    background:#ff9800;
    color:#fff;
}

.btn-plan:hover{
    background:#f18800;
    color:#fff;
}

.hero-section img{
    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-18px);
}

100%{
transform:translateY(0px);
}

}


/*=========================================
COMMON TITLE
=========================================*/

.section-tag{
    display:inline-block;
    background:#e8f1ff;
    color:#0d47a1;
    padding:10px 22px;
    border-radius:30px;
    font-size:15px;
    font-weight:700;
    margin-bottom:20px;
}

.section-title{
    font-size:44px;
    font-weight:800;
    margin-bottom:20px;
}

.section-title span{
    color:#0d47a1;
}

.section-subtitle{
    color:#666;
    max-width:700px;
    margin:auto;
}
/*=========================================
WHY CHOOSE SECTION
=========================================*/

.why-section{
    background:#ffffff;
}

.feature-box{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(13,71,161,.18);
}

.feature-box img{
    width:90px;
    margin:0 auto 25px;
}

.feature-box h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#0d47a1;
}

.feature-box p{
    color:#666;
    font-size:15px;
}


/*=========================================
ABOUT HOME
=========================================*/

.about-home{
    background:#f8fbff;
}

.about-home img{
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.about-home h2{
    font-size:45px;
    font-weight:800;
    margin:20px 0;
}

.about-home h2 span{
    color:#0d47a1;
}

.about-home p{
    color:#666;
    margin-bottom:20px;
}

.about-list{
    margin-top:25px;
}

.about-list li{
    margin-bottom:15px;
    font-weight:600;
}

.about-list i{
    color:#00b050;
    margin-right:10px;
}

.about-btn{
    margin-top:25px;
    background:#0d47a1;
    color:#fff;
    padding:15px 35px;
    border-radius:35px;
    font-weight:600;
}

.about-btn:hover{
    background:#083a88;
    color:#fff;
}


/*=========================================
WORKING PROCESS
=========================================*/

.process-section{
    background:#fff;
}

.process-box{
    background:#fff;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.process-box:hover{
    transform:translateY(-10px);
}

.process-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d47a1,#1565c0);
    color:#fff;
    font-size:28px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
}

.process-box h5{
    font-size:18px;
    font-weight:700;
}


/*=========================================
COUNTER SECTION
=========================================*/

.counter-section{
    background:linear-gradient(135deg,#0d47a1,#1565c0);
    color:#fff;
}

.counter-box{
    padding:40px 20px;
}

.counter-box i{
    font-size:48px;
    color:#ffcc00;
    margin-bottom:20px;
}

.counter-box h2{
    font-size:50px;
    font-weight:800;
    margin-bottom:10px;
}

.counter-box h5{
    font-size:20px;
    font-weight:600;
}


/*=========================================
BUSINESS PLAN
=========================================*/

.business-plan{
    background:#f8fbff;
}

.business-plan img{
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.business-plan h2{
    font-size:45px;
    font-weight:800;
    margin:20px 0;
}

.business-plan h2 span{
    color:#0d47a1;
}

.business-plan p{
    color:#666;
    margin-bottom:30px;
}

.business-btn{
    background:#ff9800;
    color:#fff;
    padding:16px 40px;
    border-radius:35px;
    font-weight:700;
}

.business-btn:hover{
    background:#e88500;
    color:#fff;
}
/*=========================================
TESTIMONIAL SECTION
=========================================*/

.testimonial-section{
    background:#ffffff;
}

.testimonial-box{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.testimonial-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(13,71,161,.15);
}

.testimonial-img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    margin:0 auto 20px;
    border:5px solid #0d47a1;
}

.testimonial-box p{
    color:#666;
    font-size:15px;
    margin-bottom:20px;
}

.testimonial-box h5{
    font-size:20px;
    font-weight:700;
    color:#0d47a1;
    margin-bottom:5px;
}

.testimonial-box span{
    color:#888;
}


/*=========================================
CTA SECTION
=========================================*/

.cta-section{
    background:linear-gradient(135deg,#00b050,#009245);
    color:#fff;
}

.cta-section h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.cta-section p{
    font-size:18px;
    margin-bottom:0;
}

.cta-btn{
    background:#ffffff;
    color:#00b050;
    padding:16px 45px;
    border-radius:40px;
    font-weight:700;
    font-size:17px;
}

.cta-btn:hover{
    background:#ffcc00;
    color:#222;
}


/*=========================================
FOOTER
=========================================*/

footer{
    background:#081f4d;
    color:#fff;
    padding:80px 0 25px;
}

.footer-logo{
    height:70px;
    margin-bottom:20px;
}

footer p{
    color:#d8d8d8;
    line-height:1.8;
}

footer h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    color:#fff;
}

footer ul li{
    margin-bottom:12px;
}

footer ul li a{
    color:#d8d8d8;
    transition:.3s;
}

footer ul li a:hover{
    color:#ffcc00;
    padding-left:8px;
}

footer hr{
    border-color:rgba(255,255,255,.15);
    margin:40px 0 20px;
}

.copyright{
    color:#d8d8d8;
    font-size:15px;
}


/*=========================================
COMMON BUTTONS
=========================================*/

.btn{
    transition:.35s ease;
}

.btn:hover{
    transform:translateY(-3px);
}


/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f1f1f1;
}

::-webkit-scrollbar-thumb{
    background:#0d47a1;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#083a88;
}


/*=========================================
SELECTION
=========================================*/

::selection{
    background:#0d47a1;
    color:#fff;
}


/*=========================================
BACK TO TOP
=========================================*/

#backToTop{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    background:#ff9800;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    cursor:pointer;
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transition:.4s;
}

#backToTop.show{
    opacity:1;
    visibility:visible;
}

#backToTop:hover{
    background:#0d47a1;
}