body {
   
    font-family: 'Poppins', sans-serif;
    /* background: radial-gradient(circle at top, #1c1c1c, #000); */
    background: radial-gradient(circle at center, #141414, #000);
    color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

/* HEADER / NAVBAR GLASS BACKGROUND */
.custom-navbar {
    border-radius: 22px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02)
    );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 215, 128, 0.25);

    box-shadow:
        0 0 35px rgba(255, 215, 128, 0.12),
        inset 0 0 1px rgba(255, 255, 255, 0.2);
}

.logo-box {
    border-radius: 14px;
}

.logo-box img {
    /*max-width: 250px;*/
    height: 100px;
}

.nav-link {
    position: relative;
    color: #ccc !important;
    font-weight: 500;
    font-size:1.05rem;
    transition: color 0.3s ease-in-out;
}

/* Active Link Glow */
.nav-link.active {
    color: #e2b654 !important;
    text-shadow: 0 0 8px rgba(226, 182, 84, 0.7);
    font-weight: 600;
}

/* Hover Color Fix */
.nav-link:hover {
    color: #e2b654 !important;
}
.contact-btn {
    background: #d8b35a;
    color: #fff;
    border-radius: 25px;
    padding: 8px 18px;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #f5d889, #d4a847);
}

/* ------------------------
   RESPONSIVE BREAKPOINTS
-------------------------*/

/* 📱 Extra Small Devices (Mobile Phones) 0 - 576px */
@media (max-width: 576px) {
    .custom-navbar {
        background-size: contain;
        padding: 10px;
    }

    .logo-box img {
        max-width: 130px;
        height: auto;
    }

    .navbar-nav {
        gap: 10px !important;
        width: 100%;
        padding: 10px 0;
    }

    .contact-btn {
        width: 50%;
        margin-top: 10px;
        text-align: center;
        padding: 10px 0;
    }
}

/* 📲 Small Devices (Tablets) 577px - 768px */
@media (min-width: 577px) and (max-width: 768px) {
    .logo-box img {
        max-width: 160px;
    }

    .navbar-nav {
        gap: 15px !important;
    }

    .contact-btn {
        padding: 8px 20px;
    }
}

/* 💻 Medium Devices (Small Laptops) 769px - 992px */
@media (min-width: 769px) and (max-width: 992px) {
    .logo-box img {
        max-width: 180px;
    }

    .navbar-nav {
        gap: 18px !important;
    }

    .contact-btn {
        padding: 8px 22px;
    }
}

/* 🖥️ Large Devices (Desktops) 993px - 1200px */
@media (min-width: 993px) and (max-width: 1200px) {
    .logo-box img {
        max-width: 220px;
    }

    .navbar-nav {
        gap: 20px !important;
    }

    .contact-btn {
        padding: 8px 24px;
    }
}

/* HERO */
.hero-section {
    position: relative;
    padding-top: 50px;
    background: 
       
        url("../image/back\ design\ gold.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gold-badge {
    background: rgba(226, 182, 84, 0.15);
    color: #e2b654;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 24px;
}

.hero-title {
    font-size: 3.1rem;
    font-weight: 700;
    margin-top: 10px;
}

.hero-title span {
    color: #e2b654;
}

.hero-text {
    color: #fff;
    margin-top: 15px;
    max-width: 520px;
}

/* BUTTONS */
.gold-btn {
    background: linear-gradient(135deg, #f5d889, #d4a847);
    color: #000;
    border-radius: 30px;
    padding: 12px 26px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(226,182,84,0.4);
}

.outline-btn {
    border: 1px solid #e2b654;
    color: #e2b654;
    border-radius: 30px;
    padding: 12px 26px;
}

.outline-btn:hover {
    background: #e2b654;
    color: #000;
}

/* IMAGE */
.hero-img {
    max-width: 75%;
    /* filter: drop-shadow(0 0 25px rgba(255,215,128,0.25)); */
}

/* HERO BOTTOM CARD */
.hero-bottom-card {
    padding: 55px 75px;
    border-radius: 22px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02)
    );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 215, 128, 0.25);

    box-shadow:
        0 0 35px rgba(255, 215, 128, 0.12),
        inset 0 0 1px rgba(255, 255, 255, 0.2);
}

/* VALUE */
.hero-bottom-card .card-value {
    color: #e2b654;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
    margin: auto;
}

/* TEXT */
.hero-bottom-card .card-text {
    color: #ddd;
    font-size: 20px;
    margin: 0;
}

/* =============================
   RESPONSIVE BREAKPOINTS
============================= */

