

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#fff;
}




.navbar{
    width:100%;
    min-height:70px;

    padding:5px 120px;

    background:#fff;

    display:flex;
    align-items:center;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

    position:relative;
    z-index:999;
}



.logo{
    width:55px;
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-right:30px;
}

.logo img{
    width:100%;
    height:auto;

    display:block;

    object-fit:contain;
}



.nav-menu{
    display:flex;
    align-items:center;

    list-style:none;

    gap:15px;

    margin-left:auto;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    display:block;

    padding:15px 14px;

    color:green;

    font-size:22px;
    font-weight:600;

    text-decoration:none;

    white-space:nowrap;

    transition:.3s ease;
}

.nav-menu li a:hover{
    color:#0a8a5b;
}




.dropdown-menu{
    position:absolute;

    top:100%;
    left:0;

    width:280px;

    padding:0;
    margin:0;

    background:#fff;

    list-style:none;

    display:none;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

    border-radius:5px;

    overflow:hidden;

    z-index:9999;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    width:100%;

    padding:12px 15px;

    font-size:16px;

    white-space:normal;

    color:#333;

    border-bottom:1px solid #eee;
}

.dropdown-menu li:last-child a{
    border-bottom:none;
}

.dropdown-menu li a:hover{
    background:#f2f2f2;

    color:#0a8a5b;
}


/* Desktop dropdown hover */

.dropdown:hover .dropdown-menu{
    display:block;
}


.donate-btn-nav{
    margin-left:15px;
}

.donate-btn-nav a{
    display:flex !important;

    align-items:center;
    justify-content:center;

    gap:8px;

    padding:13px 26px !important;

    background:linear-gradient(
        135deg,
        #0b7a43,
        #0f9d58
    );

    color:#fff !important;

    border-radius:50px;

    font-size:20px !important;
    font-weight:700;

    text-decoration:none;

    white-space:nowrap;

    transition:.35s ease;

    box-shadow:
        0 8px 20px rgba(11,122,67,.30);
}

.donate-btn-nav a:hover{
    background:linear-gradient(
        135deg,
        #085b32,
        #0b7a43
    );

    color:#fff !important;

    transform:translateY(-3px);

    box-shadow:
        0 12px 25px rgba(11,122,67,.40);
}

.donate-btn-nav i{
    font-size:17px;
}




.menu-btn{
    display:none;

    margin-left:auto;

    font-size:30px;

    color:#0a8a5b;

    cursor:pointer;

    line-height:1;
}



@media (min-width:2001px){

    .navbar{
        padding:5px 150px;
        min-height:75px;
    }

    .logo{
        width:60px;
        margin-right:40px;
    }

    .nav-menu{
        gap:18px;
    }

    .nav-menu li a{
        font-size:23px;
        padding:16px 15px;
    }

    .dropdown-menu{
        width:300px;
    }

    .dropdown-menu li a{
        font-size:17px;
        padding:13px 17px;
    }

    .donate-btn-nav{
        margin-left:20px;
    }

    .donate-btn-nav a{
        font-size:20px !important;
        padding:14px 30px !important;
    }

}




@media (max-width:2000px){

    .navbar{
        padding:5px 100px;
    }

    .nav-menu{
        gap:15px;
    }

    .nav-menu li a{
        font-size:22px;
        padding:15px 13px;
    }

    .dropdown-menu{
        width:290px;
    }

    .dropdown-menu li a{
        font-size:16px;
    }

    .donate-btn-nav a{
        font-size:19px !important;
        padding:13px 27px !important;
    }

}




@media (max-width:1600px){

    .navbar{
        padding:5px 50px;
    }

    .logo{
        width:55px;
        margin-right:25px;
    }

    .nav-menu{
        gap:11px;
    }

    .nav-menu li a{
        font-size:20px;
        padding:15px 11px;
    }

    .dropdown-menu{
        width:270px;
    }

    .dropdown-menu li a{
        font-size:16px;
    }

    .donate-btn-nav{
        margin-left:10px;
    }

    .donate-btn-nav a{
        font-size:18px !important;
        padding:12px 23px !important;
    }

}



@media (max-width:1400px){

    .navbar{
        padding:5px 30px;
    }

    .logo{
        width:50px;
        margin-right:18px;
    }

    .nav-menu{
        gap:7px;
    }

    .nav-menu li a{
        font-size:19px;
        padding:14px 8px;
    }

    .dropdown-menu{
        width:260px;
    }

    .dropdown-menu li a{
        font-size:15px;
        padding:12px 15px;
    }

    .donate-btn-nav{
        margin-left:7px;
    }

    .donate-btn-nav a{
        font-size:17px !important;
        padding:12px 20px !important;
    }

}




@media (max-width:1200px){

    .navbar{
        padding:5px 20px;
    }

    .logo{
        width:48px;
        margin-right:12px;
    }

    .nav-menu{
        gap:4px;
    }

    .nav-menu li a{
        font-size:18px;
        padding:13px 6px;
    }

    .dropdown-menu{
        width:240px;
    }

    .dropdown-menu li a{
        font-size:15px;
    }

    .donate-btn-nav{
        margin-left:5px;
    }

    .donate-btn-nav a{
        font-size:16px !important;
        padding:11px 17px !important;
    }

}




@media (max-width:1100px){

    .navbar{
        min-height:65px;

        padding:10px 25px;

        justify-content:space-between;
    }


    /* Logo */

    .logo{
        width:48px;

        margin-left:0;
        margin-right:0;
    }




    .menu-btn{
        display:block;

        margin-left:auto;

        font-size:30px;
    }




    .nav-menu{
        position:absolute;

        top:100%;
        left:0;

        width:100%;

        display:none;

        flex-direction:column;

        align-items:flex-start;

        gap:0;

        margin:0;

        padding:8px 0;

        background:#fff;

        box-shadow:
            0 8px 20px rgba(0,0,0,.12);
    }

    .nav-menu.active{
        display:flex;
    }


    /* Menu Items */

    .nav-menu li{
        width:100%;
    }

    .nav-menu li a{
        width:100%;

        padding:15px 25px;

        font-size:18px;

        border-bottom:1px solid #eee;

        white-space:normal;
    }



    .dropdown-menu{
        position:static;

        width:100%;

        display:none;

        background:#f7f9f8;

        box-shadow:none;

        border-radius:0;

        overflow:visible;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }

    /* Hover disable on mobile */

    .dropdown:hover .dropdown-menu{
        display:none;
    }


    .dropdown-menu li a{
        padding:12px 25px 12px 45px;

        font-size:16px;

        border-bottom:1px solid #e5e5e5;
    }




    .donate-btn-nav{
        width:100%;

        margin:0;
    }

    .donate-btn-nav a{
        width:100%;

        justify-content:flex-start;

        padding:15px 25px !important;

        background:transparent;

        color:green !important;

        border-radius:0;

        box-shadow:none;

        font-size:18px !important;
    }

    .donate-btn-nav a:hover{
        background:#f2f2f2;

        color:#0a8a5b !important;

        transform:none;

        box-shadow:none;
    }

}



