*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: Arial, sans-serif;
}

.navbar-brand{
    font-size: 28px;
    font-weight: 700;
}

.nav-link{
    font-weight: 500;
    margin-left: 10px;
}

.footer-section{
    background:#111;
    color:#fff;
    padding:60px 0 20px;
    margin-top:80px;
}

.footer-section a{
    color:#fff;
    text-decoration:none;
}

.footer-section a:hover{
    color:#ffc107;
}

/* -------------------------- navbar -------------------- */
.custom-navbar{
    background:rgba(255,255,255,.90);
    backdrop-filter:blur(15px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    padding:15px 0;
    transition:.4s;
    z-index:9999;
}

.navbar-brand img{
    height:60px;
}

.nav-link{
    position:relative;
    color:#111;
    font-weight:600;
    margin:0 12px;
    transition:.3s;
}

.nav-link::after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    background:#3a8dc8;
    left:0;
    bottom:-5px;
    transition:.4s;
}

.nav-link:hover::after{
    width:100%;
}

.nav-link:hover{
    color:#3a8dc8;
}

.quote-btn{
    background:#ffb400;
    color:#111;
    padding:12px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.quote-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(255,180,0,.4);
}

.navbar-scrolled{
    padding:10px 0;
    background:#fff;
}

.navbar-nav{
    margin-right: 210px;
}

/* --------------------------- button animation -------------------- */
/* From Uiverse.io by cssbuttons-io */ 
button {
 position: relative;
 display: inline-block;
 cursor: pointer;
 outline: none;
 border: 0;
 vertical-align: middle;
 text-decoration: none;
 background: transparent;
 padding: 0;
 font-size: inherit;
 font-family: inherit;
}

button.learn-more {
 width: 12rem;
 height: auto;
}

button.learn-more .circle {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: relative;
 display: block;
 margin: 0;
 width: 3rem;
 height: 3rem;
 background: #282936;
 border-radius: 1.625rem;
}

button.learn-more .circle .icon {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 bottom: 0;
 margin: auto;
 background: #fff;
}

button.learn-more .circle .icon.arrow {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 left: 0.625rem;
 width: 1.125rem;
 height: 0.125rem;
 background: none;
}

button.learn-more .circle .icon.arrow::before {
 position: absolute;
 content: "";
 top: -0.29rem;
 right: 0.0625rem;
 width: 0.625rem;
 height: 0.625rem;
 border-top: 0.125rem solid #fff;
 border-right: 0.125rem solid #fff;
 transform: rotate(45deg);
}

button.learn-more .button-text {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 padding: 0.75rem 0;
 margin: 0 0 0 1.85rem;
 color: #282936;
 font-weight: 700;
 line-height: 1.6;
 text-align: center;
 text-transform: uppercase;
}

button:hover .circle {
 width: 100%;
}

button:hover .circle .icon.arrow {
 background: #fff;
 transform: translate(1rem, 0);
}

button:hover .button-text {
 color: #fff;
}

/* ----------------------   footer ---------------- */

.footer-area{
    background:#0d1321;
    color:#fff;
    padding:90px 0 30px;
    position:relative;
    overflow:hidden;
}

.footer-area::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:#ffb400;
    border-radius:50%;
    top:-200px;
    right:-200px;
    opacity:.08;
}

.footer-area h3,
.footer-area h5{
    margin-bottom:25px;
    font-weight:700;
}

.footer-area ul{
    list-style:none;
    padding:0;
}

.footer-area ul li{
    margin-bottom:12px;
}

.footer-area ul li a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-area ul li a:hover{
    color:#3a8dc8;
    padding-left:8px;
}

.footer-area p{
    color:#ccc;
}

.copyright{
    text-align:center;
    padding-top:15px;
    color:#999;
}

/* ------------------------- slider ----------------------  */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    overflow-x:hidden;
}

.hero-slider{
    width:100%;
    position:relative;
}

.imageSlider{
    width:100%;
    height:100vh;
}

.imageSlider .swiper-slide{
    overflow:hidden;
}

.imageSlider .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:8s ease;
}
/* 
.swiper-slide-active img{
    transform:scale(1.08);
} */

.swiper-button-next,
.swiper-button-prev{
    color:#ff0d0d;
   
}
.swiper-button-next{
    color: #ffc107;
     
}

#right-btn{
    color: white;
    width:50px;
    height:50px;
}

#left-btn{
    color: white;
    width:50px;
    height:50px;
}


.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#fff;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#ffc107;
}

/* Laptop */
@media(max-width:1200px){

.imageSlider{
    height:80vh;
}

}

/* Tablet */
@media(max-width:991px){

.imageSlider{
    height:65vh;
}

}

