/*==============================================
/////////      hero-aside             /////////
===============================================*/

@media (min-width: 1281px) {


    .hero-aside div {
        position: absolute;
        top: 20%;
        right: 40px;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: auto;
    }

    .hero-aside a {
        padding: 10px;
        background-color: var(--color-bg, #ffffff);
        border-radius: 5px;
    }


}


@media (min-width: 1024px) and (max-width: 1580px) {

    .hero-aside div {
        position: absolute;
        top: 20%;
        right: 0px;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: auto;
    }


    .hero-aside a {
        padding: 6px;
        background-color: var(--color-bg, #ffffff);
        border-radius: 5px;
    }
}



@media (min-width: 500px) and (max-width: 1023px) {

    .header {
        z-index: 99 !important;
    }

    .hd-box {
        gap: 50px;
        margin: 10%;
    }

    .Hero {
        flex-direction: column;
        text-align: start;
        margin-top: 20%;
    }

}

@media (min-width: 300px) and (max-width: 600px) {

    .header {
        z-index: 99 !important;
    }

    .Hero {

        padding: 0 18px;
        display: flex;
        justify-content: space-between;
        position: relative;
        z-index: 0;
        text-align: start;
    }
}

.header {
    z-index: 2;
}















/*==============================================
/////////       Hero sectio           /////////
===============================================*/

.hero-section {
    background-color: var(--hero-bg, );
    position: relative;
    overflow: hidden;
    padding-bottom: 150px;
}

.btns {
    background-color: #f4f5f7c9;
    color: #000;
}


.Hero {
    max-width: 1500px;
    margin: 10% auto 0;
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hero-L {
    flex: 1;
    animation: fadeInUp 1s ease;
}

.hero-L h1 {
    color: var(--bg-color);
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-L b {
    display: inline-block;
    margin: 20px -10px;
    padding: 8px 16px;
    border-radius: 20px;
}

.hero-L p {
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-L span {
    text-decoration: overline;
    font-size: larger;
}


.stat-label {
    color: var(--text-color, #000);
}



.hero-R {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.h-box {
    height: 150px;
    display: grid;
    place-items: center;
    font-size: 50px;
    background: rgba(255, 255, 255, .1);
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
}

.hd-box {
    max-width: 1500px;
    margin: 110px auto 0;
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.stat {
    min-width: 200px;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    color: var(--bg-color);
    box-shadow: 0 0 2px var(--bg-color);
    box-shadow: 0px 8px 0px 10px;

}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
}



.wave-wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
    pointer-events: none;
    z-index: 0;
}

.wasf {
    width: 100%;
    height: 130px;
}


.parallax>use {
    animation: waveMove 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-duration: 18s
}

.parallax>use:nth-child(2) {
    animation-duration: 22s
}

.parallax>use:nth-child(3) {
    animation-duration: 26s
}

.parallax>use:nth-child(4) {
    animation-duration: 30s
}

@keyframes waveMove {
    from {
        transform: translateX(-90px)
    }

    to {
        transform: translateX(85px)
    }
}

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

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

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

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

@keyframes float {

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

    50% {
        transform: translateY(-15px)
    }
}

@media screen and (max-width:1279px) {

    .hero-L h1 {
        font-size: 3rem;
    }

    .stat {
        min-width: 150px;
        text-align: center;
        padding: 5px;
    }

}

@media(max-width:992px) {
    .Hero {
        flex-direction: column;
        text-align: center;
        margin-top: 20%;
    }

    .hero-R {
        display: none
    }
}

@media(max-width:768px) {



    .hero-section {
        padding-bottom: 170px
    }

    .hero-L h1 {
        font-size: 2.8rem
    }

    .stat {
        min-width: 45%
    }
}




@media (max-width: 768px) {

    .hd-box {
        gap: 30px;
        margin-top: 70px;
    }

    .stat {
        min-width: 140px;
        padding: 12px 10px;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 6px;
    }




}

@media (max-width: 480px) {

    .Hero {
        margin: 27% auto 0 !important;
        text-align: start;
        padding: 0 15px;

    }

    .hero-L h1 {
        font-size: 1.5rem
    }



    .hero-actions {
        display: flex;

        a {
            margin: 3px;
        }
    }

    .stat {
        min-width: 100%
    }

    .wasf {
        height: 30vh;
    }

    .stat {
        min-width: 120px;
        padding: 10px 8px;
    }

    .stat-number {
        font-size: 1.7rem;
    }


}

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.h-box {
    height: 150px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    background-color: #0A66C2;
    border: 1px solid;
    color: #f9f9f9;
}

.h-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.h-box:hover::before {
    transform: rotate(45deg) translate(10%, 10%);
    top: 10%;
}



.h-box:nth-child(1) {
    background: #bb1be7e8;
}

.h-box:nth-child(2) {
    background: rgba(0, 140, 255, 0.718);
}

.h-box:nth-child(3) {
    background: rgba(137, 43, 226, 0.783);
}

.h-box:nth-child(4) {
    background: rgba(0, 255, 170, 0.607);
}

.h-box:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background-color: #1DA1F2;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 0px 10px;
    box-shadow: 0 0 2px var(--bg-color);

}

.stat {
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
}














/*==============================================
/////////       About section          /////////
===============================================*/

.haproven-about {
    margin-top: 0px;
    padding: 20px;
    padding-top: 150px;
}

.about-l {
    max-width: 1000px;
    margin-bottom: 30px;
}

.about-senter {
    display: flex;
    align-items: center;
    gap: 30px;
}

.focus-section {
    flex: 1;
    padding: 25px;
    border-radius: 12px;
}

.focus-section ul {
    margin-top: 10px;
    padding-left: 20px;
}

.focus-section li {
    padding: 7px 0;
}

.video-section {
    flex: 1;
}

.video-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1050px) {
    .about-senter {
        gap: 20px;
    }
}

@media (max-width: 750px) {
    .about-senter {
        flex-direction: column;
    }

    .focus-section {
        text-align: center;
    }
}

@media (max-width: 450px) {

    .focus-section {
        text-align: start;
    }
}















/*==============================================
/////////       Featured Projects        /////////
===============================================*/
.featured-projects {
    margin: auto;
    text-align: center;
}


.featured-list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: start;
}

.featured-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 28px 0;
    border-bottom: 1px solid var(--rjba);
    transition: .35s ease;
}

.featured-item:hover {
    transform: translateX(12px);
}

.featured-number {
    position: relative;
    min-width: 80px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #8b5cf6;
}

.featured-number::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8b5cf6;
    box-shadow: 0 0 15px #8b5cf6;
}

.featured-content {
    flex: 1;
}

.featured-content h3 {
    font-size: 1.45rem;
    margin-bottom: 8px;
    transition: .3s;
}

.featured-content p {
    line-height: 1.7;
    max-width: 700px;
}

.featured-item:hover h3 {
    color: #8b5cf6;
}

@media (max-width:768px) {


    .featured-list {
        grid-template-columns: 1fr;
    }

    .featured-number {
        position: unset;

    }

    .featured-list {
        margin-top: 40px;
    }

    .featured-item {
        gap: 18px;
        align-items: flex-start;
        padding: 22px 0;
    }

    .featured-number {
        min-width: 55px;
        font-size: 1.8rem;
    }

    .featured-number::before {
        left: -12px;
        width: 6px;
        height: 6px;
    }

    .featured-content h3 {
        font-size: 1.15rem;
    }

    .featured-content p {
        font-size: .9rem;
    }
}


















/*==============================================
/////////       What We Do            /////////
===============================================*/



.what-we-do {
    padding: 60px 1%;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 51px;
}

.section-header p {
    line-height: 1.8;
    margin-top: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    border-radius: 20px;
    padding: 22px;
    transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--box-shadow, 0 1px 2px rgba(0, 0, 0, 0.911));


}


