/* ================================================= */
/* ==================== GLOBAL ===================== */
/* ================================================= */

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

html,
body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #091916;
}

/* ================================================= */
/* ===================== FONT ====================== */
/* ================================================= */

@font-face {
    font-family: 'Riuka';
    src: url('assets/font/Riuka.ttf') format('truetype');
}

/* ================================================= */
/* ==================== NAVBAR ===================== */
/* ================================================= */
.custom-navbar {
    background-color: #FFF7E9;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
}

.custom-navbar.sticky {
    width: 90%;
    top: 15px;
    border-radius: 10px;
    background-color: rgba(255, 247, 233, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 600;
    font-size: 34px;
    background-image: linear-gradient(to bottom, #CDE599, #9BCC33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    border: none;
    cursor: pointer;
}

.nav-link {
    font-weight: 550;
    font-size: 18px;
}

.nav-link.active {
    font-weight: 700;
}

/* =========================
   BUTTONS
========================= */

.button-primary {
    width: 254px;
    height: 43px;
    background-image: linear-gradient(to bottom, #ED9CB8, #F45D92);
    border: none;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    border-radius: 12px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    text-decoration: none;
}

.button-primary:hover {
    background: #FFA8C4;
}

.button-primary:active {
    background: #FDE7EE;
}

.button-primary-center {
    width: 240px;
    height: 55px;
    background-image: linear-gradient(to bottom, #ED9CB8, #F45D92);
    border: none;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    border-radius: 12px;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-primary-center:hover {
    background: #FFA8C4;
}

.button-primary-center:active {
    background: #FDE7EE;
}

.arrow {
    margin-left: 8px;
    font-size: 16px;
}

/* ================================================= */
/* ================= HERO SECTION ================== */
/* ================================================= */

#hero-section {
    position: relative;

    width: 100%;

    min-height: auto;

    overflow: hidden;

    background: #091916;

    padding-bottom: 0;
}

/* BACKGROUND */

.hero-bg {
    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 100%;

    z-index: 1;
}

/* CONTENT */

.hero-content {
    position: relative;

    z-index: 5;

    padding-top: 180px;
    padding-bottom: 120px;
}

/* HERO TEXT */

.hero-text {
    max-width: 1000px;

    padding-left: 48px;
}

/* SMALL TITLE */

.hero-text h5 {
    margin-bottom: 10px;

    color: #FFE487;

    font-size: 24px;
    font-weight: 600;
}

/* TITLE */

.hero-text h1 {
    margin: 0;

    font-family: 'Riuka', serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 85px;

    letter-spacing: -3px;

    background:
        linear-gradient(180deg,
            #FFE487 26.94%,
            #FFC809 68.94%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    filter:
        drop-shadow(0 0 1px rgba(255, 228, 135, 0.45)) drop-shadow(0 2px 3px rgba(28, 28, 28, 0.28));
}
/* LINE */

.yellow-line {
    width: 90px;
    height: 5px;

    background: #FFD84D;

    border-radius: 999px;

    margin-top: 14px;
    margin-bottom: 28px;
}

/* PARAGRAPH */

.hero-text p {
    max-width: 780px;

    color: #FFF7E9;

    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

/* ================================================= */
/* ==================== HISTORY ==================== */
/* ================================================= */

.history-section {
    width: 100%;

    margin-top: 30px;

    padding: 0 48px;
}

/* TITLE */

.history-title {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 15px;
}

/* SECOND TITLE */

.second-history-title {
    margin-top: 280px;
}

/* PLANT */

.history-plant {
    position: absolute;

    width: 100px;

    top: -100px;
}

/* TITLE TEXT */

.history-title h2 {
    font-family: 'Riuka', serif;

    font-size: 54.946px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    text-shadow:
        0 0 1.393px rgba(255, 228, 135, 0.60),
        0 1.858px 2.786px rgba(28, 28, 28, 0.30);

    background:
        linear-gradient(180deg,
            #FFE487 26.94%,
            #FFC809 68.94%);

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* SUBTITLE */

.history-subtitle {
    font-family: 'Riuka', serif;

    margin-top: 12px;

    color: #A7EBDD;

    font-size: 45px;
    font-weight: 500;

    text-align: center;

    text-shadow:
        0 0 2px rgba(255, 228, 135, 0.75),
        0 3px 6px rgba(28, 28, 28, 0.35);
}

/* ================================================= */
/* ==================== FIRST BOX ================== */
/* ================================================= */

.history-card {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 54px;

    padding: 40px;
    padding-bottom: 20px;

    border-radius: 18px;

    border: 1px solid #CDE599;

    background:
        linear-gradient(90deg,
            rgba(8, 64, 55, 0.90) 0%,
            rgba(37, 103, 90, 0.90) 33.15%,
            rgba(8, 64, 55, 0.90) 100%);

    backdrop-filter: blur(8px);
}

/* TEXT */

.history-text-card {
    flex: 1;
}

.history-text-card p {
    margin-top: 10px;
    color: white;

    font-size: 14px;
    font-weight: 500;
    line-height: 32px;

    text-align: justify;
}

/* DIVIDER */

.history-divider {
    width: 2px;
    height: 360px;

    background:
        rgba(205, 229, 153, 0.7);
}

/* LOGOS */

.history-logos {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 20px;
}

/* CHRONICS */

.history-logo-top {
    width: 170px;
    height: 120px;

    object-fit: contain;

    transform: translateX(0px) translateY(-50px);
}

/* INSPECTRA */

.history-logo-bottom {
    width: 270px;
    height: 150px;

    object-fit: contain;

    transform: translateX(-63px) translateY(-150px);
}

/* BOX LABEL */
.history-box-label {
    position: absolute;
    top: -18px;
    left: 30px;
    margin-bottom: -20px;

    background: linear-gradient(
        180deg,
        #FFD84D 0%,
        #FFC809 100%
    );
   
    color: #2B2400;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    font-family: 'Riuka', sans-serif;
    padding: 7px 26px;
    border-radius: 14px 0px 14px 4px;

    transform: translate(-30px,18px);

    z-index: 10;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* ================================================= */
/* =================== SECOND BOX ================== */
/* ================================================= */

.history-card-full {
    margin-top: 20px;
    margin-bottom: 50px;
    padding: 40px;

    border-radius: 18px;

    border: 1px solid #CDE599;

    background:
        linear-gradient(90deg,
            rgba(8, 64, 55, 0.90) 0%,
            rgba(37, 103, 90, 0.90) 33.15%,
            rgba(8, 64, 55, 0.90) 100%);

    backdrop-filter: blur(8px);
}

.history-card-full p {
    margin-top: 15px;
    color: white;

    font-size: 14px;
    font-weight: 500;
    line-height: 32px;

    text-align: left;
}

/* ================================================= */
/* ===================== FOOTER ==================== */
/* ================================================= */

#footer {
    background: #091916;
    padding: 48px 80px;
    margin-bottom: 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    width: 380px;
}

.footer-desc {
    width: 580px;
    color: white;
    line-height: 32px;
}

.footer-right {
    text-align: right;
}

.footer-right h3,
.footer-right p {
    color: white;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 12px;
}

.footer-presented h4 {
    margin: 0 0 16px 0;
    color: #FFF7E9;
    font-size: 18px;
    font-weight: 600;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logos img:first-child {
    width: 42px;
}

.footer-logos img:last-child {
    width: 52px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-socials a {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: rgba(80, 146, 132, 0.55);
    transition: transform 0.25s ease, background 0.25s ease;
}

.footer-socials a:hover {
    background: rgba(120, 190, 170, 0.75);
}

.footer-socials img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.footer-copy {
    width: 100%;
    margin-top: 28px;
    text-align: center;
    color: white;
    font-size: 14px;
}

/* ================================================= */
/* ==================== RESPONSIVE ================= */
/* ================================================= */

@media (max-width: 991px) {

    .hero-content {
        padding-top: 140px;
    }

    .hero-text {
        padding-left: 20px;
    }

    .hero-text h1 {
        font-size: 52px;
        line-height: 62px;
    }

    .history-section {
        margin-top: 160px;

        padding: 0 20px;
    }

    .history-title h2 {
        font-size: 42px;
    }

    .history-subtitle {
        font-size: 24px;
    }

    .history-card {
        flex-direction: column;
    }

    .history-divider {
        width: 100%;
        height: 2px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-right {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 28px;
    }

    .footer-desc {
        width: 100%;
    }

    .footer-socials img {
        width: 46px;
        height: 46px;
    }
}

/* ========================= */
/* ABOUT DROPDOWN NAVBAR */
/* ========================= */

.custom-navbar .nav-item.dropdown {
    position: relative;
}

.custom-navbar .about-dropdown-toggle {
    border: none;
    background: transparent;
    padding: 0.5rem 0;
    color: rgba(0, 0, 0, 0.65);
    font-family: 'Poppins', sans-serif;
    font-weight: 550;
    font-size: 18px;
    cursor: pointer;
}

.custom-navbar .about-dropdown-toggle:hover,
.custom-navbar .about-dropdown-toggle:focus,
.custom-navbar .about-dropdown-toggle.show,
.custom-navbar .about-dropdown-toggle.active {
    color: rgba(0, 0, 0, 0.9);
    outline: none;
    box-shadow: none;
}

.custom-navbar .about-dropdown-toggle.active {
    font-weight: 700;
}

.custom-navbar .about-dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

.custom-navbar .about-dropdown-menu {
    margin-top: 0 !important;
    padding: 10px;
    min-width: 220px;
    border: none;
    border-radius: 14px;
    background: rgba(255, 247, 233, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.custom-navbar .about-dropdown-item {
    padding: 10px 14px;
    border-radius: 10px;
    color: #1C1C1C;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.custom-navbar .about-dropdown-item:hover,
.custom-navbar .about-dropdown-item:focus {
    background: rgba(205, 229, 153, 0.55);
    color: #1C1C1C;
}

@media (min-width: 992px) {
    .custom-navbar .nav-item.dropdown:hover .about-dropdown-menu,
    .custom-navbar .nav-item.dropdown:focus-within .about-dropdown-menu {
        display: block;
    }

    .custom-navbar .nav-item.dropdown .about-dropdown-menu {
        top: 100%;
        left: 0;
        transform: translateY(0);
    }

    .custom-navbar .nav-item.dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 14px;
    }
}

@media (max-width: 991px) {
    .custom-navbar {
        width: 100%;
        left: 0;
        transform: none;
    }

    .custom-navbar.sticky {
        width: calc(100% - 24px);
        left: 12px;
        transform: none;
        top: 12px;
    }

    .custom-navbar .navbar-collapse {
        margin-top: 14px;
        padding: 16px 0;
        background: #FFF7E9;
        border-radius: 0 0 14px 14px;
    }

    .custom-navbar .navbar-nav {
        gap: 8px;
        text-align: center;
    }

    .custom-navbar .nav-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .custom-navbar .nav-link,
    .custom-navbar .about-dropdown-toggle {
        font-size: 16px;
    }

    .custom-navbar .about-dropdown-toggle {
        width: 100%;
        padding: 8px 0;
        text-align: center;
    }

    .custom-navbar .about-dropdown-menu {
        width: calc(100% - 32px);
        margin: 8px auto 4px !important;
        padding: 8px;
        position: static !important;
        transform: none !important;
        text-align: center;
        border-radius: 12px;
        box-shadow: none;
        background: rgba(255, 247, 233, 0.85);
    }

    .custom-navbar .about-dropdown-item {
        padding: 10px 12px;
        font-size: 14.5px;
    }
}

@media (max-width: 430px) {
    .custom-navbar .navbar-brand {
        font-size: 22px;
    }

    .custom-navbar .navbar-brand img {
        width: 30px !important;
        margin-right: 6px !important;
    }

    .custom-navbar .navbar-brand span {
        margin-top: 6px !important;
    }
}


/* ================================================= */
/* ============ FINAL RESPONSIVE FIX =============== */
/* ================================================= */

@media (max-width: 991px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .custom-navbar {
        width: 100%;
        left: 0;
        transform: none;
    }

    .custom-navbar.sticky {
        width: calc(100% - 24px);
        left: 12px;
        top: 12px;
        transform: none;
        border-radius: 10px;
    }

    .navbar .container {
        max-width: 100%;
        padding: 0 18px;
    }

    .navbar-brand {
        font-size: 26px;
    }

    .navbar-brand img {
        width: 34px !important;
    }

    .navbar-collapse {
        margin-top: 14px;
        padding: 16px 0;
        background: #FFF7E9;
        border-radius: 0 0 14px 14px;
    }

    .navbar-nav {
        gap: 8px;
        text-align: center;
    }

    .nav-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .nav-link {
        font-size: 16px;
    }

    .button-primary {
        width: calc(100% - 32px);
        margin: 12px 16px 0;
        font-size: 16px;
        display: inline-flex;
    }

    .about-dropdown-toggle {
        width: 100%;
        padding: 8px 0;
        text-align: center;
        font-size: 16px;
    }

    .about-dropdown-menu {
        width: calc(100% - 32px);
        margin: 8px auto 4px !important;
        padding: 8px;
        position: static !important;
        transform: none !important;
        text-align: center;
        border-radius: 12px;
        box-shadow: none;
        background: rgba(255, 247, 233, 0.85);
    }

    .about-dropdown-item {
        padding: 10px 12px;
        font-size: 14.5px;
    }

    #hero-section {
        min-height: auto;
        overflow: hidden;
    }

    .hero-bg {
        width: 100%;
        height: 100%;
        min-height: 760px;
        object-fit: cover;
        object-position: top center;
    }

    .hero-content {
        padding: 140px 20px 72px;
        max-width: 100%;
    }

    .hero-text {
        max-width: 100%;
        padding-left: 0;
    }

    .hero-text h5 {
        font-size: 18px;
        line-height: 28px;
    }

    .hero-text h1 {
        font-size: 52px;
        line-height: 60px;
        letter-spacing: -1.5px;
    }

    .yellow-line {
        width: 90px;
        height: 5px;
        margin-top: 12px;
        margin-bottom: 22px;
    }

    .hero-text p {
        max-width: 100%;
        font-size: 14px;
        line-height: 24px;
    }

    .history-section {
        margin-top: 110px;
        padding: 0;
    }

    .history-title {
        margin-bottom: 20px;
    }

    .history-title h2 {
        font-size: 42px;
        line-height: 52px;
        text-align: center;
    }

    .history-subtitle {
        font-size: 28px;
        line-height: 36px;
        padding: 0 10px;
    }

    .second-history-title {
        margin-top: 80px;
    }

    .history-plant {
        width: 76px;
        top: -76px;
    }

    .history-card,
    .history-card-full {
        width: 100%;
        padding: 28px 22px;
        border-radius: 18px;
    }

    .history-card {
        flex-direction: column;
        gap: 24px;
    }

    .history-text-card {
        width: 100%;
    }

    .history-text-card p,
    .history-card-full p {
        font-size: 14px;
        line-height: 26px;
        text-align: left;
    }

    .history-divider {
        width: 100%;
        height: 1px;
    }

    .history-logo-top {
        width: 150px;
        height: auto;
        transform: none;
    }

    .history-logo-bottom {
        width: 220px;
        height: auto;
        transform: none;
    }

    .history-box-label {
        font-size: 17px;
        padding: 7px 20px;
        left: 22px;
    }

    #footer {
        padding: 40px 24px;
    }

    .footer-container {
        gap: 36px;
    }

    .footer-top {
        flex-direction: column;
        gap: 28px;
    }

    .footer-logo {
        width: 260px;
        max-width: 100%;
    }

    .footer-desc {
        width: 100%;
        font-size: 14px;
        line-height: 24px;
    }

    .footer-right {
        text-align: left;
    }

    .footer-right h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .footer-right p {
        font-size: 14px;
        line-height: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .footer-socials {
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-socials a {
        width: 48px;
        height: 48px;
    }

    .footer-socials img {
        width: 26px;
        height: 26px;
    }

    .footer-copy {
        font-size: 13px;
        line-height: 20px;
    }
}

@media (max-width: 430px) {

    .navbar-brand {
        font-size: 22px;
    }

    .navbar-brand span {
        margin-top: 6px !important;
    }

    .navbar-brand img {
        width: 30px !important;
        margin-right: 6px !important;
    }

    .hero-bg {
        min-height: 720px;
    }

    .hero-content {
        padding: 120px 18px 56px;
    }

    .hero-text h5 {
        font-size: 15px;
        line-height: 22px;
    }

    .hero-text h1 {
        font-size: 38px;
        line-height: 46px;
        letter-spacing: -1px;
    }

    .yellow-line {
        width: 84px;
        height: 4px;
        margin-bottom: 18px;
    }

    .hero-text p {
        font-size: 13px;
        line-height: 22px;
    }

    .history-section {
        margin-top: 80px;
    }

    .history-title h2 {
        font-size: 34px;
        line-height: 42px;
    }

    .history-subtitle {
        font-size: 22px;
        line-height: 30px;
    }

    .second-history-title {
        margin-top: 62px;
    }

    .history-card,
    .history-card-full {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .history-text-card p,
    .history-card-full p {
        font-size: 13.5px;
        line-height: 24px;
    }

    .history-logo-top {
        width: 120px;
    }

    .history-logo-bottom {
        width: 180px;
    }

    #footer {
        padding: 36px 20px;
    }
}


/* ========================= */
/* FINAL FIX - ABOUT DROPDOWN CLICKABLE MOBILE */
/* ========================= */

.custom-navbar .about-dropdown-parent {
    position: relative;
}

.custom-navbar .about-dropdown-toggle,
.custom-navbar .about-dropdown-toggle:hover,
.custom-navbar .about-dropdown-toggle:focus,
.custom-navbar .about-dropdown-toggle:active,
.custom-navbar .about-dropdown-toggle.show {
    appearance: none !important;
    -webkit-appearance: none !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    text-decoration: none !important;
}

.custom-navbar .about-dropdown-menu.show {
    display: block !important;
}

@media (min-width: 992px) {
    .custom-navbar .about-dropdown-parent:hover > .about-dropdown-menu,
    .custom-navbar .about-dropdown-parent:focus-within > .about-dropdown-menu {
        display: block !important;
    }

    .custom-navbar .about-dropdown-parent::after {
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 14px;
    }
}

@media (max-width: 991px) {
    .custom-navbar .about-dropdown-toggle {
        width: 100% !important;
        padding: 8px 0 !important;
        text-align: center !important;
    }

    .custom-navbar .about-dropdown-menu {
        position: static !important;
        transform: none !important;
        width: calc(100% - 32px) !important;
        margin: 8px auto 4px !important;
        padding: 8px !important;
        text-align: center !important;
        border: none !important;
        border-radius: 12px !important;
        box-shadow: none !important;
        background: rgba(255, 247, 233, 0.88) !important;
    }
}

/* ========================= */
/* FINAL FIX - OBJECTIVE/TARGET LABEL */
/* ========================= */

.history-card,
.history-card-full {
    position: relative;
}

.history-box-label {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    margin: 0 !important;

    min-width: 150px;
    height: 46px;
    padding: 0 24px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 18px 0 18px 0 !important;
    background: linear-gradient(180deg, #FFE487 0%, #FFC809 100%) !important;
    color: #2B2400 !important;

    font-family: 'Poppins', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    line-height: 1 !important;

    z-index: 20 !important;
    box-shadow: none !important;
}

.history-card:has(.history-box-label),
.history-card-full:has(.history-box-label) {
    padding-top: 64px !important;
}

@media (max-width: 430px) {
    .history-box-label {
        min-width: 132px;
        height: 44px;
        padding: 0 18px !important;
        font-size: 16px !important;
        letter-spacing: 1.7px !important;
        border-radius: 16px 0 16px 0 !important;
    }

    .history-card:has(.history-box-label),
    .history-card-full:has(.history-box-label) {
        padding-top: 60px !important;
    }
}


/* ========================= */
/* FINAL FIX - MOBILE NAVBAR CLOSE */
/* ========================= */

.navbar-toggler {
    position: relative;
    z-index: 10001;
}

.custom-navbar .navbar-collapse {
    z-index: 10000;
}

.custom-navbar .about-dropdown-toggle {
    appearance: none !important;
    -webkit-appearance: none !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    text-decoration: none !important;
}

.custom-navbar .about-dropdown-toggle:focus,
.custom-navbar .about-dropdown-toggle:active,
.custom-navbar .about-dropdown-toggle.show {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.custom-navbar .about-dropdown-menu.show {
    display: block !important;
}

@media (max-width: 991px) {
    .custom-navbar .navbar-collapse {
        margin-top: 14px;
        padding: 16px 0;
        background: #FFF7E9;
        border-radius: 0 0 14px 14px;
    }

    .custom-navbar .about-dropdown-menu {
        position: static !important;
        transform: none !important;
        width: calc(100% - 32px);
        margin: 8px auto 4px !important;
        padding: 8px;
        text-align: center;
        border: none !important;
        border-radius: 12px;
        box-shadow: none !important;
        background: rgba(255, 247, 233, 0.85);
    }
}
