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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* Header Container */
.md-header {
    background: #fff;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
}
.md-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}
.swiper-wrapper {
    will-change: transform;
}
.md-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.md-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Header Layout */
.md-header-main {
    display: flex;
    align-items: stretch;
    gap: 30px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

/* Logo - Full Height on Left */
.md-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.md-logo-img {
    height: 111px;
    width: auto;
    object-fit: contain;
}

/* Right Side - Two Rows Stacked */
.md-header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    gap: 15px;
}

/* Top Row Navigation */
.md-header-top-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.md-nav-desktop {
    display: flex;
    align-items: center;
    gap: 40px;
}

.md-nav-link {
    font-size: 16px;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.md-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c9a961, #d4af37);
    transition: width 0.3s ease;
}

.md-nav-link:hover::after {
    width: 100%;
}

.md-nav-link:hover {
    color: #c9a961;
}

/* Know More Button */
.md-know-more-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.md-know-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #c9a961, #d4af37);
    transition: left 0.4s ease;
    z-index: -1;
}

.md-know-more-btn:hover::before {
    left: 0;
}

.md-know-more-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

/* Hamburger Menu */
.md-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.md-hamburger span {
    width: 28px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.md-hamburger:hover span {
    background: #c9a961;
}

/* Secondary Navigation - Bottom Row */
.md-secondary-nav {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 8px 10px;
}

.md-secondary-nav-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    flex-wrap: wrap;
}

.md-nav-item-wrapper {
    position: relative;
}

.md-secondary-link {
    font-size: 12.4px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    border-radius: 6px;
    white-space: nowrap;
}

.md-secondary-link:hover {
    color: #c9a961;
    background: rgba(201, 169, 97, 0.08);
}

.md-nav-dropdown-icon {
    transition: transform 0.3s ease;
}

.md-nav-item-wrapper:hover .md-nav-dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.md-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    grid-template-columns: repeat(2, 1fr) !important;
    min-width: 430px;
    display: grid !important;
    gap: 5px 15px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 8px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.md-nav-item-wrapper:hover .md-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.md-nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}

.md-nav-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.md-nav-dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.15), rgba(212, 175, 55, 0.15));
    transition: width 0.3s ease;
}

.md-nav-dropdown-item:hover::before {
    width: 100%;
}

.md-nav-dropdown-item:hover {
    color: #c9a961;
    padding-left: 30px;
}

/* Category Slider */
.md-category-slider {
    background: #fff;
    padding: 7px 0;
    border-top: 1px solid #e5e5e5;
}

.md-swiper {
    padding: 10px 0;
}

.md-swiper .swiper-slide {
    width: auto !important;
}

.md-category-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: grab;
    user-select: none;
}

.md-category-circle:active {
    cursor: grabbing;
}

.md-category-image {
    width: 99px;
    height: 99px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.md-category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.3), rgba(212, 175, 55, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.md-category-circle:hover .md-category-image::before {
    opacity: 1;
}

.md-category-circle:hover .md-category-image {
    transform: scale(1.1) translateY(-5px);
    border-color: #c9a961;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.md-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.md-category-name {
    font-size: 13px;
    color: #2c2c2c;
    font-weight: 500;
    text-align: center;
    max-width: 110px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.md-category-circle:hover .md-category-name {
    color: #c9a961;
}

/* Mobile Menu */
.md-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 100%);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

.md-mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
}

.md-mobile-menu-open {
    right: 0;
}

.md-mobile-menu-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.md-mobile-menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 25px;
    overflow-y: auto;
}

.md-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.md-mobile-logo {
    height: 60px;
    width: auto;
    /*filter: brightness(0) invert(1);*/
}

.md-close-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.md-close-btn:hover {
    color: #c9a961;
    transform: rotate(90deg);
}

/* Mobile Navigation */
.md-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.md-mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 18px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.md-mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.2), rgba(212, 175, 55, 0.2));
    transition: width 0.3s ease;
}

.md-mobile-nav-link:hover {
    background: rgba(201, 169, 97, 0.1);
    color: #c9a961;
    padding-left: 30px;
}

.md-mobile-nav-link:hover::before {
    width: 5px;
}

.md-dropdown-icon {
    transition: transform 0.3s ease;
}

.md-dropdown-icon-open {
    transform: rotate(180deg);
}

/* Mobile Dropdown Menu */
.md-dropdown-menu {
    flex-direction: column;
    gap: 5px;
    padding-left: 20px;
    margin-top: 10px;
}

.md-dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
}

