/* ------------------------------------navigation bar -------------------------*/

.top-bar {
    background-color: #1f5e3b; /* dark green */
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}
/* left side */
.top-left{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.top-bar .top-left span {
    margin-right: 20px;
}


.top-item{
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-item i{
    font-size: 14px;
}
.top-item a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.top-item a:hover{
    text-decoration: underline;
    color: #7f998f;
}
.top-right{
    display: flex;
    align-items: center;
    gap: 12px;
}
.top-right a {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.top-right a:hover {
    color: #7f998f;
} 

/* small media screen*/
@media (max-width: 768) {
    .top-bar .container{
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .top-left{
        flex-direction: column;
        align-items: flex-start;
    }
    .top-right{
        align-items: flex-end;
    }
}
  
  body {
            font-family: 'Roboto', sans-serif;
            color: #333;
        }
        .navbar-brand img {
            height: 50px;
        }
        .nav-link {
            color: #333 !important;
            font-weight: 500;
        }
        .nav-link:hover {
            color: #2E8B57 !important; /* green hover like screenshot */
        }
        .btn-get-touch {
            background-color: #2E8B57;
            color: white;
            font-weight: 500;
        }
        .btn-get-touch:hover {
            background-color: #246b44;
        }


/*------------------------------------------HERO SECTION-------------------------------------------*/
/* HERO SECTION */
.hero-section {
    position: relative;
}

/* EACH SLIDE */
.hero-slide {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.75),
        rgba(31,94,59,0.55),
        rgba(31,94,59,0.15)
    );

    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
}

/* SUBTITLE */
.hero-subtitle {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* HEADING */
.hero-content h1 {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
}

/* HIGHLIGHT */
.hero-content h1 span {
    color: #4CAF50;
}

/* PARAGRAPH */
.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
}

/* BUTTON GROUP */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.hero-btn {
    background: #2E8B57;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.4s;
    border: none;
}

.hero-btn:hover {
    background: #246b44;
    color: #fff;
    transform: translateY(-4px);
}

/* OUTLINE BUTTON */
.hero-btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.4s;
}

.hero-btn-outline:hover {
    background: #fff;
    color: #1f5e3b;
    transform: translateY(-4px);
}

/* ARROWS */
.carousel-control-prev,
.carousel-control-next {
    width: 7%;
    z-index: 5;
}

.custom-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);

    backdrop-filter: blur(5px);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    color: #fff;

    transition: 0.4s;
}

.custom-arrow:hover {
    background: #2E8B57;
    transform: scale(1.1);
}

/* INDICATORS */
.custom-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    margin: 0 6px !important;
    background-color: #fff !important;
}

.custom-indicators .active {
    background-color: #2E8B57 !important;
}

/* SCROLL DOWN */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-down span {
    width: 28px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 20px;
    display: block;
    position: relative;
}

.scroll-down span::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;

    position: absolute;
    top: 8px;
    left: 50%;

    transform: translateX(-50%);

    animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
    0% {
        opacity: 0;
        top: 8px;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 22px;
    }
}

/* MOBILE */
@media (max-width: 991px) {

    .hero-slide {
        height: 85vh;
        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* SMALL MOBILE */
@media (max-width: 576px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .custom-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}


/*--------------------------impact-------------------------------------------*/
.stats-section {
    padding: 80px 0;
    background: #f9f9f9;
}

/* CARD */
.stat-box {
    background: #fff;
    padding: 35px 20px;
    border-radius: 15px;
    transition: 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* HOVER EFFECT */
.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ICON */
.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(46, 139, 87, 0.1);
    color: #2E8B57;
    margin: 0 auto 20px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    transition: 0.4s;
}

/* ICON ANIMATION */
.stat-box:hover .stat-icon {
    background: #2E8B57;
    color: #fff;
    transform: rotateY(360deg);
}

/* COUNTER */
.stat-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2E8B57;
    margin-bottom: 10px;
}

/* TEXT */
.stat-box p {
    font-size: 15px;
    color: #666;
    margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }

    .stat-box {
        padding: 25px 15px;
    }

    .stat-box h2 {
        font-size: 32px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}


/* ========================== ABOUT SECTION ============================ */

.about-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* IMAGE WRAPPER */
.about-image-wrapper {
    position: relative;
}

/* MAIN IMAGE */
.about-main-image {
    border-radius: 25px;
    width: 100%;
    height: 650px;
    object-fit: cover;

    box-shadow: 0 20px 60px rgba(0,0,0,0.1);

    transition: 0.5s ease;
}

/* IMAGE HOVER */
.about-image-wrapper:hover .about-main-image {
    transform: scale(1.03);
}

/* FLOATING BADGE */
.about-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;

    background: #fff;

    border-radius: 20px;

    padding: 20px 25px;

    display: flex;
    align-items: center;
    gap: 15px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.1);

    animation: floatBadge 3s ease-in-out infinite;
}