/* Extra Small Devices (Mobile Phones) - max-width: 480px */
@media (max-width: 480px) {
    .hero-section {
        padding-top: 30px;
        text-align: center;
    }

    .gold-badge {
        font-size: 16px;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 14px;
        margin: 10px auto;
    }

    .hero-img {
        max-width: 85%;
        margin-top: 20px;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 10px !important;
    }

    .hero-bottom-card {
        padding: 25px 10px;
    }

    .hero-bottom-card .card-value {
        font-size: 1.2rem;
    }

    .hero-bottom-card .card-text {
        font-size: 14px;
    }
}

/* Small Devices (Large Phones/Tablets) - 577px to 768px */
@media (min-width: 577px) and (max-width: 768px) {
    .hero-section {
        padding-top: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 15px;
        margin: 12px auto;
    }

    .hero-img {
        max-width: 70%;
        margin-top: 25px;
    }

    .d-flex.gap-3 {
        justify-content: center;
    }

    .hero-bottom-card {
        padding: 35px 20px;
        margin-top: 30px;
    }

    .hero-bottom-card .card-value {
        font-size: 1.4rem;
    }

    .hero-bottom-card .card-text {
        font-size: 16px;
    }
}

/* Medium Devices (Small Laptops) - 769px to 992px */
@media (min-width: 769px) and (max-width: 992px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-img {
        max-width: 80%;
    }

    .hero-bottom-card {
        padding: 45px 35px;
    }
}

/* Large Devices (Desktops) - 993px to 1200px */
@media (min-width: 993px) and (max-width: 1200px) {
    .hero-title {
        font-size: 2.9rem;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-img {
        max-width: 75%;
    }

    .hero-bottom-card {
        padding: 50px 55px;
    }
}


/* ECOSYSTEM SECTION */
.ecosystem-section {
    padding: 100px 0;
}

.ecosystem-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #d8b35a;
}

.ecosystem-subtitle {
    color: #fff;
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 1.05rem;
}

/* CARD */
.eco-card {
    height: 100%;
    padding: 28px;
    border-radius: 10px;
    box-shadow: inset 0 0 25px rgba(255,255,255,0.03);
    transition: all 0.35s ease;
    background: 
       
        url("../image/glass\ 2.svg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.eco-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(216,179,90,0.25);
    border-color: rgba(216,179,90,0.4);
}

.eco-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.eco-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.eco-header h5 {
    margin: 0;
    color: #d8b35a;
    font-weight: 600;
}

.eco-card p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
}

.eco-icon i {
    font-size: 28px;
    color: #d8b35a;
}

/* Extra Small Devices (max-width: 576px) */
@media (max-width: 576px) {
    .ecosystem-title {
        font-size: 1.7rem;
    }
    .ecosystem-subtitle {
        font-size: 0.9rem;
        max-width: 95%;
    }
    .eco-card {
        text-align: center;
        padding: 20px;
    }
    .eco-header {
        justify-content: center;
    }
    .eco-img {
        width: 28px;
        height: 28px;
    }
}

/* Small Devices – Tablets (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .ecosystem-title {
        font-size: 2.1rem;
    }
    .eco-card {
        padding: 24px;
    }
}

/* Medium Devices – Small Laptops (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .ecosystem-title {
        font-size: 2.3rem;
    }
    .eco-card {
        padding: 26px;
    }
}

/* Large Devices – Desktops (993px to 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
    .ecosystem-title {
        font-size: 2.5rem;
    }
}


/* OPPORTUNITY SECTION */
.opportunity-wrapper {
    padding: 40px 0;
    background: radial-gradient(circle at center, #141414, #000);
    background: 
       
        url("../image/back\ design\ gold.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Top Branding */
.brand-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d8b35a;
}

.brand-img {
    width: 400px;
    height: 50px;
}

.brand-subtitle {
    color: #fff;
    /*max-width: 820px;*/
    margin: 15px auto 30px;
    font-size: 1.05rem;
    line-height:33px;
}

/* Glass Box */
.opportunity-box {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(216,179,90,0.25);
    box-shadow: 0 0 40px rgba(255, 215, 128, 0.08);
    /* position: relative;
    background-image: url("../image/Why\ Milligram\,\ Why\ Now\ glass.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center; */
}

/* Image */
.opportunity-img {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(216,179,90,0.5);
}

.opportunity-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.opportunity-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.opportunity-text {
    color: #cfcfcf;
    margin-bottom: 25px;
    max-width: 500px;
}

/* List */
.opportunity-list {
    list-style: none;
    padding-left: 0;
}

.opportunity-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    color: #fff;
    line-height: 1.6;
}

.opportunity-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d8b35a;
    font-size: 20px;
}

/* ===================== RESPONSIVE BREAKPOINTS ===================== */

/* Extra Small Devices (Mobiles) */
@media (max-width: 576px) {
    .opportunity-wrapper {
        padding: 40px 0;
    }
    .brand-img {
        width: 300px;
    }
    .brand-subtitle {
        font-size: 1.05rem;
        padding: 0 10px;
        text-align:justify;
    }
    .opportunity-box {
        padding: 25px;
        border-radius: 18px;
    }
    .opportunity-title {
        font-size: 1.6rem;
        text-align: center;
    }
    .opportunity-text {
        font-size: 0.95rem;
        max-width: 100%;
    }
    .opportunity-list {
        font-size: 0.9rem;
    }
    .opportunity-img {
        margin-bottom: 20px;
    }
}

