* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

@font-face {
    font-family: "rufina-stencil";
    src: url("../fonts/Rufina-Stencil-Regular.ttf") format("woff2"),
        url("../fonts/Rufina-Stencil-Regular.ttf") format("woff");
    font-style: normal;
}

:root {
    --main-font: 'rufina-stencil', sans-serif;
    --second-font: Arial, sans-serif
}

body {
    background-color: #000;
    overflow-x: hidden;
}

.navbar {
    background-color: #000;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.navbar .navbarmain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 80px;
    height: 70px;
}

.navbar .navbarmain .navbarright {
    display: flex;
    gap: 30px;
}

.navbar .navbarmain .navbarright ul {
    display: flex;
    gap: 30px;
}

.navbar .navbarmain .navbarright ul li {
    list-style: none;
}

.navbar .navbarmain .navbarright ul li a {
    text-decoration: none;
    color: #fff;
    font-family: var(--second-font);
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}
.navbar .navbarmain .navbarright ul li a.active {
    color: #CC8460;
    font-weight: 550;
}
.navbar .navbarmain .navbarright ul li a:hover {
    color: #CC8460;
}

.navbar .navbarmain .navbarright .navbutton a {
    background-color: #CC8460;
    text-decoration: none;
    color: #fff;
    border-radius: 25px;
    font-family: var(--second-font);
    padding: 8px 20px;
    transition: all 0.3s ease-in-out;
}

.navbar .navbarmain .navbarright .navbutton a:hover {
    background-color: #DFA789;
}

.bars {
    display: none;
}

/* Mobile sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -200%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: #0A6F6E;
    color: #fff;
    z-index: 9999;
    transition: right 0.4s ease;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar ul {
    list-style: none;
    padding: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-btn a {
    background-color: #CC8460;
    text-decoration: none;
    color: #fff;
    border-radius: 25px;
    font-family: var(--second-font);
    padding: 8px 20px;
    transition: all 0.3s ease-in-out;

}

.sidebar-btn {
    margin-top: 30px;
}

.mobile-sidebar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-family: var(--second-font);
    font-size: 16px;
}


/* Close button */
.sidebar-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 22px;
    cursor: pointer;
}

/* Overlay */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9998;
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* herosection  */
.herosection {
    min-height: calc(100vh - 70px);
    /* iOS-safe viewport */
    background-color: #0f6f6a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px 50px 0 0;
    z-index: 9;
    position: sticky;
    margin-top: 70px;
    top: 70px;
    overflow: hidden;
}