/* Mobile */
@media(max-width:767px){

.imageSlider{
    height:50vh;
}

.swiper-button-next,
.swiper-button-prev{
    display:none;
}

}

/* Small Mobile */
@media(max-width:575px){

.imageSlider{
    height:40vh;
}

}

/* -----------  top to bottom ------------- */

#scrollTopBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    z-index:99999;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        #6bfff3,
        #53bdff,
        #6beeff
    );

    background-size:300% 300%;
    animation:gradientMove 5s ease infinite;

    box-shadow:
        0 10px 25px rgba(107, 223, 255, 0.4),
        0 0 20px rgba(83, 255, 249, 0.4);

    opacity:0;
    visibility:hidden;
    transform:translateY(100px);

    transition:.5s ease;
}

/* Show Button */

#scrollTopBtn.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* SVG */

#scrollTopBtn svg{
    width:28px;
    height:28px;
    fill:#fff;
    animation:arrowBounce 1.5s infinite;
}

/* Hover */

#scrollTopBtn:hover{
    transform:translateY(-8px) scale(1.1);
    box-shadow:
        0 15px 40px rgba(107, 238, 255, 0.5),
        0 0 35px rgba(83, 195, 255, 0.6);
}

/* Ripple */

#scrollTopBtn::before,
#scrollTopBtn::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.4);
    animation:ripple 2.5s infinite;
}

#scrollTopBtn::after{
    animation-delay:1.2s;
}

/* Floating */

@keyframes arrowBounce{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-6px);
    }
}

@keyframes ripple{
    0%{
        transform:scale(1);
        opacity:1;
    }
    100%{
        transform:scale(1.8);
        opacity:0;
    }
}

@keyframes gradientMove{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

/* Mobile */

@media(max-width:768px){

    #scrollTopBtn{
        width:55px;
        height:55px;
        right:15px;
        bottom:15px;
    }

    #scrollTopBtn svg{
        width:24px;
        height:24px;
    }

}


/* <!-- ------------------------------------------ left side img and right side contant ------------------ --> */


.about-section{
    padding:50px 0;
    overflow:hidden;
    background:#fff;
}

.about-wrapper{
    display:flex;
    align-items:center;
    gap:80px;
}

.about-image{
    flex:1;
    position:relative;
}

.image-box{
    overflow:hidden;
    border-radius:25px;
}

.image-box img{
    width:100%;
    display:block;
    border-radius:25px;
    transition:1s ease;
}

.about-image:hover img{
    transform:scale(1.08);
}

.floating-card{
    position:absolute;
    bottom:30px;
    right:-20px;

    background:#fff;
    padding:20px 25px;
    border-radius:15px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.12);

    animation:floatCard 3s ease-in-out infinite;
}

.floating-card h4{
    margin:0;
    color:#ff6600;
    font-size:34px;
    font-weight:700;
}

.floating-card p{
    margin:0;
    color:#555;
}

.about-content{
    flex:1;
    animation:slideContent 1s ease;
}

.sub-title{
    color:#ff6600;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.about-content h2{
    font-size:52px;
    line-height:1.2;
    margin:15px 0 25px;
    color:#111;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.feature-item{
    background:#f8f8f8;
    padding:15px;
    border-radius:12px;
    transition:.4s;
}

.feature-item:hover{
    background:#005cc8;
    color:#fff;
    transform:translateY(-5px);
}

.about-btn{
    display:inline-block;
    padding:16px 35px;
    background:#ff6600;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.about-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(255,102,0,.35);
}

/* Animation */

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

