/*====================================================
NEXTWARE PRIVATE LIMITED
IT SOFTWARE & AI CONSULTANCY
MAIN CSS - PART 1
=====================================================*/

/*========================
ROOT
=========================*/

:root{

--primary:#0251b4;
--secondary:#03164e;
--light:#eef5ff;
--white:#ffffff;
--text:#5f6b7a;
--heading:#14213d;
--border:#e7edf5;

}

/*========================
GENERAL
=========================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
font-size:16px;
font-weight:400;
line-height:1.8;
color:var(--text);
background:#fff;
overflow-x:hidden;
padding-top:92px;

}

img{

max-width:100%;
height:auto;

}

a{

text-decoration:none;
transition:.35s;

}

a:hover{

text-decoration:none;

}

.section{

padding:100px 0;

}

.section-title{

font-size:46px;
font-weight:800;
color:var(--heading);
margin-bottom:20px;
line-height:1.2;

}

.section-sub{

font-size:17px;
max-width:760px;
margin:auto;
color:#6c7a89;

}

.title-sm{

display:inline-block;
padding:8px 18px;
background:#e9f3ff;
color:var(--primary);
border-radius:30px;
font-size:13px;
font-weight:700;
letter-spacing:1px;
text-transform:uppercase;
margin-bottom:18px;

}

/*========================
BUTTONS
=========================*/

.btn-main{

display:inline-block;
padding:14px 34px;
background:var(--primary);
color:#fff;
font-weight:600;
border-radius:50px;
transition:.35s;

}

.btn-main:hover{

background:var(--secondary);
color:#fff;

}

.btn-outline{

display:inline-block;
padding:13px 34px;
border:2px solid var(--primary);
border-radius:50px;
font-weight:600;
color:var(--primary);
margin-left:12px;

}

.btn-outline:hover{

background:var(--primary);
color:#fff;

}

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


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

.header-area{

background:#fff;

box-shadow:0 8px 30px rgba(0,0,0,.08);

z-index:9999;

}

/*-----------------------
Top Header
-----------------------*/

.top-header{

background:#f8f6ef;

padding:15px 0;

border-bottom:1px solid #ececec;

}

.logo-img{

height:65px;

}

.header-search{

position:relative;

}

.header-search input{

width:100%;

height:48px;

border:none;

background:#fff;

border-radius:50px;

padding:0 55px 0 20px;

font-size:14px;

box-shadow:0 5px 18px rgba(0,0,0,.05);

outline:none;

}

.header-search button{

position:absolute;

right:6px;

top:6px;

width:36px;

height:36px;

border:none;

border-radius:50%;

background:#012c41;

color:#fff;

cursor:pointer;

transition:.3s;

}

.header-search button:hover{

background:#a3e11e;

color:#012c41;

}

/*-----------------------
Right Area
-----------------------*/

.header-right{

display:flex;

justify-content:flex-end;

align-items:center;

gap:15px;

}

.header-phone{

font-weight:600;

color:#012c41;

text-decoration:none;

font-size:15px;

}

.header-phone:hover{

color:#a3e11e;

text-decoration:none;

}

.header-phone i{

margin-right:8px;

color:#a3e11e;

}

.quote-btn{

background:#a3e11e;

padding:12px 22px;

border-radius:8px;

font-weight:700;

color:#012c41;

text-decoration:none;

transition:.35s;

}

.quote-btn:hover{

background:#012c41;

color:#fff;

text-decoration:none;

}

.quote-btn i{

margin-left:8px;

}

/*-----------------------
Navbar
-----------------------*/

.trade-navbar{

background:#012c41;

padding:0;

min-height:58px;

}

.trade-navbar .navbar-nav{

gap:15px;

}

.trade-navbar .nav-link{

color:#fff !important;

font-weight:600;

padding:18px 18px !important;

font-size:15px;

position:relative;

transition:.3s;

}

.trade-navbar .nav-link:hover{

color:#a3e11e !important;

}