@media (max-width:768px){

    .navbar{
        min-height:58px;

        padding:8px 18px;
    }

    .logo{
        width:42px;
    }

    .menu-btn{
        font-size:28px;
    }

    .nav-menu li a{
        font-size:17px;

        padding:14px 20px;
    }

    .dropdown-menu li a{
        font-size:15px;

        padding:11px 20px 11px 40px;
    }

    .donate-btn-nav a{
        font-size:17px !important;

        padding:14px 20px !important;
    }

}




@media (max-width:480px){

    .navbar{
        min-height:55px;

        padding:7px 12px;
    }

    .logo{
        width:36px;
    }

    .menu-btn{
        font-size:25px;
    }

    .nav-menu{
        padding:5px 0;
    }

    .nav-menu li a{
        font-size:16px;

        padding:13px 16px;
    }

    .dropdown-menu li a{
        font-size:14px;

        padding:10px 15px 10px 32px;
    }

    .donate-btn-nav a{
        font-size:16px !important;

        padding:13px 16px !important;
    }

}



@media (max-width:320px){

    .navbar{
        min-height:52px;

        padding:6px 10px;
    }

    .logo{
        width:32px;
    }

    .menu-btn{
        font-size:23px;
    }

    .nav-menu li a{
        font-size:15px;

        padding:12px;
    }

    .dropdown-menu li a{
        font-size:13px;

        padding:9px 12px 9px 27px;
    }

    .donate-btn-nav a{
        font-size:15px !important;

        padding:12px !important;
    }

}





@media (max-width:1024px){

    .navbar{
        position:relative;
    }

    .logo{
        position:absolute;
        left:50%;
        transform:translateX(-50%);

        width:45px;
        margin:0;
    }

    .menu-btn{
        margin-left:auto;
        position:relative;
        z-index:2;
    }

}



















.arouse-heading-divider{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    margin-top:30px;

}


.divider-line{

    width:180px;

    height:4px;

    position:relative;

    border-radius:50px;

    background:
    linear-gradient(to right,
    transparent,
    #29d56d,
    #ffffff,
    #29d56d,
    transparent);

}



.divider-line::before{

    content:"";

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    width:8px;

    height:8px;

    border-radius:50%;

    background:#29d56d;

    box-shadow:
    28px 0 #fff,
    56px 0 #29d56d;

}

/* Right Decoration */

.divider-line:last-child::before{

    left:auto;

    right:18px;

    box-shadow:
    -28px 0 #fff,
    -56px 0 #29d56d;

}

/* Icon */

.divider-icon{

    width:68px;

    height:68px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:28px;

    background:linear-gradient(135deg,#1fc65d,#0a8d41);

    border:4px solid rgba(255,255,255,.15);

    box-shadow:
    0 0 0 8px rgba(31,198,93,.12),
    0 10px 25px rgba(0,0,0,.35);

    transition:.4s;

}

.divider-icon:hover{

    transform:rotate(15deg) scale(1.08);

    box-shadow:
    0 0 0 8px rgba(31,198,93,.18),
    0 15px 35px rgba(0,0,0,.45);

}

/*==========================
      Responsive
==========================*/

@media(max-width:768px){

.arouse-heading-section{

padding:70px 20px;

}

.arouse-heading-content h2{

font-size:34px;

letter-spacing:2px;

}

.divider-line{

width:80px;

}

.divider-icon{

width:50px;
height:50px;

font-size:20px;

}

}

@media(max-width:480px){

.arouse-heading-tag{

font-size:11px;

padding:8px 16px;

}

.arouse-heading-content h2{

font-size:28px;

}

.divider-line{

width:45px;

height:3px;

}

.divider-icon{

width:42px;
height:42px;

font-size:16px;

}

}










* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f5f5;
    font-family: Arial, sans-serif;
}

.slider {
    width: 100%;
    height: 750px;
    position: relative;
    overflow: hidden;
}

.slides {
    display: none;
    width: 100%;
    height: 100%;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fade {
    animation: fade 1s;
}

@keyframes fade {
    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}



@media(max-width:992px) {
    .slider {
        height: 450px;
    }
}

@media(max-width:768px) {
    .slider {
        height: 320px;
    }
}

@media(max-width:576px) {
    .slider {
        height: 220px;
    }
}





.arouse-success-zone{
    padding:30px 7%;
    background:linear-gradient(135deg,#f4fff7,#eef7ff,#ffffff);
    position:relative;
    overflow:hidden;
}

.arouse-success-zone::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(22,163,74,.08);
    border-radius:50%;
    top:-150px;
    left:-150px;
    filter:blur(20px);
}

.arouse-success-zone::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(13,110,253,.08);
    border-radius:50%;
    right:-120px;
    bottom:-120px;
    filter:blur(20px);
}
.arouse-success-layout{
    max-width:1350px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-areas:
        "heading heading"
        "image content";

    align-items:center;
    gap:35px 70px;

    position:relative;
    z-index:2;
}
.arouse-success-header{
    grid-area:heading;
    text-align:center;
}

.arouse-success-header h2{
    font-size:42px;
    color:#063970;
    font-weight:700;
    line-height:1;
    margin:0;
    padding:0;
}

.elite-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
  margin-top:-5px;
    padding:0;
}

