  *{
            margin:0;
            padding:0;
            box-sizing:border-box;
        }

        body{
            font-family: Arial, sans-serif;
            background:#fff;
            color:#111;
        }

     /* NAVBAR LOGO FIX */
/* LOGO VISIBILITY FIX */

.custom-logo{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    padding:10px 18px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
    transition:0.4s;
}

.custom-logo:hover{
    background:rgba(255,255,255,0.12);
    transform:translateY(-2px);
}

.custom-logo img{
    height:55px;
    width:auto;
    display:block;
    object-fit:contain;
}

/* SCROLL */

.custom-navbar.scrolled .custom-logo{
    background:rgba(255,255,255,0.10);
}

/* MOBILE */

@media(max-width:768px){

    .custom-logo{
        padding:8px 12px;
        border-radius:14px;
    }

    .custom-logo img{
        height:42px;
    }

}

/* SCROLL EFFECT */

.custom-navbar.scrolled .custom-logo img{
    height:58px;
}

/* NAVBAR HEIGHT */

.custom-navbar{
    min-height:90px;
}

/* MOBILE */

@media(max-width:991px){

    .custom-logo img{
        height:52px;
    }

    .custom-navbar{
        min-height:75px;
    }

}

     /* PREMIUM NAVBAR */

.custom-navbar{
    padding:18px 0;
    transition:0.5s;
    background:transparent;
    z-index:999;
}

.custom-navbar.scrolled{
    background:rgba(0,0,0,0.72);
    backdrop-filter:blur(12px);
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.custom-logo{
    background:rgba(255,255,255,0.16);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.15);
}


.custom-logo span{
    color:#28a745;
}

.custom-navbar .nav-item{
    margin:0 10px;
}

.custom-navbar .nav-link{
    color:#fff !important;
    font-size:17px;
    font-weight:600;
    position:relative;
    transition:0.4s;
}

.custom-navbar .nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:#28a745;
    transition:0.4s;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after{
    width:100%;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active{
    color:#28a745 !important;
}

.nav-invest-btn{
    background:linear-gradient(135deg,#28a745,#145c28);
    color:#fff;
    padding:13px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(40,167,69,0.3);
}

.nav-invest-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 15px 40px rgba(40,167,69,0.5);
}

.custom-toggler{
    border:none;
    color:#fff;
    font-size:28px;
    box-shadow:none !important;
}

.custom-toggler i{
    color:#fff;
}

@media(max-width:991px){

    .custom-navbar{
        background:#000;
        padding:15px 0;
    }

    .navbar-collapse{
        background:#111;
        padding:25px;
        border-radius:20px;
        margin-top:20px;
    }

    .custom-navbar .nav-item{
        margin:12px 0;
    }

    .nav-invest-btn{
        margin-top:15px;
        display:inline-block;
    }

}




        .btn-green{
            background:#28a745;
            color:#fff;
            padding:12px 30px;
            border:none;
            border-radius:5px;
            text-decoration:none;
        }

        .btn-green:hover{
            background:#1e7e34;
            color:#fff;
        }

        .section-title{
            font-size:40px;
            font-weight:bold;
            color:#111;
            margin-bottom:20px;
        }

        .green-text{
            color:#28a745;
        }


/* Home Slider images styling form home page */

.hero-slider .carousel-item{
    height:100vh;
    min-height:700px;
    position:relative;
}

.hero-slider .carousel-item img{
    width:100%;
    height:100vh;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.45)
    );
    z-index:1;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:2;
    width:100%;
    text-align:left;
    color:#fff;
}

.hero-content h1{
    font-size:70px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
     text-shadow:0 5px 20px rgba(0,0,0,0.25);
}

.hero-content p{
    font-size:22px;
    width:70%;
    margin-bottom:35px;
    color:#f1f1f1;
}



.btn-green{
    background:#28a745;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    border:2px solid #28a745;
    transition:0.4s;
}

.btn-green:hover{
    background:transparent;
    color:#28a745;
    box-shadow:0 0 20px #28a745;
}

.btn-outline-custom{
    border:2px solid #fff;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    margin-left:15px;
    transition:0.4s;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#111;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:#28a745;
    border-radius:50%;
    padding:25px;
}

.navbar{
    background:rgba(0,0,0,0.5) !important;
    backdrop-filter:blur(10px);
}