.herosectionmain {
    position: relative;
    width: 100%;
    height: calc(80vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
   
    padding: 30px;
}

/* background circle image */
.herosectionmain::before {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: rotateCircle 25s linear infinite;

}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* text on top */
.hero-title,
.hero-subtitle {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: center;

    transition: opacity 0.3s ease, transform 0.3s ease;
}

.herotext {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.herotext.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.hero-title {
    font-size: 60px;
    font-family: var(--main-font);
    color: #CC8460;
    font-weight: 500;
}

.hero-subtitle {
    margin-top: 10px;
    font-family: var(--second-font);
    font-size: 25px;
    line-height: normal;
}

.commited-section {

    position: sticky;
    top: 70px;
    z-index: 10;
}

.commited-section .commited {
    margin-top: -2%;
    width: 100%;
    height: 100vh;
    z-index: 10;
    position: relative;
    background-position: center;
    background-size: cover;
    border-radius: 50px 50px 0 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.commited-section .commited::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    /* overlay color */
    z-index: 1;
    border-radius: 50px 50px 0 0;
}

.commited-section .commited>* {
    position: relative;
    z-index: 2;
}

.commited-section .commited .commited-content {
    color: #fff;
    font-family: var(--main-font);
    font-size: 55px;
    text-align: center;

    transition: all 0.5s ease;

}

.aboutus-section {
    background-color: #DFA789;
    position: sticky;
    top: 70px;
    width: 100%;
    height: 100vh;
    z-index: 11;
    border-radius: 50px 50px 0 0;
    margin-top: -7%;
    display: flex;
    align-items: center;
}

.aboutus-section .aboutus .aboutus-content {
    padding-left: 50px;
}

.aboutus-section .aboutus .aboutus-content h1 {
    font-size: 20px;
    font-family: var(--second-font);
    font-weight: 500;
    margin-bottom: 20px;
}

.aboutus-section .aboutus .aboutus-content p {
    font-family: var(--main-font);
    font-size: 40px;
    font-weight: 500;
}

.whoweare-section {
    background-color: #F5D2C1;
    position: sticky;
    top: 70px;
    width: 100%;
    height: 100vh;
    z-index: 12;
    border-radius: 50px 50px 0 0;
    margin-top: -7%;
    display: flex;
    align-items: center;
}

.whoweare-section .aboutus .whoweare-content {
    padding-left: 50px;
     
}

.whoweare-section .aboutus .whoweare-content h1 {
    font-size: 20px;
    font-family: var(--second-font);
    font-weight: 500;
    margin-bottom: 20px;
}

.whoweare-section .aboutus .whoweare-content p {
    font-family: var(--main-font);
    font-size: 40px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 15px;
}

.whoweare-section .aboutus .whoweare-content .whoweareextrap {
    font-size: 18px;
    font-family: var(--second-font);
    font-weight: 500;
}

.about-sarah {
    background-color: #A5D0CF;
    position: relative;
    top: 70px;
    width: 100%;
    height: 100vh;
    z-index: 12;
    border-radius: 50px 50px 0 0;
    margin-top: -7%;
    display: flex;
    align-items: center;
}

.about-sarah .aboutus .about-sarah-content {
    padding: 0 50px;
    display: flex;
    gap: 50px;
}

.about-sarah .aboutus .about-sarah-content .leftside .img {
    width: 100%;

}

.about-sarah .aboutus .about-sarah-content .img img {
    width: 100%;
    border-radius: 50px;
}

.about-sarah .aboutus .about-sarah-content .leftside .info {
    margin-top: 20px;
}

.about-sarah .aboutus .about-sarah-content .leftside h2,
.about-sarah .aboutus .about-sarah-content .leftside p {
    font-family: var(--second-font);
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
}

.about-sarah .aboutus .about-sarah-content .rightside h1 {
    font-size: 20px;
    font-family: var(--second-font);
    font-weight: 500;
    margin-bottom: 30px;
}

.about-sarah .aboutus .about-sarah-content .rightside p {
    font-family: var(--main-font);
    font-size: 40px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 15px;
}

.about-sarah .aboutus .about-sarah-content .rightside .whoweareextrap {
    font-size: 18px;
    font-family: var(--second-font);
    font-weight: 500;
}

.support-project-section {
    background-color: #fff;
    position: sticky;
    top: 70px;
    width: 100%;
    height:auto;
    z-index: 12;
    padding-bottom: 50px;
   overflow: unset;
}
.support-project-section .supportproject {
    /* display: flex; */
     height: 90vh;
    /* flex-direction: column; */
    /* justify-content: center; */
    overflow: scroll;
    scrollbar-width: none;
}

.support-project-section.bg-unset {
    background-color: transparent;
}
.support-project-section .supportproject .topbarheading{
    padding: 50px 50px;
}
.support-project-section .supportproject .topbarheading h1{
    font-size: 22px;
    font-weight: 500;
    font-family: var(--second-font);
    margin-bottom: 20px;
}
.support-project-section .supportproject .topbarheading h2{
     font-family: var(--main-font);
    font-size: 40px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
}
.support-project-section .supportproject .topbarheading p{
       font-size: 18px;
    font-family: var(--second-font);
    font-weight: 500;
}
.support-project-section .supportproject .maingriddiv .card{
    background-color: #0A6F6E;
    border-radius: 50px;
    padding: 30px;
}
.support-project-section .supportproject .maingriddiv .card.bgchange{
    background-color: #CC8460;
}
.support-project-section .supportproject .maingriddiv .card .info h2{
    font-family: var(--second-font);
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-top: 22px;
}
.support-project-section .supportproject .maingriddiv .card .img img{
    width: 70px;
}
.support-project-section .supportproject .maingriddiv .card .info p{
    font-family: var(--second-font);
    font-size: 16px;
    font-weight: 500;
    color: #fff;
     margin-top: 22px;
}
.maingriddiv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 50px;
}

.maingriddiv .card:nth-child(4) {
  grid-column: 2 / 3;
}

.maingriddiv .card:nth-child(5) {
  grid-column: 3 / 4;
}
.mainlogocircle{
    position: absolute;
    bottom: 0;
    width: 40%;
    height: 100%;
    top: 60%;
    left: -12%;
}
.mainlogocircle img{
    width: 100%;
    height: 100%;
}
.our-difference-wrapper{
    position: relative;
   
}
.our-difference-section{
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50px 50px 0 0;
    z-index: 12;
}
.our-differencedivmain{
    width:100%;
      position: sticky;
    top: 70px;
    z-index: 12;
    height: 100vh;
    display: flex;
    align-items: center;
}

.our-differencediv{
    background-color: #F5D2C1;
    width: 50%;
   margin-left: 50px;
    padding: 50px 30px;
    border-radius: 50px;
    position: relative;
   
    z-index: 12;
    text-align: center;
}
.our-differencediv .content h1{
    font-family: var(--second-font);
    font-weight: 500;
    font-size: 25px;
    margin-bottom: 20px;
}
.our-differencediv .content h2{
    font-family: var(--main-font);
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 500;
}
.our-differencediv .content p{
    font-size: 18px;
    font-family: var(--second-font);
    font-weight: 500;
    margin-top: 20px;
}
.ourpartnerdiv{
      position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
   background-color: #000;
    border-radius: 50px 50px 0 0;
    z-index: 12;
    margin-top: -3%;
    color: #fff;
    display: flex;
    padding: 0 50px ;
    justify-content: center;
    flex-direction: column;
}
.ourpartnerdiv.is-sticky{
    border-radius: 0;
}
.ourpartnerdiv .partnertop h2{
   font-family: var(--second-font);
   font-size: 25px;
   font-weight: 500;
   padding-bottom: 20px;
}
.ourpartnerdiv .ourpartnermainflex{
    display: flex;
    width: 100%;
}
.ourpartnerdiv .ourpartnermainflex .left{

    width: 100%;
        display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.ourpartnerdiv .ourpartnermainflex .left .intro h2{
    font-family: var(--main-font);
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 20px;
}
.ourpartnerdiv .ourpartnermainflex .left .intro p{
      font-family: var(--second-font);
   font-size: 16px;
   font-weight: 500;
   padding-bottom: 20px;
}
.ourpartnerdiv .ourpartnermainflex .left .imgflex{
    display: flex;
    align-items: center;
    gap: 20px;
}

/* .ourpartnerdiv .ourpartnermainflex .left .imgflex .img img{width:100%} */
.ourpartnerdiv .ourpartnermainflex .right{

    width: 100%;
}
.ourpartnerdiv .ourpartnermainflex .right .together .maintitle h2{
   font-family: var(--second-font);
   font-size: 20px;
   font-weight: 600;
   padding-bottom: 15px;
} 
.ourpartnerdiv .ourpartnermainflex .right .together .maintitle p{
   font-family: var(--second-font);
   font-size: 16px;
   font-weight: 500;
   padding: 15px 0;
   border-top: 1px solid #ffffffaf;
    border-bottom: 1px solid #ffffffaf;
}
.ourpartnerdiv .ourpartnermainflex .right .together .maintitle p:nth-child(1), .ourpartnerdiv .ourpartnermainflex .right .together .maintitle p:nth-child(2), .ourpartnerdiv .ourpartnermainflex .right .together .maintitle p:nth-child(3),.ourpartnerdiv .ourpartnermainflex .right .together .maintitle p:nth-child(4){
    border-bottom: unset;
}
.Flexible{
    margin-top: 30px;
}
.ourpartnerdiv .ourpartnermainflex .right .Flexible .maintitle p.bordernone{
      border-bottom: unset !important;
}
.contactus{
      background-color: #0A6F6E;
    position: sticky;
    top: 70px;
    width: 100%;
    height: 100vh;
    z-index: 12;
    border-radius: 50px 50px 0 0;
    margin-top: -2%;
    display: flex;
    align-items: center;
    color: #fff;
    /* padding: 50px; */
}
.contactus .ourpartnermainflex{
    display: flex;
    width: 100%;
    gap: 20px;
     padding: 0 50px;
}
.contactus .ourpartnermainflex .left{

    width: 100%;
        display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contactus .ourpartnermainflex .left .intro h2{
    font-family: var(--main-font);
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 20px;
}
.contactus .ourpartnermainflex .left .intro p{
      font-family: var(--second-font);
   font-size: 16px;
   font-weight: 500;
   padding-bottom: 20px;
}
.contactus .ourpartnermainflex .left .intro h1{
   font-family: var(--second-font);
   font-size: 25px;
   font-weight: 500;
   padding-bottom: 20px;
}
.contactus .ourpartnermainflex .right{
    width: 100%;
}
.contactus .ourpartnermainflex .right .forminput {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contactus .ourpartnermainflex .right .forminput .inputrow{
    display: flex;
    width: 100%;
    gap:20px;
}
.contactus .ourpartnermainflex .right .forminput .inputrow .input{
    width:100%
}
.contactus .ourpartnermainflex .right .forminput .inputrow .input label{
    display: block;
    font-family: var(--second-font);
    padding-bottom: 10px;
}
.contactus .ourpartnermainflex .right .forminput .inputrow .input input{
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    width: 100%;
    padding: 15px 10px;
    box-sizing: border-box;
    color: #ffff;
}
.contactus .ourpartnermainflex .right .forminput .inputrow .input textarea{
    border: 1px solid #fff;
     background-color: transparent;
    width: 100%;
    padding: 15px 10px;
    box-sizing: border-box;
    color: #ffff;
      min-height: 180px;
    margin-top: 10px;
}
.contactus .ourpartnermainflex .right .forminput .inputrow .input input:focus,.contactus .ourpartnermainflex .right .forminput .inputrow .input textarea:focus{
    outline: none;
}
.contactus .ourpartnermainflex .right .forminput .button{
    width:100%
}
.contactus .ourpartnermainflex .right .forminput .button input{
    width:100%;
    padding: 10px;
    border-radius: 25px;
    border: unset;
    font-family: var(--second-font);
    font-size: 18px;
    background-color: #CC8460;
    transition: all 0.3s ease-in-out;
    color: #fff;
    cursor: pointer;
}
.contactus .ourpartnermainflex .right .forminput .button input:hover{
    background-color: #DFA789;
}
.copyright{
    background-color: #000;
    z-index: 12;
    position: relative;
    padding: 15px 80px;
    color: #fff;
    font-family: var(--second-font);
    font-size: 12px;
    text-transform: uppercase;
}
.copyright a{
    color: #fff;
    text-decoration: none;
}
/* default hidden state */
.animate-text {
    opacity: 0;
    transform: translateY(40px);
}

/* animation trigger */
.animate-text.animate {
    animation: bottomToTop 0.8s ease forwards;
}

@keyframes bottomToTop {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.scrolltop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 35px;
    height: 45px;
    background: #CC8460;
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}
.scrolltop:hover{
    background: #DFA789;
}
.scrolltop.show {
    opacity: 1;
    visibility: visible;
}
