/*====================================================
CTA SECTION
=====================================================*/

.cta-section{
    background:linear-gradient(135deg,var(--primary),#06275c);
    position:relative;
    overflow:hidden;
}

.cta-section::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}

.cta-section h2{
    color:#fff;
    margin-bottom:15px;
}

.cta-section p{
    color:rgba(255,255,255,.8);
}

/*====================================================
CONTACT
=====================================================*/

#contact{
    background:#f8f9fa;
}

.contact-card,
.contact-form{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.contact-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:30px;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-item i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:18px;
    font-size:20px;
}

.contact-item h6{
    margin-bottom:5px;
    font-weight:700;
}

.contact-item p{
    margin:0;
    color:#666;
}

.form-control,
.form-select{
    border-radius:12px;
    border:1px solid #ddd;
    padding:14px 18px;
    box-shadow:none;
}

.form-control:focus,
.form-select:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 .2rem rgba(11,61,145,.15);
}

textarea.form-control{
    resize:none;
}

/*====================================================
FOOTER
=====================================================*/

.footer{
    background:#08131f;
    color:#b8c2cf;
    padding:70px 0 30px;
}

.footer h4,
.footer h5{
    color:#fff;
    margin-bottom:20px;
}

.footer p{
    color:#b8c2cf;
}

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:#b8c2cf;
    transition:.3s;
}

.footer ul li a:hover{
    color:var(--accent);
    padding-left:5px;
}

.footer hr{
    border-color:rgba(255,255,255,.08);
}

/*====================================================
SOCIAL ICONS
=====================================================*/

.social-icons{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.35s;
}

.social-icons a:hover{
    background:var(--accent);
    color:#111;
    transform:translateY(-4px);
}

/*====================================================
BACK TO TOP
=====================================================*/

.back-to-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--accent);
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
}

.back-to-top:hover{
    transform:translateY(-5px);
    color:#111;
}

/*====================================================
ANIMATIONS
=====================================================*/

.fade-up{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/*====================================================
RESPONSIVE
=====================================================*/

@media (max-width:1200px){

    .hero h1{
        font-size:3.5rem;
    }

}

@media (max-width:992px){

    .navbar{
        background:#08131f;
    }

    .hero{
        text-align:center;
        padding-top:120px;
    }

    .hero h1{
        font-size:3rem;
    }

    .hero-image{
        margin-top:50px;
        max-height:420px;
    }

    .hero-feature{
        margin-bottom:25px;
    }

    .contact-card{
        margin-bottom:30px;
    }

    .footer{
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

}

@media (max-width:768px){

    section{
        padding:70px 0;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .display-3{
        font-size:2.6rem;
    }

    .counter{
        font-size:42px;
    }

    .application-box{
        padding:25px 15px;
    }

    .contact-card,
    .contact-form{
        padding:25px;
    }

    .product-card img{
        height:200px;
    }

}

@media (max-width:576px){

    .hero{
        min-height:auto;
        padding-top:120px;
        padding-bottom:70px;
    }

    .hero h1{
        font-size:2rem;
    }

    .btn-lg{
        width:100%;
        margin-bottom:12px;
    }

    .navbar-brand{
        font-size:1.2rem;
    }

    .hero-feature i{
        width:60px;
        height:60px;
        font-size:24px;
    }

    .counter{
        font-size:36px;
    }

    .footer{
        padding:50px 0 20px;
    }

}

/*====================================================
SCROLLBAR
=====================================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#eee;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#072c68;
}

/*====================================================
PRODUCTS
=====================================================*/

#products{
    background:#f7f9fc;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .35s ease;
    height:100%;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.product-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:transform .5s ease;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-card .p-4{
    padding:30px;
}

.product-icon{
    font-size:40px;
    color:var(--accent);
    margin-bottom:20px;
}

.product-card h4{
    margin-bottom:15px;
    font-weight:700;
}

.product-card p{
    color:#666;
    margin-bottom:20px;
}

.product-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.product-card ul li{
    padding:8px 0;
    border-bottom:1px solid #eee;
    position:relative;
    padding-left:22px;
}

.product-card ul li:last-child{
    border-bottom:none;
}

.product-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--accent);
    font-weight:bold;
}

/*====================================================
WHY CHOOSE US
=====================================================*/

.feature-box{
    display:flex;
    align-items:center;
    margin-bottom:18px;
    padding:15px 18px;
    border-radius:12px;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    transition:.3s;
    font-weight:600;
}

.feature-box:hover{
    transform:translateX(10px);
    background:var(--primary);
    color:#fff;
}

.feature-box i{
    color:var(--accent);
    font-size:22px;
    margin-right:15px;
}

.feature-box:hover i{
    color:#fff;
}

/*====================================================
APPLICATIONS
=====================================================*/

#applications{
    background:linear-gradient(135deg,#071526,#0b3d91);
}

.application-box{
    background:rgba(255,255,255,.08);
    padding:35px 20px;
    border-radius:18px;
    transition:.35s;
    height:100%;
    backdrop-filter:blur(8px);
}

.application-box:hover{
    background:var(--accent);
    transform:translateY(-10px);
}

.application-box:hover h5,
.application-box:hover i{
    color:#111;
}

.application-box i{
    font-size:48px;
    color:var(--accent);
    margin-bottom:20px;
    transition:.3s;
}

.application-box h5{
    color:#fff;
    margin:0;
    font-weight:600;
}

/*====================================================
COUNTER SECTION
=====================================================*/

.counter-section{
    background:#fff;
    padding:90px 0;
}

.counter-section .col-lg-3{
    margin-bottom:30px;
}

.counter{
    font-size:58px;
    color:var(--primary);
    font-weight:800;
    margin-bottom:10px;
}

.counter::after{
    content:"+";
    color:var(--accent);
}

.counter-section p{
    color:#666;
    font-size:18px;
    font-weight:600;
}

/*====================================================
CARD ANIMATIONS
=====================================================*/

.product-card,
.feature-box,
.application-box{
    transition:all .35s ease;
}

.product-card:hover,
.feature-box:hover,
.application-box:hover{
    cursor:pointer;
}

/*====================================================
IMAGE EFFECTS
=====================================================*/

img{
    transition:all .4s ease;
}

.rounded-4:hover{
    transform:scale(1.02);
}

/*====================================================
BADGES
=====================================================*/

.badge{
    font-size:.9rem;
    font-weight:600;
    letter-spacing:.5px;
    border-radius:50px;
    padding:10px 20px;
}

/*====================================================
LIST STYLES
=====================================================*/

ul{
    margin-bottom:0;
}

li{
    line-height:1.7;
}

/*====================================================
BACKGROUND HELPERS
=====================================================*/

.bg-dark{
    background:#0b1622!important;
}

.text-light{
    color:#000000fc!important;
}
/*====================================================
CTA SECTION
=====================================================*/

.cta-section{
    background:linear-gradient(135deg,var(--primary),#06275c);
    position:relative;
    overflow:hidden;
}

.cta-section::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}

.cta-section h2{
    color:#fff;
    margin-bottom:15px;
}

.cta-section p{
    color:rgba(255,255,255,.8);
}

/*====================================================
CONTACT
=====================================================*/

#contact{
    background:#f8f9fa;
}

