/*====================================================
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
=========================*/

.navbar-next{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;

background:#fff;

padding:18px 0;

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

transition:.35s;

}

.logo-img{

max-height:62px;

}

.navbar-toggler{

border:none;
outline:none;

}

.navbar-toggler:focus{

outline:none;
box-shadow:none;

}

.nav-link{

font-size:15px;
font-weight:600;
color:#333!important;
margin:0 12px;
position:relative;

}

.nav-link:after{

content:"";

position:absolute;

left:0;
bottom:-8px;

width:0;
height:3px;

background:var(--primary);

transition:.35s;

}

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

width:100%;

}

.consult-btn{

background:var(--primary);

padding:12px 28px;

border-radius:40px;

color:#fff;

font-weight:600;

margin-left:20px;

display:inline-block;

}

.consult-btn:hover{

background:var(--secondary);

color:#fff;

}

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

.hero-next{
    padding:80px 0 40px;
      background:radial-gradient(circle,
        rgba(2,81,180,.12) 0%,
        rgba(2,81,180,.04) 45%,
        transparent 75%);
    
    overflow:hidden;
}




.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:45px;
}

.hero-features{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    margin-top:25px;
}

.feature-item{
    width:23%;
    text-align:center;
}

.feature-icon{
    width:72px;
    height:72px;
    margin:auto;
    border-radius:18px;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
    transition:.35s;
}

.feature-icon i{
    font-size:30px;
    color:var(--primary);
}

.feature-item:hover .feature-icon{
    background:var(--primary);
    transform:translateY(-6px);
}

.feature-item:hover i{
    color:#fff;
}

.feature-item h6{
    font-size:15px;
    font-weight:600;
    color:var(--heading);
}

.hero-image-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-shape{
    position:relative;
    overflow:hidden;
    border-radius:80px 0 80px 0;
    border:14px solid var(--primary);
    max-width:560px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.hero-image{
    display:block;
    width:100%;
    transition:.4s;
}

.hero-shape:hover .hero-image{
    transform:scale(1.05);
}

@media(max-width:991px){

.hero-next{
    text-align:center;
}

.hero-features{
    justify-content:center;
    gap:25px;
}

.feature-item{
    width:45%;
}

.hero-shape{
    margin-top:50px;
}

}

@media(max-width:576px){

.feature-item{
    width:48%;
}

.hero-shape{
    border-width:8px;
    border-radius:40px 0 40px 0;
}

}

/*====================================================
MAIN CSS - PART 2
ABOUT | SERVICES | TECHNOLOGIES
=====================================================*/

/*==========================
ABOUT NEW STYLE
==========================*/

.about-next{

background:#fff;

position:relative;

overflow:hidden;

}

.about-image-wrap{

position:relative;

padding-left:40px;

}

.about-main-img{

border-radius:25px;

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

}

.about-floating-card{

position:absolute;

left:0;

bottom:40px;

background:#fff;

padding:22px 25px;

border-radius:18px;

display:flex;

align-items:center;

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

max-width:280px;

}

.about-floating-card i{

width:60px;

height:60px;

border-radius:15px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

display:flex;

align-items:center;

justify-content:center;

font-size:26px;

color:#fff;

margin-right:18px;

}

.about-floating-card h5{

font-size:18px;

font-weight:700;

margin-bottom:5px;

}

.about-floating-card span{

font-size:14px;

color:#777;

}

.about-feature-card{

display:flex;

align-items:flex-start;

background:#fff;

border:1px solid #edf1f7;

border-radius:18px;

padding:20px;

margin-bottom:18px;

transition:.35s;

}

.about-feature-card:hover{

transform:translateX(10px);

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

}

.feature-icon-box{

width:65px;

height:65px;

min-width:65px;

border-radius:18px;

background:#eef5ff;

display:flex;

align-items:center;

justify-content:center;

margin-right:18px;

}

.feature-icon-box i{

font-size:28px;

color:var(--primary);

}

.about-feature-card h5{

font-size:20px;

font-weight:700;

margin-bottom:8px;

color:var(--heading);

}

.about-feature-card p{

margin:0;

font-size:15px;

line-height:1.7;

color:#666;

}

.about-counter{

margin-top:80px;

}

.counter-box{

padding:35px 20px;

background:#f8fbff;

border-radius:20px;

transition:.35s;

height:100%;

}

.counter-box:hover{

transform:translateY(-8px);

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

}

.counter-box:hover p{

color:#fff;

}

.counter-box h2{

font-size:42px;

font-weight:800;

color:var(--primary);

margin-bottom:10px;

}

.counter-box:hover h2{

color:#fff;

}

.counter-box p{

margin:0;

font-size:15px;

font-weight:600;

color:#666;

}

/* Responsive */

@media(max-width:991px){

.about-image-wrap{

padding-left:0;

margin-top:50px;

}

.about-floating-card{

position:relative;

left:auto;

bottom:auto;

margin-top:25px;

max-width:100%;

}

.about-counter{

margin-top:50px;

}

}

@media(max-width:767px){

.about-feature-card{

flex-direction:column;

text-align:center;

}

.feature-icon-box{

margin:0 auto 20px;

}

.counter-box{

margin-bottom:20px;

}

}

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

.services-next{
    background:#f7faff;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    border:1px solid var(--border);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.service-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:var(--primary);
    transform:scaleX(0);
    transition:.35s;
}

.service-card:hover:before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.service-icon{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.service-icon i{
    font-size:36px;
    color:var(--primary);
}

.service-card h4{
    font-size:22px;
    font-weight:700;
    color:var(--heading);
    margin-bottom:15px;
}

.service-card p{
    color:#6d7888;
    font-size:15px;
    line-height:1.8;
}

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

.tech-next{
    background:#fff;
}

.tech-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:30px;
    text-align:center;
    transition:.35s;
    height:100%;
}

.tech-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.tech-icon{
    width:78px;
    height:78px;
    margin:auto;
    border-radius:16px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.tech-icon i{
    font-size:32px;
    color:#fff;
}

.tech-card h5{
    font-size:20px;
    font-weight:700;
    color:var(--heading);
    margin-bottom:12px;
}

.tech-card p{
    font-size:15px;
    color:#6c7887;
    line-height:1.8;
}

/*========================
SECTION SPACING
=========================*/

.mb-30{
    margin-bottom:30px;
}

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

@media(max-width:991px){

.about-content{
    padding-left:0;
    margin-top:45px;
}

.about-content h2{
    font-size:34px;
}

.about-badge{
    right:15px;
    bottom:15px;
}

}

@media(max-width:768px){

.about-content h2{
    font-size:30px;
}

.about-badge{
    position:relative;
    right:0;
    bottom:0;
    margin-top:20px;
    display:inline-block;
}

.service-card,
.tech-card{
    padding:30px 25px;
}

}


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

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

.why-next{
    position:relative;
    background:linear-gradient(135deg,var(--secondary),#072860);
    color:#fff;
    overflow:hidden;
}

.why-next:before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}

.why-next .section-title,
.why-next .section-sub{
    color:#fff;
}

.why-box{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    transition:.35s;
    height:100%;
}

.why-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.14);
}