.trade-navbar .nav-link::after{

content:"";

position:absolute;

left:18px;

bottom:10px;

width:0;

height:2px;

background:#a3e11e;

transition:.35s;

}

.trade-navbar .nav-link:hover::after{

width:calc(100% - 36px);

}

/*-----------------------
Mobile
-----------------------*/

.navbar-toggler{

color:#fff;

border:none;

font-size:24px;

padding:10px;

}

.navbar-toggler:focus{

outline:none;

box-shadow:none;

}

@media(max-width:991px){

.top-header{

padding:12px 0;

}

.logo-img{

height:55px;

}

.header-right{

justify-content:center;

margin-top:15px;

flex-wrap:wrap;

}

.trade-navbar{

padding:10px 0;

}

.trade-navbar .navbar-collapse{

background:#012c41;

padding:15px;

}

.trade-navbar .nav-link{

padding:12px 0 !important;

}

}

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

.hero-trade{
    position:relative;
    overflow:hidden;
    padding:180px 0 110px;
    background:linear-gradient(135deg,#012c41 0%, #034d63 35%, #0b6b53 70%, #3d8c28 100%);
}

/* Soft Glow */

.hero-trade::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:700px;
    height:700px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(163,225,30,.35),
        transparent 70%);
}

.hero-trade::after{
    content:"";
    position:absolute;
    left:-150px;
    bottom:-180px;
    width:550px;
    height:550px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(255,255,255,.08),
        transparent 70%);
}

/* Small Label */

.hero-tag{

display:inline-block;

padding:10px 22px;

border-radius:50px;

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

backdrop-filter:blur(8px);

color:#a3e11e;

font-weight:700;

letter-spacing:1px;

text-transform:uppercase;

margin-bottom:28px;

}

/* Heading */

.hero-trade h1{

font-size:62px;

font-weight:800;

line-height:1.1;

color:#fff;

margin-bottom:25px;

}

.hero-trade h1 span{

display:block;

color:#a3e11e;

}

/* Paragraph */

.hero-trade p{

font-size:18px;

line-height:1.9;

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

max-width:560px;

margin-bottom:40px;

}

/* Buttons */

.hero-btns{

display:flex;

gap:18px;

flex-wrap:wrap;

margin-bottom:45px;

}

.hero-btns .btn-main{

background:#a3e11e;

color:#012c41;

padding:16px 34px;

border-radius:50px;

font-weight:700;

text-decoration:none;

transition:.35s;

}

.hero-btns .btn-main:hover{

background:#fff;

color:#012c41;

text-decoration:none;

}

.hero-btns .btn-outline{

border:2px solid rgba(255,255,255,.7);

color:#fff;

padding:15px 34px;

border-radius:50px;

font-weight:700;

text-decoration:none;

transition:.35s;

}

.hero-btns .btn-outline:hover{

background:#fff;

color:#012c41;

border-color:#fff;

}

/* Feature Pills */

.trade-points{

display:flex;

flex-wrap:wrap;

gap:15px;

}

.trade-points div{

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

backdrop-filter:blur(10px);

padding:14px 22px;

border-radius:50px;

color:#fff;

font-weight:600;

}

.trade-points i{

color:#a3e11e;

margin-right:8px;

}

/* Image */

.trade-banner{

position:relative;

display:flex;

justify-content:center;

align-items:center;

}

.trade-banner::before{

content:"";

position:absolute;

width:540px;

height:540px;

border-radius:50%;

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

border:2px dashed rgba(255,255,255,.18);

}

.trade-banner::after{

content:"";

position:absolute;

width:620px;

height:620px;

border-radius:50%;

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

}

.trade-banner img{

position:relative;

z-index:5;

width:470px;

height:470px;

object-fit:cover;

border-radius:50%;

border:10px solid rgba(255,255,255,.18);

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

}

/* Responsive */

