body {
  font-family: Arial, sans-serif;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d6efd, #001f54);
  color: white;
}

.service-card {
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.section-title {
  font-weight: 700;
  margin-bottom: 15px;
}
.top-bar{
    background:#0f172a;
    color:#fff;
    font-size:14px;
}

.social-icon{
    color:#fff;
    margin-left:15px;
    transition:.3s;
}

.social-icon:hover{
    color:#0d6efd;
}

.custom-navbar{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    box-shadow:0 2px 20px rgba(0,0,0,.08);
}

.navbar-brand{
    font-size:28px;
    color:#111 !important;
}

.navbar-brand span{
    color:#0d6efd;
}

.nav-link{
    color:#111 !important;
    font-weight:500;
    margin-left:15px;
    position:relative;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#0d6efd;
    transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.btn-primary{
    border-radius:50px;
    padding:10px 25px;
}

@media(max-width:991px){

    .navbar-nav{
        text-align:center;
        padding-top:20px;
    }

    .nav-link{
        margin-left:0;
    }

}
.hero-slider{
    position: relative;
}

.hero-img{
    height: 70vh;
    object-fit: cover;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
}

.carousel-caption{
    bottom:50%;
    transform:translateY(50%);
    z-index:2;
    text-align:left;
    max-width:700px;
}

.carousel-caption h1{
    font-size:4rem;
    font-weight:700;
    margin-bottom:20px;
}

.carousel-caption p{
    font-size:1.2rem;
    margin-bottom:25px;
}

.btn-primary{
    padding:12px 30px;
    border-radius:50px;
}

@media(max-width:768px){

    .hero-img{
        height:75vh;
    }

    .carousel-caption{
        bottom:50%;
        left:8%;
        right:8%;
        transform:translateY(50%);
        text-align:center;
    }

    .carousel-caption h1{
        font-size:2rem;
    }

    .carousel-caption p{
        font-size:1rem;
    }

}
.about-section{
    background:#f8fafc;
}

.about-tag{
    background:#e0e7ff;
    color:#2563eb;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.about-title{
    font-size:2.8rem;
    font-weight:700;
    color:#111827;
    line-height:1.3;
}

.about-text{
    color:#6b7280;
    font-size:16px;
    line-height:1.8;
    margin-top:15px;
}

.feature-box{
    background:#fff;
    padding:20px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    transition:.3s;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box i{
    font-size:30px;
    color:#0d6efd;
    margin-bottom:10px;
}

.feature-box h6{
    margin:0;
    font-weight:600;
}

.about-img img{
    width:100%;
    object-fit:cover;
}

@media(max-width:768px){

    .about-title{
        font-size:2rem;
        text-align:center;
    }

    .about-text{
        text-align:center;
    }

    .about-tag{
        display:table;
        margin:auto;
    }

    .btn-primary{
        display:block;
        width:100%;
    }

}
.services-section{
    background:#fff;
}

.service-tag{
    background:#e0e7ff;
    color:#2563eb;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.service-title{
    font-size:2.8rem;
    font-weight:700;
}

.service-box{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.service-box:hover{
    transform:translateY(-10px);
}

.service-box img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.service-content{
    padding:30px;
    text-align:center;
}

.service-content i{
    font-size:45px;
    color:#0d6efd;
    margin-bottom:15px;
}

.service-content h4{
    font-weight:700;
    margin-bottom:15px;
}

.service-content p{
    color:#6b7280;
    line-height:1.8;
}

.service-content .btn{
    margin-top:10px;
    border-radius:50px;
    padding:10px 25px;
}

@media(max-width:768px){

    .service-title{
        font-size:2rem;
    }

    .service-box img{
        height:220px;
    }

}
.cta-section{
    position:relative;
    padding:120px 0;
    background:url('https://images.pexels.com/photos/12955791/pexels-photo-12955791.jpeg') center center/cover no-repeat;
    overflow:hidden;
}

.cta-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
}

.cta-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:700px;
    margin:auto;
}

.cta-content h2{
    font-size:3rem;
    font-weight:700;
    margin-bottom:20px;
}

.cta-content p{
    font-size:1.1rem;
    margin-bottom:30px;
    color:#f1f1f1;
}

.cta-content .btn{
    border-radius:50px;
    padding:14px 35px;
    font-weight:600;
}

@media(max-width:768px){

    .cta-section{
        padding:80px 0;
    }

    .cta-content h2{
        font-size:2rem;
    }

    .cta-content p{
        font-size:1rem;
    }

}
.footer-section{
    background:#0f172a;
    color:#cbd5e1;
    padding:70px 0 20px;
}

.footer-logo{
    color:#fff;
    font-weight:700;
    margin-bottom:20px;
}

.footer-section h5{
    color:#fff;
    margin-bottom:20px;
    font-weight:600;
}

.footer-links,
.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li,
.footer-contact li{
    margin-bottom:12px;
}

.footer-links a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#0d6efd;
    padding-left:5px;
}

.footer-contact i{
    color:#0d6efd;
    margin-right:10px;
}

.social-links{
    margin-top:20px;
}

.social-links a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    background:#1e293b;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    background:#0d6efd;
    transform:translateY(-3px);
}