/* Small Devices (Tablets: 577px–768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .opportunity-box {
        padding: 35px;
    }
    .opportunity-title {
        font-size: 1.8rem;
    }
    .opportunity-text {
        font-size: 1rem;
    }
}

/* Medium Devices (Small Laptops: 769px–992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .opportunity-box {
        padding: 40px;
    }
    .opportunity-title {
        font-size: 2rem;
    }
}

/* Large Devices (Desktops: 993px–1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
    .opportunity-title {
        font-size: 2.1rem;
    }
    .brand-img {
        width: 350px;
    }
}


/* WHY SECTION */
.why-section {
    background: transparent;
}

/* LEFT IMAGE */
.why-image {
    /* position: relative;
    background-image: url("../image/Why\ Milligram\,\ Why\ Now\ glass.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    border-radius: 30px;
    padding: 20px 20px;
    height: 100%;
    overflow: hidden;
    border: 3px solid rgba(216,179,90,0.5);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* RIGHT CONTENT */
.why-content {
    height: 100%;
}

.why-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d8b35a;
    margin-bottom: 20px;
}

.why-intro {
    color: #fff;
    font-size: 1.05rem;
    max-width: 650px;
    text-align:justify;
    line-height:33px;
    margin-bottom: 35px;
}

/* LIST */
.why-list {
    list-style: none;
    padding-left: 0;
}

.why-list li {
    margin-bottom: 26px;
    position: relative;
    padding-left: 18px;
}

.why-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #d8b35a;
    font-size: 22px;
}

.why-list strong {
    display: block;
    color: #d8b35a;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.why-list span {
    color: #fff;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ================================
   FULL RESPONSIVE BREAKPOINT FIXES
================================ */

/* Extra Small Devices - Mobile Phones (max-width: 576px) */
@media (max-width: 576px) {

    .why-content {
        padding: 30px 20px;
    }

    .why-title {
        font-size: 1.6rem;
    }

    .why-intro {
        font-size: 0.9rem;
        margin: 15px auto;
    }

    .why-list li {
        padding-left: 12px;
        font-size: 0.9rem;
    }

    .why-list strong {
        font-size: 1rem;
    }

    .why-image {
        padding: 10px;
        height: auto;
        margin-bottom: 20px;
    }

    .btn.gold-btn {
        width: 100%;
    }
}

/* Small Devices - Tablets (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {

    .why-content {
        padding: 40px 25px;
        text-align: center;
    }

    .why-title {
        font-size: 1.9rem;
    }

    .why-intro {
        font-size: 1rem;
    }

    .why-image {
        height: auto;
        margin-bottom: 20px;
    }

    .btn.gold-btn {
        width: auto;
    }
}

/* Medium Devices - Small Laptops (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {

    .why-content {
        padding: 50px 40px;
    }

    .why-title {
        font-size: 2.2rem;
    }

    .why-image {
        height: 100%;
    }
}

/* Large Devices - Desktops (993px to 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {

    .why-content {
        padding: 70px 50px;
    }

    .why-title {
        font-size: 2.4rem;
    }
}


/* MARKET POSITIONING */
.market-section {
    /* position: relative;
    background-image: url("../image/glass\ 1.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center; */
    padding: 50px 0;
}

.market-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #d8b35a;
}

/* Glass Container */
.market-box {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 30px;
    padding: 45px;
    border: 1px solid rgba(216,179,90,0.25);
    box-shadow: 0 0 40px rgba(255,215,128,0.08);
}

/* Logo Pill */
.logo-pill {
    background: #fff;
    border-radius: 40px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    transition: all 0.3s ease;
}

.logo-pill img {
    max-height: 50px;
    max-width: 100%;
}

/* Hover Effect */
.logo-pill:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(216,179,90,0.35);
}

/* Responsive Design */

/* 📌 Extra Small Devices (Phones ≤ 576px) */
@media (max-width: 576px) {

    .market-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .market-box {
        padding: 20px;
        border-radius: 20px;
    }

    .logo-pill {
        height: 55px;
        padding: 10px 14px;
        border-radius: 30px;
    }

    .logo-pill img {
        max-height: 35px;
    }

    .col-6 {
        margin-bottom: 12px;
    }
}

/* 📌 Small Devices (Tablets 577px – 768px) */
@media (min-width: 577px) and (max-width: 768px) {

    .market-title {
        font-size: 2.1rem;
        text-align: center;
    }

    .market-box {
        padding: 28px;
    }

    .logo-pill {
        height: 65px;
        padding: 12px 20px;
    }

    .logo-pill img {
        max-height: 42px;
    }
}

