body{
    margin:0;
    font-family:'Segoe UI',sans-serif;
}





.custom-navbar{
    background: rgba(10,15,35,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: .4s;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo{
    font-size: 32px;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: 1px;
}

.logo span{
    color: #0d6efd;
}

.navbar-nav .nav-link{
    color: #fff !important;
    margin: 0 12px;
    font-weight: 500;
    position: relative;
    transition: .3s;
}

.navbar-nav .nav-link:hover{
    color: #0d6efd !important;
}

.navbar-nav .nav-link::after{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #0d6efd;
    left: 0;
    bottom: -5px;
    transition: .3s;
}

.navbar-nav .nav-link:hover::after{
    width: 100%;
}

.quote-btn{
    background: linear-gradient(45deg,#0d6efd,#00c6ff);
    color: white;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    border: none;
    transition: .4s;
}

.quote-btn:hover{
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 10px 20px rgba(13,110,253,.3);
}

@media(max-width:991px){

    .navbar-nav{
        text-align:center;
        padding:20px 0;
    }

    .quote-btn{
        width:100%;
        text-align:center;
        margin-top:10px;
    }

}












.hero-slider{
    height:100vh;
}

.carousel-item{
    height:100vh;
    position:relative;
}

.carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    z-index:2;
    width:90%;
}

.hero-content h1{
    font-size:4rem;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.3rem;
    margin-bottom:30px;
}

.btn-custom{
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    margin:5px;
}

.btn-primary-custom{
    background:#0d6efd;
    color:white;
    border:none;
}

.btn-primary-custom:hover{
    background:#0b5ed7;
}

.btn-outline-custom{
    border:2px solid white;
    color:white;
}

.btn-outline-custom:hover{
    background:white;
    color:black;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
}

@media(max-width:768px){

.hero-content h1{
    font-size:2.2rem;
}

.hero-content p{
    font-size:1rem;
}

}










.services-section{
    background:#0b1120;
    color:white;
}

.section-title .subtitle{
    color:#0d6efd;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    margin-top:10px;
}

.section-title p{
    color:#b0b8c5;
    max-width:700px;
    margin:auto;
}

.service-card{
    background:#111827;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    height:100%;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.05);
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#0d6efd;
    box-shadow:0 15px 35px rgba(13,110,253,0.2);
}

.service-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:20px;
    background:linear-gradient(135deg,#0d6efd,#00c6ff);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
}

.service-card h4{
    margin-bottom:15px;
    font-weight:600;
}

.service-card p{
    color:#b0b8c5;
    line-height:1.7;
}

@media(max-width:768px){

    .section-title h2{
        font-size:32px;
    }

}






.about-section{
    background:#070d1a;
    color:#fff;
}

.about-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    box-shadow:0 20px 40px rgba(0,0,0,.3);
}

.about-subtitle{
    color:#0d6efd;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.about-title{
    font-size:42px;
    font-weight:700;
    margin:15px 0;
    line-height:1.3;
}

.about-text{
    color:#b8c0d0;
    line-height:1.9;
}

.counter-box{
    background:#111827;
    border-radius:15px;
    padding:20px;
    text-align:center;
    transition:.4s;
    height:100%;
}

.counter-box:hover{
    transform:translateY(-8px);
    border:1px solid #0d6efd;
}

.counter-box h3{
    color:#0d6efd;
    font-size:32px;
    font-weight:700;
    margin-bottom:5px;
}

.counter-box span{
    color:#d1d5db;
    font-size:14px;
}

.about-btn{
    background:linear-gradient(45deg,#0d6efd,#00c6ff);
    color:white;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    border:none;
    transition:.4s;
}

.about-btn:hover{
    color:white;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(13,110,253,.3);
}

@media(max-width:768px){

    .about-title{
        font-size:32px;
    }

    .about-image img{
        height:350px;
    }

}







.why-us-section{
    background:#0b1120;
    color:#fff;
}

.section-subtitle{
    color:#0d6efd;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-header h2{
    font-size:42px;
    font-weight:700;
    margin-top:10px;
}

.section-header p{
    max-width:700px;
    margin:auto;
    color:#b8c0d0;
}

.feature-card{
    background:#111827;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    height:100%;
    transition:.4s;
    border:1px solid rgba(255,255,255,0.05);
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:#0d6efd;
    box-shadow:0 15px 30px rgba(13,110,253,.25);
}

.feature-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    background:linear-gradient(135deg,#0d6efd,#00c6ff);
}

.feature-card h4{
    margin-bottom:15px;
    font-weight:600;
}

.feature-card p{
    color:#b8c0d0;
    line-height:1.8;
}

@media(max-width:768px){

    .section-header h2{
        font-size:32px;
    }

}








.portfolio-section{
    background:#070d1a;
    color:#fff;
}

.section-subtitle{
    color:#0d6efd;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-header h2{
    font-size:42px;
    font-weight:700;
    margin-top:10px;
}

.section-header p{
    max-width:700px;
    margin:auto;
    color:#b8c0d0;
}

.portfolio-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
}

.portfolio-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
}