.elite-icon{
    width:18px;
    height:18px;
    transform:rotate(45deg);
    margin:0;
}
.arouse-success-divider span{
    width:80px;
    height:4px;
    border-radius:30px;
    background:linear-gradient(to right,#16a34a,#0d6efd);
}

.arouse-success-divider b{
    width:22px;
    height:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#0d6efd;
    font-size:18px;

    transform:rotate(45deg);

    background:#16a34a;
    border-radius:5px;

    box-shadow:0 5px 15px rgba(13,110,253,.25);
}

.arouse-success-media{
    grid-area:image;
}

.arouse-success-media img{
    width:100%;
    height:520px;

    object-fit:cover;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    transition:.5s;
}

.arouse-success-media img:hover{
    transform:scale(1.02);
}


.arouse-success-details{
    grid-area:content;
}

.arouse-success-details p{
    color:#555;
    font-size:17px;
    line-height:1.9;

    text-align:justify;

    margin-bottom:18px;
}




.arouse-success-button{
    display:inline-block;

    margin-top:15px;

    padding:14px 34px;

    background:linear-gradient(135deg,#16a34a,#0b7d38);

    color:#fff;
    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

    box-shadow:0 10px 25px rgba(22,163,74,.30);
}

.arouse-success-button:hover{
    background:linear-gradient(135deg,#0d6efd,#063970);

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(13,110,253,.30);
}




@media(max-width:1100px){

    .arouse-success-zone{
        padding:30px 5%;
    }

    .arouse-success-layout{
        display:flex;
        flex-direction:column;
        gap:30px;
    }

 
    .arouse-success-header{
        order:1;
        width:100%;
    }


    .arouse-success-media{
        order:2;
        width:100%;
    }


    .arouse-success-details{
        order:3;
        width:100%;
    }

    .arouse-success-media img{
        height:420px;
    }

}




@media(max-width:768px){

    .arouse-success-zone{
        padding:20px 20px;
    }

    .arouse-success-header h2{
        font-size:30px;
    }

    .arouse-success-divider{
        margin-bottom:10px;
    }

    .arouse-success-divider span{
        width:60px;
    }

    .arouse-success-details p{
        text-align:justify;
        font-size:16px;
        line-height:1.8;
    }

    .arouse-success-media img{
        height:300px;
        border-radius:20px;
    }

    .arouse-success-button{
        padding:12px 28px;
    }

}







.impact-story-section{
    padding:90px 7%;
    background:linear-gradient(135deg,#f7fff9,#eef8ff);
}

.impact-story-wrapper{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:70px;
}

/* Image */

.impact-story-photo{
    flex:1;
}

.impact-story-photo img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
    transition:.5s;
}

.impact-story-photo img:hover{
    transform:scale(1.03);
}

/* Content */

.impact-story-content{
    flex:1;
}

.impact-title h2{
    font-size:40px;
    color:#083358;
    font-weight:700;
    margin-bottom:20px;
}

.impact-line{
    width:90px;
    height:4px;
    background:#16a34a;
    border-radius:30px;
    margin-bottom:30px;
}

.impact-story-content p{
    color:#555;
    font-size:17px;
    line-height:1.9;
    text-align:justify;
    margin-bottom:18px;
}

.impact-btn{
    display:inline-block;
    padding:14px 35px;
    background:#16a34a;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    transition:.4s;
}

.impact-btn:hover{
    background:#083358;
    transform:translateY(-4px);
}

/* Responsive */

@media(max-width:992px){

.impact-story-wrapper{
    flex-direction:column;
}

.impact-story-photo img{
    height:400px;
}

}

@media(max-width:768px){

.impact-story-section{
    padding:70px 20px;
}

.impact-story-photo img{
    height:300px;
}

.impact-title h2{
    font-size:30px;
}

.impact-story-content p{
    font-size:16px;
}

}









/*==================================
      ELITE SECTION TITLE
==================================*/

.elite-section-title{

    text-align:center;

    margin-bottom:60px;

}

/* Small Heading */

.elite-subtitle{

    display:inline-block;

    padding:8px 22px;

    border-radius:30px;

    background:#16a34a;

    color:#fff;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

/* Main Heading */

.elite-section-title h2{

    margin-top:18px;

    font-size:42px;

    font-weight:700;

    color:#083358;

    text-transform:uppercase;

    letter-spacing:2px;

    line-height:1.3;

}

/*======================
      Divider
=======================*/

.elite-divider{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin-top:22px;

}

/* Left & Right Line */

.elite-divider span{

    width:120px;

    height:4px;

    border-radius:50px;

    background:linear-gradient(to right,#16a34a,#0d6efd);

    position:relative;

}

.elite-divider span:first-child::before{

    content:"";

    position:absolute;

    left:-10px;

    top:50%;

    transform:translateY(-50%);

    width:10px;

    height:10px;

    border-radius:50%;

    background:#16a34a;

}

.elite-divider span:last-child::after{

    content:"";

    position:absolute;

    right:-10px;

    top:50%;

    transform:translateY(-50%);

    width:10px;

    height:10px;

    border-radius:50%;

    background:#0d6efd;

}

/* Center Diamond */

.elite-icon{

    width:22px;

    height:22px;

    background:linear-gradient(135deg,#16a34a,#0d6efd);

    transform:rotate(45deg);

    border-radius:4px;

    box-shadow:0 0 15px rgba(0,0,0,.15);

}

/*=========================
      Responsive
==========================*/

@media(max-width:768px){

.elite-section-title h2{

    font-size:30px;

}

.elite-divider span{

    width:70px;

}

.elite-icon{

    width:18px;

    height:18px;

}

}

@media(max-width:480px){

.elite-subtitle{

    font-size:12px;

    padding:7px 18px;

}

.elite-section-title h2{

    font-size:24px;

}

.elite-divider{

    gap:12px;

}

.elite-divider span{

    width:45px;

    height:3px;

}

.elite-icon{

    width:14px;

    height:14px;

}

}
















@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f8fafc;
}



.impact-section {
    position: relative;
    padding: 30px 7%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fff9, #eef8ff, #ffffff);
}



.impact-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #16a34a;
    opacity: .08;
    border-radius: 50%;
    top: -180px;
    left: -150px;
    filter: blur(30px);
}

.impact-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: #0ea5e9;
    opacity: .08;
    border-radius: 50%;
    bottom: -180px;
    right: -150px;
    filter: blur(30px);
}



.section-title {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-title span {
    color: #16a34a;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 45px;
    margin: 15px 0;
    color: #0f172a;
}

.section-title p {
    color: #64748b;
    line-height: 1.8;
}



.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}



.impact-item {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .5s;
    position: relative;
    overflow: hidden;

    opacity: 0;
}



.impact-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #16a34a, #22c55e, #0ea5e9);
}



.impact-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}



.impact-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #0ea5e9);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    transition: .5s;
}

.impact-item:hover .impact-icon {
    transform: rotate(360deg) scale(1.1);
}

/* Text */

.impact-item h3 {
    margin-bottom: 15px;
    color: #0f172a;
    font-size: 22px;
}

