
* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif !important;
    color: #333;
    overflow-x: hidden;
}

/* Container wrapper for all content */
.page-wrapper {
    max-width: 1600px; /* Maximum width for content */
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Header */
header {
    background: #fff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.logo img {
    height: 55px;
    width: auto;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.brand-links {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #999;
}

.brand-links a {
    text-decoration: none;
    color:#000000;
    transition: color 0.3s;
}

.brand-links a:hover {
    color: #4a90e2;
}

.brand-links span {
    color: #000000;
}

nav {
    background: #f5f5f5;
    padding: 15px 30px;
    border-radius: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a90e2;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #000;
    transform: translateY(-2px);
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section - Slideshow */
.hero {
width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    background: #2d2d2d;
}


.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    object-position: center;
    display: block;
    background: #2d2d2d;
}

/* Common Section Styles */
.content-section {
    padding: 30px 100px;
    background: #fff;
}

.section-title {
    font-size: 36px;
    margin-bottom: 30px;
    color: #000;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 3px;
    background: currentColor;
}

.section-title span {
    color: inherit;
}

/* Company Section */
.company-section {
    display: flex;
    align-items: flex-start;
    padding: 30px 100px;
    gap: 80px;
    margin-top: 25px;
    background: #fff;
}

.company-image {
    flex: 1;
    max-width: 600px;
}

.company-image img {
    width: 100%;
    height: auto;
}

.company-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.company-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #4a90e2;
    position: relative;
    display: block;
    line-height:1.3;
}

.company-content h2 .subtitle {
    display: block;
    font-size: 28px;
    color: #000;
    margin-top: 10px;
    position: relative;
    padding-bottom: 10px;
    text-decoration: underline;
    text-decoration-color: #4a90e2;
    text-underline-offset: 6px;       /* moves underline down */
    text-decoration-thickness: 2.5px;   /* optional – nicer look */
}

/* .company-content h2 .subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 520px;
    height: 3px;
    background: #4a90e2;
} */

.company-content p {
    line-height: 1.5;
    color: #666;
    font-size: 18px;
    text-align: left;
}

/* Success Path Section */
.success-section {
    padding: 30px 100px;
    background: #fff;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.success-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.success-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #000;
    position: relative;
    display: block;
    line-height: 1.4;
}

.success-content h2 .underline {
    position: relative;
    display: inline;
}

.success-content h2 .underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d6c22e;
}

.success-content h2 .big {
    font-size: 40px;
    color: #d6c22e;
}

.success-content p {
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: left;
}

.success-image {
    flex: 1;
    max-width: 500px;
}

.success-image img {
    width: 100%;
    height: auto;
}

/* Who We Are Section */
.who-we-are {
    padding: 30px 100px;
    background: #fff;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.who-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.who-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #000;
    position: relative;
    display: block;
    line-height: 1.4;
}

.who-content h2 .underline {
    position: relative;
    display: inline;
}

.who-content h2 .underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #5f8dce;
}

.who-content h2 .big {
    font-size: 40px;
    color: #5f8dce;
}

.who-content p {
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: left;
}

.who-image {
    flex: 1;
    max-width: 600px;
}

.who-image img {
    width: 100%;
    height: auto;
}

/* Process Section */
.process-section {
    padding: 0px 100px;
    background: #fff;
}

.process-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #000;
    position: relative;
    display: block;
    line-height: 1.4;
}

.process-section h2 .underline {
    position: relative;
    display: inline;
}

.process-section h2 .underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #27ae60;
}

.process-section h2 .big {
    font-size: 40px;
    color: #27ae60;
}

.process-section > p {
    color: #666;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.5;
    text-align: justify     ;
}

.process-diagram {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
}

.process-diagram img {
    width: 100%;
    max-width: 1000px;
    height: auto;
}

/* Process Info Box */
.process-info {
    background: #fbb54c;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 100%;
    margin: 40px auto 0;
    text-align: left;
    font-size: 18px;
    line-height: 1.8;
}

/* Industries Section */
.industries-section {
    padding: 30px 100px;
    background: #fff;
}

.industries-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #000;
    position: relative;
    display: block;
    line-height: 1.4;
}

.industries-section h2 .underline {
    position: relative;
    display: inline;
}

.industries-section h2 .underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #55b117;
}

.industries-section h2 .big {
    font-size: 40px;
    color: #55b117;
}