/* BADGE ICON */
.badge-icon {
    width: 60px;
    height: 60px;

    background: rgba(46,139,87,0.1);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #2E8B57;

    font-size: 26px;
}

/* BADGE TEXT */
.badge-text h4 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1f5e3b;
}

.badge-text p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* FLOAT ANIMATION */
@keyframes floatBadge {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* CONTENT */
.about-content {
    padding-left: 30px;
}

/* SUBTITLE */
.section-subtitle {
    display: inline-block;

    background: rgba(46,139,87,0.1);

    color: #2E8B57;

    padding: 8px 18px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 20px;

    letter-spacing: 1px;
    text-transform: uppercase;
}

/* HEADING */
.about-content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1f1f1f;

    margin-bottom: 25px;
}

/* TEXT */
.about-text {
    color: #666;
    font-size: 17px;
    line-height: 1.9;

    margin-bottom: 20px;
}

/* FEATURES */
.about-features {
    margin-top: 30px;
}

/* FEATURE ITEM */
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    font-size: 16px;
    color: #333;
}

/* ICON */
.feature-item i {
    color: #2E8B57;
    font-size: 20px;
}

/* BUTTON GROUP */
.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;

    margin-top: 35px;
}

/* PRIMARY BUTTON */
.about-btn {
    background: #2E8B57;
    color: #fff;

    padding: 14px 32px;

    border-radius: 6px;

    font-weight: 600;

    transition: 0.4s;
}

.about-btn:hover {
    background: #246b44;
    color: #fff;

    transform: translateY(-4px);
}

/* OUTLINE BUTTON */
.about-btn-outline {
    border: 2px solid #2E8B57;

    color: #2E8B57;

    padding: 14px 32px;

    border-radius: 6px;

    font-weight: 600;

    transition: 0.4s;
}

.about-btn-outline:hover {
    background: #2E8B57;
    color: #fff;

    transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .about-section {
        padding: 90px 0;
    }

    .about-content {
        padding-left: 0;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-main-image {
        height: auto;
    }

    .about-badge {
        right: 20px;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .about-content h2 {
        font-size: 30px;
    }

    .about-text {
        font-size: 15px;
    }

    .about-buttons {
        flex-direction: column;
    }

    .about-btn,
    .about-btn-outline {
        width: 100%;
        text-align: center;
    }

    .about-badge {
        position: relative;
        right: auto;
        bottom: auto;

        margin-top: -40px;
        width: fit-content;
    }
}


/* ================================ PROGRAMS SECTION =========================== */


.programs-section {
    padding: 120px 0;
    background: #f8faf9;
    position: relative;
    overflow: hidden;
}

/* SECTION HEADER */
.programs-section .section-header {
    position: relative;
    width: 100%;
    margin: 0 auto 0;
    padding: 60px 50px;
    border-radius: 35px;
    overflow: hidden;
    z-index: 1;
    background:linear-gradient(135deg,#0f2f21, #174c35,#1f5e3b);
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

/* PREMIUM GLOW */
.programs-section .section-header::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    background:
        radial-gradient(
            circle,
            rgba(125,223,157,0.22),
            transparent 70%
        );

    top: -180px;
    right: -120px;

    filter: blur(50px);

    z-index: -1;
}

/* SECOND GLOW */
.programs-section .section-header::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.06),
            transparent 70%
        );

    bottom: -150px;
    left: -100px;

    filter: blur(60px);

    z-index: -1;
}

/* SUBTITLE */
.programs-section .section-subtitle {
    display: inline-block;

    padding: 12px 22px;

    border-radius: 50px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(10px);

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 22px;
}

/* HEADING */
.programs-section .section-header h2 {
    font-size: 52px;
    font-weight: 800;

    line-height: 1.2;

    color: #fff;

    margin-bottom: 22px;
}

