
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    overflow-x: hidden;
}
html, body {
    overflow-x: hidden; 
    width: 100%;
}
/************************* Community Section-1 **********************/

.section-comm-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    background-color: #FCFCFC;
    z-index: 0;
    padding: 0 1rem;
    text-align: center;
}

.container-comm-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin-top: 4.5rem;
    text-align: center;
}

.container-comm-1 h1 {
    font-family: 'Syne';
    font-size: 5.3rem;
    color: #07124D;
    font-weight: lighter;
    padding: 30px 0px;
}

.container-comm-1 h1 span {
    display: inline;
}

.container-comm-1 h3 {
    color: #07124D;
    font-weight: lighter;
    font-size: 2rem;
    font-family: 'Poppins';
    letter-spacing: 0.04em;
    padding-top: 2rem;
}

.container-comm-1 p {
    font-family: 'Poppins';
    font-size: 1.2rem;
    color: #3A3A3A;
    font-weight: lighter;
    padding: 30px 0px;
    width: 70%;
}

.learn-more-button {
    display: inline-block;
    font-family: 'Oswald';
    background-color: #07124D;
    color: #FBFBFB;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    font-weight: bold;
    width: fit-content;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
    letter-spacing: 0.04em;
    margin: 3rem 0rem;
}

.container-comm-1 img {
    width: 100%;
    height: auto;
    /* margin: 3rem 0rem; */
}

.tablet-img,
.mobile-img {
    display: none;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Tablet view (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container-comm-1 h1 {
        font-size: 3.5rem;
        max-width: 90%;
        padding: 30px 0px;
    }

    .container-comm-1 h3 {
        padding-top: 1rem;
        font-size: 1.8rem;
    }

    .container-comm-1 p {
        width: 90%;
        font-size: 1rem;
        padding: 30px 0;
    }

    .desk-img {
        display: none;
    }

    .tablet-img {
        display: block;
    }
}

/* Mobile view (up to 767px) */
@media (max-width: 767px) {
    .container-comm-1 {
        margin-top: 2rem;
        text-align: center;
    }

    .container-comm-1 h1 {
        font-size: 2rem;
        padding: 20px 0px;
    }

    .container-comm-1 h3 {
        padding-top: 1rem;
        font-size: 1.5rem;
        margin: 0px;
    }

    .container-comm-1 p {
        width: 100%;
        font-size: 0.95rem;
        padding: 20px 1rem;
    }

    .learn-more-button {
        padding: 8px 16px;
        font-size: 12px;
        margin: 2rem auto;
    }

    .container-comm-1 img {
        margin: 1rem 0rem;
    }

    .desk-img,
    .tablet-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }
}



/************************* Community Section-2 **********************/

.section-comm-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    background-color: #F8F9FE;
    padding: 0 1rem;
}

.container-comm-2 {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 4.5rem 0;
    padding: 2rem 2rem;
    text-align: center;
    gap: 2rem;
}

/* Text styles */
.left-content h1 {
    font-family: 'Syne';
    font-size: 2rem;
    color: #07124D;
    font-weight: lighter;
    width: 100%;
    margin-bottom: 2rem;
}

.left-content,
.para-1,
.para-2,
.para-3,
.para-4 {
    font-family: 'Poppins';
    font-size: 1.2rem;
    font-weight: lighter;
    color: #3A3A3A;
    width: 100%;
    padding: 14px 0px;
    text-align: left;
}

/* Optional: change font for para-2, 3, 4 */
.para-2,
.para-3,
.para-4 {
    font-family: 'Syne';
    color: #07124D;
}

/* Image styles */
.tablet-img,
.mobile-img,
.desk-img {
    display: none;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.right-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile */
@media (max-width: 599px) {
    .left-content,
.para-1,
.para-2,
.para-3,
.para-4 {
   
    text-align: center;
}
   
        
    .container-comm-2 {
        padding: 0 1rem;
        flex-direction: column;
    }

    .left-content h1 {
        font-size: 1.6rem;
    }

    .mobile-img {
        display: block;
    }
}

/* Tablet */
@media (min-width: 600px) and (max-width: 1024px) {
    .container-comm-2 {
        padding: 0 2rem;
    }

    .left-content h1 {
        font-size: 1.8rem;
    }

    .tablet-img {
        display: block;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .desk-img {
        display: block;
    }
}

/************************* Community Section-3 **********************/

.section-comm-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    background-color: #FCFCFC;
    padding: 3rem 1rem;
    text-align: center;
}

.container-comm-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

.container-comm-3 h1 {
    font-family: 'Syne';
    font-size: 4rem;
    color: #07124D;
    font-weight: lighter;
    width: 90%;
    padding: 30px 0px;
}

.container-comm-3 p {
    font-family: 'Poppins';
    font-size: 1.5rem;
    color: #3A3A3A;
    font-weight: lighter;
    padding: 20px;
}

/* Optional: Basic styling for button */
.learn-more-button {
    font-family: 'Poppins';
    font-size: 1rem;
    padding: 12px 24px;
    background-color: #07124D;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

/* .learn-more-button:hover {
    background-color: #3A3A3A;
} */

/* Mobile (up to 599px) */
@media (max-width: 599px) {
    .section-comm-3 {
        padding: 0rem 0rem;
    }
    .container-comm-3 h1 {
        font-size: 2rem;
        padding: 20px 0;
    }

    .container-comm-3 p {
        font-size: 1rem;
        padding: 15px;
    }

    .learn-more-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Tablet (600px - 1024px) */
@media (min-width: 600px) and (max-width: 1024px) {
    .container-comm-3 h1 {
        font-size: 3rem;
    }

    .container-comm-3 p {
        font-size: 1.25rem;
    }

    .learn-more-button {
        font-size: 1rem;
        padding: 12px 24px;
        /* margin-left: 2rem; */
    }
}

/* Desktop (1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
    .container-comm-3 h1 {
        font-size: 3.5rem;
    }
}

.up-arrow, .whatsapp-logo {
    margin-right: 22px;
}
.floating-icons {
    gap:10px;
     right: -14px !important;
}
.floating-icons a:first-child img {
        margin-left: 1rem;
}



