.contact-location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-email-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Email link styling to match contact address color */
.navbar-contact .contact-email {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-contact .contact-email:hover {
    color: #0E2767;
    text-decoration: underline;
}

.navbar-wrapper {
    width: 100%;
    background: #f6f8f4;
    border-bottom: 1px solid #e0e4e0;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
}

.navbar-wrapper * {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px 8px 40px;
    font-size: 16px;
    color: #444;
    background: #fff;
}

.navbar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.navbar-contact .icon-location,
.navbar-contact .icon-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 4px;
    vertical-align: middle;
}

.navbar-contact .icon-location img,
.navbar-contact .icon-email img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.navbar-contact .divider {
    margin: 0 12px;
    color: #bbb;
}

.navbar-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f6f2ef;
    border-radius: 50%;
    color: #222;
    font-size: 19px;
    transition: background 0.2s;
    cursor: pointer;
}

.navbar-social .social-icon:hover {
    background: #e6e6e6;
}

.navbar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f6f8f4;
    padding: 18px 40px;
}

.navbar-logo {
    margin-left: 60px;
}

.navbar-logo img {
    height: 110px;
    width: 80px;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-links li a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s, border-bottom 0.2s;
    padding-bottom: 2px;
}

.navbar-links li a.active,
.navbar-links li a:hover {
    color: #4b7c4b;
    border-bottom: 2px solid #4b7c4b;
}

.navbar-cta {
    margin-left: 32px;
}

.btn.btn-outline-green {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 56px;
    padding: 0 24px;
    border-radius: 38px;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    background: #5C845C;
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
    outline: none;
    box-shadow: none;
}

.btn.btn-outline-green .btn-arrow {
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    transform: translateX(-10px) rotate(-45deg);
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.btn.btn-outline-green .btn-text {
    text-align: center;
    transition: color 0.3s cubic-bezier(0.4,0,0.2,1);
}

.btn.btn-outline-green:hover {
    background: transparent;
    color: #5C845C;
    border: 2px solid #5C845C;
}

.btn.btn-outline-green:hover .btn-arrow {
    transform: translateX(0) rotate(0deg);
}

.btn.btn-outline-green:hover .btn-text {
    color: #5C845C;
}
.btn.btn-outline-green:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 2px solid #5C845C !important;
    background: transparent !important;
    color: #5C845C !important;
}

.btn.btn-outline-green:active {
    outline: none !important;
    box-shadow: none !important;
    border: 2px solid #5C845C !important;
    background: transparent !important;
    color: #5C845C !important;
}