/* PARAGRAPH */
.programs-section .section-header p {
    color: rgba(255,255,255,0.78);

    font-size: 17px;

    line-height: 1.9;

    max-width: 760px;

    margin: auto;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .programs-section .section-header {
        padding: 50px 35px;
    }

    .programs-section .section-header h2 {
        font-size: 40px;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .programs-section .section-header {
        padding: 40px 25px;

        border-radius: 28px;
    }

    .programs-section .section-header h2 {
        font-size: 30px;
    }

    .programs-section .section-header p {
        font-size: 15px;
    }

    .programs-section .section-subtitle {
        font-size: 12px;
        padding: 10px 18px;
    }
}

/*  PROGRAM CARD  */

.program-card {
    position: relative;

    background: #fff;

    border-radius: 25px;

    overflow: hidden;

    transition: 0.5s ease;

    height: 100%;

    z-index: 1;

    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* PREMIUM GLOW BORDER */
.program-card::before {
    content: "";

    position: absolute;

    inset: -2px;

    border-radius: 28px;

    background: linear-gradient(
        135deg,
        #2E8B57,
        #7ddf9d,
        #2E8B57,
        #9ff0bb,
        #2E8B57
    );

    background-size: 300% 300%;

    z-index: -2;

    opacity: 0;

    transition: 0.5s ease;

    animation: premiumGlow 6s linear infinite;
}

/* INNER WHITE LAYER */
.program-card::after {
    content: "";

    position: absolute;

    inset: 2px;

    background: #fff;

    border-radius: 23px;

    z-index: -1;
}

/* CARD HOVER */
.program-card:hover {
    transform: translateY(-15px);

    box-shadow:
        0 20px 60px rgba(46,139,87,0.18),
        0 10px 30px rgba(0,0,0,0.08);
}

/* SHOW BORDER */
.program-card:hover::before {
    opacity: 1;
}

/* ANIMATION */
@keyframes premiumGlow {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/*  IMAGE  */

.program-image {
    position: relative;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 280px;

    object-fit: cover;

    transition: 0.7s ease;
}

/* IMAGE HOVER */
.program-card:hover .program-image img {
    transform: scale(1.08);
}

/* DARK OVERLAY */
.program-image::before {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.35),
        transparent
    );

    z-index: 1;
}

/*  ICON  */

.program-icon {
    position: absolute;

    bottom: -30px;
    left: 30px;

    width: 75px;
    height: 75px;

    background: linear-gradient(
        135deg,
        #2E8B57,
        #43b97f
    );

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 32px;

    z-index: 2;

    box-shadow:
        0 10px 25px rgba(46,139,87,0.35);

    transition: 0.6s ease;
}

/* ICON HOVER */
.program-card:hover .program-icon {
    transform: rotateY(360deg) scale(1.08);
}

/*  CONTENT  */

.program-content {
    position: relative;

    padding: 60px 30px 30px;

    transition: 0.4s ease;
}

/* TITLE */
.program-content h3 {
    font-size: 24px;
    font-weight: 700;

    margin-bottom: 18px;

    color: #1f1f1f;

    transition: 0.4s;
}

/* TITLE HOVER */
.program-card:hover .program-content h3 {
    color: #2E8B57;
}

/* TEXT */
.program-content p {
    color: #666;

    line-height: 1.8;

    margin-bottom: 25px;

    transition: 0.4s;
}

/* TEXT HOVER */
.program-card:hover .program-content p {
    color: #444;
}

/* LINK  */

.program-link {
    color: #2E8B57;

    font-weight: 600;

    text-decoration: none;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    transition: 0.4s;
}

/* LINK ICON */
.program-link i {
    transition: 0.4s;
}

/* LINK HOVER */
.program-card:hover .program-link {
    color: #1f5e3b;
}

/* ARROW MOVE */
.program-card:hover .program-link i {
    transform: translateX(6px);
}

/*  RESPONSIVE  */

@media (max-width: 991px) {

    .programs-section {
        padding: 90px 0;
    }

    .section-header h2 {
        font-size: 38px;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 15px;
    }

    .program-content {
        padding: 55px 22px 25px;
    }

    .program-content h3 {
        font-size: 22px;
    }

    .program-icon {
        width: 65px;
        height: 65px;

        font-size: 28px;
    }
}


/* ================= WHY SECTION ================= */

.why-section {
    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #0b2419 0%,
            #123927 35%,
            #1f5e3b 100%
        );

    position: relative;

    overflow: hidden;

    z-index: 1;
}

/* PREMIUM TOP GLOW */
.why-section::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    background:
        radial-gradient(
            circle,
            rgba(76,175,80,0.22),
            transparent 70%
        );

    top: -180px;
    right: -180px;

    filter: blur(60px);

    z-index: -1;
}

/* PREMIUM BOTTOM GLOW */
.why-section::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.06),
            transparent 70%
        );

    bottom: -150px;
    left: -150px;

    filter: blur(60px);

    z-index: -1;
}

/* ================= SECTION HEADER ================= */

.why-section .section-header {
    position: relative;
    z-index: 2;
}