.industries-section > p {
    color: #666;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.5;
    text-align: justify;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.industry-item {
    text-align: center;
}

.industry-icon {
    width: 190px;
    height: 190px;
    margin: 0 auto 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.industry-item p {
    font-size: 17px;
    color: #666;
    font-weight: 775;
}

.consultation-note {
    color: #666;
    font-size: 18px;
    margin-top: 40px;
    text-align: justify;
    line-height: 1.8;
}

/* Offerings Section */
.offerings-section {
    padding: 0px 100px;
    background: #ffffff;
    text-align: left;
}

.offerings-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #000;
    position: relative;
    display: block;
    line-height: 1.4;
}

.offerings-section h2 .underline {
    position: relative;
    display: inline;
}

.offerings-section h2 .underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #9b59b6;
}

.offerings-section h2 .big {
    font-size: 40px;
    color: #9b59b6;
}

.offerings-section p {
    color: #666;
    margin-bottom: 40px;
    font-size: 18px;
    text-align: justify;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: lightgreen;  /*Default background color*/
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 44px;
}

.cta-button:hover{
      background: #5cd65c;
}


/* Centering only the button */
.button-wrapper {
    text-align: center;
    margin-top: 20px;
}

        /* Contact Section */
.contact-section {
    padding: 60px 100px;
    background: #ffffff;
    border-top: 1px solid #ffffff;
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #000;
    font-weight: bold;
}

.contact-section h2 .get {
    position: relative;
    padding-bottom: 5px;
}

.contact-section h2 .get::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f5a623;
}

.contact-section h2 .touch {
    color: #f5a623;
    font-size: 40px;
}

.contact-section p {
    color: #333;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.contact-section .email {
    color: #f5a623;
    font-weight: bold;
    text-decoration: none;
}

.contact-section .phone {
    color: #f5a623;
    font-weight: bold;
    text-decoration: none;
}
/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 60px 100px 30px;
}

.footer-logo {
    margin-bottom: 50px;
}