.md-dropdown-item:hover {
    background: rgba(201, 169, 97, 0.15);
    color: #c9a961;
    padding-left: 30px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .md-secondary-nav-content {
        gap: 3px;
    }

    .md-secondary-link {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 1024px) {
    .md-logo-img {
        height: 100px;
    }
    
    .md-secondary-link {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 768px) {
    .md-header-main {
        padding: 12px 0;
    }

    .md-logo-img {
        height: 60px;
    }

    .md-nav-desktop {
        display: none;
    }

    .md-hamburger {
        display: flex;
    }

    .md-secondary-nav {
        display: none;
    }

    .md-category-image {
        width: 85px;
        height: 85px;
        border-width: 3px;
    }

    .md-category-name {
        font-size: 12px;
        max-width: 85px;
    }

    .md-category-slider {
        padding: 7px 0;
    }

    .md-mobile-menu {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .md-mobile-menu {
        width: 100%;
        max-width: 320px;
    }

    .md-logo-img {
        height: 50px;
    }

    .md-category-image {
        width: 75px;
        height: 75px;
    }

    .md-category-name {
        font-size: 11px;
        max-width: 75px;
    }
}

/* Phone Link Styling */
.md-nav-divider {
    color: #d0d0d0;
    font-size: 18px;
    font-weight: 300;
}

.md-phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.md-phone-link i {
    font-size: 16px;
    color: #c9a961;
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.md-phone-link:hover {
    color: #c9a961;
}

.md-phone-link:hover i {
    animation: none;
    transform: scale(1.2);
}

/* Rest of the CSS remains the same... */

.md-hero-banner {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    overflow: hidden;
    background:
        linear-gradient(rgba(8, 18, 10, 0.58), rgba(8, 18, 10, 0.58)),
        url('../images/banner/banner-bg.jpg') center center / cover no-repeat;
    /*/border-radius: 20px;
    margin: 30px 20px;*/
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    isolation: isolate;
}

.md-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.10), transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(255, 220, 120, 0.10), transparent 30%);
    z-index: 0;
    animation: mdBannerGlow 8s ease-in-out infinite alternate;
}

.md-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.md-hero-text {
    color: #fff;
    animation: mdFadeUp 1s ease forwards;
}

.md-hero-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: mdFadeUp 0.8s ease forwards;
}

.md-hero-text h1 {
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 18px;
    max-width: 620px;
    opacity: 0;
    transform: translateY(30px);
    animation: mdFadeUp 1s ease 0.15s forwards;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.md-hero-text p {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
    max-width: 560px;
    opacity: 0;
    transform: translateY(30px);
    animation: mdFadeUp 1s ease 0.35s forwards;
}

.md-hero-actions {
    opacity: 0;
    transform: translateY(30px);
    animation: mdFadeUp 1s ease 0.55s forwards;
}

.md-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.md-hero-btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f3f3f3 100%);
    color: #1f5f2d;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.md-hero-btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
    transition: left 0.6s ease;
}

.md-hero-btn-primary:hover::before {
    left: 120%;
}

.md-hero-btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.24);
    background: linear-gradient(135deg, #ffffff 0%, #e9ffe9 100%);
}

.md-hero-btn-primary i {
    font-size: 14px;
    animation: mdPhonePulse 1.6s ease-in-out infinite;
}

@keyframes mdFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mdBannerGlow {
    from {
        transform: scale(1);
        opacity: 0.85;
    }
    to {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes mdPhonePulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.12) rotate(-8deg);
    }
    50% {
        transform: scale(1.2) rotate(8deg);
    }
    75% {
        transform: scale(1.1) rotate(-6deg);
    }
}

@media (max-width: 992px) {
    .md-hero-banner {
        min-height: 460px;
        padding: 50px 28px;
    }

    .md-hero-text h1 {
        font-size: 46px;
    }

    .md-hero-text p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .md-hero-banner {
        min-height: 420px;
        padding: 40px 22px;
        /*margin: 20px 12px;
        border-radius: 16px;*/
        background-position: center;
    }

    .md-hero-text h1 {
        font-size: 34px;
    }

    .md-hero-text p {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .md-hero-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .md-hero-banner {
        min-height: 360px;
        padding: 30px 18px;
    }

    .md-hero-tag {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .md-hero-text h1 {
        font-size: 28px;
    }

    .md-hero-text p {
        font-size: 16px;
    }
}

.md-about-section {
    position: relative;
    padding: 16px 20px 70px 20px;
    margin-top: 61px;
    background: linear-gradient(180deg, #fffdf7 0%, #f6f8f2 100%);
    overflow: hidden;
}

.md-about-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.md-about-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.55;
}

.md-about-bg-shape-1 {
    width: 260px;
    height: 260px;
    background: rgba(180, 205, 104, 0.22);
    top: 40px;
    left: -40px;
}

.md-about-bg-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(201, 169, 97, 0.18);
    right: -60px;
    bottom: 30px;
}

.md-about-images {
    display: flex;
    align-items: flex-end;
    gap: 26px;
    position: relative;
}

.md-about-image {
    overflow: hidden;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 22px 50px rgba(21, 33, 18, 0.14);
    transform: translateY(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.md-about-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 27, 12, 0.18), rgba(15, 27, 12, 0.02));
    z-index: 1;
    transition: opacity 0.4s ease;
}