.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    box-shadow: var(--box-shadow-hover);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--box-shadow, 0 10px 25px rgba(56, 189, 248, 0.3));
}


.feature-card h3 {
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-card p {
    line-height: 1.7;

}

.decorative-dots {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dot:nth-child(1) {
    top: 20%;
    left: 15%;
}

.dot:nth-child(2) {
    top: 40%;
    right: 20%;
}

.dot:nth-child(3) {
    bottom: 30%;
    left: 25%;
}

.dot:nth-child(4) {
    bottom: 50%;
    right: 30%;
}

.dot:nth-child(5) {
    top: 60%;
    left: 40%;
}

.stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    padding: 40px;
    border-radius: 20px;
}

.stat-item {
    text-align: center;
}

.Team-p {
    margin-bottom: 50px;
}


@media (max-width: 1024px) {
    .features-grid {
        gap: 30px;
        display: grid;
    }

    .feature-card {
        padding: 35px;
    }

    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .what-we-do {
        padding: 40px 25px;
        margin-top: 20px;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .section-header p {
        font-size: 1.15rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card h3 {
        font-size: 1.6rem;
    }

    .feature-card p {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .what-we-do {
        padding: 30px 20px;
    }

    .section-header h2 {
        font-size: 2.3rem;
    }

    .section-header p {
        font-size: 1.05rem;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.4rem;
    }

    .stats-banner {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width:380px) {
    .section-header {
        text-align: center;
        max-width: 1000px;
    }

}

















/*==============================================
/////////       How We Work            /////////
===============================================*/



.tools {
    padding: 60px 20px;
}

.tools-top {
    max-width: 800px;
    margin-bottom: 40px;
}

.tools-top h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.tools-top p {
    line-height: 1.6;
}

.tools-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tool-item {
    padding: 20px;
    border-radius: 10px;
    background: #f9fafb;
    color: #000000;
    transition: 0.3s ease;
    box-shadow:
        0 2px 0px rgba(0, 0, 0, 0.911);
}

.tool-item:hover {
    transform: var(--transform);
}

.tool-number {
    display: inline-block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #4f46e5;
}

.tool-item h4 {
    margin: 6px 0;
}

.tool-item i {
    color: #666;
    font-style: normal;
    font-size: 14px;
}

@media (max-width: 720px) {
    .tools {
        padding: 40px 16px;
    }

    .tools-top h2 {
        font-size: 26px;
    }
}





/*==============================================
/////////       Our Services           /////////
===============================================*/


#services-section {
    padding: 10px;
    width: 100%;

}

.services-section {
    padding: 100px 2%;
    max-width: 1800px;
    margin: auto;
}

.services-tital {
    margin-bottom: 20px;
    text-align: center;
    max-width: 1000px;
    margin: auto;
}




.services-main-box {
    margin: auto;
    overflow-x: scroll;
    height: 400px;
    scrollbar-width: none;
}


.first-B {
    display: flex;

}

.services-boxs {
    width: 200px;


}

.services-main-box2 {
    width: max-content;
    height: 4px;
    margin: 80px 0;
    display: flex;
    background-color: #ff5252;
    background-color: var(--text-color, #000);


}

.services-boxs {
    height: 93px;
    width: 4px;
    background-color: var(--text-color, #000);
    margin: 0 175px;

}



.services-boxs div {
    position: relative;
    top: 80px;
    left: -5px;
    width: 250px;
}

.services-boxs .Services-ti {
    position: relative;
    width: 39px;
    top: -50px;
    left: -10px;
    border-radius: 15px;
}

















/*==============================================
/////////       Upcoming Events        /////////
===============================================*/

.upcoming-events {
    margin: auto;
}

.events-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    height: 350px;
    grid-auto-flow: column;
    overflow-x: auto;
    scrollbar-width: none;
    align-items: center;
    padding: 0 20px;

}


.event-card {
    padding: 25px;
    border: 1px solid var(--rjba);
    border-radius: 18px;
    transition: .3s ease;
    min-width: 300px;
    height: 300px;
    overflow-x: auto;
    scrollbar-width: none;

}

.event-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, .4);
}

.event-date {
    display: inline-block;
    margin-bottom: 15px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: .85rem;
    font-weight: 600;
    border: 1px solid;
}

.event-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.event-card p {
    line-height: 1.7;
}

@media(max-width:900px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}











/*==============================================
/////////      Haproven Ecosystem        /////////
===============================================*/

.ecosystem-section {
    padding: 10px 0%;
}

.ecosystem-header {
    text-align: center;
    margin: auto;
    max-width: 1000px;
    margin: auto;
}

.ecosystem-network {
    margin-top: 70px;
}

.ecosystem-network svg {
    width: 100%;
    height: auto;
}


.ecosystem-network line {
    stroke: #2563eb;
    stroke-width: 3;
    stroke-dasharray: 10;
    animation: wireMove 12s linear infinite;
}


.main-node {
    fill: #2563eb;
    filter: drop-shadow(0 0 20px rgba(37, 99, 235, .4));
}

.main-title,
.main-sub,
.child-title {
    text-anchor: middle;
}

.main-title {
    fill: white;
    font-size: 28px;
    font-weight: 700;
}

.main-sub {
    fill: rgba(255, 255, 255, .8);
    font-size: 14px;
}


.child-node {
    fill: white;
    stroke: #2563eb;
    stroke-width: 4;
    transition: .4s;
}

.child-title {
    fill: #0f172a;
    font-size: 15px;
    font-weight: 600;

    user-select: none;
    pointer-events: none;
}


.child-node:hover {
    fill: #2563eb;
    transform: scale(1.08);
    transform-origin: center;
}


@keyframes wireMove {
    from {
        stroke-dashoffset: 100;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.main-node {
    animation: pulseCenter 4s infinite;
}

@keyframes pulseCenter {

    0%,
    100% {
        transform: scale(0.99);
    }

    50% {
        transform: scale(1.01);
    }
}

.child-node {
    animation: floatNode 5s ease-in-out infinite;
}

@keyframes floatNode {

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

    50% {
        transform: translateY(-8px);
    }
}







/*==============================================
/////////       Founder & CEO          /////////
===============================================*/

.founder {
    padding: 80px 20px;
    display: flex;
    justify-content: center;

}

.founder-card {
    max-width: 900px;
    width: 100%;
    display: flex;
    gap: 30px;
    padding: 25px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    border: 1px solid;

    background-color: #fff;
    color: #000;
}

.founder-img img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid;
}

.founder-content {
    flex: 1;
}

.tag {
    display: inline-block;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid;
}

h2 {
    margin: 5px 0;
    font-size: 26px;
}

p {
    line-height: 1.6;
}

.highlights {
    margin-top: 15px;
    display: grid;
    gap: 8px;
    font-size: 14px;
}


blockquote {
    margin-top: 15px;
    padding-left: 12px;
    border-left: 3px solid;
    font-style: italic;
}

.mini-stats {
    width: 100%;
    font-size: 13px;
    color: #444;
    display: grid;
    gap: 6px;
    padding: 10px;
    background: #f9f9ff;
    border-radius: 12px;
    border: 1px solid #eee;
}

.links {
    margin-top: 15px;
}

.links a {
    margin-right: 12px;
    text-decoration: none;
    font-size: 14px;
}

.links a:hover {
    color: rgb(32, 32, 32);
}

@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
    }

    .founder-img img {
        width: 100%;
        height: auto;
    }
}





/*==============================================
/////////   Our Mission & Vision        /////////
===============================================*/


.mission-vision {
    padding: 80px 20px;
}

.mv-header {
    text-align: center;
    margin: 0 auto 60px;
}

.mv-header h2 {
    margin-bottom: 12px;
}

.mv-header p {
    line-height: 1.7;
}

.mv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;

}

.mv-card {
    padding: 35px;
    border-radius: 20px;
    border: 1px solid;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    box-shadow: 0 4px 2px;
}

.mv-card h3 {
    margin-bottom: 15px;
}

.mv-card p {
    line-height: 1.8;
}

.mv-card:hover {
    transform: translateY(-8px);
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
}

@media (max-width: 768px) {
    .mission-vision {
        padding: 70px 6%;
    }
}






/*==============================================
///////// Frequently Asked Questions   /////////
===============================================*/



.faqs-hero {
    background-attachment: fixed;
    position: relative;
}


.faq-section {
    max-width: 1500px;
    margin: auto;
    padding: 60px 20px;
}

.faq-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.faq-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #777;
    color: var(--a-color);
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);

}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    padding: 0 18px;
    color: #555;
    color: var(--text);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 15px;
}