@media(max-width:991px){

.hero-trade{

text-align:center;

padding:150px 0 80px;

}

.hero-trade h1{

font-size:44px;

}

.hero-trade p{

margin:0 auto 35px;

}

.hero-btns{

justify-content:center;

}

.trade-points{

justify-content:center;

margin-bottom:45px;

}

.trade-banner{

margin-top:40px;

}

.trade-banner::before{

width:420px;

height:420px;

}

.trade-banner::after{

width:480px;

height:480px;

}

.trade-banner img{

width:360px;

height:360px;

}

}

@media(max-width:576px){

.hero-trade h1{

font-size:34px;

}

.trade-banner::before{

width:300px;

height:300px;

}

.trade-banner::after{

width:340px;

height:340px;

}

.trade-banner img{

width:260px;

height:260px;

}

}


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

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

.about-trade{

margin-top:-50px;

position:relative;

z-index:10;

padding-bottom:90px;

}

.about-wrapper{

background:#fff;

border-radius:35px;

padding:70px;

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

}

.trade-image{

position:relative;

}

.trade-image img{

border-radius:30px;

width:100%;

}

.experience-box{

position:absolute;

bottom:30px;

right:-20px;

background:#012c41;

color:#fff;

padding:25px;

border-radius:20px;

text-align:center;

min-width:180px;

}

.experience-box h2{

color:#a3e11e;

font-size:42px;

margin:0;

font-weight:800;

}

.trade-content{

padding-left:40px;

}

.trade-card{

display:flex;

align-items:flex-start;

padding:22px;

margin-bottom:20px;

background:#f8fbf4;

border-radius:18px;

transition:.35s;

}

.trade-card:hover{

transform:translateX(10px);

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

}

.trade-card i{

width:70px;

height:70px;

background:#a3e11e;

color:#012c41;

border-radius:18px;

display:flex;

justify-content:center;

align-items:center;

font-size:28px;

margin-right:20px;

}

.trade-card h4{

font-weight:700;

color:#012c41;

margin-bottom:10px;

}

.trade-card p{

margin:0;

color:#666;

line-height:1.8;

}

.trade-stat{

padding:30px 15px;

}

.trade-stat h3{

font-size:40px;

font-weight:800;

color:#012c41;

margin-bottom:10px;

}

.trade-stat span{

font-weight:600;

color:#666;

}

@media(max-width:991px){

.about-trade{

margin-top:0;

}

.about-wrapper{

padding:40px 25px;

}

.trade-content{

padding-left:0;

margin-top:40px;

}

.experience-box{

right:15px;

bottom:15px;

}

}


.products-section{

background:#f7faf5;

}

.product-card{

background:#fff;

border-radius:20px;

overflow:hidden;

transition:.35s;

height:100%;

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

}

.product-card:hover{

transform:translateY(-10px);

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

}

.product-card img{

width:100%;

height:240px;

object-fit:cover;

}

.product-content{

padding:28px;

}

.product-content h4{

font-weight:700;

color:#012c41;

margin-bottom:15px;

}

.product-content p{

color:#666;

line-height:1.8;

margin-bottom:20px;

}

.product-content a{

color:#012c41;

font-weight:700;

text-decoration:none;

}

.product-content a i{

margin-left:8px;

color:#a3e11e;

}





.services-tabs{

background:#fff;

}

.service-tabs .nav-link{

display:flex;

align-items:center;

padding:18px 22px;

margin-bottom:12px;

border-radius:14px;

background:#f6f8f9;

color:#012c41;

font-weight:600;

transition:.35s;

}

.service-tabs .nav-link i{

width:45px;

height:45px;

background:#a3e11e;

color:#012c41;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin-right:15px;

}

.service-tabs .nav-link.active{

background:#012c41;

color:#fff;

}

.service-tabs .nav-link.active i{

background:#fff;

color:#012c41;

}

.tab-content{

background:#fff;

padding:40px;

border-radius:20px;

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

min-height:450px;

}

.tab-content h3{

color:#012c41;

font-weight:700;

margin-bottom:20px;

}

.tab-content p{

color:#666;

margin-bottom:25px;

}

.tab-content ul{

list-style:none;

padding:0;

}

.tab-content ul li{

padding:12px 0;

border-bottom:1px solid #eee;

position:relative;

padding-left:30px;

}