.md-about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s ease;
}

.md-about-image-small {
    width: 223px;
    height: 380px;
    margin-bottom: 28px;
}

.md-about-image-large {
    width: 580px;
    height: 500px;
}

.md-about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(21, 33, 18, 0.2);
}

.md-about-image:hover img {
    transform: scale(1.08);
    filter: saturate(1.08);
}

.md-about-tag {
    display: inline-block;
    margin-bottom: 18px;
    color: #c9a961;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.md-about-tag::after {
    content: "";
    display: inline-block;
    width: 44px;
    height: 2px;
    background: #c9a961;
    /*background: linear-gradient(90deg, #7b9b1e, #c9a961);*/
    margin-left: 10px;
    vertical-align: middle;
}

.md-about-content h2 {
    font-size: 43px;
    line-height: 1.08;
    color: #0f2230;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    max-width: 680px;
}

.md-about-content h2 span {
    display: inline-block;
    color: #c9a961;
    position: relative;
    text-shadow: 0 6px 18px rgba(47, 125, 50, 0.08);
}

.md-about-content h2 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, rgba(123, 155, 30, 0.2), rgba(201, 169, 97, 0.22));
    z-index: -1;
    border-radius: 20px;
}

.md-about-lead {
    font-size: 20px;
    line-height: 1.8;
    color: #2f3e32;
    margin-bottom: 16px;
    font-weight: 600;
}

.md-about-content p {
    font-size: 17px;
    line-height: 1.95;
    color: #55625a;
    margin-bottom: 16px;
    max-width: 690px;
}

.md-about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.md-about-highlight {
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(47, 125, 50, 0.12);
    box-shadow: 0 10px 24px rgba(31, 50, 26, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.md-about-highlight span {
    font-size: 14px;
    font-weight: 700;
    color: #214d29;
    letter-spacing: 0.2px;
}

.md-about-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(31, 50, 26, 0.12);
}

/* Scroll animation */
.md-reveal-left,
.md-reveal-right {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.md-reveal-left {
    transform: translateX(-60px);
}

.md-reveal-right {
    transform: translateX(60px);
}

.md-reveal-left.md-visible,
.md-reveal-right.md-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 1100px) {
    .md-about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .md-about-images {
        justify-content: center;
    }

    .md-about-content {
        text-align: center;
    }

    .md-about-content h2,
    .md-about-content p {
        max-width: 100%;
    }

    .md-about-highlights {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .md-about-section {
        padding: 80px 16px;
    }

    .md-about-images {
        gap: 14px;
        align-items: stretch;
    }

    .md-about-image-small {
        width: 42%;
        height: 300px;
        margin-bottom: 0;
    }

    .md-about-image-large {
        width: 58%;
        height: 300px;
    }

    .md-about-content h2 {
        font-size: 36px;
        line-height: 1.18;
    }

    .md-about-lead {
        font-size: 18px;
    }

    .md-about-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .md-about-section {
        padding: 16px 14px 70px 14px;
    }

    .md-about-container {
        gap: 34px;
    }

    .md-about-images {
        flex-direction: column;
    }

    .md-about-image-small,
    .md-about-image-large {
        width: 100%;
        height: 240px;
    }

    .md-about-content h2 {
        font-size: 28px;
    }

    .md-about-tag {
        font-size: 11px;
        letter-spacing: 1.6px;
    }

    .md-about-highlight {
        width: 100%;
    }
}

.md-about-tag {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.md-about-content h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 43px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1px;
    color: #0f2230;
}

.md-about-lead {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    line-height: 1.9;
    font-weight: 600;
    color: #2f3e32;
}

.md-about-content p {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    text-align: justify;
    line-height: 1.95;
    font-weight: 500;
    color: #55625a;
}


.md-brand-section {
    position: relative;
    padding: 70px 20px;
    background:
        radial-gradient(circle at top left, rgba(201, 169, 97, 0.12), transparent 24%),
        radial-gradient(circle at bottom right, rgba(47, 125, 50, 0.10), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f8fbf7 100%);
    overflow: hidden;
}

.md-brand-header {
    max-width: auto;
    margin: 0 auto 52px;
    text-align: center;
}

.md-brand-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(47, 125, 50, 0.08);
    color: #2f7d32;
    font-family: 'League Spartan', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    border: 1px solid rgba(47, 125, 50, 0.14);
}

.md-brand-header h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1px;
    font-weight: 700;
    color: #10212b;
    margin-bottom: 16px;
}

.md-brand-header p {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.85;
    color: #5b675f;
    max-width: 680px;
    margin: 0 auto;
}

.md-brand-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 7px;
}