.portfolio-card:hover img{
    transform:scale(1.1);
}

.portfolio-content{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:25px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.1)
    );
}

.portfolio-content h4{
    margin-bottom:5px;
    font-weight:600;
}

.portfolio-content p{
    color:#d1d5db;
    margin:0;
}

.portfolio-card:hover .portfolio-content{
    background:linear-gradient(
        to top,
        rgba(13,110,253,.95),
        rgba(13,110,253,.2)
    );
}

@media(max-width:768px){

    .section-header h2{
        font-size:32px;
    }

}







.portfolio-section{
    background:#070d1a;
    color:#fff;
}

.section-subtitle{
    color:#0d6efd;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-header h2{
    font-size:42px;
    font-weight:700;
    margin-top:10px;
}

.section-header p{
    max-width:700px;
    margin:auto;
    color:#b8c0d0;
}

.portfolio-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
}

.portfolio-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
}

.portfolio-card:hover img{
    transform:scale(1.1);
}

.portfolio-content{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:25px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.1)
    );
}

.portfolio-content h4{
    margin-bottom:5px;
    font-weight:600;
}

.portfolio-content p{
    color:#d1d5db;
    margin:0;
}

.portfolio-card:hover .portfolio-content{
    background:linear-gradient(
        to top,
        rgba(13,110,253,.95),
        rgba(13,110,253,.2)
    );
}

@media(max-width:768px){

    .section-header h2{
        font-size:32px;
    }

}










.portfolio-section{
    background:#070d1a;
    color:#fff;
}

.portfolio-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
}

.portfolio-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.portfolio-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:25px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,0.9)
    );
}

.portfolio-content span{
    color:#0d6efd;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
}

.portfolio-content h4{
    margin-top:8px;
    color:#fff;
    font-weight:600;
}

.portfolio-card:hover img{
    transform:scale(1.1);
}

.portfolio-card:hover{
    box-shadow:0 20px 40px rgba(13,110,253,.25);
}

@media(max-width:768px){

    .portfolio-card img{
        height:260px;
    }

}








.process-section{
    background:#0b1120;
    color:#fff;
}

.process-card{
    background:#111827;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    height:100%;
    position:relative;
    transition:.4s;
    border:1px solid rgba(255,255,255,.05);
}

.process-card:hover{
    transform:translateY(-10px);
    border-color:#0d6efd;
    box-shadow:0 15px 30px rgba(13,110,253,.25);
}

.process-number{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#00c6ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
}

.process-card h4{
    margin-bottom:15px;
    font-weight:600;
}

.process-card p{
    color:#b8c0d0;
    line-height:1.8;
}







.testimonials-section{
    background:#070d1a;
    color:#fff;
}

.testimonial-card{
    background:#111827;
    padding:30px;
    border-radius:20px;
    height:100%;
    transition:.4s;
    border:1px solid rgba(255,255,255,.05);
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#0d6efd;
    box-shadow:0 15px 30px rgba(13,110,253,.25);
}