.tab-content ul li:last-child{

border-bottom:none;

}

.tab-content ul li::before{

content:"✓";

position:absolute;

left:0;

color:#a3e11e;

font-weight:700;

font-size:18px;

}

/*====================================================
MAIN CSS - PART 3
WHY CHOOSE US | PROCESS | CTA | CONTACT
=====================================================*/

/*========================
WHY CHOOSE US
=========================*/


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

.industries-section{

background:#f8fbf7;

position:relative;

}

.industry-card{

background:#fff;

padding:35px 25px;

border-radius:20px;

text-align:center;

height:100%;

transition:.35s;

border:1px solid #eef2eb;

}

.industry-card:hover{

transform:translateY(-10px);

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

}

.industry-icon{

width:80px;

height:80px;

margin:0 auto 25px;

border-radius:50%;

background:linear-gradient(135deg,#a3e11e,#8dcc14);

display:flex;

align-items:center;

justify-content:center;

}

.industry-icon i{

font-size:34px;

color:#012c41;

}

.industry-card h4{

font-size:22px;

font-weight:700;

margin-bottom:15px;

color:#012c41;

}

.industry-card p{

font-size:15px;

line-height:1.8;

color:#666;

margin:0;

}



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

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

.contact-trade{

background:linear-gradient(135deg,#012c41,#04576d);

padding:100px 0;

position:relative;

}

.contact-wrapper{

background:#fff;

border-radius:30px;

overflow:hidden;

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

}

.contact-info-box{

background:linear-gradient(180deg,#012c41,#02384f);

height:100%;

padding:60px 40px;

color:#fff;

}

.contact-info-box h3{

margin-bottom:20px;

font-weight:700;

}

.contact-info-box p{

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

margin-bottom:35px;

}

.contact-item{

display:flex;

align-items:flex-start;

margin-bottom:30px;

}

.contact-item i{

width:55px;

height:55px;

background:#a3e11e;

color:#012c41;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin-right:18px;

font-size:20px;

}

.contact-item strong{

display:block;

margin-bottom:5px;

}

.contact-item span{

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

line-height:1.7;

}

.contact-form-box{

padding:60px;

}

.contact-form-box h3{

font-weight:700;

margin-bottom:30px;

color:#012c41;

}

.contact-form-box .form-control{

height:55px;

border-radius:12px;

border:1px solid #e5e5e5;

margin-bottom:20px;

box-shadow:none;

}

.contact-form-box textarea.form-control{

height:auto;

padding-top:15px;

resize:none;

}

.contact-form-box .btn-main{

padding:15px 40px;

}


/*====================================================
MAIN CSS - PART 4
FOOTER | SCROLL BUTTON | ANIMATIONS | UTILITIES
=====================================================*/

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

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

.footer-simple{

    background:#fff;
    padding:50px 0 25px;
    border-top:1px solid #ececec;
    text-align:center;

}

.footer-logo{

    height:60px;
    margin-bottom:30px;

}

.footer-menu{

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:35px;
    list-style:none;
    padding:0;
    margin:0 0 35px;

}

.footer-menu li{

    position:relative;

}

.footer-menu li:not(:last-child)::after{

    content:"";
    position:absolute;
    right:-18px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:16px;
    background:#ddd;

}

.footer-menu a{

    color:#555;
    font-weight:500;
    text-decoration:none;
    transition:.3s;

}

.footer-menu a:hover{

    color:#a3e11e;

}

.footer-bottom{

    border-top:1px solid #eee;
    padding-top:20px;

}

.footer-bottom p{

    margin-bottom:8px;
    color:#777;

}

.designer{

    color:#012c41;
    text-decoration:none;
    font-weight:600;

}

.designer:hover{

    color:#a3e11e;

}

@media(max-width:768px){

    .footer-menu{

        gap:18px;

    }

    .footer-menu li:not(:last-child)::after{

        display:none;

    }

}


.footer-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    background:#012c41;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9999;
}

.footer-top.show{
    opacity:1;
    visibility:visible;
}