body{
    font-family:'Poppins',sans-serif;
}

/* TOP BAR */
.top-bar{
    background: #0d6efd;
    color:#fff;
    padding:12px 0;
}

.top-bar .call-text{
    font-size:22px;
    font-weight:700;
}

.top-bar .phone{
    font-size:20px;
    font-weight:600;
}

/* NAVBAR */
.custom-navbar{
    background:#ffffff;
    padding:15px 0;
    box-shadow:0 2px 20px rgba(0,0,0,0.08);
}

.navbar-brand{
    font-size:30px;
    font-weight:700;
    color:#0d6efd !important;
}

.navbar-nav .nav-link{
    color:#222 !important;
    font-size:17px;
    font-weight:600;
    margin-left:15px;
    position:relative;
    transition:all 0.4s ease;
}

/* Hover Effect */
.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    width:0;
    height:3px;
    background:#0d6efd;
    left:50%;
    bottom:-5px;
    transform:translateX(-50%);
    transition:0.4s;
    border-radius:10px;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

.navbar-nav .nav-link:hover{
    color:#0d6efd !important;
    transform:translateY(-2px);
}

/* Active Link */
.navbar-nav .nav-link.active{
    color:#0d6efd !important;
}
/* HERO SECTION */

.hero-section{
    position: relative;
    background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content{
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-badge{
    display: inline-block;
    background: rgba(13,110,253,0.2);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-content h1{
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
}

.btn-call{
    background: #0d6efd;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all .4s ease;
    box-shadow: 0 10px 30px rgba(13,110,253,.4);
}

.btn-call:hover{
    background: #fff;
    color: #0d6efd;
    transform: translateY(-5px);
}
/* SERVICES SECTION */

.services-section{
    background: #0b1220;
    color: #fff;
}

/* Title */
.section-title{
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-subtitle{
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

/* Service Card */
.service-card{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

/* Hover Effect */
.service-card:hover{
    transform: translateY(-10px);
    border-color: #0d6efd;
    box-shadow: 0 15px 40px rgba(13,110,253,0.25);
}

/* Icon */
.service-card .icon{
    font-size: 40px;
    margin-bottom: 15px;
}

/* Heading */
.service-card h5{
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
/* Text */
.service-card p{
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
/* ABOUT SECTION */

.about-section{
    background: #0b1220;
    color: #fff;
}

/* Badge */
.about-badge{
    display: inline-block;
    background: rgba(13,110,253,0.15);
    color: #0d6efd;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Title */
.about-title{
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Text */
.about-text{
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Image */
.about-img img{
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transition: 0.4s ease;
}

.about-img img:hover{
    transform: scale(1.03);
}

/* Stats */
.about-stats{
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.stat-box{
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 120px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.stat-box:hover{
    transform: translateY(-5px);
    border-color: #0d6efd;
}

.stat-box h4{
    color: #0d6efd;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-box p{
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Button */
.about-btn{
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(13,110,253,0.3);
}

.about-btn:hover{
    background: #fff;
    color: #0d6efd;
    transform: translateY(-5px);
}

/* CONTACT SECTION */

.contact-section{
    background: #0b1220;
    color: #fff;
}

/* TITLE */
.contact-title{
    font-size: 2.5rem;
    font-weight: 800;
}

.contact-subtitle{
    color: rgba(255,255,255,0.7);
}

/* SMALL CARDS */
.contact-card{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

/* HOVER EFFECT */
.contact-card:hover{
    transform: translateY(-10px);
    border-color: #0d6efd;
    box-shadow: 0 15px 40px rgba(13,110,253,0.25);
}

.contact-card .icon{
    font-size: 40px;
    margin-bottom: 10px;
}

.contact-card h5{
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card p{
    margin: 0;
}

.contact-card a{
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

/* BIG CTA CARD */
.contact-cta{
    background: linear-gradient(135deg, #0d6efd, #1c1c1c);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transition: 0.4s ease;
}

.contact-cta:hover{
    transform: scale(1.02);
}

.contact-cta h3{
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-cta p{
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

/* BUTTON */
.cta-btn{
    display: inline-block;
    background: #fff;
    color: #0d6efd;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn:hover{
    background: #000;
    color: #fff;
    transform: translateY(-5px);
}
/* FOOTER SECTION */

.footer-section{
    background: linear-gradient(135deg, #0b1220, #000);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Glow effect */
.footer-section::before{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(13,110,253,0.2);
    filter: blur(100px);
    top: -50px;
    left: -50px;
}

.footer-section::after{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(13,110,253,0.15);
    filter: blur(120px);
    bottom: -80px;
    right: -80px;
}

/* BRAND */
.footer-brand{
    font-size: 2rem;
    font-weight: 800;
    color: #0d6efd;
}

.footer-text{
    color: rgba(255,255,255,0.7);
    max-width: 400px;
    line-height: 1.7;
}

/* LINKS */
.footer-links{
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

/* HOVER EFFECT */
.footer-links a:hover{
    background: #0d6efd;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13,110,253,0.3);
}

/* LINE */
.footer-line{
    border-color: rgba(255,255,255,0.1);
    margin: 30px 0;
}

/* BOTTOM TEXT */
.footer-bottom{
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
@media (max-width:991px){

    .hero-section{
        text-align: center;
        min-height: 90vh;
    }

    .hero-content h1{
        font-size: 2.8rem;
    }

    .hero-content p{
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width:576px){

    .hero-content h1{
        font-size: 2rem;
    }

    .hero-content p{
        font-size: .95rem;
    }

    .btn-call{
        width: 100%;
        font-size: 16px;
        padding: 14px 20px;
    }
}
/* Mobile */
@media(max-width:991px){

    .top-bar .call-text{
        font-size:18px;
    }

    .top-bar .phone{
        font-size:16px;
    }

    .navbar-nav{
        text-align:center;
        margin-top:15px;
    }

    .navbar-nav .nav-link{
        margin:10px 0;
    }
}
@media(max-width:768px){
    .section-title{
        font-size: 2rem;
    }
}
/* Responsive */
@media(max-width:991px){
    .about-title{
        font-size: 2rem;
    }

    .about-stats{
        justify-content: center;
    }

    .about-section{
        text-align: center;
    }
}
/* RESPONSIVE */
@media(max-width:768px){
    .contact-title{
        font-size: 2rem;
    }

    .contact-cta h3{
        font-size: 1.5rem;
    }
}
/* RESPONSIVE */
@media(max-width:768px){

    .footer-links{
        justify-content: center;
        margin-top: 20px;
    }

    .footer-text{
        margin: 0 auto;
    }
}