.menu_wrapper {
    display: flex;
    min-height:60px;
    
    justify-content: space-between; /* Pushes brand left and menu right */
    align-items: center; /* Vertically center all items */
    /*position: relative;  For proper positioning */
    width: 100%;
}

.thinkraw-brand {
    font-size: 24px; /* Adjust size as needed */
    font-weight: bold;
    color: #000; /* Change color to match your design */
    margin-right: 30px; /* Space between brand and menu */
    margin-left: 0px;
    white-space: nowrap; /* Prevent text wrapping */
}
.think{
	color: #7fad43;
	font-size: 34px;
}
.raw{
	color: #4663ac;
	font-size: 34px;
}
/* For responsive behavior */
@media (max-width: 1240px) {
    .thinkraw-brand {
        .menu_wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .logo-new {
        display: none;
    }

    .top-row-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center; /* <-- this fixes your issue */
        width: 100%;
        padding: 10px 15px;
    }

    .thinkraw-brand {
        font-size: 24px;
        white-space: nowrap;
        margin: 0;
    }

    .responsive-menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
    }

    nav#menu {
        display: none;
        width: 100%;
    }

    nav#menu.active {
        display: block;
    }

    nav#menu ul.menu {
        flex-direction: column;
        padding-left: 0;
        margin: 0;
    }

    nav#menu li {
        width: 100%;
        padding: 10px 15px;
    }
    }
    .logo-new{
    	display: none;
    }
}


/*code to draw green circle*/
/* Circle styling */
/* Parent container for all quick_fact elements */
.quick_facts_container {
    display: flex;
    justify-content: space-around; /* Distribute space evenly */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px; /* Space between items */
    max-width: 1400px; /* Adjust as needed */
    margin: 0 auto; /* Center the container */
}

/* Individual circle items */
.quick_fact {
    flex: 1; /* Grow to fill available space */
    min-width: 300px; /* Minimum width before wrapping */
}

.circle-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    height: 100%; /* Ensure equal height */
}

.number-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #7fad43;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.circle-data {
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    text-align: center; /* Center multi-line text */
}

/* Responsive adjustments */
@media (max-width: 1240px) {
    .number-circle {
        width: 180px;
        height: 180px;
    }
    .circle-data {
        font-size: 28px;
    }
}

/* Mobile stacking */
@media (max-width: 768px) {
    .quick_facts_container {
        flex-direction: column;
        align-items: center;
    }
    .quick_fact {
        width: 100%;
        max-width: 300px;
    }
}

/*Slider text*/
.slider-left-text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* Higher than slider content */
    width: auto;
    padding: 50px 40px 50px 20px;
    /*background: rgba(70, 99, 172, 0.80);*/
    background: rgba(127, 173, 67, 0.80);
}

.text-content {
    font-family: 'Comfortaa', sans-serif;
    color: white;
    text-align: left;
    white-space: normal;
}

.text-content {
    font-size: 30px;
    font-weight: 700;
    line-height: 32px;
}

.text-content span {
    font-size: 22px;
    font-weight: 500;
    display: block;
    margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 1240px) {
    .text-content {
        font-size: 30px;
        line-height: 35px;
    }
    .text-content span {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .slider-left-text {
        top: auto;
        bottom: 0;
        width: 100%;
        transform: none;
        padding: 20px;
        text-align: center;
    }
}


@media only screen and (min-width: 480px) and (max-width: 767px) {
    .section_wrapper, .container, .four.columns {
        width: auto !important;
        padding-left: 10px !important;
        padding-right: 28px !important;
    }
}
@media only screen and (max-width: 479px)  {
    .section_wrapper, .container, .four.columns {
        width: auto !important;
        padding-left: 10px !important;
        padding-right: 28px !important;
    }
}

@media only screen and (max-width: 767px) {
    .section_wrapper, .container, .four.columns {
        width: auto !important;
        /* Use your mobile padding settings */
        padding-left: 10px !important;
        padding-right: 28px !important;
    }
}


/*Menu correction for small screen*/

/* === Base styles === */
.menu_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 60px;
    width: 100%;
}

/* Ensure the brand shows on desktop */
.thinkraw-brand {
    display: block;
}

/* Hide large logo on mobile */
@media (max-width: 768px) {
    .logo-new {
        display: none;
    }

    /* Stack elements vertically except .thinkraw-brand and hamburger */
    .menu_wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    /* Row with brand and toggle */
    .top-row-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 15px;
    }

    /* Add this helper class via JS or wrap manually in HTML */
    .thinkraw-brand,
    .responsive-menu-toggle {
        display: inline-block;
    }

    nav#menu {
        display: none;
        width: 100%;
    }

    nav#menu.active {
        display: block;
    }

    nav#menu ul.menu {
        flex-direction: column;
        padding-left: 0;
    }

    nav#menu li {
        width: 100%;
        padding: 10px 15px;
    }

    .responsive-menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
        margin-left: auto;
    }
}