.stars{
    font-size:24px;
    color:#ffc107;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#b8c0d0;
    line-height:1.8;
    margin-bottom:25px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-info img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.client-info h5{
    margin:0;
    font-size:18px;
}

.client-info span{
    color:#0d6efd;
    font-size:14px;
}









.pricing-section{
    background:#0b1120;
    color:#fff;
}

.pricing-card{
    background:#111827;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    position:relative;
    transition:.4s;
    border:1px solid rgba(255,255,255,.05);
    height:100%;
}

.pricing-card:hover{
    transform:translateY(-10px);
    border-color:#0d6efd;
    box-shadow:0 15px 35px rgba(13,110,253,.25);
}

.featured{
    border:2px solid #0d6efd;
    transform:scale(1.05);
}

.popular-badge{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:linear-gradient(45deg,#0d6efd,#00c6ff);
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.pricing-card h4{
    font-size:28px;
    margin-bottom:20px;
}

.price{
    font-size:48px;
    font-weight:700;
    color:#0d6efd;
    margin-bottom:25px;
}

.pricing-card ul{
    list-style:none;
    padding:0;
    margin-bottom:30px;
}

.pricing-card ul li{
    padding:10px 0;
    color:#b8c0d0;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.pricing-btn{
    background:linear-gradient(45deg,#0d6efd,#00c6ff);
    color:white;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

.pricing-btn:hover{
    color:white;
    box-shadow:0 10px 25px rgba(13,110,253,.3);
}

@media(max-width:991px){
    .featured{
        transform:none;
    }
}








.faq-section{
    background:#070d1a;
    color:#fff;
}

.custom-accordion .accordion-item{
    background:#111827;
    border:none;
    border-radius:15px;
    overflow:hidden;
    margin-bottom:15px;
}

.custom-accordion .accordion-button{
    background:#111827;
    color:#fff;
    font-weight:600;
    padding:20px;
    box-shadow:none;
}

.custom-accordion .accordion-button:not(.collapsed){
    background:#0d6efd;
    color:#fff;
}

.custom-accordion .accordion-button:focus{
    box-shadow:none;
}

.custom-accordion .accordion-body{
    background:#111827;
    color:#b8c0d0;
    line-height:1.8;
}

.accordion-button::after{
    filter:brightness(0) invert(1);
}







.contact-section{
    background:#0b1120;
    color:#fff;
}

.contact-info-card{
    background:#111827;
    padding:35px;
    border-radius:20px;
    height:100%;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
}

.contact-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:linear-gradient(45deg,#0d6efd,#00c6ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.contact-item h5{
    margin-bottom:5px;
}

.contact-item p{
    color:#b8c0d0;
    margin:0;
}

.contact-form{
    background:#111827;
    padding:35px;
    border-radius:20px;
}

.contact-form .form-control{
    background:#1f2937;
    border:none;
    color:#fff;
    padding:15px;
}

.contact-form .form-control::placeholder{
    color:#9ca3af;
}

.contact-form .form-control:focus{
    background:#1f2937;
    color:#fff;
    box-shadow:none;
    border:1px solid #0d6efd;
}

.submit-btn{
    background:linear-gradient(45deg,#0d6efd,#00c6ff);
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}

.submit-btn:hover{
    color:#fff;
    box-shadow:0 10px 25px rgba(13,110,253,.3);
}









.footer-section{
    background:#050b17;
    color:#fff;
    padding:80px 0 20px;
}

.footer-logo{
    font-size:36px;
    font-weight:800;
}

.footer-logo span{
    color:#0d6efd;
}

.footer-text{
    color:#b8c0d0;
    line-height:1.8;
    margin:20px 0;
}

.footer-section h5{
    margin-bottom:25px;
    font-weight:600;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#b8c0d0;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#0d6efd;
    padding-left:5px;
}

.footer-contact p{
    color:#b8c0d0;
    margin-bottom:15px;
}

.social-links{
    display:flex;
    gap:15px;
}

.social-links a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#111827;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    background:#0d6efd;
    transform:translateY(-5px);
}

.footer-section hr{
    border-color:rgba(255,255,255,.1);
    margin:40px 0 20px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.footer-bottom p{
    margin:5px 0;
    color:#9ca3af;
}

.footer-bottom span{
    color:#0d6efd;
}

@media(max-width:768px){

    .footer-bottom{
        text-align:center;
        justify-content:center;
        flex-direction:column;
    }

}













.floating-contact{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.floating-contact a{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:24px;
    box-shadow:0 5px 20px rgba(0,0,0,.3);
    transition:.3s;
}

.call-btn{
    background:#0d6efd;
}

.whatsapp-btn{
    background:#25D366;
}

.floating-contact a:hover{
    transform:translateY(-5px) scale(1.08);
}

.call-btn:hover{
    color:#fff;
}

.whatsapp-btn:hover{
    color:#fff;
}

/* Pulse Animation */
.call-btn,
.whatsapp-btn{
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(255,255,255,.4);
    }
    70%{
        box-shadow:0 0 0 15px rgba(255,255,255,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(255,255,255,0);
    }
}

@media(max-width:768px){
    .floating-contact{
       /* right:15px;
        bottom:15px;*/
    }

    .floating-contact a{
        width:55px;
        height:55px;
        font-size:22px;
    }
}







.share-container{
    position:relative;
}

.share-menu{
    position:absolute;
    bottom:70px;
    right:0;
    display:flex;
    flex-direction:column;
    gap:10px;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:.3s;
}

.share-menu.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.share-option{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:20px;
}

.facebook-share{
    background:#1877f2;
}

.whatsapp-share{
    background:#25d366;
}

.instagram-share{
    background:#e1306c;
}

.share-btn{
    background:#6f42c1;
}




