.footer-logo img {
    height: 65px;
    width: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-about-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-column h3 {
    font-size: 14px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: normal;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}
.footer-column ul a {
    text-decoration: none;
    color:#ffffff;
    transition: color 0.3s;
}

.footer-column ul a:hover {
    color: #4a90e2;
}

.footer-column a,
.footer-column p {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    line-height: 1.8;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 50px;
    color: #666;
    font-size: 12px;
}

/* Inner container to control width */
.footer-bottom-inner {
    /* max-width: 1200px;       */
    margin: 0 auto;
    padding: 30px 0px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left & Right text */
.footer-left,
.footer-right {
    margin: 0;
    white-space: nowrap;
}

/* Footer links */
.footer-right a {
    color: #666;
    text-decoration: none;
}

.footer-right a:hover {
    color: #4a90e2;
}


/* ============================================
   TABLET (≤1024px)
   ============================================ */

@media (max-width: 1024px) {

       /* Hero Section */
    .hero {
        height: 300px;
    }

    /* ===============================
       COMPANY SECTION
       Title → Content → Image
       =============================== */
    .company-section {
        flex-direction: column;
        padding: 20px 50px;
        gap: 30px;
        align-items: center;
        margin-top: 0;
    }

    .company-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
        order: 1;
    }

    .company-content h2 {
        font-size: 32px;
        margin-top: 0 !important;
        margin-bottom: 25px;
    }

    .company-content h2 .subtitle {
        font-size: 24px;
        margin-top: 8px;
    }

    .company-content p {
        font-size: 17px;
        line-height: 1.6;
    }

    .company-image {
        width: 100%;
        max-width: 500px;
        order: 2;
    }

    .company-image img {
        width: 100%;
        height: auto;
    }

    /* ===============================
       SUCCESS SECTION
       Title → Content → Image
       =============================== */
    .success-section {
        flex-direction: column;
        padding: 20px 50px;
        gap: 30px;
        align-items: center;
    }

    .success-content {
        width: 100%;
        text-align: center;
        order: 1;
    }

    .success-content h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .success-content h2 .big {
        font-size: 36px;
    }

    .success-content p {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .success-image {
        width: 100%;
        max-width: 450px;
        order: 2;
    }

    .success-image img {
        width: 100%;
        height: auto;
    }

    /* ===============================
       WHO WE ARE SECTION
       Title → Content → Image
       =============================== */
    .who-we-are {
        flex-direction: column;
        padding: 20px 50px;
        gap: 30px;
        align-items: center;
    }

    .who-content {
        width: 100%;
        text-align: center;
        order: 1;
    }

    .who-content h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .who-content h2 .big {
        font-size: 36px;
    }

    .who-content p {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .who-image {
        width: 100%;
        max-width: 500px;
        order: 2;
    }

    .who-image img {
        width: 100%;
        height: auto;
    }

    /* Process Section */
    .process-section {
        padding: 20px 50px;
    }

    .process-section h2 {
        font-size: 26px;
        text-align: center;
    }

    .process-section h2 .big {
        font-size: 36px;
    }

    .process-section > p {
        font-size: 17px;
        text-align: center;
        margin-bottom: 35px;
    }

    .process-diagram {
        padding: 30px 0;
    }

    .process-info {
        font-size: 17px;
        padding: 25px;
        margin: 30px auto 0;
    }

    /* Industries Section */
    .industries-section {
        padding: 20px 50px;
    }

    .industries-section h2 {
        font-size: 26px;
        text-align: center;
    }

    .industries-section h2 .big {
        font-size: 36px;
    }

    .industries-section > p {
        font-size: 17px;
        text-align: center;
        margin-bottom: 18px;
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 35px 25px;
        margin: 35px 0;
    }

    .industry-icon {
        width: 150px;
        height: 150px;
    }

    .industry-item p {
        font-size: 15px;
    }

    .consultation-note {
        font-size: 17px;
        text-align: center;
        margin-top: 35px;
    }

    /* Offerings Section */
    .offerings-section {
        padding: 20px 50px;
    }

    .offerings-section h2 {
        font-size: 26px;
        text-align: center;
    }

    .offerings-section h2 .big {
        font-size: 36px;
    }

    .offerings-section p {
        font-size: 17px;
        text-align: center;
        margin-bottom: 35px;
    }

    .cta-button {
        padding: 16px 45px;
        font-size: 15px;
    }

    /* Contact Section */
    .contact-section {
        padding: 20px 50px;
        text-align: center;
    }

    .contact-section h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .contact-section h2 .touch {
        font-size: 36px;
    }

    .contact-section p {
        font-size: 17px;
        margin-bottom: 18px;
    }
}


/* ============================================
   MOBILE (≤768px)
   ============================================ */

@media (max-width: 768px) {

    /* Hero Section */
    .hero {
        height: 200px;
        background-image: url("mobile-banner.jpg");
    }

    /* Global Section Padding */
    .company-section,
    .success-section,
    .who-we-are,
    .process-section,
    .industries-section,
    .offerings-section,
    .contact-section {
        padding: 15px 20px;
    }

    /* ===============================
       COMPANY SECTION
       Title → Content → Image
       =============================== */
    .company-section {
        flex-direction: column;
        gap: 25px;
        margin-top: 0;
        align-items: center;
    }

    .company-content {
        width: 100%;
        text-align: center;
        order: 1;
    }

    .company-content h2 {
        font-size: 28px;
        margin-top: 0 !important;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .company-content h2 .subtitle {
        font-size: 22px;
        margin-top: 8px;
    }

    .company-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .company-image {
        width: 100%;
        max-width: 100%;
        order: 2;
    }

    .company-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* ===============================
       SUCCESS SECTION
       Title → Content → Image
       =============================== */
    .success-section {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .success-content {
        width: 100%;
        text-align: center;
        order: 1;
    }

    .success-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .success-content h2 .big {
        font-size: 32px;
    }

    .success-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .success-image {
        width: 100%;
        max-width: 100%;
        order: 2;
    }

    .success-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* ===============================
       WHO WE ARE SECTION
       Title → Content → Image
       =============================== */
    .who-we-are {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .who-content {
        width: 100%;
        text-align: center;
        order: 1;
    }

    .who-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .who-content h2 .big {
        font-size: 32px;
    }

    .who-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .who-image {
        width: 100%;
        max-width: 100%;
        order: 2;
    }

    .who-image img {
        width: 100%;
        height: auto;
        display: block;
    }

     .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        justify-items: center;   /* 🔑 centers grid items */
        align-items: start;
        margin: 30px 0;
    }

    .industry-item {
        width: 100%;
        max-width: 160px;        /* 🔑 keeps items visually equal */
        text-align: center;
    }

    .industry-icon {
        width: 120px;
        height: 120px;
        margin: 0 auto 10px;     /* 🔑 centers icon */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .industry-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .industry-item p {
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        margin: 0 auto;
    }

    .industries-section > p,
    .consultation-note {
        text-align: center;      /* better readability on mobile */
    }

}



/* ============================================
   EXTRA SMALL MOBILE (≤375px)
   ============================================ */

@media (max-width: 375px) {
    
    /* Adjust padding for very small screens */
    .company-section,
    .success-section,
    .who-we-are,
    .process-section,
    .industries-section,
    .offerings-section,
    .contact-section {
        padding: 25px 15px;
    }

    /* Typography adjustments */
    .company-content h2,
    .success-content h2,
    .who-content h2,
    .process-section h2,
    .industries-section h2,
    .offerings-section h2 {
        font-size: 22px;
    }

    .company-content h2 .subtitle {
        font-size: 20px;
    }

    .success-content h2 .big,
    .who-content h2 .big,
    .process-section h2 .big,
    .industries-section h2 .big,
    .offerings-section h2 .big {
        font-size: 28px;
    }

    /* Industries grid - single column for very small screens */
    .industries-grid {
        gap: 25px 15px;
    }

    .industry-icon {
        width: 100px;
        height: 100px;
    }

    .industry-item p {
        font-size: 13px;
    }

    /* CTA Button */
    .cta-button {
        padding: 14px 30px;
        font-size: 14px;
    }

    /* Contact Section */
    .contact-section h2 {
        font-size: 24px;
    }

    .contact-section h2 .touch {
        font-size: 28px;
    }
}


/* ============================================
   UTILITY FIXES
   ============================================ */

@media (max-width: 768px) {
    
    /* Prevent horizontal overflow */
    body {
        overflow-x: hidden;
    }

    .page-wrapper {
        overflow-x: hidden;
    }

    /* Image safety */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Better text rendering */
    .company-content h2,
    .success-content h2,
    .who-content h2,
    .process-section h2,
    .industries-section h2,
    .offerings-section h2 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0px;
}

}

/* Header and Footer  */
/* @media (max-width: 1024px) { */
@media (max-width: 1024px) {
header {
    padding: 5px 40px 15px ;
    flex-direction: column;        /* stack logo + nav */
    align-items: center;
    gap: 18px;
}

/* Logo on top, centered */
.logo {
    width: 100%;
    text-align: center;
}

.logo img {
    height: 55px;
}

/* Header right takes full width */
.header-right {
    width: 100%;
    align-items: center;
}

/* Brand links centered (optional – looks clean) */
.brand-links {
    justify-content: center;
    margin-bottom: 10px;
}

/* Full-width nav bar */
nav {
    width: 100%;
    padding: 12px 0;
}

/* Nav items: single line, evenly spaced */
nav ul {
    display: flex;
    flex-wrap: nowrap;                 /* 🔥 no second line */
    justify-content: space-evenly;     /* 🔥 even spacing */
    align-items: center;
    width: 100%;
    gap: 0;
}

/* Prevent word breaking */
nav ul li {
    white-space: nowrap;
}

/* Nav links */
nav a {
    font-size: 12px;
    padding: 8px 10px;
}

/* Disable hamburger on tablet */
.mobile-menu-toggle {
    display: none;
}
}


/* Mobile View */
@media (max-width: 768px) {

  header {
    position: relative;
    padding: 15px 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* Hamburger on LEFT */
  .mobile-menu-toggle {
    position: absolute;
    left: 0px;
    /* top: 22px; */
    display: flex;
  }

  /* Logo centered */
  .logo {
    width: 100%;
    text-align: center;
  }

  .logo img {
    height: 45px;
  }

  /* Header-right full width */
  .header-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Brand links UNDER logo */
  .brand-links {
    font-size: 11px;
    gap: 8px;
    margin-top: 6px;
    margin-bottom: 10px;
    justify-content: center;
    flex-wrap: wrap;
    display: flex;
  }

  /* Navigation (hidden by default) */
 
nav {
    width: 100%;
    background: transparent;
    padding: 0px 0px 10px 0px;
}

/* Menu CLOSED state */
nav ul {
    display: none;
    padding: 0;
    margin: 0;
    background: none;          /* 🔥 important */
    border-radius: 0;          /* 🔥 important */
}

/* Menu OPEN state */
nav ul.active {
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    border-radius: 8px;
    margin-top: 12px;
    overflow: hidden;
}
  nav ul.active {
    display: flex;
  }

  nav ul li {
    border-bottom: 1px solid #e0e0e0;
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav a {
    display: block;
    padding: 15px 20px;
    font-size: 14px;
    width: 100%;
    transition: transform 0.3s ease;
  }

  nav a::after {
    display: none;
  }

  nav a:hover {
    /* background: #e8e8e8; */
 transform: scale(1.05);  

}



   /* =========================
     FOOTER
     ========================= */

  footer {
    padding: 40px 20px 20px;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-logo img {
    height: 55px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 30px;
  }

  .footer-column h3 {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .footer-column a,
  .footer-column p {
    font-size: 13px;
    line-height: 1.7;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
    padding: 25px 0;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    white-space: normal;
  }

  .footer-right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
}