/* 📌 Medium Devices (769px – 992px) */
@media (min-width: 769px) and (max-width: 992px) {

    .market-title {
        font-size: 2.2rem;
    }

    .market-box {
        padding: 35px;
    }

    .logo-pill {
        height: 68px;
        padding: 14px 22px;
    }
}

/* 📌 Large Devices (993px – 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {

    .market-title {
        font-size: 2.4rem;
    }

    .market-box {
        padding: 40px;
    }

    .logo-pill {
        height: 70px;
    }
}



/* About Page CSS Code */
/* ABOUT PAGE BANNER */
.about-banner {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Your background image */
    background: url("../image/About/top\ design.svg") center/cover no-repeat;

    /* Dark overlay for readability */
}

.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.about-banner .container {
    position: relative;
    z-index: 2;
}

/* TITLE */
.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #d8b35a;
    margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb-text {
    font-size: 1.1rem;
    color: #ccc;
}

.breadcrumb-text a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-text a:hover {
    color: #e2b654;
}

.breadcrumb-text span {
    margin: 0 6px;
}

.breadcrumb-text .active {
    color: #e2b654; /* gold */
}

/* -------------------------------------------------------
   📌 RESPONSIVE BREAKPOINTS
--------------------------------------------------------*/

/* Small Devices: Mobile Phones ≤ 576px */
@media (max-width: 576px) {
    .about-banner {
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }
    .about-title {
        font-size: 2rem;
    }
    .breadcrumb-text {
        font-size: 0.95rem;
    }
}
/* Tablets: 577px – 768px */
@media (min-width: 577px) and (max-width: 768px) {
    .about-banner {
        min-height: 220px;
    }
    .about-title {
        font-size: 2.2rem;
    }
}

/* Medium Devices: 769px – 992px */
@media (min-width: 769px) and (max-width: 992px) {
    .about-banner {
        min-height: 240px;
    }
    .about-title {
        font-size: 2.6rem;
    }
}

/* Large Devices: 993px – 1200px */
@media (min-width: 993px) and (max-width: 1200px) {
    .about-banner {
        min-height: 200px;
    }
    .about-title {
        font-size: 2.8rem;
    }
}


/* empowering SECTION */
.empowering-wrapper {
    padding: 40px 0;
}

.support-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d8b35a;
}

.support-subtitle {
    color: #fff;
    max-width: 1200px;
    margin: 15px auto 0;
    font-size: 20px;
}

/* Glass Box */
.empowering-box {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 30px;
    padding: 30px;
    border: 1px solid rgba(216,179,90,0.25);
    box-shadow: 0 0 40px rgba(255, 215, 128, 0.08);
    /* position: relative;
    background-image: url("../image/Why\ Milligram\,\ Why\ Now\ glass.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center; */
}

/* Image */
.empowering-img {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(216,179,90,0.5);
}

.empowering-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.empowering-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #d8b35a;
}

.empowering-text {
    color: #fff;
    margin-bottom: 25px;
    /*max-width: 500px;*/
    font-size: 1.05rem;
    text-align:justify;
    line-height:33px;
}

/* List */
.empowering-list {
    list-style: none;
    padding-left: 0;
}

.empowering-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    text-align:justify;
    color: #ddd;
    line-height: 1.6;
}

.empowering-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d8b35a;
    font-size: 20px;
}

.empowering-list strong {
    display: block;
    color: #d8b35a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.empowering-list span {
    color: #fff;
    line-height: 1.6;
    font-size: 1.05rem;
    text-align:justify;
}

/* ======================================================
   RESPONSIVE BREAKPOINTS
====================================================== */

/* Extra Small Devices: ≤480px */
@media (max-width: 480px) {

    .support-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .support-subtitle {
        font-size: 1.05rem;
        padding: 0 10px;
    }

    .empowering-box {
        padding: 20px;
    }

    .empowering-title {
        font-size: 1.4rem;
        text-align: center;
    }

    .empowering-text {
        font-size: 1.05rem;
        text-align: justify;
    }

    .empowering-list strong {
        font-size: 1.1rem;
    }

    .empowering-img {
        margin-bottom: 15px;
    }
}

/* Small Phones ≤576px */
@media (max-width: 576px) {

    .support-title {
        font-size: 2.4rem;
    }

    .empowering-title {
        font-size: 1.6rem;
    }

    .empowering-box {
        padding: 25px;
    }
}

/* Tablets: 577px–768px */
@media (min-width: 577px) and (max-width: 768px) {

    .support-title {
        font-size: 2.8rem;
    }

    .empowering-box {
        padding: 32px;
    }

    .empowering-title {
        font-size: 1.8rem;
    }

    .empowering-list strong {
        font-size: 1.2rem;
    }
}