.why-icon{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.why-icon i{
    font-size:34px;
    color:var(--primary);
}

.why-box h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.why-box p{
    color:rgba(255,255,255,.85);
    line-height:1.8;
}

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

.process-next{
    background:#f8fbff;
}

.process-item{
    position:relative;
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    border:1px solid var(--border);
    transition:.35s;
    overflow:hidden;
    height:100%;
}

.process-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.process-number{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
}

.process-item h5{
    font-size:22px;
    font-weight:700;
    color:var(--heading);
    margin-bottom:15px;
}

.process-item p{
    color:#6d7888;
    line-height:1.8;
}

/*========================
CALL TO ACTION
=========================*/

.cta-next{
    position:relative;
    padding:90px 0;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    overflow:hidden;
}

.cta-next:before{
    content:"";
    position:absolute;
    left:-120px;
    top:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.cta-next:after{
    content:"";
    position:absolute;
    right:-80px;
    bottom:-80px;
    width:240px;
    height:240px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}

.cta-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.cta-content h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-content p{
    max-width:760px;
    margin:auto auto 35px;
    color:rgba(255,255,255,.92);
    font-size:18px;
}

.cta-btn{
    background:#fff;
    color:var(--primary);
    padding:15px 36px;
    border-radius:50px;
    font-weight:700;
    display:inline-block;
}

.cta-btn:hover{
    color:#fff;
    background:#03164e;
}

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

.contact-next{
    background:#fff;
}

.contact-info{
    background:linear-gradient(135deg,var(--secondary),var(--primary));
    border-radius:25px;
    padding:50px 40px;
    color:#fff;
    height:100%;
}

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

.contact-info p{
    color:rgba(255,255,255,.88);
    margin-bottom:35px;
}

.info-item{
    display:flex;
    margin-bottom:30px;
}

.info-icon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:18px;
}

.info-icon i{
    font-size:24px;
}

.info-text h6{
    font-weight:700;
    margin-bottom:5px;
}

.info-text span,
.info-text a{
    color:rgba(255,255,255,.88);
    text-decoration:none;
}

.contact-form{
    background:#fff;
    border:1px solid var(--border);
    border-radius:25px;
    padding:45px;
    box-shadow:0 20px 50px rgba(0,0,0,.06);
}

.contact-form h3{
    font-size:32px;
    font-weight:800;
    color:var(--heading);
    margin-bottom:30px;
}

.contact-form .form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #dce5ef;
    box-shadow:none;
    margin-bottom:20px;
}