@media(max-width:768px){

    .hero-content{
        text-align:center;
        padding:20px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        width:100%;
        font-size:18px;
    }

    .btn-outline-custom{
        margin-left:0;
        margin-top:15px;
        display:inline-block;
    }

}


/* PREMIUM ABOUT  FROM HOME PAGE SECTION */

.about-section{
    background:#f8f9fa;
    position:relative;
    overflow:hidden;
}

.about-image-box{
    position:relative;
}

.main-about-img{
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,0.2);
    transition:0.5s;
}

.main-about-img:hover{
    transform:scale(1.03);
}

.experience-box{
    position:absolute;
    bottom:30px;
    left:-20px;
    background:linear-gradient(135deg,#28a745,#0f5d23);
    color:#fff;
    padding:25px 35px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.3);
}

.experience-box h2{
    font-size:45px;
    font-weight:800;
    margin-bottom:5px;
}

.experience-box p{
    margin:0;
    font-size:16px;
}

.about-tag{
    background:#28a74520;
    color:#28a745;
    padding:10px 20px;
    border-radius:50px;
    font-weight:700;
    letter-spacing:1px;
    display:inline-block;
    margin-bottom:20px;
}

.about-content h2{
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
    color:#111;
}

.about-text{
    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}

.about-feature{
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    padding:18px;
    border-radius:15px;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.about-feature:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.about-feature i{
    width:60px;
    height:60px;
    background:#28a745;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:24px;
}

.about-feature h5{
    margin-bottom:5px;
    font-weight:700;
}

.about-feature p{
    margin:0;
    color:#666;
    font-size:14px;
}

@media(max-width:768px){

    .about-content h2{
        font-size:36px;
    }

    .experience-box{
        left:10px;
        bottom:10px;
        padding:15px 20px;
    }

    .experience-box h2{
        font-size:30px;
    }

}


/* PREMIUM SERVICES  FROM HOME PAGE SECTION */

.services-section{
    background:#f5f7f6;
    position:relative;
    overflow:hidden;
}

.service-box{
    position:relative;
    background:#fff;
    border-radius:25px;
    padding:50px 35px;
    overflow:hidden;
    transition:0.5s;
    z-index:1;
    height:100%;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    border:1px solid rgba(255,255,255,0.2);
}

.service-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#28a745,#0d3b1a);
}

.service-box::after{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(40,167,69,0.08);
    border-radius:50%;
    top:-40px;
    right:-40px;
    transition:0.5s;
}

.service-box:hover::after{
    transform:scale(1.5);
}

.service-box:hover{
    transform:translateY(-15px);
    background:#111;
    color:#fff;
    box-shadow:0 20px 60px rgba(0,0,0,0.25);
}

.service-icon{
    width:90px;
    height:90px;
    background:linear-gradient(135deg,#28a745,#145c28);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    margin:0 auto 30px;
    transform:rotate(0deg);
    transition:0.5s;
    box-shadow:0 10px 30px rgba(40,167,69,0.3);
}

.service-box:hover .service-icon{
    transform:rotate(10deg) scale(1.1);
}

.service-icon i{
    font-size:40px;
    color:#fff;
}

.service-box h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
}

.service-box p{
    font-size:16px;
    line-height:1.8;
    color:#666;
    transition:0.5s;
}

.service-box:hover p{
    color:#ddd;
}

.service-btn{
    display:inline-block;
    margin-top:20px;
    color:#28a745;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
}

.service-btn:hover{
    color:#fff;
    letter-spacing:1px;
}

.services-title{
    font-size:55px;
    font-weight:800;
    margin-bottom:15px;
}

.services-subtitle{
    color:#666;
    font-size:18px;
    width:60%;
    margin:auto;
    line-height:1.8;
}

@media(max-width:768px){

    .services-title{
        font-size:38px;
    }

    .services-subtitle{
        width:100%;
    }

}




/* PREMIUM PROJECT SECTION */

.projects-section{
    background:#111;
    position:relative;
    overflow:hidden;
}

.project-card{
    position:relative;
    border-radius:25px;
    overflow:hidden;
    height:500px;
    transition:0.5s;
}

.project-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.7s;
}

.project-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.95),
        rgba(0,0,0,0.2)
    );
    z-index:1;
}

.project-content{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:35px;
    z-index:2;
    color:#fff;
    transition:0.5s;
}

.project-content span{
    background:#28a745;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    display:inline-block;
    margin-bottom:15px;
}