.why-section .section-subtitle {
    background: rgba(255,255,255,0.1);

    color: #fff;

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);
}

.why-section .section-header h2 {
    color: #fff;
}

.why-section .section-header p {
    color: rgba(255,255,255,0.75);
}

/* ================= IMAGE WRAPPER ================= */

.why-image-wrapper {
    position: relative;
}

/* MAIN IMAGE */
.why-main-image {
    width: 100%;
    height: 650px;

    object-fit: cover;

    border-radius: 32px;

    box-shadow:
        0 25px 70px rgba(0,0,0,0.25);

    transition: 0.7s ease;
}

/* IMAGE HOVER */
.why-image-wrapper:hover .why-main-image {
    transform: scale(1.03);
}

/* IMAGE OVERLAY */
.why-image-wrapper::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 32px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.35),
            transparent
        );

    z-index: 1;
}

/* ================= FLOATING CARD ================= */

.floating-card {
    position: absolute;

    bottom: 40px;
    left: -20px;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 28px;

    padding: 22px;

    display: flex;
    align-items: center;

    gap: 15px;

    width: 330px;

    box-shadow:
        0 15px 50px rgba(0,0,0,0.2);

    animation: floatCard 4s ease-in-out infinite;

    z-index: 2;
}

/* FLOAT */
@keyframes floatCard {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* FLOATING ICON */
.floating-icon {
    width: 75px;
    height: 75px;

    background:
        linear-gradient(
            135deg,
            #2E8B57,
            #5dd39e
        );

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 32px;

    flex-shrink: 0;

    box-shadow:
        0 10px 30px rgba(46,139,87,0.35);
}

/* FLOAT CONTENT */
.floating-content h4 {
    font-size: 20px;
    font-weight: 700;

    margin-bottom: 5px;

    color: #fff;
}

.floating-content p {
    font-size: 14px;

    color: rgba(255,255,255,0.75);

    margin: 0;
}

/* ================= WHY CARD ================= */

.why-card {
    position: relative;

    background: rgba(255,255,255,0.07);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.08);

    padding: 40px 30px;

    border-radius: 28px;

    height: 100%;

    overflow: hidden;

    transition: 0.5s ease;

    z-index: 1;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.12);
}

/* PREMIUM GLOW BORDER */
.why-card::before {
    content: "";

    position: absolute;

    inset: -2px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #2E8B57,
            #7ddf9d,
            #2E8B57,
            #a4f3c0,
            #2E8B57
        );

    background-size: 300% 300%;

    opacity: 0;

    transition: 0.5s ease;

    z-index: -2;

    animation: whyGlow 7s linear infinite;
}

/* INNER GLASS LAYER */
.why-card::after {
    content: "";

    position: absolute;

    inset: 2px;

    background: rgba(10,20,15,0.55);

    border-radius: 26px;

    z-index: -1;
}

/* CARD HOVER */
.why-card:hover {
    transform: translateY(-14px);

    box-shadow:
        0 25px 70px rgba(46,139,87,0.18),
        0 15px 35px rgba(0,0,0,0.18);
}

/* SHOW GLOW */
.why-card:hover::before {
    opacity: 1;
}

/* GLOW ANIMATION */
@keyframes whyGlow {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ================= ICON ================= */

.why-icon {
    width: 78px;
    height: 78px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #7ddf9d;

    font-size: 34px;

    margin-bottom: 28px;

    transition: 0.6s ease;
}

/* ICON HOVER */
.why-card:hover .why-icon {
    background:
        linear-gradient(
            135deg,
            #2E8B57,
            #49c282
        );

    color: #fff;

    transform: rotateY(360deg) scale(1.05);
}

/* ================= TITLE ================= */

.why-card h3 {
    font-size: 24px;
    font-weight: 700;

    margin-bottom: 18px;

    color: #fff;

    transition: 0.4s;
}

/* TITLE HOVER */
.why-card:hover h3 {
    color: #8ef0b1;
}

/* ================= TEXT ================= */

.why-card p {
    color: rgba(255,255,255,0.72);

    line-height: 1.9;

    margin: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .why-section {
        padding: 90px 0;
    }

    .why-main-image {
        height: auto;
    }

    .floating-card {
        left: 20px;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .floating-card {
        position: relative;

        width: 100%;

        left: 0;
        bottom: auto;

        margin-top: -40px;
    }

    .why-card {
        padding: 35px 25px;
    }

    .why-card h3 {
        font-size: 22px;
    }

    .why-icon {
        width: 70px;
        height: 70px;

        font-size: 30px;
    }
}