/*
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050505;
    color:#fff;
    overflow-x:hidden;
}
.page-banner{
	margin-top:120px;
}
.custom-navbar{
    background:rgba(0,0,0,0.85);
    backdrop-filter:blur(10px);
    border-bottom:1px solid #222;
    padding:18px 0;
}

.logo{
    font-size:30px;
    font-weight:700;
    color:#fff !important;
}

.nav-link{
    color:#fff !important;
    font-weight:500;
}

.hero-section{
    min-height:100vh;
    padding-top:120px;
}

.hero-badge{
    background:#fff;
    color:#000;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    display:inline-block;
}

.hero-title{
    font-size:70px;
    font-weight:800;
    line-height:1.2;
}

.hero-description{
    color:#aaa;
    font-size:18px;
    line-height:1.9;
}

.hero-image{
    border-radius:30px;
    box-shadow:0 20px 60px rgba(255,255,255,0.1);
}

.custom-btn,
.custom-btn-outline{
    padding:16px 35px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.custom-btn{
    background:#fff;
    color:#000;
}

.custom-btn:hover{
    transform:translateY(-5px);
}

.custom-btn-outline{
    border:1px solid #444;
    color:#fff;
}

.service-section{
    padding:100px 0;
}

.section-heading{
    font-size:50px;
    font-weight:700;
}

.section-text{
    color:#999;
}

.service-card{
    background:#111;
    border:1px solid #222;
    border-radius:30px;
    padding:25px;
    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#fff;
}

.service-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.service-card p{
    color:#aaa;
    line-height:1.8;
}

.footer-section{
    padding:80px 0;
    border-top:1px solid #222;
    background:#000;
}

.footer-title{
    font-size:42px;
    font-weight:700;
}

.footer-text{
    color:#999;
    margin-top:20px;
}

.social-links a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin:0 8px;
    text-decoration:none;
    transition:0.3s;
}

.social-links a:hover{
    background:#fff;
    color:#000;
}

.copyright{
    color:#888;
    margin-top:20px;
}

@media(max-width:991px){

.hero-title{
    font-size:50px;
}

}

@media(max-width:767px){

.hero-section{
    text-align:center;
    padding-top:130px;
}

.hero-title{
    font-size:38px;
}

.hero-description{
    font-size:16px;
}

.section-heading{
    font-size:36px;
}

.footer-title{
    font-size:32px;
}

.stats-row h2{
    font-size:28px;
}

}

.custom-navbar{
    background: #000;
    padding: 15px 0;
    transition: 0.3s;
}

.logo img{
    width: 180px;
    max-width: 100%;
}

.navbar-nav .nav-link{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover{
    color: #bdbdbd;
}

.navbar-toggler{
    padding: 0;
}

@media(max-width:991px){

    .navbar-collapse{
        background: #000;
        padding: 20px;
        margin-top: 15px;
        border-radius: 15px;
    }

    .navbar-nav .nav-link{
        padding: 12px 0;
    }

    .logo img{
        width: 150px;
    }

}


*/

body{
    font-family: 'Poppins', sans-serif;
    background:#f5f5f5;
    color:#111;
    overflow-x:hidden;
}

/* Navbar */

.custom-navbar{
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:18px 0;
}

.logo{
    font-size:32px;
    font-weight:700;
    color:#fff !important;
}



.navbar-nav .nav-link{
    color:#fff;
    font-size:16px;
    font-weight:500;
    position:relative;
    transition:.3s;
}

.navbar-nav .nav-link:hover{
    color:#ddd;
}

.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#fff;
    transition:.3s;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

/* Banner */

.page-banner{
    position:relative;
    padding:180px 0 120px;
    background:
    linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
    url('../image/WordPress Website Development.webp');
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.page-banner h1{
    font-size:70px;
    font-weight:700;
    color:#fff;
    line-height:1.1;
}

.banner-text{
    max-width:800px;
    margin:auto;
    color:#ddd;
    font-size:20px;
    line-height:1.8;
}

/* Badge */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius:100px;
    color:#fff;
    font-size:20px;
    letter-spacing:1px;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
	margin-top: 20px;
}

