body {
    font-family: 'Muli', sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* ==========================
   [02]. Slider
========================== */
.slider {
    background: url('../img/bg/slider-bg.png') center center no-repeat;
    height: calc(100vh - 92px); /* Full viewport height minus header space */
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    overflow: hidden; /* Prevent scrollbar inside slider */
}

.slider .particels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.animated-headlines .cd-headline span {
    font-size: 50px;
    font-family: 'Muli', sans-serif !important;
    font-weight: 700;
    text-transform: uppercase;
    color: #e0a80d;
}

.slider .left-content .hello {
    font-size: 20px;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.slider .left-content h2 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    padding: 10px 0;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    display: inline-block;
    margin: 5px 0 20px 0;
}

.slider .left-content .paragraph {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 28px;
    padding-right: 20px;
}

.slider .left-content .btn {
    border: 2px solid #e0a80d;
    border-radius: 35px;
    padding: 10px 30px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    margin-top: 20px;
    text-decoration: none;
    z-index: 200;
}

/* ==========================
   [10]. Footer
========================== */
.footer {
    padding: 10px 0;
    background: #242527;
}

.footer .social-icons span {
    color: #e0a80d;
    padding: 0 0px;
}

.footer p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    margin-top: 11px;
}

.cfoot {
    color: #e0a80d;
    text-decoration: none;
}

/* ==========================
   [11]. Media Queries
========================== */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.99px) {
    .slider {
        height: calc(100vh - 80px); /* Adjust for smaller screen */
    }

    .slider img {
        display: none;
    }

    .navbar {
        padding: 20px;
    }

    .animated-headlines .cd-headline span {
        font-size: 30px;
    }

    .about-me {
        padding: 130px 25px;
    }

    .about-me img {
        margin-bottom: 30px;
    }

    .about-me .btn-1 {
        margin-bottom: 30px;
    }

    .some-facts .items h4 {
        margin-bottom: 30px;
    }

    .blog .box {
        margin-bottom: 30px;
    }

    .contact .info {
        padding: 0;
        text-align: center;
        margin-top: 40px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .slider {
        height: calc(100vh - 80px);
    }

    .slider .left-content {
        padding: 0;
        margin: 0;
    }

    .animated-headlines .cd-headline span {
        font-size: 30px;
    }

    .about-me img {
        padding: 0;
        margin-bottom: 30px;
    }

    .some-facts .items h4 {
        margin-bottom: 30px;
    }

    .blog .box {
        margin-bottom: 30px;
    }

    .contact .info {
        padding: 0;
        text-align: center;
        margin-top: 40px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .animated-headlines .cd-headline span {
        font-size: 30px;
    }

    .slider .left-content {
        padding: 140px 0;
    }

    .some-facts .items h4 {
        margin-bottom: 30px;
    }

    .blog .box {
        margin-bottom: 30px;
    }

    .blog {
        padding-bottom: 90px;
    }

    .about-me img {
        display: none;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    /* No specific changes here for now */
}

/* ==============================================
    Hide scrollbar but keep scrolling functionality
================================================ */
* {
    scrollbar-width: none; /* Hide scrollbar in Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar in Internet Explorer and Edge */
}

*::-webkit-scrollbar {
    width: 0px; /* Hide the scrollbar for Webkit browsers (Chrome, Safari) */
    height: 0px;
}

*::-webkit-scrollbar-track {
    background: transparent !important;
}

*::-webkit-scrollbar-thumb {
    background-color: transparent; /* Hide the thumb completely */
}

/* Apply this only for the body or main container for global effect */
html, body {
    overflow: auto; /* Keep the scroll functionality, but hide the scrollbar */
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden; /* Disable horizontal scroll */
    overflow-y: auto;   /* Enable vertical scroll only if needed */
    box-sizing: border-box;
}

/* Prevent overflow from specific containers */
.slider {
    overflow: hidden; /* Prevent slider overflow */
}