.impact-item p {
    color: #64748b;
    line-height: 1.8;
    font-size: 15px;
}



.left-card {
    transform: translateX(-120px);
}

.right-card {
    transform: translateX(120px);
}

.impact-item.show {
    opacity: 1;
    transform: translateX(0);
}



@media(max-width:1400px) {

    .impact-grid {
        gap: 25px;
    }

}

@media(max-width:1200px) {

    .section-title h2 {
        font-size: 40px;
    }

}

@media(max-width:992px) {

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h2 {
        font-size: 34px;
    }

}

@media(max-width:768px) {

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .impact-item {
        padding: 30px 20px;
    }

    .impact-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

}

@media(max-width:480px) {

    .impact-section {
        padding: 70px 20px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

}











* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.work-slider-section {
    padding: 30px 7%;
    background: linear-gradient(135deg, #0f172a, #111827);
    text-align: center;
    overflow: hidden;
}

.slider-title {
    font-size: 40px;
    color: #fff;
    margin-bottom: 50px;
    position: relative;
}

.slider-title::after {
    content: "";
    width: 120px;
    height: 4px;
    background: #22c55e;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    border-radius: 10px;
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scroll 18s linear infinite;
}

.slider-container:hover .slider-track,
.slider-container:active .slider-track {
    animation-play-state: paused;
}

.slide-card {
    width: 280px;
    background: #1f2937;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: 0.4s ease;
    flex-shrink: 0;
}

.slide-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.slide-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.slide-card h3 {
    color: #fff;
    font-size: 18px;
    margin: 12px;
}

.slide-card p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0 12px 15px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media(max-width:768px) {
    .slider-title {
        font-size: 28px;
    }

    .slide-card {
        width: 240px;
    }
}





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.donation-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 80px 8%;
    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg,
            #f8fffb,
            #ecfdf5,
            #f0fdfa,
            #ffffff);
}

.donation-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #22c55e20;
    border-radius: 50%;
    top: -200px;
    left: -150px;
    filter: blur(120px);
}

.donation-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: #06b6d420;
    border-radius: 50%;
    bottom: -200px;
    right: -150px;
    filter: blur(120px);
}

.donation-left {
    flex: 1;
    z-index: 2;

    opacity: 0;
    transform: translateX(-180px);
    transition: 1.2s cubic-bezier(.22, .61, .36, 1);
}

.donation-left.show {
    opacity: 1;
    transform: translateX(0);
}

.donation-badge {
    display: inline-block;
    padding: 12px 22px;
    background: #16a34a;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 25px;
}

.donation-left h1 {
    font-size: 4rem;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 20px;
}

.donation-left p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 550px;
}

.features {
    display: grid;
    gap: 15px;
}

.feature {
    color: #16a34a;
    font-size: 18px;
    font-weight: 600;
}

.impact-box {
    width: 250px;
    margin-top: 40px;
    padding: 25px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.impact-box:hover {
    transform: translateY(-10px);
}

.impact-box h2 {
    font-size: 2.5rem;
    color: #16a34a;
}

.impact-box p {
    margin-top: 5px;
}

.donation-right {
    flex: 1;
    z-index: 2;

    opacity: 0;
    transform: translateX(180px);
    transition: 1.2s cubic-bezier(.22, .61, .36, 1);
}

.donation-right.show {
    opacity: 1;
    transform: translateX(0);
}

.donation-form {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.donation-form h2 {
    color: #0f172a;
    margin-bottom: 25px;
}

.donation-form input,
.donation-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #dbe4ee;
    border-radius: 12px;
    outline: none;
}

.donation-form input:focus,
.donation-form select:focus {
    border-color: #16a34a;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.amount-buttons button {
    border: none;
    padding: 14px;
    border-radius: 12px;
    background: #f1f5f9;
    cursor: pointer;
    font-weight: 600;
    transition: .4s;
}

.amount-buttons button:hover {
    background: #16a34a;
    color: #fff;
    transform: translateY(-3px);
}

.donate-btn {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    font-weight: 600;

    background: linear-gradient(135deg,
            #16a34a,
            #22c55e);

    transition: .4s;
}

.donate-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, .35);
}