.contact-form textarea.form-control{
    height:160px;
    resize:none;
    padding-top:15px;
}

.contact-form .form-control:focus{
    border-color:var(--primary);
    box-shadow:none;
}

.submit-btn{
    background:var(--primary);
    color:#fff;
    border:none;
    padding:15px 40px;
    border-radius:40px;
    font-weight:600;
    transition:.35s;
}

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

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

@media(max-width:991px){

.contact-info{
    margin-bottom:40px;
}

.cta-content h2{
    font-size:36px;
}

}

@media(max-width:768px){

.contact-form{
    padding:30px;
}

.contact-info{
    padding:35px 25px;
}

.cta-content h2{
    font-size:30px;
}

.process-item,
.why-box{
    padding:30px 25px;
}

}


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

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

.footer-next{
    position:relative;
    background:#03164e;
    color:#d5def5;
    padding:90px 0 30px;
    overflow:hidden;
}

.footer-next:before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
}

.footer-logo{
    max-height:65px;
    margin-bottom:25px;
}

.footer-about{
    color:#bfc8dd;
    line-height:1.9;
    margin-bottom:25px;
}

.footer-title{
    font-size:20px;
    font-weight:700;
    color:#fff;
    margin-bottom:25px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:#c7d1e6;
    transition:.3s;
}

.footer-links a:hover{
    color:#fff;
    padding-left:8px;
}

.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-contact li{
    display:flex;
    margin-bottom:18px;
}

.footer-contact i{
    width:40px;
    color:#4ea3ff;
    font-size:18px;
    margin-top:4px;
}

.footer-contact span,
.footer-contact a{
    color:#c7d1e6;
    line-height:1.8;
}

.footer-contact a:hover{
    color:#fff;
}

.footer-social{
    margin-top:30px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    margin-right:10px;
    transition:.35s;
}

.footer-social a:hover{
    background:var(--primary);
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:60px;
    padding-top:25px;
}

.footer-bottom p{
    margin:0;
    color:#b9c6df;
    font-size:15px;
}

.footer-bottom a{
    color:#4ea3ff;
}

.footer-bottom a:hover{
    color:#fff;
}

/*========================
SCROLL TO TOP
=========================*/

#topBtn{

position:fixed;

right:25px;

bottom:25px;

width:52px;
height:52px;

border:none;

outline:none;

display:none;

cursor:pointer;

border-radius:50%;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

font-size:18px;

z-index:9999;

transition:.35s;

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

}

#topBtn:hover{

transform:translateY(-6px);

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

}

/*========================
CUSTOM SCROLLBAR
=========================*/

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#edf3fb;
}

::-webkit-scrollbar-thumb{
background:var(--primary);
border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
background:var(--secondary);
}

/*========================
SELECTION
=========================*/

::selection{
background:var(--primary);
color:#fff;
}

/*========================
UTILITY CLASSES
=========================*/

.bg-light-blue{
background:#f7faff;
}

.bg-primary-gradient{
background:linear-gradient(135deg,var(--primary),var(--secondary));
}

.text-primary{
color:var(--primary)!important;
}

.text-secondary{
color:var(--secondary)!important;
}

.rounded-xl{
border-radius:22px;
}

.shadow-soft{
box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.mt-30{
margin-top:30px;
}

.mb-30{
margin-bottom:30px;
}

.pt-100{
padding-top:100px;
}

.pb-100{
padding-bottom:100px;
}

/*========================
IMAGE EFFECTS
=========================*/

.img-hover{
overflow:hidden;
border-radius:20px;
}

.img-hover img{
transition:.5s;
}

.img-hover:hover img{
transform:scale(1.08);
}

/*========================
CARD EFFECT
=========================*/

.card-hover{
transition:.35s;
}

.card-hover:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/*========================
FADE ANIMATION
=========================*/

.fade-up{
animation:fadeUp .8s ease;
}

@keyframes fadeUp{

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

100%{
opacity:1;
transform:translateY(0);
}

}

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

@media(max-width:991px){

.footer-next{
text-align:center;
}

.footer-contact li{
display:block;
}

.footer-contact i{
display:block;
margin:0 auto 10px;
width:auto;
}

.footer-social{
margin-bottom:30px;
}

.footer-bottom{
text-align:center;
}

}

@media(max-width:767px){

.section{
padding:70px 0;
}

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

.footer-title{
margin-top:30px;
}

.footer-logo{
max-height:55px;
}

#topBtn{
width:46px;
height:46px;
font-size:16px;
right:18px;
bottom:18px;
}

}

/*====================================================
END OF MAIN.CSS
NEXTWARE PRIVATE LIMITED
IT SOFTWARE & AI CONSULTANCY
Designed & Developed by Webora FZ LLC
=====================================================*/