/* Cards */

.service-card,
.project-card,
.contact-form-card,
.contact-info-card,
.about-feature-card,
.experience-card,
.testimonial-card,
.extra-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
    border:1px solid rgba(0,0,0,0.05);
    transition:.4s;
    height:100%;
}

.service-card:hover,
.project-card:hover,
.testimonial-card:hover{
    transform:translateY(-10px);
}

/* Section */

section{
    position:relative;
}

.section-heading{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.section-text{
    font-size:18px;
    color:#666;
}

/* Buttons */

.custom-btn{
    display:inline-block;
    background:#000;
    color:#fff;
    padding:15px 35px;
    border-radius:12px;
    text-decoration:none;
    transition:.3s;
    border: 1px solid #9e9e9e;
    font-weight:500;
}

.custom-btn:hover{
    background:#fff;
    color:#000;
}

.custom-btn-outline{
    display:inline-block;
    padding:15px 35px;
    border-radius:12px;
    text-decoration:none;
    border:1px solid #fff;
    color:#fff;
    transition:.3s;
}

.custom-btn-outline:hover{
    background:#fff;
    color:#000;
}

/* Forms */

.custom-input{
    height:58px;
    border-radius:14px;
    border:1px solid #ddd;
    padding:15px 20px;
    box-shadow:none !important;
}

textarea.custom-input{
    height:auto;
}

/* Icons */

.icon-box{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

/* CTA */

.cta-box{
    background:#000;
    color:#fff;
    padding:80px 40px;
    border-radius:30px;
}

.footer-section{
    padding:80px 0;
    border-top:1px solid #222;
    background:#000;
}

.footer-title{
    font-size:42px;
    font-weight:700;
	color:#d6d6d6;
}

.footer-text{
    color:#999;
    margin-top:20px;
}

.social-links a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin:0 8px;
    text-decoration:none;
    transition:0.3s;
}

.social-links a:hover{
    background:#fff;
    color:#000;
}

.copyright{
    color:#888;
    margin-top:20px;
}


.hero-badge{
    background:#fff;
    color:#000;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    display:inline-block;
}

.hero-title{
    font-size:66px;
    font-weight:800;
    line-height:1.2;
}

.hero-description{
    color:#363636;
    font-size:18px;
    line-height:1.9;
}

.hero-image{
    border-radius:30px;
    box-shadow:0 20px 60px rgba(255,255,255,0.1);
}


/* Responsive */

@media(max-width:991px){

    .page-banner{
        padding:150px 0 90px;
    }

    .page-banner h1{
        font-size:45px;
    }

    .section-heading{
        font-size:36px;
    }

}

@media(max-width:767px){

    .page-banner h1{
        font-size:34px;
    }

    .banner-text{
        font-size:16px;
    }

    .section-heading{
        font-size:30px;
    }

    .service-card,
    .project-card,
    .testimonial-card{
        padding:25px;
    }
	
	.hero-title{
    font-size:38px;
    font-weight:800;
    line-height:1.2;
}

}

/* Navbar */
.custom-navbar{
    background: #000;
    padding: 15px 0;
    z-index: 999;
}


/* Mobile Toggle Right Side */
.navbar-toggler{
    border: 0 !important;
    box-shadow: none !important;
    margin-left: auto;
}

/* Mobile Menu */
@media(max-width:991px){

    .navbar > .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand{
        margin-right: 0;
    }

    .navbar-collapse{
        background: #111;
        margin-top: 15px;
        padding: 20px;
        border-radius: 15px;
    }

    .navbar-nav .nav-link{
        padding: 12px 0;
    }

    .logo-img{
        width: 150px;
    }

}

.logo-img {
        max-width: 250px;
    }
	
.h3title {
    color: rgb(17 17 17);
    text-decoration: none;
}