.md-brand-card {
    position: relative;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 34, 48, 0.08);
    border-radius: 24px;
    padding: 16px 16px 24px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(21, 38, 24, 0.08);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.35s ease;
    backdrop-filter: blur(8px);
}

.md-brand-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(47, 125, 50, 0.03));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.md-brand-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 26px 50px rgba(21, 38, 24, 0.14);
    border-color: rgba(47, 125, 50, 0.18);
}

.md-brand-card:hover::before {
    opacity: 1;
}

.md-brand-image-wrap {
    position: relative;
    height: 150px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
}

.md-brand-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.02));
    opacity: 0.75;
    transition: opacity 0.35s ease;
}

.md-brand-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease, filter 0.5s ease;
}

.md-brand-card:hover .md-brand-image-wrap img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}

.md-brand-card:hover .md-brand-image-wrap::after {
    opacity: 0.45;
}

.md-brand-icon {
    /*width: 143px;
    height: 43px;*/
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    /*box-shadow: 0 12px 24px rgba(47, 125, 50, 0.24);*/
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}


.md-brand-icon img {
    width: 115px;
    padding-bottom: 16px;
}

.md-brand-card:hover .md-brand-icon {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 18px 30px rgb(201 169 97 / 34%);
}

.md-brand-card h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #112330;
    scroll-margin-top: 7px;
    letter-spacing: -0.3px;
    transition: color 0.35s ease, transform 0.35s ease;
}

.md-brand-card span {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    transition: color 0.35s ease;
}

.md-brand-card:hover h3 {
    color: #c9a961;
    transform: translateY(-2px);
}

.md-brand-card:hover span {
    color: #c9a961;
}

/* Scroll reveal */
.md-brand-reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.md-brand-reveal.md-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1280px) {
    .md-brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .md-brand-section {
        padding: 70px 16px;
    }

    .md-brand-header h2 {
        font-size: 40px;
    }

    .md-brand-header p {
        font-size: 16px;
    }

    .md-brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .md-brand-header h2 {
        font-size: 30px;
        line-height: 1.15;
    }

    .md-brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .md-brand-card {
        padding: 14px 14px 22px;
    }

    .md-brand-image-wrap {
        height: 190px;
    }
}



.md-industry-section {
    padding: 70px 20px;
    background:
        radial-gradient(circle at top left, rgba(201, 169, 97, 0.10), transparent 25%),
        radial-gradient(circle at bottom right, rgba(47, 125, 50, 0.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
    overflow: hidden;
}

.md-industry-header {
    max-width: auto;
    margin: 0 auto 46px;
    text-align: center;
}

.md-industry-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(47, 125, 50, 0.08);
    color: #2f7d32;
    border: 1px solid rgba(47, 125, 50, 0.14);
    font-family: 'League Spartan', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.md-industry-header h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1px;
    color: #112330;
    margin-bottom: 0px;
}

.md-industry-header p {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.85;
    color: #5b675f;
    max-width: 734px;
    margin: 0 auto;
}

.md-industry-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
}

.md-industry-card {
    position: relative;
    text-align: center;
    padding: 34px 22px 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 35, 48, 0.08);
    /*box-shadow: 0 14px 35px rgba(23, 40, 28, 0.08);*/
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.35s ease;
    overflow: hidden;
}

.md-industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(47,125,50,0.04));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.md-industry-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 26px 50px rgba(23, 40, 28, 0.14);
    border-color: rgba(47, 125, 50, 0.16);
}

.md-industry-card:hover::before {
    opacity: 1;
}

.md-industry-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 20px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #edf7ed 100%);
    border: 1px solid rgba(47, 125, 50, 0.12);
    box-shadow: 0 14px 28px rgba(47, 125, 50, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.md-industry-icon i {
    font-size: 34px;
    color: #c9a961;
    transition: transform 0.35s ease, color 0.35s ease;
}

.md-industry-card:hover .md-industry-icon {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 20px 32px rgb(26 26 26 / 18%);
    background: linear-gradient(135deg, #c9a96129 0%, #1a1a1a1a 100%);
}

.md-industry-card:hover .md-industry-icon i {
    transform: scale(1.08) rotate(4deg);
    color: #1a1a1a;
}

.md-industry-card h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #112330;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    transition: color 0.35s ease, transform 0.35s ease;
}

.md-industry-card p {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #607066;
    font-weight: 500;
    transition: color 0.35s ease;
}

.md-industry-card:hover h3 {
    color: #c9a961;
    transform: translateY(-2px);
}

.md-industry-card:hover p {
    color: #425047;
}

/* scroll reveal */
.md-industry-reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.md-industry-reveal.md-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1280px) {
    .md-industry-grid {
        grid-template-columns: repeat(3, 1fr);



.md-dropdown-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding-left: 20px;
    margin-top: 10px;
    transition: all 0.3s ease;
}