@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Reset */
body,
ul,
li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

/* Top Strip */
.nav-strip {
    width: 100vw;
    height: 3rem;
    /* Increased height for social media icons */
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons img {
    height: 2rem;
    /* Icons size */
    margin: 0 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2vw;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: black;
    font-family: 'Pacifico', cursive;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.25rem;
}

.nav-links a {
    text-decoration: none;
    font-size: 1rem;
    color: black;
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    /* More curved hover effect */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    background-color: #E5E9D9;
    transform: scale(1.1);
}

.book-btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    border: 0.125rem solid black;
    border-radius: 0.9375rem;
    background-color: transparent;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.book-btn:hover {
    background-color: #FFB6C1;
    /* Light pink hover color */
    color: black;
    transform: scale(1.1) rotate(-2deg);
    /* Subtle tilt effect */
}

.book-btn:active {
    background-color: red;
    color: white;
}



/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hero */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.flex-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 40px;
    margin: 0 auto;
    max-width: 1200px;
    height: calc(86vh - 60px);
    /* Adjust for nav height */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    animation: slideIn 0.8s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-pic {
    width: 40%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-pic:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.text-content {
    flex: 1;
    padding: 10px;
    margin-left: 19vw;
    text-align: left;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.headline {
    font-family: "Playfair Display";
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    animation: glow 2s infinite;
}

@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 5px #333, 0 0 10px #999;
    }

    50% {
        text-shadow: 0 0 15px #666, 0 0 30px #bbb;
    }
}

.subtitle {
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

.paragraph {
    font-weight: 300;
    color: #666;
    line-height: 1.6;
}

/* Section 2 */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

.flex-container-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 41vw;
    position: relative;
    overflow: hidden;
    margin-top: 2vw;
    box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.2);
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    /* Make image larger than the container */
    height: 120%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    /* Center the image */
    z-index: -1;
    /* Ensure image stays behind the text */
}

.centered-text {
    font-family: 'Playfair Display', serif;
    font-size: 6vw;
    color: white;
    text-align: center;
    text-shadow: 0 0 1vw rgba(0, 0, 0, 0.5);
    animation: fadeInOut 3s ease-in-out infinite, bounce 2s ease infinite;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-1.5vw);
    }
}

/* section 3 */
.section-three {
    display: flex;
    align-items: center;
    gap: 5vw;
    padding: 5vw;
    height: 100vh;
    /* Full viewport height */
}

.section-three-content-left {
    flex: 1;
}

.section-three-content-left h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4vw;
    margin-bottom: 2vw;
    transform: scale(1.1);
    transition: transform 0.3s ease;
    color: #333;
}

.section-three-content-left h1:hover {
    transform: scale(1.2);
    /* Interactive hover effect */
}

.section-three-content-left p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8vw;
    line-height: 2.5vw;
    margin-bottom: 2vw;
    color: rgba(0, 0, 0, 0.8);
    /* Subtle dark tone */
}

.section-three-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3vw;
    /* Spacious grid */
}

.section-three-grid-box {
    width: 12vw;
    height: 8vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.8vw 1.5vw rgba(0, 0, 0, 0.2);
    border-radius: 1vw;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-three-grid-box:hover {
    transform: scale(1.1);
    /* Slight scale-up */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.3);
}

.section-three-grid-box div {
    font-family: 'Playfair Display', serif;
    font-size: 3vw;
    /* Larger numbers */
    display: flex;
    align-items: center;
}

.section-three-grid-box div span:first-child {
    transform: translateY(-2px);
    display: inline-block;
}

.section-three-grid-box div span:last-child {
    transform: translateY(2px);
    display: inline-block;
}

.section-three-grid-box p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5vw;
    margin-top: 0.5vw;
}