/*==============================================
/////////   Community Impact          /////////
===============================================*/



.community-stats {
    margin: auto;
    text-align: center;
}

.stats-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.stat-box {
    padding: 35px 20px;
    border: 1px solid var(--rjba, rgba(255, 255, 255, .08));
    border-radius: 20px;
    transition: .3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, .4);
}

.stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #8b5cf6;
    font-weight: 800;
}

.stat-box p {
    color: #94a3b8;
    font-size: 1rem;
}

@media (max-width:768px) {

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        overflow: auto;
        height: 200px;
    }
}

@media (max-width:500px) {

    .stats-grid {
        grid-template-columns: 1fr;
        overflow: auto;
        height: 200px;
    }
}





















/*==============================================
/////////  Join Haproven Community      /////////
===============================================*/




.btnss {
    background-color: rgb(0 255 255 / 20%);
    color: #000;
    color: var(--text-color);
    border-radius: 15px;

}

.cta-buttons .btnf {
    background-color: rgb(0 140 255 / 20%);

}

.cta-buttons .btn3 {
    background-color: rgb(138 43 226 / 20%);

}

.cta-section {
    padding: 80px 20px;
}

.cta-box {
    max-width: 900px;
    margin: auto;
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 700px;
    margin: auto auto 35px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}




@media (max-width: 768px) {

    .cta-section {
        padding: 60px 15px;
    }

    .cta-box {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        margin: 3px;
    }

}












/*==============================================
/////////       wave                 /////////
===============================================*/

.wave {
    bottom: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

.wave use {
    animation: waveMove 18s linear infinite;
}

.wave use:nth-child(2) {
    animation-duration: 22s
}

.wave use:nth-child(3) {
    animation-duration: 26s
}

@keyframes waveMove {
    from {
        transform: translateX(-80px);
    }

    to {
        transform: translateX(80px);
    }
}




















/*==============================================
/////////              END            /////////
===============================================*/



/*==============================================
/////////              END            /////////
===============================================*/