.project-content h3{
    font-size:34px;
    font-weight:800;
    margin-bottom:15px;
}

.project-content p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:20px;
}

.project-btn{
    color:#28a745;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
}

.project-btn:hover{
    color:#fff;
    letter-spacing:1px;
}

.project-card:hover img{
    transform:scale(1.1);
}

.project-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,0.5);
}

.project-card::before{
    content:'';
    position:absolute;
    inset:0;
    border:2px solid transparent;
    border-radius:25px;
    z-index:3;
    transition:0.5s;
}

.project-card:hover::before{
    border-color:#28a745;
}

.project-stats{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.project-stat{
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    padding:10px 15px;
    border-radius:12px;
    font-size:14px;
}

.project-heading{
    font-size:60px;
    font-weight:800;
    color:#fff;
}

.project-subtitle{
    color:#bbb;
    width:60%;
    margin:auto;
    line-height:1.9;
    font-size:18px;
}

@media(max-width:768px){

    .project-heading{
        font-size:38px;
    }

    .project-subtitle{
        width:100%;
    }

    .project-card{
        height:420px;
    }

    .project-content h3{
        font-size:28px;
    }

}



/* PREMIUM INVESTMENT SECTION */

.investment-section{
    position:relative;
    background:#0b0f0c;
    overflow:hidden;
    color:#fff;
}

.investment-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(40,167,69,0.08);
    border-radius:50%;
    top:-200px;
    right:-100px;
    filter:blur(50px);
}

.investment-tag{
    background:rgba(40,167,69,0.15);
    color:#28a745;
    padding:10px 20px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:20px;
    font-weight:700;
    letter-spacing:1px;
}

.investment-title{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.investment-text{
    color:#ccc;
    font-size:18px;
    line-height:1.9;
    margin-bottom:30px;
}

.investment-list{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.investment-list li{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
    font-size:18px;
    color:#eee;
}

.investment-list li i{
    width:40px;
    height:40px;
    background:#28a745;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.investment-image-box{
    position:relative;
}

.investment-image{
    border-radius:30px;
    width:100%;
    box-shadow:0 25px 70px rgba(0,0,0,0.5);
    transition:0.5s;
}

.investment-image:hover{
    transform:scale(1.03);
}

.profit-card{
    position:absolute;
    bottom:30px;
    left:-30px;
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.1);
    padding:25px 30px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.3);
}

.profit-card h3{
    font-size:40px;
    color:#28a745;
    font-weight:800;
    margin-bottom:5px;
}

.profit-card p{
    margin:0;
    color:#ddd;
}

.investment-stats{
    display:flex;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.investment-stat-box{
    background:rgba(255,255,255,0.05);
    padding:20px 25px;
    border-radius:20px;
    min-width:160px;
    border:1px solid rgba(255,255,255,0.08);
}

.investment-stat-box h4{
    color:#28a745;
    font-size:32px;
    font-weight:800;
    margin-bottom:8px;
}

.investment-stat-box p{
    margin:0;
    color:#ccc;
}

@media(max-width:768px){

    .investment-title{
        font-size:38px;
    }

    .profit-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
    }

}

/* PREMIUM COUNTER SECTION */

.counter-section{
    position:relative;
    background:#0b0f0c;
    overflow:hidden;
}

.counter-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(40,167,69,0.08);
    border-radius:50%;
    top:-200px;
    left:-150px;
    filter:blur(80px);
}

.counter-card{
    position:relative;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    padding:45px 30px;
    border-radius:30px;
    text-align:center;
    transition:0.5s;
    overflow:hidden;
    z-index:1;
    height:100%;
}

.counter-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#28a745,#0d5b21);
}

.counter-card:hover{
    transform:translateY(-15px);
    box-shadow:0 25px 60px rgba(0,0,0,0.4);
    background:#111;
}