@media(max-width:991px) {

    .donation-section {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .donation-left h1 {
        font-size: 2.8rem;
    }

    .impact-box {
        margin: auto;
        margin-top: 30px;
    }
}

@media(max-width:600px) {

    .donation-section {
        padding: 60px 5%;
    }

    .donation-left h1 {
        font-size: 2.2rem;
    }

    .donation-form {
        padding: 25px;
    }

    .amount-buttons {
        grid-template-columns: 1fr;
    }
}






* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.ngo-footer {
    position: relative;

    background:
        linear-gradient(rgba(255, 255, 255, .90),
            rgba(240, 253, 244, .92)),
        url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1800&q=80');

    background-size: cover;
    background-position: center;

    overflow: hidden;
    color: #1e293b;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .15);
}

.footer-container{
    position: relative;
    z-index: 2;

    width: 95%;
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;       
    padding: 20px 0;
}

.footer-about h2 {
    font-size: 32px;
    color: #16a34a;
    margin-bottom: 20px;
}

.footer-about p {
    color: #475569;
    line-height: 1.8;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    margin-bottom: 20px;
    color: #0f172a;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #475569;
    transition: .3s;
}
.footer-links a:hover {
    color: #16a34a;
    padding-left: 8px;
}
.footer-contact p {
    margin-bottom: 12px;
    color: #475569;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    text-decoration: none;

    color: #fff;
    font-size: 20px;

    transition: .4s;
}

.facebook {
    background: #1877f2;
}

.instagram {
    background: linear-gradient(45deg,
            #f58529,
            #dd2a7b,
            #8134af,
            #515bd4);
}

.twitter {
    background: #000;
}

.whatsapp {
    background: #25d366;
}

.social-icons a:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 12px;
    font-size: 13px;
    text-align: center;
    padding: 20px;

    border-top: 1px solid rgba(0, 0, 0, .08);

    color: #64748b;

}

@media(max-width:768px) {

    .footer-container {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-about h2 {
        font-size: 28px;
    }
}





.mission-box {
    width: 100%;
    padding: 60px 8%;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
    background: radial-gradient(circle at top left, #1e3a8a, #0f172a 60%);
    box-shadow: inset 0 0 80px rgba(59, 130, 246, 0.3);
    color: #fff;
}

.mission-left,
.mission-right {
    flex: 1;
    min-width: 280px;
}

.mission-left h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.mission-left p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.mission-left ul {
    list-style: none;
    margin-bottom: 20px;
}

.mission-left ul li {
    margin: 8px 0;
}

.mission-left button {
    padding: 8px 18px;
    border: none;
    background: #22c55e;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.mission-right img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
}

@media(max-width:768px) {
    .mission-box {
        flex-direction: column;
        text-align: center;
    }
}








.about-heading {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 0px;
    padding: 40px 20px;

    background: linear-gradient(135deg,
            #0f172a 0%,
            #1e3a2f 45%,
            #14532d 100%);

    position: relative;
    overflow: hidden;
}

.about-heading::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    top: -120px;
    left: -100px;
    filter: blur(60px);
}

.about-heading::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -120px;
    right: -80px;
    filter: blur(50px);
}

.about-heading>* {
    position: relative;
    z-index: 2;
}



.about-heading h1 span {
    color: #4ade80;
    position: relative;
}

.about-heading h1 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 12px;
    background: rgba(74, 222, 128, .35);
    border-radius: 30px;
    z-index: -1;
}

.heading-line {
    width: 90px;
    height: 4px;
    margin: 18px auto;
    border-radius: 50px;
    background: linear-gradient(90deg,
            #22c55e,
            #86efac);
}

.about-heading p {
    font-size: 18px;
    color: #e2e8f0;
    line-height: 1.8;
    max-width: 650px;
    margin: auto;
}

@media (max-width:768px) {

    .about-heading {
        margin: 120px auto 40px;
        padding: 60px 20px;
    }

    .heading-line {
        width: 70px;
    }

    .about-heading p {
        font-size: 15px;
    }
}

@media (max-width:480px) {

    .about-heading {
        margin: 100px auto 30px;
        padding: 50px 15px;
    }

    .heading-line {
        width: 55px;
        height: 3px;
    }

    .about-heading p {
        font-size: 14px;
        line-height: 1.7;
    }
}

.about-heading h1 {
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.about-heading h1 span {
    color: #22c55e;
    position: relative;
}

.about-heading h1 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 12px;
    background: #bbf7d0;
    border-radius: 20px;
    z-index: -1;
}

.heading-line {
    width: 90px;
    height: 4px;
    margin: 18px auto;
    border-radius: 50px;
    background: linear-gradient(90deg,
            #16a34a,
            #22c55e);
}

.about-heading p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    max-width: 650px;
    margin: auto;
    letter-spacing: .5px;
}

@media (max-width:768px) {

    .about-heading {
        margin: 120px auto 40px;
    }

    .heading-line {
        width: 70px;
    }

    .about-heading p {
        font-size: 15px;
    }
}

@media (max-width:480px) {

    .about-heading {
        margin: 100px auto 30px;
        padding: 0 15px;
    }

    .heading-line {
        width: 55px;
        height: 3px;
    }

    .about-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

}




.events-section {
    padding: 100px 8%;
    background:
        linear-gradient(135deg,
            #eff6ff,
            #f0fdf4,
            #ffffff);
}


.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.event-box {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.event-box:hover {
    transform: translateY(-12px);
}

.event-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.event-info {
    padding: 25px;
    position: relative;
}

.event-date {
    width: 70px;
    height: 70px;
    background: #22c55e;
    color: #fff;
    border-radius: 18px;
    text-align: center;
    position: absolute;
    top: -35px;
    right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date h3 {
    margin: 0;
    font-size: 24px;
}

.event-date span {
    font-size: 12px;
}

.event-info h4 {
    margin-top: 20px;
    color: #0f172a;
    font-size: 24px;
}

.event-info p {
    color: #64748b;
    line-height: 1.8;
    margin: 15px 0;
}

.event-info a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
}



/* Mobile */

@media(max-width:768px) {

    .events-section {
        padding: 70px 5%;
    }


    .event-box img {
        height: 220px;
    }

}

/* Small Mobile */

@media(max-width:480px) {



    .event-info h4 {
        font-size: 20px;
    }

}










.gallery-section {
    padding: 80px 8%;
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Left Animation */

.left {
    animation: leftSlide 1s ease forwards;
}

@keyframes leftSlide {
    from {
        opacity: 0;
        transform: translateX(-120px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Right Animation */

.right {
    animation: rightSlide 1s ease forwards;
}

@keyframes rightSlide {
    from {
        opacity: 0;
        transform: translateX(120px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gallery-item:nth-child(1) {
    animation-delay: .2s;
}

.gallery-item:nth-child(2) {
    animation-delay: .4s;
}

.gallery-item:nth-child(3) {
    animation-delay: .6s;
}

.gallery-item:nth-child(4) {
    animation-delay: .8s;
}

.gallery-item:nth-child(5) {
    animation-delay: 1s;
}

.gallery-item:nth-child(6) {
    animation-delay: 1.2s;
}

/* Full Screen */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
}

@media(max-width:768px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 220px;
    }
}








.contact-section {
    padding: 100px 8%;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    background: linear-gradient(135deg,
            #f8fafc,
            #eff6ff,
            #f0fdf4);
}

.contact-left {
    flex: 1;
    min-width: 320px;
}

.contact-tag {
    color: #22c55e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-left h2 {
    font-size: 55px;
    color: #0f172a;
    margin: 15px 0;
    line-height: 1.1;
}

.contact-left p {
    color: #64748b;
    line-height: 1.8;
}

.contact-info {
    margin-top: 35px;
}

.info-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.info-box i {
    font-size: 24px;
}

.info-box h4 {
    margin-bottom: 5px;
    color: #0f172a;
}

.contact-right {
    flex: 1;
    min-width: 320px;
}

.contact-right form {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.input-group {
    margin-bottom: 18px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    font-size: 15px;
}

.input-group textarea {
    height: 140px;
    resize: none;
}

.contact-right button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg,
            #16a34a,
            #22c55e);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

@media(max-width:991px) {

    .contact-left h2 {
        font-size: 42px;
    }

}

@media(max-width:768px) {

    .contact-section {
        padding: 70px 5%;
    }

    .contact-left h2 {
        font-size: 34px;
    }

    .contact-right form {
        padding: 25px;
    }

}

@media(max-width:480px) {

    .contact-left h2 {
        font-size: 28px;
    }

    .info-box {
        padding: 15px;
    }

}







.education-transform {
    padding: 60px 8% 120px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    background:
        radial-gradient(circle at top left, #dcfce7 0%, #ffffff 55%);
}

.transform-image {
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-120px);
}

.main-card {
    width: 320px;
    height: 320px;
    border-radius: 35px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 25px 50px rgba(34, 197, 94, .25);
}

.main-card h2 {
    font-size: 65px;
    margin-bottom: 10px;
}

.main-card p {
    width: 70%;
    line-height: 1.6;
}

.mini-card {
    position: absolute;
    background: #fff;
    padding: 18px 25px;
    border-radius: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.card-one {
    top: 40px;
    left: 0;
}

.card-two {
    top: 120px;
    right: 0;
}

.card-three {
    bottom: 60px;
    left: 30px;
}

.transform-content span {
    color: #22c55e;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
}

.transform-content h2 {
    font-size: 58px;
    line-height: 1.1;
    margin: 20px 0;
    color: #111827;
}

.transform-content h2 span {
    color: #22c55e;
}

.transform-content p {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 35px;
}

.transform-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.number {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
}

.point h3 {
    margin-bottom: 8px;
    color: #111827;
}

.point p {
    margin: 0;
}

@media(max-width:991px) {

    .education-transform {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .transform-content {
        text-align: center;
    }

    .transform-content h2 {
        font-size: 40px;
    }

    .point {
        text-align: left;
    }

    .main-card {
        width: 260px;
        height: 260px;
    }

    .main-card h2 {
        font-size: 50px;
    }
}







@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f8f5;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.arouse-banner-section{
    position:relative;
    overflow:hidden;
    padding:10px 0 60px;
    background:
        radial-gradient(circle at top left, rgba(255,193,7,.18) 0%, transparent 30%),
        radial-gradient(circle at bottom right, rgba(255,255,255,.08) 0%, transparent 35%),
        radial-gradient(circle at center, rgba(255,255,255,.05) 0%, transparent 45%),
        linear-gradient(135deg,#0b5d36 0%,#147d47 50%,#0a4f2f 100%);
}



.arouse-shape {

    position: absolute;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    animation: float 8s infinite ease-in-out;

}

.arouse-shape-one {

    width: 350px;
    height: 350px;

    top: -150px;
    left: -120px;

}

.arouse-shape-two {

    width: 220px;
    height: 220px;

    right: -80px;
    top: 80px;

}

.arouse-shape-three {

    width: 170px;
    height: 170px;

    bottom: -70px;
    left: 65%;

}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

}
.slide-card-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.slide-card-link:hover{
    text-decoration:none;
}

.arouse-banner-content {

    position: relative;

    z-index: 5;

    text-align: center;

    max-width: 900px;

    margin: auto;

}

.arouse-banner-badge {

    display: inline-block;

    background: #FFD54F;

    color: #000;

    padding: 12px 28px;

    border-radius: 50px;

    font-weight: 600;

    margin-bottom: 25px;

}

.arouse-banner-title {

    font-size: 72px;

    color: #fff;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 10px;

}

.arouse-banner-subtitle {

    font-size: 30px;
    white-space: nowrap;
    color: #fff;

    font-weight: 600;

    margin-bottom: 20px;

}

.arouse-divider {

    width: 120px;

    height: 5px;

    background: #FFD54F;

    margin: 25px auto;

    border-radius: 30px;

}

.arouse-banner-text {

    color: #f5f5f5;

    font-size: 18px;

    line-height: 1.9;

    max-width: 850px;

    margin: auto;

}


.arouse-banner-buttons {

    margin-top: 40px;

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.arouse-primary-btn {

    background: #FFD54F;

    color: #000;

    padding: 15px 40px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: .4s;

}

.arouse-primary-btn:hover {

    background: #fff;

    transform: translateY(-5px);

}

.arouse-secondary-btn {

    border: 2px solid #fff;

    color: #fff;

    padding: 15px 40px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: .4s;

}

.arouse-secondary-btn:hover {

    background: #fff;

    color: #0b5d36;

}


.arouse-banner-stats {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-top: 60px;

}

.arouse-stat-card {

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 20px;

    text-align: center;

    padding: 30px;

    transition: .4s;

}

.arouse-stat-card:hover {

    background: #fff;

    transform: translateY(-10px);

}

.arouse-stat-card h2 {

    font-size: 42px;

    color: #FFD54F;

    margin-bottom: 10px;

}

.arouse-stat-card span {

    color: #fff;

    font-weight: 500;

}

.arouse-stat-card:hover h2 {

    color: #0b5d36;

}

.arouse-stat-card:hover span {

    color: #444;

}


@media(max-width:991px) {

    .arouse-banner-title {

        font-size: 55px;

    }

    .arouse-banner-subtitle {

        font-size: 24px;

    }

    .arouse-banner-stats {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .arouse-banner-section {

        padding: 60px 0 40px;

    }

    .arouse-banner-title {

        font-size: 42px;

    }

    .arouse-banner-subtitle {
  
        font-size: 20px;

    }

    .arouse-banner-text {

        font-size: 16px;

    }

    .arouse-banner-buttons {

        flex-direction: column;

        align-items: center;

    }

    .arouse-primary-btn,
    .arouse-secondary-btn {

        width: 220px;

        text-align: center;

    }

}

@media(max-width:576px) {

    .arouse-banner-title {

        font-size: 34px;

    }

    .arouse-banner-subtitle {

        font-size: 18px;

    }

    .arouse-banner-badge {

        font-size: 13px;

        padding: 10px 18px;

    }

    .arouse-banner-text {

        font-size: 15px;

    }

    .arouse-banner-stats {

        grid-template-columns: 1fr;

    }

    .arouse-stat-card {

        padding: 22px;

    }

}














@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/*========================*/

.arouse-focus-section {

    position: relative;
    padding: 30px 6%;
    overflow: hidden;

    background:
        linear-gradient(135deg, #061826, #0d2740, #113b55);

}

/*========================*/

.bg-circle {

    position: absolute;
    border-radius: 50%;
    filter: blur(10px);

}

.bg-circle.one {

    width: 420px;
    height: 420px;
    background: rgba(0, 255, 150, .08);
    top: -150px;
    left: -150px;

}

.bg-circle.two {

    width: 300px;
    height: 300px;
    background: rgba(0, 180, 255, .08);
    bottom: -120px;
    right: -100px;

}

.bg-circle.three {

    width: 180px;
    height: 180px;
    background: rgba(255, 180, 0, .08);
    top: 45%;
    left: 45%;

}

.arouse-container {

    position: relative;
    z-index: 2;
    max-width: 1350px;
    margin: auto;

}

/*========================*/

.arouse-focus-heading {

    text-align: center;
    margin-bottom: 55px;

}

.arouse-focus-heading span {

    color: #00d084;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;

}

.arouse-focus-heading h2 {

    color: #fff;
    margin-top: 12px;
    font-size: 42px;
    font-weight: 700;

}

/*========================*/

.arouse-focus-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;

}

/*========================*/

.arouse-focus-card {

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(15px);

    border-radius: 18px;

    padding: 22px 15px;

    text-align: center;

    transition: .35s;

    cursor: pointer;

}

.arouse-focus-card:hover {

    transform: translateY(-8px);

    background: #00b96b;

    box-shadow: 0 20px 35px rgba(0, 0, 0, .30);

}

.focus-icon {

    width: 58px;
    height: 58px;

    margin: auto;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #fff;

    color: #00a86b;

    font-size: 24px;

    margin-bottom: 14px;

    transition: .35s;

}

.arouse-focus-card:hover .focus-icon {

    background: #fff;

    transform: rotate(10deg) scale(1.08);

}

.arouse-focus-card h3 {

    color: #fff;

    font-size: 17px;

    font-weight: 600;

    line-height: 1.4;

}

/*========================*/

@media(max-width:992px) {

    .arouse-focus-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}

@media(max-width:768px) {

    .arouse-focus-section {

        padding: 30px 20px;

    }

    .arouse-focus-heading h2 {

        font-size: 32px;

    }

    .arouse-focus-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 15px;

    }

    .arouse-focus-card {

        padding: 18px 12px;

    }

}

@media(max-width:480px) {

    .arouse-focus-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .arouse-focus-card {

        padding: 16px 10px;

    }

    .focus-icon {

        width: 48px;
        height: 48px;
        font-size: 20px;

    }

    .arouse-focus-card h3 {

        font-size: 15px;

    }

}



.success-section {

    position: relative;
    padding: 30px 7%;

    background:
        linear-gradient(135deg, #f4fff7, #ffffff, #effcf5);

    overflow: hidden;

}




.success-section::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    background: #22c55e;

    opacity: .12;

    border-radius: 50%;

    top: -180px;
    left: -150px;

    filter: blur(100px);

    animation: moveCircle 8s infinite alternate;

}


.success-section::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    background: #0ea5e9;

    opacity: .10;

    border-radius: 50%;

    right: -150px;
    bottom: -150px;

    filter: blur(100px);

    animation: moveCircle 10s infinite alternate;

}



@keyframes moveCircle {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(40px);
    }

}



/* Container */

.success-section .container {

    position: relative;

    z-index: 2;

    max-width: 1300px;

    margin: auto;

}



/* Heading */

.success-heading {

    text-align: center;

    margin-bottom: 60px;

}



.success-heading span {

    display: inline-block;

    background: #16a34a;

    color: white;

    padding: 10px 30px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 2px;

}



.success-heading h2 {

    font-size: 50px;

    color: #0f172a;

    margin: 20px 0 10px;

}



.success-heading p {

    max-width: 700px;

    margin: auto;

    color: #64748b;

    font-size: 18px;

    line-height: 1.8;

}



/* Card Grid */

.success-wrapper {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

}



/* Card */

.success-card {

    position: relative;

    background: #ffffff;

    padding: 35px 25px;

    border-radius: 30px;

    text-align: center;

    overflow: hidden;

    box-shadow:

        0 15px 45px rgba(0, 0, 0, .10);

    transition: .5s;

}



.success-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    background: #dcfce7;

    border-radius: 50%;

    top: -80px;

    right: -70px;

    transition: .5s;

}



.success-card:hover::before {

    transform: scale(1.5);

}



.success-card:hover {

    transform: translateY(-15px);

    box-shadow:

        0 25px 70px rgba(22, 163, 74, .25);

}



/* Circle Image */


.success-image {

    position: relative;

    width: 190px;

    height: 190px;

    margin: 0 auto 30px;

    border-radius: 50%;

    overflow: hidden;

    border: 8px solid #eaffef;

    box-shadow:

        0 10px 35px rgba(22, 163, 74, .25);

    z-index: 2;

}



.success-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s;

}



.success-card:hover .success-image img {

    transform: scale(1.15);

}



/* Content */


.success-info {

    position: relative;

    z-index: 2;

}



.success-info h3 {

    font-size: 26px;

    color: #0b7d38;

    margin-bottom: 15px;

    line-height: 1.4;

}



.success-info p {

    color: #64748b;

    font-size: 16px;

    line-height: 1.8;

}



/* Button */


.success-info a {

    display: inline-block;

    margin-top: 20px;

    padding: 12px 30px;

    background: #16a34a;

    color: #fff;

    text-decoration: none;

    border-radius: 50px;

    font-weight: 600;

    transition: .4s;

}



.success-info a:hover {

    background: #0b7d38;

    transform: translateX(8px);

}



/*========================================
        RESPONSIVE
========================================*/


@media(max-width:1200px) {


    .success-section {

        padding: 90px 5%;

    }


    .success-wrapper {

        gap: 25px;

    }


    .success-image {

        width: 170px;

        height: 170px;

    }

}



@media(max-width:992px) {


    .success-wrapper {

        grid-template-columns: repeat(2, 1fr);

    }


    .success-heading h2 {

        font-size: 40px;

    }

}



@media(max-width:768px) {


    .success-section {

        padding: 70px 20px;

    }


    .success-wrapper {

        grid-template-columns: 1fr;

    }


    .success-heading h2 {

        font-size: 32px;

    }


    .success-heading p {

        font-size: 16px;

    }


    .success-image {

        width: 160px;

        height: 160px;

    }


    .success-info h3 {

        font-size: 22px;

    }

}



@media(max-width:480px) {


    .success-heading span {

        font-size: 12px;

        padding: 8px 20px;

    }


    .success-heading h2 {

        font-size: 28px;

    }


    .success-card {

        padding: 30px 20px;

    }


    .success-image {

        width: 140px;

        height: 140px;

    }


    .success-info a {

        padding: 10px 25px;

    }

}
.success-heading{
    text-align:center;
    margin-bottom:70px;
}

.success-heading h2{

    position:relative;
    display:inline-block;

    font-size:42px;
    font-weight:700;
    color:#0b2e59;
    text-transform:uppercase;
    letter-spacing:2px;

    padding-bottom:28px;
}


/* Center Gradient Line */

.success-heading h2::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:0;

    transform:translateX(-50%);

    width:180px;
    height:5px;

    border-radius:50px;

    background:linear-gradient(90deg,
    transparent,
    #16a34a,
    #0d6efd,
    #16a34a,
    transparent);

}


/* Left Circle */

.success-heading h2::before{

    content:"";

    position:absolute;

    left:50%;
    bottom:-10px;

    transform:translateX(-50%);

    width:22px;
    height:22px;

    background:#fff;

    border:5px solid #16a34a;

    border-radius:50%;

    box-shadow:
    0 0 0 5px #e9fff2,
    0 0 18px rgba(22,163,74,.4);

}

.partner-section{
    padding:30px 6%;
    background:linear-gradient(135deg,#edfdf3,#f8fbff,#ffffff);
    position:relative;
    overflow:hidden;
}

/* Background Decoration */

.partner-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#16a34a18;
    border-radius:50%;
    left:-180px;
    top:-180px;
    filter:blur(35px);
}

.partner-section::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#0d6efd18;
    border-radius:50%;
    right:-180px;
    bottom:-180px;
    filter:blur(35px);
}

/*==========================
      HEADING
===========================*/

.partner-heading{
    text-align:center;
    margin-bottom:60px;
    position:relative;
    z-index:10;
}

.partner-heading span{
    display:inline-block;
    background:#16a34a;
    color:#fff;
    padding:8px 24px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.partner-heading h2{
    font-size:42px;
    margin:20px 0 12px;
    color:#063970;
    font-weight:700;
}

.partner-heading p{
    width:650px;
    max-width:100%;
    margin:auto;
    color:#666;
    line-height:28px;
}

/*==========================
         GRID
===========================*/

.partner-wrapper{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    position:relative;
    z-index:10;
}

/*==========================
       PREMIUM CARD
===========================*/

.partner-box{

    position:relative;

    height:180px;

    background:rgba(255,255,255,.96);

    border-radius:22px;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:12px;

    overflow:hidden;

    transition:.45s;

    border:2px solid transparent;

    background:
    linear-gradient(#fff,#fff) padding-box,

    linear-gradient(135deg,
    #16a34a,
    #49c96f,
    #2196f3,
    #16a34a) border-box;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}

/* Shine Effect */

.partner-box::before{

    content:"";

    position:absolute;

    width:80px;
    height:220%;

    background:rgba(255,255,255,.35);

    transform:rotate(25deg);

    top:-60%;

    left:-120px;

    transition:.8s;

}

.partner-box:hover::before{

    left:220px;

}


.partner-box::after{

    content:"";

    position:absolute;

    width:130px;
    height:130px;

    border-radius:50%;

    background:rgba(22,163,74,.08);

    right:-45px;
    top:-45px;

}


.partner-box:hover{

    transform:translateY(-12px);

    box-shadow:
    0 22px 45px rgba(0,0,0,.16);

}



.partner-box img{

    width:100%;
    height:135px;

    object-fit:contain;

    position:relative;

    z-index:5;

    transition:.4s;

 

}

.partner-box:hover img{

    transform:scale(1.12);

    filter:grayscale(0);

}



@media(max-width:1200px){

.partner-wrapper{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.partner-wrapper{

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.partner-heading h2{

font-size:30px;

}

.partner-box{

height:170px;

}

.partner-box img{

height:125px;

}

}

@media(max-width:500px){

.partner-wrapper{

grid-template-columns:1fr;

}

.partner-heading h2{

font-size:26px;

}

.partner-box{

height:160px;

}

.partner-box img{

height:120px;

}

}





/* ==========================
   ABOUT TITLE PREMIUM DARK
========================== */

.about-title-section{

    width:100%;

    padding:50px 20px;

    background:
    linear-gradient(
        120deg,
        #001f16,
        #003d2b,
        #001a12
    );

    position:relative;

    overflow:hidden;

}



/* Top curved shape */

.about-title-section::before{

    content:"";

    position:absolute;

    width:600px;
    height:200px;

    background:rgba(34,197,94,0.12);

    border-radius:50%;

    top:-120px;
    left:50%;

    transform:translateX(-50%);

}



/* Bottom wave */

.about-title-section::after{

    content:"";

    position:absolute;

    width:120%;
    height:120px;

    background:#ffffff;

    border-radius:50% 50% 0 0;

    bottom:-100px;

    left:-10%;

    opacity:.04;

}




.about-title-wrapper{

    max-width:1200px;

    margin:auto;

    text-align:center;

    position:relative;

    z-index:2;

}



/* Badge */


.about-title-badge{

    display:inline-block;

    padding:8px 30px;

    color:#bbf7d0;

    border:1px solid rgba(134,239,172,.4);

    background:rgba(255,255,255,.08);

    border-radius:30px;

    font-size:16px;

    letter-spacing:1px;

}



/* Main Heading */


.about-title-heading{

    margin:20px 0;

    font-size:48px;

    color:#ffffff;

    font-weight:800;

    letter-spacing:3px;

}



/* Divider */


.about-title-divider{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

}



.about-divider-line{

    width:140px;

    height:2px;

    background:

    linear-gradient(
    90deg,
    transparent,
    #4ade80,
    transparent
    );

}



.about-divider-icon{

    width:55px;

    height:55px;

    background:#16a34a;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:22px;

    box-shadow:

    0 0 25px rgba(34,197,94,.5);

}




/* Large Screen 2560 */

@media(min-width:2000px){

.about-title-section{

    padding:80px 20px;

}


.about-title-heading{

    font-size:75px;

}


.about-divider-line{

    width:250px;

}


.about-title-badge{

    font-size:22px;

}

}




/* Tablet */

@media(max-width:768px){

.about-title-section{

    padding:40px 15px;

}


.about-title-heading{

    font-size:35px;

}


.about-divider-line{

    width:70px;

}


.about-divider-icon{

    width:45px;

    height:45px;

}

}





@media(max-width:480px){

.about-title-section{

    padding:30px 10px;

}


.about-title-badge{

    font-size:13px;

    padding:7px 18px;

}


.about-title-heading{

    font-size:26px;

}


.about-divider-line{

    width:35px;

}


.about-title-divider{

    gap:10px;

}

}




/* 320px */

@media(max-width:320px){

.about-title-heading{

    font-size:22px;

}


.about-divider-line{

    width:25px;

}

}
.social-icons .linkedin {
    background: #0a66c2;
    color: #fff;
}

.social-icons .linkedin:hover {
    background: #084d91;
    color: #fff;
}