main.pb-3 {
    overflow-x: hidden;
}
@media (min-width: 1200px) {
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}
@media (min-width: 1200px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}
.products-section > *:not(.circle) {
    position: relative;
    z-index: 1; /* ensures text/buttons/images stay above */
}
/* Hero H1 font */
.hero-text h1 {
    font-family: 'Saira Stencil One';
    font-size: 3.4rem;
    font-weight: normal;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}
.navbar-expand-lg .navbar-nav {
    flex-direction: row;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Responsive font scaling */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column; /* stack text & image */
        text-align: center;
    }

    .hero-text {
        margin-bottom: 2rem;
    }

        .hero-text h1 {
            font-size: 2rem;
        }

        .hero-text p {
            font-size: 0.95rem;
        }

    .hero-image img {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-text p {
        font-size: 0.85rem;
    }

    .hero-buttons .btn-orange,
    .hero-buttons .btn-light {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

/* Global reset */
body {
    margin: 0;
    font-family: Inter;
    font-weight: 500;
    background: black;
    color: white;
}

/* Navbar */
.navbar-brand {
    position: relative;
    z-index: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: absolute;
    top: 0;
    width: 100%;
}
    .logo-img{
        max-height: 4rem;
    }
    .navbar .logo img {
        height: 40px;
    }

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

    .nav-links li a {
        text-decoration: none;
        font-family: Inter;
        font-weight: 500;
        color: white;
        font-size: 16px;
        transition: 0.3s;
    }

        .nav-links li a:hover {
            color: #FF6600; /* Orange hover */
        }

/* Hero section */
.hero {
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at bottom right, #222, #000);
    margin-top: 4rem;
    position: relative;
    clip-path: inset(0 0 0 0);
}





    

    .hero-text p {
        font-size: 16px;
        max-width: 27rem;
        margin-bottom: 30px;
        color: #ccc;
    }

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-self: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-orange {
    background: #FF6600;
    color: white;
}

    .btn-orange:hover {
        background: #e65c00;
    }

.btn-light {
    background: #eee;
    color: black;
}

    .btn-light:hover {
        background: #ddd;
    }

/* Hero image */
.hero-image img {
    max-width: 600px;
    height: auto;
}
/* Navbar styling */
.custom-navbar {
    background: black; /* solid black navbar */
    padding: 1rem 2rem;
    z-index: 2;
}

    .custom-navbar .nav-link {
        color: white !important;
        font-weight: 500;
        margin-left: 20px;
        transition: color 0.3s ease;
    }

        .custom-navbar .nav-link:hover {
            color: #ff6600 !important; /* orange hover */
        }

    .custom-navbar .dropdown-menu {
        background-color: #111;
        border: none;
    }

    .custom-navbar .dropdown-item {
        color: white;
    }

        .custom-navbar .dropdown-item:hover {
            background-color: #ff6600;
            color: black;
        }

/* Hero section (the big banner) */
.hero-section {
    background: linear-gradient(to right, #000000 70%, #111111);
    color: white;
    padding: 5rem 7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    max-width: 450px;
}


    .hero-text p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

/* Hero buttons */
.hero-buttons .btn-orange {
    background-color: #ff6600;
    color: white;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 15px;
    margin-right: 15px;
}

    .hero-buttons .btn-orange:hover {
        background-color: #e65c00;
    }

.hero-buttons .btn-light {
    background-color: #f1f1f1;
    color: black;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 15px;
}

    .hero-buttons .btn-light:hover {
        background-color: #ddd;
    }

/* Hero image */
.hero-image img {
    max-width: 800px;
    width: 100%;
     position: relative;
 z-index: 1;
}



/*PRODUCT CATALOGUE*/
/* Section background */
.products-section {
    position: relative;
    background: #000;
    padding: 3rem 5%;
    color: white;
    overflow: hidden;
}

/* circle base */

.circle {
    position: absolute;
    border-radius: 50%;
     backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    opacity: 0.6;
    z-index: 0;
    overflow: hidden;
}

/* individual circles */
.circle1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: rgba(251, 85, 0, 1);
}

.circle2 {
    width: 300px;
    height: 300px;
    bottom: 50px;
    right: 1100px;
    background: rgba(251, 225, 224, 1);
}

.circle3 {
    width: 350px;
    height: 250px;
    top: 250px;
    right: -8%;
    background: rgba(251, 85, 0, 1);
}
.circle4 {
    opacity: 0.8;
    width: 400px;
    height: 300px;
    bottom: 0px;
    right: -100px;
    background: rgba(251, 225, 224, 1);
}
.circle5 {
    width: 350px;
    height: 300px;
    top: 100px;
    left: -200px;
    background: rgba(251, 85, 0, 1);
}


/* make sure text is above circles */
.products-section > *:not(.circle) {
    position: relative;
    z-index: 1;
}

.products-section {
    background: linear-gradient(to bottom right, #000, #111);
    padding: 3rem 5%;
    color: white;
}

/* Title */
.section-title {
    font-family: 'Saira Stencil One', sans-serif;
    text-align: center;
    font-size: 2.8rem;
    /* margin-left: 10.6rem; */
    /* margin-right: 10.6rem; */
    margin-bottom: 3rem;
    /* background: #ff6600; */
    /* padding: 0.6rem 2rem; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.8);
}

/* Row layout */
.product-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    gap: 6rem;
}

    .product-row.reverse {
        flex-direction: row-reverse;
    }

/* Image styling */
.product-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

/* Text styling */
.product-text {
    max-width: 480px;
}

    .product-text h2 {
        font-family: 'Saira Stencil One', sans-serif;
        font-size: 1.9rem;
        margin-bottom: 1rem;
        color: white;
    }

    .product-text p {
        font-family: 'Inter', sans-serif;
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        color: #ddd;
    }

/* Button */
.btn-orange {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    background: #ff6600;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-orange:hover {
        background: #ff3300;
        box-shadow: 0 0 12px rgba(255, 102, 0, 0.8);
    }

/* Mobile responsiveness */
@media (max-width: 992px) {
    .product-row {
        flex-direction: column;
        text-align: center;
    }

        .product-row.reverse {
            flex-direction: column;
        }

    .product-image img {
        max-width: 100%;
    }

    .product-text {
        max-width: 100%;
    }
}

/* MID SECTION */
/* Midsection styles */
/* Midsection styles */
/* Midsection background */
.midsection {
    position: relative;
    width: 100%;
    min-height: 738px;
    background: url('/uploads/images/midsection.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* push content to the right */
    filter: brightness(1);
    padding-right: 60px; /* space from right edge */
}

/* Text box */
.text-box {
    background: linear-gradient( 135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100% );
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 500px;
    color: white;
    text-align: left;
    box-shadow: 0 0 40px rgba(0,0,0,0.8); /* soft fade effect */
}

    /* Heading */
    .text-box h2 {
        font-family: 'Saira Stencil One', sans-serif;
        font-size: 2rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    /* Paragraph */
    .text-box p {
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

/* Button */
.btn-orange {
    display: inline-block;
    background: #FF5A00;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

    .btn-orange:hover {
        background: #e04e00;
    }

/* Responsive */
@media (max-width: 768px) {
    .midsection {
        justify-content: center;
        padding-right: 0;
        text-align: center;
    }

    .text-box {
        max-width: 90%;
    }
}
/* Mission Section */
.mission {
    position: relative;
    background: #000;
    padding: 150px 20px;
    color: white;
    text-align: center;
    overflow: hidden;
}

    .mission::before,
    .mission::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        filter: blur(120px);
        z-index: 0;
    }

    .mission::before {
        width: 400px;
        height: 400px;
        background: rgba(255, 85, 0, 0.6);
        top: 20%;
        left: 10%;
    }

    .mission::after {
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.4);
        bottom: 15%;
        right: 15%;
    }

    .mission .container {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: auto;
    }

.mission-title {
    font-family: "Saira Stencil One", sans-serif;
    font-size: 2.5rem;
    color: white;
    display: inline-block;
    padding: 10px 30px;
    background: #ff5500;
    border-radius: 8px;
    margin-bottom: 30px;
}

.mission-text {
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    padding: 60px 20px 0px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: #ccc;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ff5500;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-links a:hover {
        color: #ff5500;
    }

.footer-contact p {
    margin: 5px 0;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #777;
}

/* Hero buttons */
.hero-buttons-mobile .btn-orange {
    background-color: #ff6600;
    color: white;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 15px;
    margin-right: 15px;
}

    .hero-buttons-mobile .btn-orange:hover {
        background-color: #e65c00;
    }

.hero-buttons-mobile .btn-light {
    background-color: #f1f1f1;
    color: black;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 15px;
}

    .hero-buttons-mobile .btn-light:hover {
        background-color: #ddd;
    }

.hero-buttons-mobile {
    display: flex;
    gap: 15px;
    justify-self: center;
}

@media (max-width: 480px) {
    .hero-text {
        min-width: 340px;
        margin-bottom: 0;
    }

    .hero-section {
        flex-direction: column; /* stack vertically */
    }

    .hero-image img {
        min-width: 360px; /* scale image nicely */
        height: auto;
    }

    .hero-buttons {
        display: none;
    }

    .hero-buttons-mobile {
        margin-top: 2rem;
        min-width: 340px;
        justify-content: center;
        z-index: 2;
    }
}

@media(min-width: 480px) {
    .hero-buttons-mobile {
        display: none;
    }
}


