/* ==========================
   NEOBIZ DYNAMICS
========================== */

:root{
    --primary:#0B2C6B;
    --secondary:#0E7AC4;
    --light:#F5F9FF;
    --white:#ffffff;
    --dark:#1a1a1a;
    --gray:#6c757d;
}

body{
    font-family:'Segoe UI',sans-serif;
    color:var(--dark);
    line-height:1.8;
    overflow-x:hidden;
}

/* ==========================
   HEADER
========================== */

.navbar{
    padding:15px 0;
    transition:.4s;
}

.navbar-brand img{
    max-height:120px;
}

.navbar-nav .nav-link{
    color:var(--primary);
    font-weight:600;
    margin:0 10px;
    position:relative;
}

.navbar-nav .nav-link:hover{
    color:var(--secondary);
}

.navbar .btn-primary{
    background:var(--secondary);
    border:none;
    padding:10px 25px;
    border-radius:50px;
}

/* ==========================
   HERO SECTION
========================== */

.hero-section{
    background:linear-gradient(
    135deg,
    #0B2C6B 0%,
    #0E7AC4 100%);
    color:#fff;
    padding:120px 0;
    position:relative;
    overflow:hidden;
}

.hero-section h1{
    font-size:58px;
    font-weight:800;
    line-height:1.2;
}

.hero-section p{
    font-size:20px;
    opacity:.9;
}

.hero-section img{
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0);}
}

/* ==========================
   BUTTONS
========================== */

.btn-primary{
    background:var(--secondary);
    border-color:var(--secondary);
}

.btn-primary:hover{
    background:var(--primary);
    border-color:var(--primary);
}

.btn-light{
    border-radius:50px;
    padding:12px 30px;
    font-weight:600;
}

.btn-outline-light{
    border-radius:50px;
    padding:12px 30px;
    font-weight:600;
}

/* ==========================
   SECTION TITLE
========================== */

.section-title{
    color:var(--primary);
    font-weight:800;
    margin-bottom:20px;
    position:relative;
}

.section-title:after{
    content:'';
    width:80px;
    height:4px;
    background:var(--secondary);
    display:block;
    margin-top:10px;
}

/* ==========================
   ABOUT SECTION
========================== */

.about-section{
    padding:100px 0;
}

.about-section img{
    border-radius:15px;
}

.about-section ul li{
    margin-bottom:12px;
    font-weight:600;
}

/* ==========================
   SERVICE BOX
========================== */

.card{
    border:none;
    border-radius:15px;
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card-body{
    padding:40px 30px;
}

.card i{
    color:var(--secondary);
}

.card h4{
    color:var(--primary);
    font-weight:700;
}

/* ==========================
   COUNTER
========================== */

.counter-section{
    background:var(--primary);
    color:#fff;
}

.counter-section h2{
    font-size:55px;
    font-weight:800;
}

.counter-section p{
    font-size:18px;
}

/* ==========================
   INDUSTRIES
========================== */

.industry-box{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 0 25px rgba(0,0,0,.08);
    transition:.4s;
}

.industry-box:hover{
    transform:translateY(-8px);
}

/* ==========================
   PRODUCT BOX
========================== */

.product-box{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.product-box img{
    width:100%;
}

.product-box .content{
    padding:25px;
}

/* ==========================
   TESTIMONIALS
========================== */

.testimonial-box{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 0 20px rgba(0,0,0,.08);
}

.testimonial-box p{
    font-style:italic;
}

/* ==========================
   CTA SECTION
========================== */

.cta-section{
    background:linear-gradient(
    135deg,
    #0B2C6B,
    #0E7AC4);
    color:#fff;
    padding:80px 0;
}

.cta-section h2{
    font-size:42px;
    font-weight:800;
}

/* ==========================
   CONTACT FORM
========================== */

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 0 20px rgba(0,0,0,.08);
}

.form-control{
    min-height:55px;
    border-radius:10px;
}

textarea.form-control{
    min-height:150px;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#071836;
    color:#fff;
}

footer h5{
    margin-bottom:20px;
    font-weight:700;
}

footer a{
    color:#fff;
    text-decoration:none;
}

footer a:hover{
    color:#4DB7E5;
}

footer ul li{
    margin-bottom:10px;
}

/* ==========================
   WHATSAPP BUTTON
========================== */

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    text-align:center;
    line-height:60px;
    font-size:30px;
    z-index:999;
}

/* ==========================
   INNER BANNER
========================== */

.inner-banner{
    background:linear-gradient(
    rgba(11,44,107,.85),
    rgba(14,122,196,.85)),
    url('../images/banner.jpg');
    background-size:cover;
    background-position:center;
    padding:120px 0;
    color:#fff;
    text-align:center;
}

.inner-banner h1{
    font-size:55px;
    font-weight:800;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

.hero-section{
    text-align:center;
    padding:80px 0;
}

.hero-section h1{
    font-size:38px;
}

.counter-section h2{
    font-size:35px;
}

.inner-banner h1{
    font-size:35px;
}

}

@media(max-width:576px){

.hero-section h1{
    font-size:30px;
}

.btn{
    width:100%;
    margin-bottom:10px;
}

.navbar-brand img{
    max-height:55px;
}

}
.float i{font-family: fontawesome;}
.float{  
    position:fixed;
    width:45px;
    height:45px;
    bottom:10px;
    left:10px;
    background-color:#25d366;
    color:#FFF;
    border-radius:5px;
    text-align:center;
    font-size:28px;
    z-index:100;  
  }


 
  .float1{  
    position:fixed;
    width:45px;
    height:45px;
    bottom:70px;
    left:10px;
    background-color:#dc1f22;
    color:#FFF;
    border-radius:5px;
    text-align:center;
    font-size:28px;
    z-index:100;
  }
  
  .float2{  
    position:fixed;
    width:45px;
    height:45px;
    bottom:130px;
    left:10px;
    background-color:green;
    color:#FFF;
    border-radius:5px;
    text-align:center;
    font-size:28px;
    z-index:100;
  }
.product-banner{
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

.product-banner img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.banner-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    display:flex;
    align-items:center;
    justify-content:center;
}

.banner-overlay h1{
    color:#fff;
    font-size:60px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin:0;
}

@media(max-width:768px){
    .product-banner img{
        height:220px;
    }

    .banner-overlay h1{
        font-size:32px;
    }
}