.section-three-content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-three-content-right img {
    width: 37vw;
    /* Adjusted image size */
    border-radius: 1vw;
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.section-three-content-right img:hover {
    transform: scale(1.1);
    /* Hover for image */
}

/* reviews */
.reviews {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 5vw;
    margin-top: 10vw;
}

.head-line {
    font-family: 'Playfair Display', serif;
    font-size: 3vw;
    color: #000000;
    margin-left: 25vw;
    margin-top: -8vw;
    height: 50vw;
}

.box {
    width: 25vw;
    height: 25vw;
    margin-top: 1vw;
    margin-left: 1vw;
    box-shadow: #000000;
    position: absolute;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
    border-radius: 29px;
    display: flexbox;
}

#reviewimage_1 {
    margin-top: 1vw;
    margin-left: 1vw;
}

.review-text {
    margin-top: 3vw;
    margin-left: 1vw;
}

.author-name {
    margin-top: -5vw;
    margin-left: 8vw;
    font-weight: bolder;
    position: relative;
}

.box_heading {
    margin-top: 1vw;
    margin-left: 3vw;
    font-weight: bold;
    color: red;
    font-size: 1.69vw;
}

.post1 {
    color: #414536;
    position: relative;
    top: -0.5vw;
    left: 8vw;
    font-size: 1vw;
}

/* box 2 */
.box2 {
    width: 25vw;
    height: 25vw;
    margin-top: 1vw;
    margin-left: 34vw;
    box-shadow: #000000;
    position: absolute;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
    border-radius: 29px;
    display: flexbox;
}

#reviewimage_2 {
    margin-top: 1vw;
    margin-left: 1vw;
}

.review-text2 {
    margin-top: 3vw;
    margin-left: 1vw;
}

.author-name2 {
    margin-top: -5vw;
    margin-left: 8vw;
    font-weight: bolder;
    position: relative;
}

.box_heading2 {
    margin-top: 1vw;
    margin-left: 3vw;
    font-weight: bold;
    color: red;
    font-size: 1.69vw;
}

.post2 {
    color: #414536;
    position: relative;
    top: -0.5vw;
    left: 8vw;
    font-size: 1vw;
}

/* box3 */
.box3 {
    width: 26vw;
    height: 25vw;
    margin-top: 1vw;
    margin-left: 65vw;
    box-shadow: #000000;
    position: absolute;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
    border-radius: 29px;
    display: flexbox;
}

#reviewimage_3 {
    margin-top: 1vw;
    margin-left: 1vw;
}

.review-text3 {
    margin-top: 3vw;
    margin-left: 1vw;
}

.author-name3 {
    margin-top: -5vw;
    margin-left: 8vw;
    font-weight: bolder;
    position: relative;
}

.box_heading3 {
    margin-top: 1vw;
    margin-left: 3vw;
    font-weight: bold;
    color: red;
    font-size: 1.69vw;
}

.post3 {
    color: #414536;
    position: relative;
    top: -0.5vw;
    left: 8vw;
    font-size: 1vw;
}

/* footer */
footer {
    background-color: #303030;
    /* Dark grey background */
    color: white;
    /* White text */
    padding: 20px;
}

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

.footer-column {
    margin-bottom: 20px;
}

.footer-column h3 {
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
    /* Add transition for hover effect */
}

.footer-column a:hover {
    text-decoration: underline;
    transform: scale(1.05);
    /* Scale up on hover */
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    margin-right: 10px;
    margin-top: -4vw;
}

.footer-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.footer-social img {
    width: 8vw;
    height: 8vw;
    transition: transform 0.3s ease;
}

.footer-social img:hover {
    transform: scale(1.2);
    /* Scale up on hover */
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid white;
    padding-top: 10px;
    margin-top: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    text-decoration: none;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    /* Add transition for hover effect */
}

.social-icons img:hover {
    transform: scale(1.2);
    /* Scale up on hover */
}




/* .navbar */

/* Hamburger Icon Styles */
.hamburger-icon {
    display: none;
    /* Hidden by default */
    font-size: 2rem;
    cursor: pointer;
    color: black;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger-icon {
        display: block;
        /* Show hamburger icon on small screens */
    }

    .nav-links {
        display: none;
        /* Hide nav links by default */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 10;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
        /* Show nav links when active class is added */
    }

    .book-btn {
        margin-left: auto;
        /* Push button to the right */
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
        /* Reduce logo size for very small screens */
    }

    .book-btn {
        font-size: 0.875rem;
        /* Reduce button font size */
        padding: 0.5rem 1rem;
        /* Adjust button padding */
    }

}