/* Medium Devices: 769px–992px */
@media (min-width: 769px) and (max-width: 992px) {

    .support-title {
        font-size: 3rem;
    }

    .empowering-title {
        font-size: 2rem;
    }

    .empowering-box {
        padding: 35px;
    }
}

/* Large Devices: 993px–1200px */
@media (min-width: 993px) and (max-width: 1200px) {

    .support-title {
        font-size: 3.2rem;
    }

    .empowering-box {
        padding: 40px;
    }
}


/* milligramabout SECTION */
.milligramabout-section {
    background: transparent;
}

/* LEFT IMAGE */
.milligramabout-image {
    /* position: relative;
    background-image: url("../image/milligramabout\ Milligram\,\ milligramabout\ Now\ glass.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    border-radius: 30px;
    padding: 20px 20px;
    overflow: hidden;
    border: 3px solid rgba(216,179,90,0.5);
}

.milligramabout-image img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    border-radius: 30px;
}

/* RIGHT CONTENT */
.milligramabout-content {
    height: 100%;
}

.milligramabout-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #d8b35a;
    margin-bottom: 20px;
}

.milligramabout-intro {
    color: #fff;
    font-size: 1.05rem;
    text-align:justify;
    max-width: 650px;
    line-height:33px;
    margin-bottom: 35px;
}

/* -------------------------------------------------------
📌 RESPONSIVE BREAKPOINTS
-------------------------------------------------------*/

/* Extra Small Devices: ≤480px */
@media (max-width: 480px) {
    .milligramabout-title {
        font-size: 1.8rem;
    }
    .milligramabout-intro {
        font-size: 14px;
    }
    .milligramabout-image {
        padding: 10px;
        border-radius: 20px;
    }
}

/* Small Devices: ≤576px */
@media (max-width: 576px) {
    .milligramabout-title {
        font-size: 2rem;
    }
    .milligramabout-intro {
        font-size: 1.05rem;
    }
    .milligramabout-content {
        padding: 20px 10px;
    }
}

/* Tablets: 577px–768px */
@media (min-width: 577px) and (max-width: 768px) {
    .milligramabout-title {
        font-size: 2.4rem;
    }
    .milligramabout-content {
        padding: 30px 20px;
    }
}

/* Small Laptops: 769px–992px */
@media (min-width: 769px) and (max-width: 992px) {
    .milligramabout-title {
        font-size: 2.8rem;
    }
}

/* Desktops: 993px–1200px */
@media (min-width: 993px) and (max-width: 1200px) {
    .milligramabout-title {
        font-size: 3.2rem;
    }
}


/* Features Page CSS Code */
/* Features PAGE BANNER */
.featurestop-banner {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Your background image */
    background: url("../image/Features/top\ design.svg");
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;

    /* Dark overlay for readability */
}

.featurestop-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.featurestop-banner .container {
    position: relative;
    z-index: 2;
}

