/* .navbar {
    background: transparent !important;
} */
/* Transparent navbar only for homepage */
.home-page .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    z-index: 9999;
}

.advantage-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

@media (max-width: 576px) {
    #product-advantages {
        padding-top: 1rem;
        padding-bottom: 4rem;
        margin-bottom: 0;
    }

    .advantage-icon {
        width: 60px !important;
        height: 60px !important;
    }

    #product-advantages h5 {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    #product-advantages .p-3 {
        padding: 0.5rem !important;
    }
}


.navbar-brand img {
    width: 90px;
    height: 65px;
    margin-right: 60px;
}

.nav-link {
    color: #fff !important;
    font-weight: 600;
    font-size: 20px;
    padding: 0px 20px 5px 20px !important;
    margin-top: 0px !important;
}

section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    /* color: #fff; */
    scroll-snap-align: start;
    opacity: 0;
    /* transform: translateY(60px);
    transition: opacity 1s ease-out, transform 1s ease-out; */
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section::before {
    content: "";
    position: absolute;
    inset: -1;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

section .content {
    position: relative;
    z-index: 2;
}

/* img */
.bg1,
.bg2,
.bg3,
.bg4 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
}

.bg1 {
    background-image: url('../images/home_page/fulload1.jpg');
}

.bg2 {
    background-image: url('../images/home_page/Jumbo2.jpg');
}

.bg3 {
    background-image: url('../images/home_page/Powerpod3.jpg');
    background-size: cover;          /* fills container */
    background-repeat: no-repeat;
    background-position: bottom center; /* show bottom part better */
}


.bg4 {
    background-image: url('../images/home_page/evg1.jpg');
}


@media (max-width: 768px) {
    .bg1,
    .bg2,
    .bg3,
    .bg4 {
        min-height: 100vh;
        background-attachment: scroll;
    }
}

.content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 2rem 1rem;
    min-height: 100vh;
}

.btn-dark {
    background: #000000b3;
    border: none;
    color: #fff;
    border-radius: 30px;
    transition: 0.3s;
    min-width: 200px;
}

.btn-light {
    background: #ffffffdb;
    border: none;
    color: #000;
    border-radius: 30px;
    transition: 0.3s;
    min-width: 200px;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.outlined-text {
    color: black;
    /* Text color */
    /* -webkit-text-stroke: 0.3px white; */
    /* White outline */
    text-stroke: 0.3px white;
    /* Fallback for non-webkit browsers */
}

.home-top-menues {
    margin-left: -10%;
}

.home-navbar .nav-link {
    color: #222121 !important;
}

.icon-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.icon-img {
    width: 110px;
    height: 110px;
}

.advantage-title {
    color: #333;
    font-size: 1rem;
}

.product-advantages {
    background-color: #afacac77 !important;
    
}

.home-footer {
    background-color: #0c4e89 !important;
}

.bg5 {
    background-color: #0c4e89;
    
}

body {
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

footer {
    min-height: 0.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    scroll-snap-align: start;
}

/* html,
body {
    height: 100%;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
} */

/* Add this to your home.css file */

/* Consistent top spacing for all hero sections */
.bg1 .content,
.bg2 .content,
.bg3 .content,
.bg4 .content {
    padding-top: 20px !important;
}

/* Position text towards top with consistent spacing */
.bg1 .content > .container:first-child,
.bg2 .content > .container:first-child,
.bg3 .content > .container:first-child,
.bg4 .content > .container:first-child {
    margin-top: 60px;
    margin-bottom: auto;
}

/* Optional: Adjust for mobile devices */
@media (max-width: 768px) {
    .bg1 .content,
    .bg2 .content,
    .bg3 .content,
    .bg4 .content {
        padding-top: 40px !important;
    }
    
    .bg1 .content > .container:first-child,
    .bg2 .content > .container:first-child,
    .bg3 .content > .container:first-child,
    .bg4 .content > .container:first-child {
        margin-top: 40px;
    }
}
.product-heading {
    color: #202020ff;
    font-size: 2rem; /* Default for desktop */
}

/* For mobile view */
@media (max-width: 576px) {
    .product-heading {
        font-size: 1.3rem; /* smaller font for mobile */
        text-align: center; /* optional: center align text on mobile */
    }
}
.product-text {
    color: #202020ff;
    font-size: 16px; /* Default for desktop */
}

/* Mobile view */
@media (max-width: 576px) {
    .product-text {
        font-size: 14px; /* smaller size for phones */
        text-align: center; /* optional: center text on mobile */
    }
}