@media (max-width: 826px) {
    .logo {
        font-size: 1.25rem;
        font-weight: bold;
        color: black;
        font-family: 'Pacifico', cursive;
    }

}




@media (max-width: 826px) {
    .logo {
        font-size: 1.75rem;
        font-weight: bold;
        color: black;
        font-family: 'Pacifico', cursive;
        margin-left: -39vw;
    }
}

@media (max-width: 826px) {
    .logo {
        margin-left: -28vw;
    }
}

@media (max-width: 826px) {
    .logo {
        margin-left: 0vw;
    }
}

@media (max-width: 706px) {
    .logo {
        margin-left: -41vw;
    }
}

@media (max-width: 792px) {
    .logo {
        font-size: 1.25rem;
    }
}

@media (max-width: 792px) {
    .book-btn {
        font-size: 0.75rem;
        padding: 0.6rem 1.5rem;
        border: 0.125rem solid black;
        border-radius: 0.9375rem;
        background-color: transparent;
        color: black;
        cursor: pointer;
        margin-left: 0vw;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
}

@media (max-width: 792px) {
    .logo {
        margin-left: 1vw;
        font-size: 1.75rem;

    }
}

@media (max-width: 720px) {
    .logo {
        margin-left: -43vw;
    }
}


@media (max-width: 686px) {
    .logo {
        margin-left: -39vw;
    }
}

@media (max-width: 582px) {
    .logo {
        margin-left: -31vw;
    }
}


@media (max-width: 800px) {
    .logo {
        font-size: 1.25rem;
    }
}

@media (max-width: 608px) {
    .logo {
        font-size: 1.75rem;
    }
}

@media (max-width: 608px) {
    .logo {
        font-size: 1.75rem;
    }
}

@media (max-width: 766px) {
    .logo {
        font-size: 3.5vw;
        margin-left: -48vw;
    }
}




@media (max-width: 404px) {
.logo{
    font-size: 6vw;
    margin-left: -14vw;
}
}

@media (max-width: 606px){
    .logo{
        font-size: 4vw;
        margin-left: -36vw;
    }
}

@media (max-width: 626px){
    .logo{
        font-size: 4.5vw;
        margin-right: -15vw;
    }
}

@media (max-width: 464px){     
.logo{
    font-size: 5.5vw;
}
}

@media (max-width: 400px){ 
.logo{
    margin-right: -21vw;
}
}

@media (max-width: 340px){ 
.logo{
    font-size: 6.25vw;
    margin-left: -24vw;
}
}

/* Navbar */















































/* Large Screens (Above 1200px, no change needed, uses your original layout) */

/* Medium-Large Screens (992px - 1200px) */
@media (max-width: 1200px) {
    .flex-container {
        padding: 30px;
        max-width: 90%; /* Slightly reduce max-width */
    }

    .main-pic {
        width: 45%; /* Slightly larger image */
    }

    .text-content {
        margin-left: 10vw; /* Adjust margin */
    }

    .headline {
        font-size: 2.2rem;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .flex-container {
        flex-direction: column; /* Stack image and text */
        padding: 25px;
        height: auto; /* Allow natural height */
    }

    .main-pic {
        width: 100%; /* Full width */
        max-height: none;
        margin-bottom: 20px; /* Space below image */
    }

    .text-content {
        margin-left: 0; /* Remove margin */
    }

    .headline {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .paragraph {
        font-size: 0.95rem;
    }
}

/* Small Tablets and Large Phones (576px - 767px) */
@media (max-width: 767px) {
    #hamburger-icon {
        display: block; /* Show hamburger */
    }

    #nav-links {
        display: none; /* Hide menu by default */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
    }

    #nav-links.active {
        display: flex; /* Show when active */
    }

    .flex-container {
        flex-direction: column;
        padding: 20px;
        height: auto;
    }

    .main-pic {
        width: 100%;
        max-height: none;
        margin-bottom: 15px;
    }

    .text-content {
        margin-left: 0;
    }

    .headline {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .paragraph {
        font-size: 0.85rem;
    }
}

/* Medium Phones (481px - 575px) */
@media (max-width: 575px) {
    .flex-container {
        padding: 15px;
    }

    .main-pic {
        margin-bottom: 10px;
    }

    .headline {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    .paragraph {
        font-size: 0.8rem;
    }
}

/* Small Phones (360px - 480px) */
@media (max-width: 480px) {
    .flex-container {
        padding: 10px;
    }

    .main-pic {
        margin-bottom: 10px;
    }

    .headline {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .paragraph {
        font-size: 0.75rem;
    }
}

/* Extra Small Phones (Below 360px) */
@media (max-width: 359px) {
    .flex-container {
        padding: 8px;
    }

    .main-pic {
        margin-bottom: 8px;
    }

    .headline {
        font-size: 1.3rem;
    }

    .subtitle {
        font-size: 0.75rem;
    }

    .paragraph {
        font-size: 0.7rem;
    }
}

@media (max-width: 454px){
    .main-pic{
        width: 75vw;
        margin-left: 8vw;
        margin-top: 13vw;
    }

}


@media (max-width: 602px){
    .main-pic{
        width: 75vw;
        margin-left: 8vw;
        margin-top: 13vw;
    }

}

@media (max-width: 596px){
    .main-pic{
        width: 75vw;
        margin-left: 8vw;
        margin-top: 13vw;
    }

}


@media (max-width: 606px){
    .main-pic{
        width: 75vw;
        margin-left: 8vw;
        margin-top: 13vw;
    }

}

@media (max-width: 608px){
    .main-pic{
        width: 75vw;
        margin-left: 8vw;
        margin-top: 13vw;
    }

}

@media (max-width: 622px){
    .main-pic{
        width: 75vw;
        margin-left: 8vw;
        margin-top: 13vw;
    }

}

@media (max-width: 666px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 672px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 720px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 736px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 758px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 764px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 782px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 796px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 810px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}


@media (max-width: 834px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 864px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 888px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 904px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 924px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 946px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 966px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 984px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}

@media (max-width: 986px){
    .main-pic{
        width: 63vw;
        margin-left: 13vw;
        margin-top: 13vw;
    }

}



































/* Medium screens (tablets and small laptops) */
@media (max-width: 768px) {
    .flex-container-2 {
        height: 60vw;
    }

    .centered-text {
        font-size: 8vw;
    }

    .background-image {
        width: 140%;
        height: 140%;
    }
}

/* Small screens (phones) */
@media (max-width: 480px) {
    .flex-container-2 {
        height: 75vw;
    }

    .centered-text {
        font-size: 10vw;
    }

    .background-image {
        width: 160%;
        height: 160%;
    }
}
























@media (max-width: 1024px) {
    .section-three {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 8vw 5vw;
    }

    .section-three-content-right {
        order: -1; /* Image goes first */
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 5vw;
    }

    .section-three-content-right img {
        width: 55vw;
        max-width: 80vw;
    }

    .section-three-content-left {
        width: 100%;
        text-align: center;
    }

    .section-three-content-left h1 {
        font-size: 5vw;
        margin-bottom: 3vw;
    }

    .section-three-content-left p {
        font-size: 2vw;
        line-height: 3vw;
        margin-bottom: 4vw;
    }

    .section-three-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Keep 2 per row */
        gap: 4vw;
        justify-content: center;
    }

    .section-three-grid-box {
        width: 35vw;
        height: 17vw;
    }

    .section-three-grid-box div {
        font-size: 3.5vw;
    }

    .section-three-grid-box p {
        font-size: 2vw;
    }

    .section-three-stats-grid:nth-of-type(2) {
        margin-top: 5vw;
    }
}

@media (max-width: 600px) {
    .section-three {
        padding: 10vw 5vw;
        height: auto;
    }

    .section-three-content-right {
        order: -1;
    }

    .section-three-content-right img {
        width: 70vw;
    }

    .section-three-content-left h1 {
        font-size: 6vw;
    }

    .section-three-content-left p {
        font-size: 2.5vw;
        line-height: 3.5vw;
    }

    .section-three-stats-grid {
        grid-template-columns: repeat(2, 1fr); /* Still 2 per row */
        gap: 5vw;
    }

    .section-three-grid-box {
        width: 42vw;
        height: 20vw;
    }

    .section-three-grid-box div {
        font-size: 4.2vw;
    }

    .section-three-grid-box p {
        font-size: 2.8vw;
    }

    .section-three-stats-grid:nth-of-type(2) {
        margin-top: 6vw;
    }
}


@media (max-width: 1024px) {
    .section-three-stats-grid {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .section-three-stats-grid {
        justify-content: center;
    }
}

































@media (max-width: 1024px) {
    .section-three-stats-grid {
        justify-content: center;
    }

    .section-three-grid-box div {
        font-size: 4vw; /* Bigger numbers */
    }

    .section-three-grid-box p {
        font-size: 2.5vw; /* Bigger labels */
    }
}

@media (max-width: 600px) {
    .section-three-stats-grid {
        justify-content: center;
    }

    .section-three-grid-box div {
        font-size: 5vw;
    }

    .section-three-grid-box p {
        font-size: 3.2vw;
    }
}
@media (max-width: 630px){
    .footer-social img {
        width: 20vw;
        height: 15vw;
        transition: transform 0.3s ease;
    }
}

@media (max-width: 1091px){
.footer-social img {
    width: 12vw;
    height: 11vw;
    transition: transform 0.3s ease;
}
}
@media (max-width: 715px){
.footer-social img {
    width: 19vw;
    height: 16vw;
    transition: transform 0.3s ease;
}
}
@media (max-width: 467px){
.footer-social img {
    width: 30vw;
    height: 27vw;
    transition: transform 0.3s ease;
}
}






































/* humburger bar */
/* Base styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  /* Hide everything by default on desktop */
  #hm-container {
    display: none;
  }
  
  /* Show only on mobile */
  @media (max-width: 768px) {
    #hm-container {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 10000;
      display: block;
    }
  
    #hm-button {
      position: fixed;
      top: 20px;
      left: 20px;
      width: 30px;
      height: 24px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 10001;
      padding: 0;
    }
  
    .hm-bar {
      position: absolute;
      width: 100%;
      height: 3px;
      background: #888; /* Gray bars */
      left: 0;
      transition: all 0.3s ease;
    }
  
    #hm-menu {
      position: fixed;
      top: 0;
      left: -250px;
      width: 250px;
      height: 100%;
      background: #333;
      transition: left 0.4s ease;
      z-index: 9999;
      box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    }
  
    .hm-links {
      padding-top: 80px;
    }
  
    .hm-link {
      display: block;
      color: #fff;
      text-decoration: none;
      font-size: 18px;
      padding: 15px 30px;
      opacity: 0;
      transform: translateX(-20px);
      transition: all 0.3s ease;
    }
  
    .hm-link:hover {
      background: #444;
    }
  }

  @media (max-width: 674px){
  .logo{
    margin-left: 10vw;
    margin-top: -1vw;
    font-size: 4vw;
}
  }

  @media (max-width: 767px){
  .logo{
    
    margin-left: 11vw;
    font-size: 4vw;
    margin-top: -1vw;
}
  }

  @media (max-width: 767px){
  .logo{
    margin-left: 15vw;
    font-size: 5vw;
}
  }

  @media (max-width: 767px){
  .logo{
    font-size: 4vw;
    margin-left: 12vw;
}
  }

  @media (max-width: 519px){
  .logo{
    font-size: 5vw;
}
  }

  @media (max-width: 395px){
  .logo{
    margin-left: 18vw;
    font-size: 6vw;
}
  }



/* Humburger bar   */