/* TITLE */
.featurestop-title {
    font-size: 3rem;
    font-weight: 700;
    color: #d8b35a;
    margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb-text {
    font-size: 1.1rem;
    color: #ccc;
}

.breadcrumb-text a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-text a:hover {
    color: #e2b654;
}

.breadcrumb-text span {
    margin: 0 6px;
}

.breadcrumb-text .active {
    color: #e2b654; /* gold */
}

/* -------------------------------------------------------
   📌 RESPONSIVE BREAKPOINTS
--------------------------------------------------------*/

/* Small Devices: Mobile Phones ≤ 576px */
@media (max-width: 576px) {
    .featurestop-banner {
        min-height: 300px; /* increased height for full wave visibility */
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }

    .featurestop-title {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    .breadcrumb-text {
        font-size: 0.9rem;
    }
}
/* Tablets: 577px – 768px */
@media (min-width: 577px) and (max-width: 768px) {
    .featurestop-banner {
        min-height: 220px;
    }
    .featurestop-title {
        font-size: 2.2rem;
    }
}

/* Medium Devices: 769px – 992px */
@media (min-width: 769px) and (max-width: 992px) {
    .featurestop-banner {
        min-height: 240px;
    }
    .featurestop-title {
        font-size: 2.6rem;
    }
}

/* Large Devices: 993px – 1200px */
@media (min-width: 993px) and (max-width: 1200px) {
    .featurestop-banner {
        min-height: 200px;
    }
    .featurestop-title {
        font-size: 2.8rem;
    }
}


.features-section {
    background: #121212;
    padding: 20px;
}

.feature-card {
    padding: 20px;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(226, 182, 84, 0.25);
    transition: 0.3s;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
    position: relative;
    height: 100%;
}

/* Gold Glowing Border Hover */
.feature-card:hover {
    border-color: #e2b654;
    box-shadow: 0 0 25px rgba(226,182,84,0.35);
}

.feature-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #e2b654;
}

.feature-content {
    padding: 25px;
}

.feature-title {
    color: #d8b35a;
    font-weight: 700;
    font-size: 2.0rem;
    margin-bottom: 15px;
}

.feature-text {
    color: #cfcfcf;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.6;
    text-align:justify;
    margin: 0;
}

/* ------------------------------------------------------------------
   📌 RESPONSIVE BREAKPOINTS (Your required layout)
-------------------------------------------------------------------*/

/* Extra Small Devices (Mobile Phones ≤ 480px) */
@media (max-width: 480px) {
    .feature-img {
        height: 200px;
    }
    .feature-title {
        font-size: 1.3rem;
    }
    .feature-text {
        font-size: 0.9rem;
    }
}

/* Small Devices (≤ 576px) */
@media (max-width: 576px) {
    .feature-img {
        height: 220px;
    }
    .feature-title {
        font-size: 1.4rem;
    }
    .feature-text {
        font-size: 1rem;
    }
}

/* Tablets (577px – 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .feature-img {
        height: 280px;
    }
    .feature-title {
        font-size: 1.6rem;
    }
    .feature-text {
        font-size: 1.05rem;
    }
}

/* Medium Devices: (769px – 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .feature-img {
        height: 360px;
    }
    .feature-title {
        font-size: 1.8rem;
    }
}

/* Large Devices: (993px – 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
    .feature-img {
        height: 420px;
    }
    .feature-title {
        font-size: 2rem;
    }
}


/* Products Page CSS Code */
/* Products PAGE BANNER */
.productstop-banner {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Your background image */
    background: url("../image/Producate/top\ design.svg") center/cover no-repeat;

    /* Dark overlay for readability */
}

.productstop-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.productstop-banner .container {
    position: relative;
    z-index: 2;
}

/* TITLE */
.productstop-title {
    font-size: 3rem;
    font-weight: 700;
    color: #d8b35a;
    margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb-text {
    font-size: 1.1rem;
    color: #ccc;
}

.breadcrumb-text a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-text a:hover {
    color: #e2b654;
}

.breadcrumb-text span {
    margin: 0 6px;
}

.breadcrumb-text .active {
    color: #e2b654; /* gold */
}

/* -------------------------------------------------------
   📌 RESPONSIVE BREAKPOINTS
--------------------------------------------------------*/

/* Small Devices: Mobile Phones ≤ 576px */
@media (max-width: 576px) {
    .productstop-banner {
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }
    .productstop-title {
        font-size: 2rem;
    }
    .breadcrumb-text {
        font-size: 0.95rem;
    }
}
/* Tablets: 577px – 768px */
@media (min-width: 577px) and (max-width: 768px) {
    .productstop-banner {
        min-height: 220px;
    }
    .productstop-title {
        font-size: 2.2rem;
    }
}

/* Medium Devices: 769px – 992px */
@media (min-width: 769px) and (max-width: 992px) {
    .productstop-banner {
        min-height: 240px;
    }
    .productstop-title {
        font-size: 2.6rem;
    }
}

/* Large Devices: 993px – 1200px */
@media (min-width: 993px) and (max-width: 1200px) {
    .productstop-banner {
        min-height: 200px;
    }
    .productstop-title {
        font-size: 2.8rem;
    }
}

/* Products SECTION */
.products-section {
  background-color: transparent;
}

/* LEFT IMAGE */
.products-image {
    /* position: relative;
    background-image: url("../image/products\ Milligram\,\ products\ Now\ glass.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    border-radius: 30px;
    padding: 20px 20px;
    height: 100%;
    overflow: hidden;
    border: 3px solid rgba(216,179,90,0.5);
}

.products-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* RIGHT CONTENT */
.products-content {
    height: 100%;
}

.products-title {
    font-size: 3rem;
    font-weight: 700;
    color: #B28E40;
    margin-bottom: 50px;
}

.products-intro {
    color: #cfcfcf;
    font-size: 1.5rem;
    max-width: 650px;
    margin-bottom: 50px;
}

/* LIST */
.products-list {
    list-style: none;
    padding-left: 0;
}

.products-list li {
    margin-bottom: 20px;
    margin-top: 20px;
    position: relative;
    padding-left: 18px;
}

.products-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #d8b35a;
    font-size: 22px;
}

.products-list span {
    color: #fff;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* ============================
   📌 PRODUCTS SECTION RESPONSIVE DESIGN
============================ */

/* Extra Small Devices: ≤ 480px */
@media (max-width: 480px) {

    .products-section {
        padding: 20px;
    }

    .products-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .products-intro {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .products-list span {
        font-size: 1rem;
    }

    .products-image {
        width: 100%;
        padding: 10px;
        border-radius: 15px;
    }
}

/* Small Mobile Devices: ≤ 576px */
@media (max-width: 576px) {

    .products-title {
        font-size: 1.8rem;
        margin-top: 20px;
    }

    .products-intro {
        font-size: 1.1rem;
    }

    .products-image {
        width: 100%;
        padding: 12px;
        border-radius: 18px;
    }

    .products-list span {
        font-size: 1.05rem;
        color:#fff;
    }
}

/* Small Tablets: 577px – 768px */
@media (min-width: 577px) and (max-width: 768px) {

    .products-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .products-intro {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .products-image {
        width: 100%;
    }

    .products-list span {
        font-size: 1.2rem;
    }
}

/* Medium Devices: 769px – 992px */
@media (min-width: 769px) and (max-width: 992px) {

    .products-title {
        font-size: 2.4rem;
    }

    .products-intro {
        font-size: 1.3rem;
    }

    .products-list span {
        font-size: 1.3rem;
    }

    .products-image {
        width: 100%;
    }
}

/* Large Devices: 993px – 1200px */
@media (min-width: 993px) and (max-width: 1200px) {

    .products-title {
        font-size: 2.7rem;
    }

    .products-intro {
        font-size: 1.35rem;
    }

    .products-list span {
        font-size: 1.35rem;
    }
}


/* Contact Page CSS Code */
/* Contact PAGE BANNER */
.contacttop-banner {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Your background image */
    background: url("../image/contact/top\ design.svg") center/cover no-repeat;

    /* Dark overlay for readability */
}

.contacttop-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.contacttop-banner .container {
    position: relative;
    z-index: 2;
}

/* TITLE */
.contacttop-title {
    font-size: 3rem;
    font-weight: 700;
    color: #d8b35a;
    margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb-text {
    font-size: 1.1rem;
    color: #ccc;
}

.breadcrumb-text a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-text a:hover {
    color: #e2b654;
}

.breadcrumb-text span {
    margin: 0 6px;
}

.breadcrumb-text .active {
    color: #e2b654; /* gold */
}

/* -------------------------------------------------------
   📌 RESPONSIVE BREAKPOINTS
--------------------------------------------------------*/

/* Small Devices: Mobile Phones ≤ 576px */
@media (max-width: 576px) {
    .contacttop-banner {
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }
    .contacttop-title {
        font-size: 2rem;
    }
    .breadcrumb-text {
        font-size: 0.95rem;
    }
}
/* Tablets: 577px – 768px */
@media (min-width: 577px) and (max-width: 768px) {
    .contacttop-banner {
        min-height: 220px;
    }
    .contacttop-title {
        font-size: 2.2rem;
    }
}

/* Medium Devices: 769px – 992px */
@media (min-width: 769px) and (max-width: 992px) {
    .contacttop-banner {
        min-height: 240px;
    }
    .contacttop-title {
        font-size: 2.6rem;
    }
}

/* Large Devices: 993px – 1200px */
@media (min-width: 993px) and (max-width: 1200px) {
    .contacttop-banner {
        min-height: 200px;
    }
    .contacttop-title {
        font-size: 2.8rem;
    }
}

.contact-section {
    background: #000;
    padding: 80px 0;
}

.contact-wrapper {
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255, 200, 100, 0.25);
}

.section-title {
    color: #d8b35a;
    font-size: 32px;
    font-weight: 700;
}

.section-subtext {
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;
}

.contact-input {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 14px;
    color: #eee;
}

/* Contact Form Input Focus Style */
.contact-input:focus {
    background: #1a1a1a !important; /* Keep same dark background */
    border-color: #e6b85a !important; /* Yellow border */
    outline: none; /* Remove default blue focus */
    color: #ccc;
    box-shadow: 0 0 8px rgba(230, 184, 90, 0.5); /* Soft yellow glow */
}

.contact-input::placeholder {
    color: #777;
}

/* Send Button */
.send-btn {
    background: linear-gradient(90deg, #e6b85a, #c7973c);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px;
    border: none;
}

.send-btn:hover {
    background: linear-gradient(90deg, #f7d883, #e0b25a);
    color: #000;
}

/* Right Side Image */
.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gold-overlay {
    position: absolute;
    inset: 0;
    background: rgba(180, 140, 40, 0.45);
    backdrop-filter: brightness(0.8);
    border-radius: inherit;
    pointer-events: none;
}


/* certificate PAGE BANNER */
.certificatetop-banner {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Your background image */
    background: url("../image/certificate/top\ design.svg") center/cover no-repeat;

    /* Dark overlay for readability */
}

.certificatetop-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.certificatetop-banner .container {
    position: relative;
    z-index: 2;
}

/* TITLE */
.certificatetop-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb-text {
    font-size: 1.1rem;
    color: #ccc;
}

.breadcrumb-text a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-text a:hover {
    color: #e2b654;
}

.breadcrumb-text span {
    margin: 0 6px;
}

.breadcrumb-text .active {
    color: #e2b654; /* gold */
}

/* -------------------------------------------------------
   📌 RESPONSIVE BREAKPOINTS
--------------------------------------------------------*/

/* Small Devices: Mobile Phones ≤ 576px */
@media (max-width: 576px) {
    .certificatetop-banner {
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }
    .certificatetop-title {
        font-size: 2rem;
    }
    .breadcrumb-text {
        font-size: 0.95rem;
    }
}
/* Tablets: 577px – 768px */
@media (min-width: 577px) and (max-width: 768px) {
    .certificatetop-banner {
        min-height: 220px;
    }
    .certificatetop-title {
        font-size: 2.2rem;
    }
}

/* Medium Devices: 769px – 992px */
@media (min-width: 769px) and (max-width: 992px) {
    .certificatetop-banner {
        min-height: 240px;
    }
    .certificatetop-title {
        font-size: 2.6rem;
    }
}

/* Large Devices: 993px – 1200px */
@media (min-width: 993px) and (max-width: 1200px) {
    .certificatetop-banner {
        min-height: 200px;
    }
    .certificatetop-title {
        font-size: 2.8rem;
    }
}

.certificate-section {
    background: #111; /* matches your design */
    color: #eee;
}

.certificate-text {
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
    padding-bottom: 30px;
}

.certificate-frame {
    display: flex;
    justify-content: center;
}

.certificate-img {
    max-height: 1000px; /* ↓ Reduced Height */
    width: 70%;
    border-radius: 8px;
    background: #fff;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .certificate-img {
        max-height: 300px; /* More height reduction on small screens */
    }

    .certificate-text {
        font-size: 16px;
    }
}




/* FOOTER */
.footer-section {
    background: linear-gradient(180deg, #1a1a1a, #0b0b0b);
    padding: 80px 40px 20px 40px;
    color: #dcdcdc;
}

/* Brand */
.footer-brand {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-text {
    color: #fff;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Support */
.footer-title {
    color: #d8b35a;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-link {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

/* Social Icons */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #111;
    color: #d8b35a;
    margin-right: 10px;
    font-size: 25px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #d8b35a;
    color: #000;
}

/* Download */
.download-title {
    font-size: 2.0rem;
    font-weight: 700;
    color: #d8b35a;
    margin-bottom: 20px;
}

.playstore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #000;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.playstore-btn i {
    font-size: 28px;
    color: #34a853; /* Google Play green */
}

.playstore-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.playstore-text small {
    font-size: 10px;
    color: #ccc;
    letter-spacing: 1px;
}

.playstore-text span {
    font-size: 20px;
    font-weight: 600;
}

.playstore-btn:hover {
    background: #111;
    box-shadow: 0 0 12px rgba(226,182,84,0.4);
    transform: translateY(-2px);
}

/* Certifications */
.cert-box {
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    padding: 10px;
}

.cert-box img {
    width: 100px;
    height: 70px;
}

/* Bottom */
.footer-bottom {
    border-top: 3px solid rgb(255, 255, 255);
    margin-top: 50px;
    padding-top: 15px;
    text-align: left;
    font-size: 0.9rem;
    color: #cfcfcf;
}

/* ===========================
   max-width: 480px / max-width: 576px
=========================== */
@media (max-width: 576px) {

    .footer-section {
        padding: 30px 15px;
    }

    .footer-brand {
        font-size: 3rem;
    }

    .footer-text {
        font-size: 1.05rem;
        color:#fff;
        text-align: justify;
    }

    .footer-title,
    .download-title {
        font-size: 1.4rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin: 5px;
    }

    .cert-box img {
        width: 80px;
        height: 60px;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.8rem;
    }
}


/* ===========================
   min-width: 577px & max-width: 768px
=========================== */
@media (min-width: 577px) and (max-width: 768px) {

    .footer-section {
        padding: 60px 20px;
    }

    .footer-brand {
        font-size: 2.4rem;
    }

    .download-title {
        font-size: 2rem;
    }

    .cert-box img {
        width: 70px;
        height: 70px;
        margin: 8px;
    }

    .footer-bottom {
        text-align: center;
    }
}


/* ===========================
   min-width: 769px & max-width: 992px
=========================== */
@media (min-width: 769px) and (max-width: 992px) {

    .footer-brand {
        font-size: 3rem;
    }

    .download-title {
        font-size: 2.6rem;
    }

    .cert-box img {
        width: 85px;
        height: 85px;
    }
}


/* ===========================
   min-width: 993px & max-width: 1200px
=========================== */
@media (min-width: 993px) and (max-width: 1200px) {

    .footer-brand {
        font-size: 3.5rem;
    }

    .download-title {
        font-size: 3rem;
    }
}

.scrollup {
    position: fixed;
    right: 20px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: #B28E40;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}

.scrollup.show {
    opacity: 1;
    visibility: visible;
}

.scrollup:hover {
    background: #d2ae58;
}