.contact-card,
.contact-form{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.contact-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:30px;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-item i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:18px;
    font-size:20px;
}

.contact-item h6{
    margin-bottom:5px;
    font-weight:700;
}

.contact-item p{
    margin:0;
    color:#666;
}

.form-control,
.form-select{
    border-radius:12px;
    border:1px solid #ddd;
    padding:14px 18px;
    box-shadow:none;
}

.form-control:focus,
.form-select:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 .2rem rgba(11,61,145,.15);
}

textarea.form-control{
    resize:none;
}

/*====================================================
FOOTER
=====================================================*/

.footer{
    background:#08131f;
    color:#b8c2cf;
    padding:70px 0 30px;
}

.footer h4,
.footer h5{
    color:#fff;
    margin-bottom:20px;
}

.footer p{
    color:#b8c2cf;
}

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:#b8c2cf;
    transition:.3s;
}

.footer ul li a:hover{
    color:var(--accent);
    padding-left:5px;
}

.footer hr{
    border-color:rgba(255,255,255,.08);
}

/*====================================================
SOCIAL ICONS
=====================================================*/

.social-icons{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.35s;
}

.social-icons a:hover{
    background:var(--accent);
    color:#111;
    transform:translateY(-4px);
}

/*====================================================
BACK TO TOP
=====================================================*/

.back-to-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--accent);
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
}

.back-to-top:hover{
    transform:translateY(-5px);
    color:#111;
}

/*====================================================
ANIMATIONS
=====================================================*/

.fade-up{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/*====================================================
RESPONSIVE
=====================================================*/

@media (max-width:1200px){

    .hero h1{
        font-size:3.5rem;
    }

}

@media (max-width:992px){

    .navbar{
        background:#08131f;
    }

    .hero{
        text-align:center;
        padding-top:120px;
    }

    .hero h1{
        font-size:3rem;
    }

    .hero-image{
        margin-top:50px;
        max-height:420px;
    }

    .hero-feature{
        margin-bottom:25px;
    }

    .contact-card{
        margin-bottom:30px;
    }

    .footer{
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

}

@media (max-width:768px){

    section{
        padding:70px 0;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .display-3{
        font-size:2.6rem;
    }

    .counter{
        font-size:42px;
    }

    .application-box{
        padding:25px 15px;
    }

    .contact-card,
    .contact-form{
        padding:25px;
    }

    .product-card img{
        height:200px;
    }

}

@media (max-width:576px){

    .hero{
        min-height:auto;
        padding-top:120px;
        padding-bottom:70px;
    }

    .hero h1{
        font-size:2rem;
    }

    .btn-lg{
        width:100%;
        margin-bottom:12px;
    }

    .navbar-brand{
        font-size:1.2rem;
    }

    .hero-feature i{
        width:60px;
        height:60px;
        font-size:24px;
    }

    .counter{
        font-size:36px;
    }

    .footer{
        padding:50px 0 20px;
    }

}

/*====================================================
SCROLLBAR
=====================================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#eee;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#072c68;
}