@keyframes slideContent{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* Tablet */

@media(max-width:991px){

    .about-wrapper{
        flex-direction:column;
        gap:50px;
    }

    .about-content h2{
        font-size:40px;
    }

}

/* Mobile */

@media(max-width:768px){

    .about-section{
        padding:70px 0;
    }

    .feature-list{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:32px;
    }

    .floating-card{
        right:10px;
        bottom:10px;
        padding:15px;
    }

    .floating-card h4{
        font-size:24px;
    }

}

/* ------------------------------- our services ------------------ */

.services-section{
    padding:50px 0px;
    background:#f8fbff;
    overflow:hidden;
}

.section-title{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.section-title span{
    color:#ff6b35;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:52px;
    margin:15px 0;
    color:#111;
}

.section-title p{
    color:#666;
    line-height:1.8;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:.5s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.service-card::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:linear-gradient(
        135deg,
        rgba(255,107,53,.15),
        rgba(255,255,255,0)
    );
    border-radius:50%;
    top:-120px;
    right:-120px;
    transition:.6s;
}

.service-card:hover::before{
    transform:scale(1.8);
}

.service-card:hover{
    transform:translateY(-15px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.service-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    background:linear-gradient(
        135deg,
        #ff6b35,
        #ff914d
    );
    color:#fff;
    margin-bottom:25px;
    transition:.5s;
}

.service-card:hover .service-icon{
    transform:rotateY(180deg);
}

.service-card h3{
    margin-bottom:15px;
    color:#111;
    font-size: 25px;
}

.service-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.service-card a{
    color:#ff6b35;
    text-decoration:none;
    font-weight:700;
}

.service-card a:hover{
    letter-spacing:1px;
}

/* Floating Animation */

.service-card{
    animation:floatCard 4s ease-in-out infinite;
}

.service-card:nth-child(2){
    animation-delay:.5s;
}

.service-card:nth-child(3){
    animation-delay:1s;
}

.service-card:nth-child(4){
    animation-delay:1.5s;
}

.service-card:nth-child(5){
    animation-delay:2s;
}

.service-card:nth-child(6){
    animation-delay:2.5s;
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

/* Tablet */

@media(max-width:991px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:42px;
    }
}

/* Mobile */

@media(max-width:768px){

    .services-section{
        padding:70px 0;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:32px;
    }

    .service-card{
        padding:30px 25px;
    }

    .service-icon{
        width:75px;
        height:75px;
        font-size:32px;
    }
}

/* ------------------------- banner ---------------- */

.hero-product-section{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#0d6efd,#00b4ff);
    min-height:100vh;
    display:flex;
    align-items:center;
}


.hero-product-section .container{
    position: relative;
    z-index: 10;
}

.hero-product-section::before{
    content:'';
    position:absolute;
    pointer-events: none;
    width:100%;
    height:100%;
    background:url('images/pattern.png');
    opacity:.08;
}

.hero-title{
    font-size:65px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
    animation:fadeUp 1s ease;
}

.hero-title span{
    color:#7dffb5;
}

.hero-desc{
    font-size:18px;
    max-width:650px;
    margin:auto;
    margin-bottom:30px;
}

.hero-badge{
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    padding:12px 25px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:25px;
}

.btn-contact{
    background:#72d86b;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    margin-right:10px;
    transition:.4s;
}

.btn-contact:hover{
    transform:translateY(-5px);
}

.btn-read{
    background:#fff;
    color:#0d6efd;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.btn-read:hover{
    transform:translateY(-5px);
}

.product-box img{
    max-height:550px;
    animation:floating 4s ease-in-out infinite;
}

.right-product img{
    animation-delay:1.5s;
}

@keyframes floating{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-20px);
    }
    100%{
        transform:translateY(0px);
    }
}

.hero-shape{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    animation:moveShape 10s linear infinite;
}

.shape1{
    width:300px;
    height:300px;
    top:-100px;
    left:-100px;
}

.shape2{
    width:200px;
    height:200px;
    bottom:50px;
    right:100px;
}

.shape3{
    width:150px;
    height:150px;
    top:30%;
    right:20%;
}

@keyframes moveShape{
    50%{
        transform:translateY(-30px);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:991px){

.hero-title{
    font-size:42px;
}

.product-box img{
    max-height:300px;
}

.hero-product-section{
    padding:80px 0;
}

}


/* ----------------Our Client’s Say--------------------- */

.testimonial-section{
    padding:100px 0;
    background:#f7faff;
    position:relative;
    overflow:hidden;
}

.section-title{
    font-size:48px;
    font-weight:700;
    margin-bottom:10px;
}

.section-subtitle{
    color:#666;
}

.testimonial-card{
    max-width:800px;
    margin:auto;
    background:#fff;
    padding:60px 50px;
    border-radius:30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.client-img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:25px;
    border:5px solid #fff;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.testimonial-card p{
    font-size:18px;
    line-height:1.8;
    color:#555;
}

.testimonial-card h4{
    margin-top:25px;
    font-weight:700;
}

.testimonial-card span{
    color:#0d6efd;
}

.custom-prev,
.custom-next{
    width:auto;
    opacity:1;
}

.custom-prev{
    left:-90px;
}

.custom-next{
    right:-90px;
}

.arrow-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    color:#0d6efd;
    font-size:20px;
    transition:.3s;
}

.arrow-btn:hover{
    background:#0d6efd;
    color:#fff;
    transform:scale(1.1);
}

.carousel-indicators{
    bottom:-60px;
}

.carousel-indicators button{
    width:12px !important;
    height:12px !important;
    border-radius:50%;
}

@media(max-width:991px){

.section-title{
    font-size:34px;
}

.testimonial-card{
    padding:35px 25px;
}

.custom-prev{
    left:10px;
}

.custom-next{
    right:10px;
}

.arrow-btn{
    width:45px;
    height:45px;
    font-size:16px;
}

}