.footer-bottom{
    margin-top:20px;
}

.footer-bottom p{
    margin:0;
    color:#94a3b8;
}

hr{
    border-color:rgba(255,255,255,.1);
}

@media(max-width:768px){

    .footer-section{
        text-align:center;
    }

    .social-links{
        justify-content:center;
    }

}
.contact-banner{
    background:linear-gradient(rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url('https://images.pexels.com/photos/8386440/pexels-photo-8386440.jpeg');
    background-size:cover;
    background-position:center;
    padding:120px 0;
    color:#fff;
}

.contact-banner h1{
    font-size:3.5rem;
    font-weight:700;
}

.contact-banner p{
    font-size:1.1rem;
}

.contact-page{
    background:#f8fafc;
}

.contact-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
}

.contact-card i{
    font-size:40px;
    color:#0d6efd;
    margin-bottom:15px;
}

.form-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.form-control{
    padding:14px;
    border-radius:12px;
}

textarea.form-control{
    resize:none;
}

.btn-primary{
    border-radius:50px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
}

@media(max-width:768px){

    .contact-banner{
        padding:80px 0;
    }

    .contact-banner h1{
        font-size:2.2rem;
    }

    .form-box{
        padding:25px;
    }

    .map-section iframe{
        height:300px;
    }

}
.gallery-banner{
    background:
    linear-gradient(rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url('https://images.pexels.com/photos/8386440/pexels-photo-8386440.jpeg');
    background-size:cover;
    background-position:center;
    padding:120px 0;
    color:#fff;
}

.gallery-banner h1{
    font-size:3.5rem;
    font-weight:700;
}

.gallery-tag{
    background:#e0e7ff;
    color:#2563eb;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.gallery-title{
    font-size:2.8rem;
    font-weight:700;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:200px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

@media (max-width:768px){

    .gallery-banner{
        padding:80px 0;
    }

    .gallery-banner h1{
        font-size:2.2rem;
    }

    .gallery-title{
        font-size:2rem;
    }

    .gallery-item img{
        height:250px;
    }

}
.download-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 30px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 8px 20px rgba(13,110,253,.25);
}

.download-btn:hover{
    background:#0b5ed7;
    color:#fff;
    transform:translateY(-3px);
}

.download-btn i{
    font-size:18px;
}

@media(max-width:576px){

    .download-btn{
        width:100%;
        padding:15px;
        font-size:15px;
    }

}
.about-banner{
    background:linear-gradient(rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url('https://images.pexels.com/photos/8386440/pexels-photo-8386440.jpeg');
    
    background-size:cover;
    background-position:center;
    padding:120px 0;
    color:#fff;
}

.about-banner h1{
    font-size:3.5rem;
    font-weight:700;
}

.about-tag{
    background:#e0e7ff;
    color:#2563eb;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
}

.mission-box,
.choose-box{
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:100%;
}

.mission-box i,
.choose-box i{
    font-size:40px;
    color:#0d6efd;
    margin-bottom:15px;
}

.counter-section{
    background:#0d6efd;
    color:#fff;
    padding:70px 0;
}

.about-cta{
    padding:100px 0;
    background:linear-gradient(rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url('images/cta-bg.jpg');
    background-size:cover;
    color:#fff;
}

@media(max-width:768px){

    .about-banner{
        padding:80px 0;
    }

    .about-banner h1{
        font-size:2.2rem;
    }

}
.logo{
    width:150px;
    height:auto;
    object-fit:contain;
    transition:0.3s;
}

.logo:hover{
    transform:scale(1.05);
}

/* Mobile Responsive */
@media (max-width:768px){

    .logo{
        width:95px;
    }

}