.counter-icon{
    width:90px;
    height:90px;
    background:linear-gradient(135deg,#28a745,#145c28);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:0 auto 25px;
    box-shadow:0 10px 30px rgba(40,167,69,0.3);
    transition:0.5s;
}

.counter-card:hover .counter-icon{
    transform:rotate(10deg) scale(1.1);
}

.counter-icon i{
    color:#fff;
    font-size:38px;
}

.counter-number{
    font-size:55px;
    font-weight:800;
    color:#28a745;
    margin-bottom:10px;
    line-height:1;
}

.counter-title{
    color:#fff;
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
}

.counter-text{
    color:#bbb;
    font-size:15px;
    line-height:1.8;
}

.counter-heading{
    font-size:60px;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;
}

.counter-subtitle{
    width:60%;
    margin:auto;
    color:#bbb;
    line-height:1.9;
    font-size:18px;
}

@media(max-width:768px){

    .counter-heading{
        font-size:38px;
    }

    .counter-subtitle{
        width:100%;
    }

    .counter-number{
        font-size:42px;
    }

}




/* PREMIUM CONTACT SECTION */

.contact-section{
    position:relative;
    background:#f5f7f6;
    overflow:hidden;
}

.contact-heading{
    font-size:60px;
    font-weight:800;
    margin-bottom:20px;
    color:#111;
}

.contact-subtitle{
    width:60%;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:18px;
}

.contact-info-box{
    background:#111;
    padding:50px 40px;
    border-radius:30px;
    color:#fff;
    height:100%;
    position:relative;
    overflow:hidden;
}

.contact-info-box::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(40,167,69,0.1);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.contact-info-box h3{
    font-size:38px;
    font-weight:800;
    margin-bottom:15px;
}

.contact-info-box > p{
    color:#bbb;
    line-height:1.8;
    margin-bottom:35px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:30px;
}

.contact-icon{
    width:65px;
    height:65px;
    background:linear-gradient(135deg,#28a745,#145c28);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    box-shadow:0 10px 30px rgba(40,167,69,0.3);
}

.contact-icon i{
    color:#fff;
    font-size:26px;
}

.contact-item h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:5px;
}

.contact-item p{
    margin:0;
    color:#ccc;
    line-height:1.8;
}

.contact-form-box{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.custom-input{
    height:60px;
    border-radius:15px;
    border:1px solid #ddd;
    padding:15px 20px;
    font-size:16px;
    transition:0.4s;
    box-shadow:none !important;
}

.custom-input:focus{
    border-color:#28a745;
    box-shadow:0 0 20px rgba(40,167,69,0.2) !important;
}

textarea.custom-input{
    height:auto;
    resize:none;
}

.contact-btn{
    padding:16px 45px;
    border-radius:50px;
    font-size:17px;
    font-weight:700;
}

@media(max-width:768px){

    .contact-heading{
        font-size:38px;
    }

    .contact-subtitle{
        width:100%;
    }

    .contact-form-box{
        padding:30px;
    }

}

/* PREMIUM FOOTER */

.premium-footer{
    position:relative;
    background:#0b0f0c;
    color:#fff;
    padding-top:90px;
    overflow:hidden;
}

.premium-footer::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(40,167,69,0.08);
    border-radius:50%;
    top:-250px;
    right:-200px;
    filter:blur(80px);
}

.footer-logo{
    font-size:42px;
    font-weight:800;
    margin-bottom:25px;
}

.footer-logo span{
    color:#28a745;
}

.footer-about p{
    color:#bbb;
    line-height:1.9;
    margin-bottom:30px;
}

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:50px;
    height:50px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    transition:0.4s;
    text-decoration:none;
}

.footer-social a:hover{
    background:#28a745;
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(40,167,69,0.4);
}

.footer-links h4,
.footer-contact h4{
    font-size:26px;
    font-weight:700;
    margin-bottom:30px;
    position:relative;
}

.footer-links h4::after,
.footer-contact h4::after{
    content:'';
    position:absolute;
    width:60px;
    height:3px;
    background:#28a745;
    left:0;
    bottom:-10px;
}

.footer-links ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-links ul li{
    margin-bottom:18px;
}

.footer-links ul li a{
    color:#bbb;
    text-decoration:none;
    transition:0.4s;
}

.footer-links ul li a:hover{
    color:#28a745;
    padding-left:8px;
}

.footer-contact p{
    color:#bbb;
    margin-bottom:20px;
    display:flex;
    gap:15px;
    align-items:flex-start;
    line-height:1.8;
}

.footer-contact p i{
    color:#28a745;
    margin-top:5px;
}

.footer-bottom{
    margin-top:70px;
    border-top:1px solid rgba(255,255,255,0.08);
    padding:25px 0;
}

.footer-bottom p{
    margin:0;
    color:#aaa;
}

@media(max-width:768px){

    .footer-logo{
        font-size:34px;
    }

    .footer-bottom{
        text-align:center;
    }

}