/* ========================================
   MOBILE MENU TOGGLE BUTTON
   ======================================== */

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.navbar-toggle-line {
    width: 25px;
    height: 3px;
    background: #4b7c4b;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}
    /* justify-content: center;
    align-items: center;
    background: #4b7c4b;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
} */

.navbar-toggle.active .navbar-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggle.active .navbar-toggle-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .navbar-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Mobile Menu Toggle Button */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.navbar-toggle-line {
    width: 25px;
    height: 3px;
    background: #4b7c4b;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar-toggle.active .navbar-toggle-line:nth-child(1) {
    transform: rotate(45deg) trante(6px, 6px);
}

.navbar-toggle.active .navbar-toggle-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .navbar-toggle-line:nth-child(3) {
 transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   DESKTOP STYLES - 1200px and above
   ======================================== */
@media (min-width: 1201px) {
    .navbar-wrapper {
        width: 100%;
    }
    
    .navbar-top {
        display: flex;
        padding: 18px 40px 8px 40px;
    }
    
    .navbar-main {
        padding: 18px 40px;
    }
    
    .navbar-logo {
        margin-left: 60px;
    }
    
    .navbar-logo img {
        height: 110px;
        width: 80px;
    }
    
    .navbar-links {
        gap: 36px;
    }
    
    .navbar-links li a {
        font-size: 18px;
    }
    
    .navbar-cta {
        margin-left: 32px;
    }
    
    .btn.btn-outline-green {
        height: 56px;
        padding: 0 24px;
        font-size: 20px;
    }
}

/* ========================================
   LARGE TABLET STYLES - 1024px to 1200px
   ======================================== */
@media (max-width: 1200px) and (min-width: 1025px) {
    .navbar-wrapper {
        width: 100%;
    }
    
    .navbar-top {
        display: flex;
        padding: 15px 30px 6px 30px;
        font-size: 15px;
    }
    
    .navbar-contact {
        gap: 8px;
    }
    
    .navbar-contact .contact-address,
    .navbar-contact .contact-email {
        font-size: 15px;
    }
    
    .navbar-contact .icon-location,
    .navbar-contact .icon-email {
        width: 18px;
        height: 18px;
    }
    
    .navbar-contact .divider {
        margin: 0 10px;
    }
    
    .navbar-main {
        padding: 15px 30px;
    }
    
    .navbar-logo {
        margin-left: 0;
        flex: 0 0 auto;
    }
    
    .navbar-logo img {
        height: 100px;
        width: 75px;
    }
    
    .navbar-links {
        display: flex;
        align-items: center;
        gap: 24px;
        list-style: none;
        margin: 0;
        padding: 0;
        flex: 1;
        justify-content: center;
    }
    
    .navbar-links li a {
        text-decoration: none;
        color: #222;
        font-size: 16px;
        font-weight: 500;
        transition: color 0.2s, border-bottom 0.2s;
        padding-bottom: 2px;
    }
    
    .navbar-links li a.active,
    .navbar-links li a:hover {
        color: #4b7c4b;
        border-bottom: 2px solid #4b7c4b;
    }
    
    .navbar-cta {
        margin-left: 20px;
        flex: 0 0 auto;
    }
    
    .btn.btn-outline-green {
        height: 50px;
        padding: 0 20px;
        font-size: 18px;
        margin-top: 0;
    }
    
    .btn.btn-outline-green .btn-text {
        display: inline;
    }
    
    .navbar-toggle {
        display: none;
    }
}

/* ========================================
   TABLET STYLES - 900px to 1024px
   ======================================== */
@media (max-width: 1024px) and (min-width: 901px) {
    .navbar-wrapper {
        width: 100%;
    }
    
    .navbar-top {
        display: flex;
        padding: 12px 20px 5px 20px;
        font-size: 14px;
    }
    
    .navbar-contact {
        gap: 6px;
    }
    
    .navbar-contact .contact-address,
    .navbar-contact .contact-email {
        font-size: 14px;
    }
    
    .navbar-contact .icon-location,
    .navbar-contact .icon-email {
        width: 16px;
        height: 16px;
    }
    
    .navbar-contact .divider {
        margin: 0 8px;
    }
    
    .navbar-main {
        padding: 12px 20px;
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }
    
    .navbar-logo {
        margin-left: 0;
        flex: 0 0 auto;
    }
    
    .navbar-logo img {
        height: 90px;
        width: 70px;
    }
    
    .navbar-links {
        display: flex;
        align-items: center;
        gap: 20px;
        list-style: none;
        margin: 0;
        padding: 0;
        flex: 1;
        justify-content: center;
    }
    
    .navbar-links li a {
        text-decoration: none;
        color: #222;
        font-size: 15px;
        font-weight: 500;
        transition: color 0.2s, border-bottom 0.2s;
        padding-bottom: 2px;
    }
    
    .navbar-links li a.active,
    .navbar-links li a:hover {
        color: #4b7c4b;
        border-bottom: 2px solid #4b7c4b;
    }
    
    .navbar-cta {
        margin-left: 15px;
        flex: 0 0 auto;
    }
    
    .btn.btn-outline-green {
        height: 45px;
        padding: 0 18px;
        font-size: 16px;
        margin-top: 0;
    }
    
    .btn.btn-outline-green .btn-text {
        display: inline;
    }
    
    .navbar-toggle {
        display: none;
    }
}

/* ========================================
   MOBILE STYLES - 900px and below
   ======================================== */
@media (max-width: 900px) {
    .navbar-wrapper {
        width: 100%;
    }
    
    .navbar-top {
        display: flex;
      
        padding: 10px 15px 4px 15px;
        font-size: 12px;
        gap: 8px;
    }
    
    .navbar-contact {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }
    
    .navbar-contact .contact-address,
    .navbar-contact .contact-email {
        font-size: 12px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .navbar-contact .icon-location,
    .navbar-contact .icon-email {
        width: 14px;
        height: 14px;
    }
    
    .navbar-contact .divider {
        display: none;
    }
    
    .navbar-social {
        align-self: flex-end;
        margin-top: -40px;
    }
    
    .navbar-social .social-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .navbar-main {
        padding: 10px 15px;
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }
    
    .navbar-logo {
        margin-left: 0;
        flex: 1;
    }
    
    .navbar-logo img {
        height: 80px;
        width: 60px;
    }
    
    .navbar-toggle {
        display: flex;
        order: 3;
    }
    
    .navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 30px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
        box-sizing: border-box;
    }
    
    .navbar-links.active {
        right: 0;
    }
    
    .navbar-links li {
        width: 100%;
        margin-bottom: 25px;
    }
    
    .navbar-links li a {
        display: block;
        padding: 18px 0;
        font-size: 20px;
        font-weight: 600;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        text-align: left;
    }
    
    .navbar-links li a:hover,
    .navbar-links li a.active {
        color: #4b7c4b;
        border-bottom: 2px solid #4b7c4b;
        background: none;
    }
    
    .navbar-cta {
        margin-left: 0;
        order: 2;
        margin-right: 15px;
    }
    
    .btn.btn-outline-green {
        height: 50px;
        padding: 0 25px;
        font-size: 18px;
        margin-top: 0;
    }
    
    .btn.btn-outline-green .btn-text {
        display: none;
    }
    
    .btn.btn-outline-green::after {
        content: "Quiz";
        font-size: 18px;
        font-weight: 600;
    }
}

/* ========================================
   SMALL MOBILE STYLES - 360px and below
   ======================================== */
@media (max-width: 360px) {
    .navbar-top {
        padding: 8px 12px 3px 12px;
        font-size: 10px;
        gap: 6px;
    }
    
    .navbar-contact .contact-address,
    .navbar-contact .contact-email {
        font-size: 10px;
        gap: 4px;
    }
    
    .navbar-contact .icon-location,
    .navbar-contact .icon-email {
        width: 12px;
        height: 12px;
    }
    
    .navbar-social {
        margin-top: -35px;
    }
    
    .navbar-social .social-icon {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    
    .navbar-main {
        padding: 8px 12px;
    }
    
    .navbar-logo img {
        height: 65px;
        width: 45px;
    }
    
    .navbar-links {
        padding: 75px 18px 18px 18px;
    }
    
    .navbar-links li a {
        font-size: 17px;
        padding: 14px 0;
    }
    
    .navbar-toggle {
        width: 32px;
        height: 32px;
    }
    
    .navbar-toggle-line {
        width: 18px;
        height: 2px;
    }
    
    .btn.btn-outline-green {
        height: 42px;
        padding: 0 18px;
        font-size: 15px;
    }
    
    .btn.btn-outline-green::after {
        font-size: 15px;
    }
}

/* ========================================
   SMALL MOBILE STYLES - 480px and below
   ======================================== */
@media (max-width: 480px) {
    .navbar-main {
        padding: 8px 12px;
    }
    
    .navbar-logo img {
        height: 70px;
        width: 50px;
    }
    
    .navbar-links {
        padding: 80px 20px 20px 20px;
    }
    
    .navbar-links li a {
        font-size: 18px;
        padding: 15px 0;
    }
    
    .navbar-toggle {
        width: 35px;
        height: 35px;
    }
    
    .navbar-toggle-line {
        width: 20px;
        height: 2px;
    }
    
    .btn.btn-outline-green {
        height: 45px;
        padding: 0 20px;
        font-size: 16px;
    }
    
    .btn.btn-outline-green::after {
        font-size: 16px;
    }
}

/* ========================================
   TINY MOBILE STYLES - 320px to 480px
   ======================================== */
@media (max-width: 480px) and (min-width: 321px) {
    .navbar-main {
        padding: 6px 10px;
    }
    
    .navbar-logo img {
        height: 60px;
        width: 45px;
    }
    
    .navbar-links {
        padding: 70px 15px 15px 15px;
    }
    
    .navbar-links li a {
        font-size: 16px;
        padding: 12px 0;
    }
    
    .navbar-toggle {
        width: 32px;
        height: 32px;
    }
    
    .navbar-toggle-line {
        width: 18px;
        height: 2px;
    }
    
    .btn.btn-outline-green {
        height: 40px;
        padding: 0 15px;
        font-size: 14px;
    }
    
    .btn.btn-outline-green::after {
        font-size: 14px;
    }
    
    .navbar-top {
        padding: 8px 10px 3px 10px;
        font-size: 10px;
    }
    
    .navbar-contact {
        gap: 3px;
    }
    
    .navbar-contact .contact-address,
    .navbar-contact .contact-email {
        font-size: 10px;
    }
    
    .navbar-contact .icon-location,
    .navbar-contact .icon-email {
        width: 10px;
        height: 10px;
    }
    
    .navbar-contact .divider {
        margin: 0 4px;
    }
    
    .navbar-social .social-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

/* ========================================
   ULTRA SMALL MOBILE STYLES - 320px and below
   ======================================== */
@media (max-width: 320px) {
    .navbar-main {
        padding: 5px 8px;
    }
    
    .navbar-logo img {
        height: 50px;
        width: 40px;
    }
    
    .navbar-links {
        padding: 60px 12px 12px 12px;
    }
    
    .navbar-links li a {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .navbar-toggle {
        width: 30px;
        height: 30px;
    }
    
    .navbar-toggle-line {
        width: 16px;
        height: 2px;
    }
    
    .btn.btn-outline-green {
        height: 35px;
        padding: 0 12px;
        font-size: 12px;
    }
    
    .btn.btn-outline-green::after {
        font-size: 12px;
    }
    
    .navbar-top {
        padding: 6px 8px 2px 8px;
        font-size: 9px;
    }
    
    .navbar-contact {
        gap: 2px;
    }
    
    .navbar-contact .contact-address,
    .navbar-contact .contact-email {
        font-size: 9px;
    }
    
    .navbar-contact .icon-location,
    .navbar-contact .icon-email {
        width: 8px;
        height: 8px;
    }
    
    .navbar-contact .divider {
        margin: 0 3px;
    }
    
    .navbar-social .social-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* Mobile Menu Overlay */
@media (max-width: 900px) {
    .navbar-links::before {
     
        /* position: fixed; */
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .navbar-links.active::before {
        opacity: 1;
    }
}

/* Ensure navbar stays on top */
.navbar-wrapper {
    position: relative;
    z-index: 1000;
}

/* Smooth transitions for all navbar elements */
.navbar-links,
.navbar-toggle,
.navbar-toggle-line {
    transition: all 0.3s ease;
}
