/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General
03. Header
25. 404 Error Page css
-------------------------------------------------------------------------------------- */
@font-face {
    font-family: "Nizar Cocon Kurdish";
    src:
        url("../webfonts/NizarCoconKurdish.woff2") format("woff2"),
        url("../webfonts/NizarCoconKurdish.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
    /* Base Color Palette */
    --clr-primary: #3d5894;
    --clr-primary-light: #dce9f8;
    --clr-primary-dark: #273d6e;
    --clr-primary-pink: #f96e81;
    --clr-primary-pink-dark: #ad4b58;
    --clr-primary-pink-light: #efa0a7;
    --clr-primary-pink-lighter: #ffe3e5;
    --clr-primary-green: #07a1a1;
    --clr-primary-green-dark: #067272;
    --clr-primary-green-light: #e8fffe;
    --clr-primary-yellow: #fbbd4c;
    --clr-primary-yellow-dark: #be8f36;
    --clr-primary-yellow-light: #fff5e2;

    /* Secondary Color Palette */
    --clr-secondary: #095884;
    --clr-secondary-orange: #f06956;

    /* Font Families */
    --font-base: "Nizar Cocon Kurdish";
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/
*,
*::before,
*::after {
    box-sizing: border-box !important;
}

body {
    font-family: var(--font-base);
    direction: rtl;
}

p {
    line-height: 1.7em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.1em;
    color: var(--clr-text-heading);
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

section {
    padding-bottom: 80px;
    padding-inline: 30px;
}

@media (max-width: 767px) {
    section {
        padding-bottom: 50px;
        padding-inline: 30px;
    }
}

.container {
    max-width: 1300px;
}

.clr-primary-pink {
    color: var(--clr-primary-pink);
}

.clr-primary {
    color: var(--clr-primary);
}

.clr-primary-green {
    color: var(--clr-primary-green);
}

.clr-primary-yellow {
    color: var(--clr-primary-yellow);
}

.clr-primary-pink-bg {
    background-color: var(--clr-primary-pink);
}

.clr-primary-bg {
    background-color: var(--clr-primary);
}

.clr-primary-green-bg {
    background-color: var(--clr-primary-green);
}

.clr-primary-yellow-bg {
    background-color: var(--clr-primary-yellow);
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
}

.fade-up.fade-up-active {
    animation: fade-up 1s ease-out;
    animation-delay: var(--fade-delay, 0s);
    animation-fill-mode: both;
}

@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    background: var(--clr-white);
    color: var(--clr-text-body);
    border-radius: 7px;
    padding: 10px 25px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: all 0.1s ease-in-out;

    a {
        color: white;
        text-decoration: none;
    }
}

.btn:hover {
    color: var(--clr-primary);
    background-color: var(--clr-white);
    transform: translateY(-2px);
}

.white-img {
    filter: brightness(10) saturate(0%);
}

@media only screen and (max-width: 991px) {
    .btn {
        text-align: center;
        font-size: 0.85rem;
    }
}

@media only screen and (max-width: 767px) {
    .btn {
        text-align: center;
    }
}
.dropdown svg:lang(ar) {
    padding-right:5px;
}
.dropdown svg:lang(en) {
    padding-left:5px;
}
.dropdown-item:lang(ar) {
    text-align: right;
    padding: 0 !important;
    padding-right:1rem!important;
        
}
.dropdown-item:lang(en) {
    padding: 0 !important;
    padding-left:1rem!important;
}
/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.navbar {
    background-color: transparent !important;
    /* position: absolute; */
    padding: 30px 0;
    width: 100%;

    .navbar-collapse {
        flex-grow: 1;
        justify-content: center;
    }

    .navbar-brand {
        img {
            width: 100px;
        }
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .container-fluid {
        margin-inline: auto;
        /* gap: 6rem; */
    }

    z-index: 1;

    .navbar-nav {
        padding-right: 0;
        min-width: 90%;
        justify-content: space-around;
        gap: 0.918rem;

        .nav-link {
            font-size: 1.29rem;
            color: var(--clr-secondary);
            padding: 1rem 0 0 0;
            /* padding-inline: 1rem; */
            border-bottom: 1px solid transparent;

            &:hover {
                border-color: var(--clr-primary);
            }
        }
    }

    .sound-control {
        .btn-sound {
            width: 35px;
            /* Small size as requested */
            height: 35px;
            border-radius: 50%;
            border: 2px solid var(--clr-secondary);
            background-color: white;
            color: var(--clr-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;

            &:hover {
                transform: scale(1.1);
                background-color: var(--clr-primary-light);
            }

            &.muted {
                color: #dc3545;
                /* Red for muted */
                border-color: #dc3545;
            }
        }
    }
}

@keyframes diagonalMove {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(60px, -20px);
    }

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

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        /* or your desired background color */
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* optional shadow for better visibility */
    }

    .navbar {
        position: relative;

        .navbar-nav {
            gap: 0.918rem;
        }
    }
}

@media (max-width: 767px) {
    .navbar {
        .container-fluid {
            gap: 0;
            flex-basis: 30rem;
            justify-content: space-between;
        }
    }
}

/************************************/
/**** 	   04. Hero css		 ****/
/************************************/
.hero {
    position: relative;
    /* padding-top: 10rem; */
    /* padding-top: 0; */
    padding-bottom: 0;

    .container {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
        max-width: 100rem;

        .left {
            flex: 0 0 50%;

            .characters-images {
                display: flex;
                flex-direction: row-reverse;
                justify-content: center;

                .alex-steve {
                    z-index: -3;
                }
            }

            .left-gif {
                position: absolute;
                z-index: -2;
                left: 9rem;
                top: 5.5rem;
                background: #2b2f33;
                width: 25rem;
                overflow: hidden;
                height: 19rem;

                img {
                    width: 150%;
                    transform: scale(1.9);
                    position: relative;
                    top: 45px;
                    background: white;
                    mix-blend-mode: color-dodge;
                }
            }

            .left-cloud {
                position: absolute;
                z-index: -2;
                left: 33rem;
                top: 18rem;
                scale: 0.7;
            }
        }

        .right {
            color: var(--clr-primary);
            text-align: center;
            flex: 0 0 40%;
            position: relative;
            top: -2rem;

            .hero-title {
                font-size: 2.5rem;
                margin-bottom: 1.5rem;
                width: fit-content;
                margin-inline: auto;

                span {
                    color: var(--clr-primary-yellow);
                }

                position: relative;

                &::before {
                    content: "";
                    position: absolute;
                    background-image: url(../../images/spark.png);
                    background-size: contain;
                    background-repeat: no-repeat;
                    width: 45px;
                    height: 45px;
                    top: -1rem;
                    right: 0;
                    z-index: -1;
                }

                &::after {
                    content: "";
                    position: absolute;
                    background-image: url(../../images/spark.png);
                    background-size: contain;
                    background-repeat: no-repeat;
                    transform: scaleX(-1) rotate(45deg);
                    width: 45px;
                    height: 45px;
                    bottom: 0;
                    left: -3rem;
                    z-index: -1;
                }
            }

            p {
                font-size: 1.5rem;
                margin-bottom: 2rem;
                font-weight: bold;
            }

            .hero-btn {
                font-size: 1.6rem;
                background-color: var(--clr-primary-pink);
                color: white;
                padding: 10px 25px;
                border-radius: 10px;

                &:hover {
                    background-color: var(--clr-primary-pink-dark);
                }
            }
        }

        &::before {
            content: "";
            position: absolute;
            background-image: url(../../images/cloud.png);
            top: -7rem;
            right: 5rem;
            width: 300px;
            height: 171px;
            /* The Animation */
            animation: diagonalMove 6s ease-in-out infinite;
            z-index: -1;
        }
    }

    &::before {
        content: "";
        position: absolute;
        background-image: url(../../images/Home/header/funncy-icons-bg.png);
        background-repeat: no-repeat;
        width: 100%;
        min-height: 853px;
        top: -9.62rem;
        left: 0;
        z-index: -1;
    }

    &::after {
        content: "";
        position: absolute;
        background-image: url(../../images/Home/header/funny-icons.png);
        background-repeat: no-repeat;
        width: 100%;
        height: 853px;
        top: -9.62rem;
        left: 0;
        z-index: -1;
    }
}

@media (min-width: 1700px) {
    .hero {
        .container {
            .left {
                .characters-images {
                    justify-content: end;
                }
            }
        }
    }
}

@media (max-width: 991px) {
    .hero {
        .container {
            .right {
                top: 0;
            }
        }
    }
}

@media (max-width: 767px) {
    .hero {
        .container {
            flex-direction: column;

            .left {
                .characters-images {
                    width: 15rem;
                    z-index: 3;
                }
            }

            .right {
                .hero-title {
                    font-size: 2.5rem;
                    margin-bottom: 1.5rem;
                    width: fit-content;
                    margin-inline: auto;

                    span {
                        color: var(--clr-primary-pink);
                    }
                }

                p {
                    font-size: 1.3rem;
                }

                &::before {
                    top: -2rem;
                    right: -1.5rem;
                }

                &::after {
                    bottom: 5rem;
                    left: 5rem;
                }
            }
        }
    }
}

/************************************/
/**** 	   05. About us css		 ****/
/************************************/
.about {
    position: relative;
    padding-top: 0;

    .dashed-arrow {
        position: absolute;
        top: -2rem;
        left: 20rem;
        top: 10rem;
        width: 60rem !important;
        z-index: -1;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .left-road-btn {
        position: absolute;
        top: 2rem;
        left: 35rem;
        background-color: white;
        padding: 15px 60px;
        border-radius: 99px;
        font-size: 2rem;

        p {
            margin-bottom: 0;
        }
    }

    &::after {
        content: "";
        position: absolute;
        background-image: url(../../images/pink-curly-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        min-width: 2036px;
        min-height: 1055px;
        top: 27%;
        left: 50%;
        z-index: -3;
        transform: translate(-50%, -50%);
    }

    .container {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        height: 100%;

        .map {
            position: relative;
            top: -4rem;
        }
    }

    .left {
        position: absolute;
        max-width: 28rem;
        text-align: center;
        left: 55px;
        bottom: 67px;
        font-size: 1.3rem;
        bottom: 4rem;
        color: white;

        .about-btn {
            padding: 7px 20px;
            background-color: var(--clr-primary);
            font-size: 2rem;

            &:hover {
                color: white;
                background-color: var(--clr-primary-dark);
            }
        }
    }

    /* .right {
     width: 223px;
    .palestine-map {
      width: fit-content;
      position: absolute;
      top: -4rem;
      right: 30rem;
    }
  } */
}

@media (max-width: 991px) {
    .about {
        padding-top: 80px;

        .left {
            bottom: 0;
            left: -0.5rem;
        }
    }
}

@media (max-width: 767px) {
    .about {
        padding-top: 30px;
        .container {
            flex-direction: column;
            /* gap: 4rem; */
            position: relative;
            /* top: -5rem; */

            .map {
                width: 100%;
                height: auto;
                position: static;
                top: 0;
            }
        }

        .left {
            position: static;
            max-width: 100%;
            text-align: center;
            font-size: 1.3rem;
            margin-top: -2rem;
        }

        &::after {
            top: -15%;
        }
    }
}

/************************************/
/**** 	   06. Partners css		 ****/
/************************************/

.partners {
    /* padding-top: 0; */
    position: relative;

    .info {
        position: absolute;
        width: 30rem;
        text-align: center;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);

        h2 {
            color: var(--clr-primary-pink);
            font-size: 2.3rem;
        }

        p {
            font-size: 1.4rem;

            span {
                color: var(--clr-primary-pink);
            }
        }

        .logo {
            margin-top: 7rem;
        }
    }

    .container {
        position: relative;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        /* padding-inline-end: 5rem; */

        .children {
            display: flex;
            justify-content: space-between;
            width: 100%;
            align-items: end;
            /* padding-inline: 5rem; */
        }

        .bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;

            div {
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 100%;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            div.white {
                width: 75%;
                bottom: 19px;
                left: 50.6%;
            }
        }
    }
}

@media (max-width: 1000px) {
    .partners {
        .container {
            .children {
                .left,
                .right {
                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                }
            }
        }

        .info {
            max-width: 15rem;
        }
    }
}

@media (max-width: 767px) {
    .partners .container {
        /* Stack elements vertically on small screens */
        flex-direction: column;
        /* padding-top: 2rem; */
        padding-inline: 0;

        .bg {
            div.white {
                bottom: 9px;
            }
        }
    }

    .partners .info {
        position: static;
        transform: none;
        max-width: 20rem;
        order: 1;
    }

    .partners .info h2 {
        font-size: 1.8rem;
    }

    .partners .info p {
        font-size: 1.2rem;
    }

    .partners .info .logo {
        margin-top: 2rem;
        width: 10rem;
        margin-inline: auto;
    }

    .partners .children {
        order: 2;
        position: relative;
        z-index: 1;
    }

    .partners .children .left,
    .partners .children .right {
        /* max-width: 10rem; */
        overflow: hidden;
        max-height: 25rem;
    }

    .partners .children img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* height: auto; */
        /* display: block; */
    }
}

/************************************/
/**** 	    knowledge Worlds css		 ****/
/************************************/
/* Knowledge Worlds Section */
#knowledge-worlds {
    position: relative;
    overflow: hidden;
    min-height: 160vh;
    padding: 6rem 0;

    .section-title {
        color: white;
        position: relative;

        &::before {
            content: "";
            position: absolute;
            background-image: url(../../images/title-bg.png);
            background-repeat: no-repeat;
            background-size: contain;
            width: 25rem;
            height: 5rem;
            top: 50%;
            right: 0;
            z-index: -1;
            transform: translateY(-50%);
        }
    }

    .section-intro {
        font-size: 1.5rem;
    }

    .sectoin-title-worlds {
        .section-intro {
            text-align: start;
            font-weight: bold;
            color: var(--clr-primary);

            span {
                color: var(--clr-primary-pink);
            }
        }

        .arrow-wrapper {
            position: absolute;
            top: 0;
            left: -8rem;
        }
    }
}

/* Background Elements */
.grid-bg {
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

.zigzag-line {
    background-image: url("../../images/zigzag-line.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 2;
    pointer-events: none;
}

/* Cloud Styling */
.cloud {
    background-image: url("../../images/cloud.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 150px;
    height: 80px;
    opacity: 0.4;
    z-index: 2;
    pointer-events: none;
}

.cloud-1 {
    top: 15%;
    left: 5%;
    width: 120px;
    height: 60px;
}

.cloud-2 {
    top: 25%;
    right: 8%;
    width: 180px;
    height: 90px;
}

.cloud-3 {
    bottom: 30%;
    left: 10%;
    width: 140px;
    height: 70px;
}

.cloud-4 {
    bottom: 20%;
    right: 12%;
    width: 160px;
    height: 80px;
}

/* World Cards Container */
.worlds-container {
    min-height: 1200px;
    z-index: 3;

    .world-card-wrapper {
        box-sizing: border-box;
        transition: transform 0.3s ease;
        z-index: 10;
        min-height: 27rem;

        .world-card {
            background-color: white;
            border-radius: 20px;
            transition: all 0.4s ease;
            height: 100%;

            height: 450px;
            /* Or whatever fixed height you want */
            display: flex;
            flex-direction: column;
            overflow: hidden;

            padding: 10px;

            .card-inner {
                height: 100%;
            }

            /* Card Top with Circles */
            .card-top {
                height: 60px;
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
                z-index: 5;

                .card-circles {
                    width: 50px;
                    height: 50px;
                }

                .card-circles::before,
                .card-circles::after {
                    content: "";
                    position: absolute;
                    border-radius: 50%;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }

                .card-circles::before {
                    width: 45px;
                    height: 45px;
                    background: radial-gradient(
                        circle at 30% 30%,
                        #e0e0e0,
                        #999
                    );
                    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
                    z-index: 1;
                }

                .card-circles::after {
                    width: 30px;
                    height: 30px;
                    background: radial-gradient(
                        circle at 30% 30%,
                        #555,
                        #808080
                    );
                    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5);
                    z-index: 2;
                }

                .pin-img {
                    position: absolute;
                    left: 48%;
                    top: 45%;
                    transform: translate(-45%, -48%);
                    width: 60px;
                    height: 60px;
                    z-index: 10;
                }
            }

            /* Card Image */
            .card-img-wrapper {
                padding: 20px;
                padding-top: 20px;
                padding-top: 10px;
                position: relative;
                cursor: pointer;
                margin-inline: auto;
                height: 40%;
                transition: height 0.4s ease;
                width: fit-content;
                border-inline: solid 9px var(--clr-primary-pink);
                border-radius: 60px;

                .card-img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    border-radius: 10px;
                    position: relative;
                    z-index: 2;
                    transition: all 0.4s ease;
                    background-color: white;
                }
            }

            .card-content {
                background: radial-gradient(
                    circle,
                    white 0%,
                    #e3f2fd 70%,
                    #e2eafd 100%
                );
                color: #1565c0;
                border-radius: 15px;
                text-align: center;
                /* font-size: 1.2rem; */
                font-weight: 700;
                transition: height 0.4s ease;
                height: 19%;
                overflow: hidden;
                margin-top: 1rem;
                padding: 10px;
            }

            &:hover {
                .card-img-wrapper {
                    height: 25%;
                }

                .card-content {
                    height: 70%;
                }
            }
        }
    }

    .world-1 {
        top: -9px;
        right: 100px;
        transform: rotate(-5deg);

        .world-card {
            border: solid 2px var(--clr-primary-pink) !important;
        }

        .pin-img {
            transform: rotate(-90deg) !important;
            top: -10px !important;
            left: 35% !important;
        }

        .card-img-wrapper {
            border-inline: solid 9px var(--clr-primary-green) !important;
        }

        .card-content {
            background: radial-gradient(
                circle,
                white 0%,
                var(--clr-primary-pink-lighter) 70%,
                var(--clr-primary-pink-lighter) 100%
            ) !important;
            color: var(--clr-primary-pink) !important;

            .card-btn {
                background-color: var(--clr-primary-green) !important;
                color: white !important;
            }
        }
    }

    .world-2 {
        top: -260px;
        left: 100px;
        transform: rotate(5deg);

        .world-card {
            border: solid 2px var(--clr-primary) !important;
        }

        .pin-img {
            transform: rotate(0) !important;
            top: -10px !important;
            left: 45% !important;
        }

        .card-img-wrapper {
            border-inline: solid 9px var(--clr-primary-pink) !important;
        }

        .card-content {
            .card-btn {
                background-color: var(--clr-primary-pink) !important;
                color: white !important;
            }
        }
    }

    .world-3 {
        bottom: 0;
        right: 15%;
        transform: rotate(-5deg);

        .world-card {
            border: solid 2px var(--clr-primary-yellow) !important;
        }

        .pin-img {
            transform: rotate(-90deg) !important;
            top: -10px !important;
            left: 35% !important;
        }

        .card-content {
            background: radial-gradient(
                circle,
                white 0%,
                var(--clr-primary-yellow-light) 70%,
                var(--clr-primary-yellow-light) 100%
            ) !important;
            color: var(--clr-primary-yellow) !important;

            .card-btn {
                background-color: var(--clr-primary) !important;
                color: white !important;
            }
        }

        .card-img-wrapper {
            border-inline: solid 9px var(--clr-primary) !important;
        }
    }

    .world-4 {
        top: 37%;
        left: 15%;
        transform: rotate(5deg);

        .world-card {
            border: solid 2px var(--clr-primary-green) !important;
        }

        .pin-img {
            transform: rotate(0) !important;
            top: -10px !important;
            left: 45% !important;
        }

        .card-img-wrapper {
            border-inline: solid 9px var(--clr-primary-yellow) !important;
        }

        .card-content {
            background: radial-gradient(
                circle,
                white 0%,
                var(--clr-primary-green-light) 70%,
                var(--clr-primary-green-light) 100%
            ) !important;
            color: var(--clr-primary-green) !important;

            .card-btn {
                background-color: var(--clr-primary-yellow) !important;
                color: white !important;
            }
        }
    }
}

/* Expand Content (hidden by default) */
.card-expand-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card-text {
    margin: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #444;
}

.card-btn {
    display: inline-block;
    /* margin-top: 15px; */
    padding: 8px 25px;
    background-color: transparent;
    color: var(--clr-primary);
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-btn span {
    position: relative;
    z-index: 1;
}

/* Hover Effects */
.world-card:hover .card-img {
    transform: scale(0.9);
    /* margin: 10px 0; */
}

.world-card:hover .card-title {
    margin-bottom: 10px;
    border-radius: 20px 20px 0 0;
}

.world-card:hover .card-expand-content {
    max-height: 300px;
    opacity: 1;
}

.card-btn:hover {
    padding-right: 20px;
    padding-left: 50px;
    background-color: var(--clr-primary-dark);
    color: white;
}

.card-btn:hover::before {
    content: url(../../images/guidance_left-arrow.svg);
    position: absolute;
    left: 15px;
    /* top: 50%;
  transform: translateY(-50%); */
    /* font-size: 1.2rem; */
}

.resources .container {
    position: relative;

    /*
          &::before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            background-image: url('images/resources-bg.png');
            background-position: center;
            z-index: -1;
        }
            */
}

section.resources {
    padding-top: 0;
    padding-bottom: 0;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background-image: url(../../images/resources-bg.png);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .resources-bg {
        position: absolute;
        /* top: -30%; */
        /* left: 0; */
        /* display: block; */
        max-width: initial;
        z-index: -1;
        width: 100%;
        /* left: 50%;
        transform: translateX(-50%); */
    }
}

.resources {
    /* padding: 2rem 0; */
    /* position: relative; */
    /* overflow: hidden; */

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        /*       👈 fills the whole section */
        z-index: -1;
        background-image: url(../../images/resources-bg.png);
        background-repeat: no-repeat;
        background-position: center center;
        /* 👈 always center */
        background-size: contain;
        /* 👈 keeps same proportions (no crop) */
    }
}

.search {
    margin-bottom: auto;
    margin-top: auto;
    height: 50px;
    background-color: #fff;
    border-radius: 40px;
    padding: 10px;
    display: flex;
    max-width: 370px;
}

.search_input {
    border: 0;
    outline: 0;
    background: none;
    width: 0;
    margin-top: 5px;
    caret-color: transparent;
    line-height: 40px;
    transition: width 0.4s linear;
}

.search .search_input {
    padding: 0 10px;
    width: 100%;
    caret-color: black;
    transition: width 0.4s linear;
}

.search:hover > .search_icon {
    background: var(--clr-primary-pink);
    color: #fff;
}

.search_icon {
    width: 35px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    background-color: var(--clr-primary-pink);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.resources-section {
    position: relative;
    padding-top: 3rem;
    min-height: 400px;

    &::after {
        content: "";
        position: absolute;
        background-image: url(../../images/statistics-bg1.png);
        background-size: cover;
        top: -7rem;
        /*
            left: 50%;
            transform: translate(-50%, -50%);
            */
        min-width: 100%;
        min-height: 100%;
        left: 0;
        right: 0;
        z-index: 0;
    }

    .container {
        position: relative;
        z-index: 1;
    }

    .circle-image img {
        height: 80px;
        max-width: inherit;
    }

    .stats-cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        /* 1 column on mobile */
        gap: 5rem 8rem;

        .stat-card .item-link a {
            background-color: var(--card-color);
            box-shadow: 1px 0 var(--card-color);
        }
    }

    .stat-card {
        position: relative;
        display: flex;
        align-items: center;
        gap: 1rem;
        border: 1px solid #ccc;
        border-radius: 60px;
        padding: 1rem;
        box-shadow: 2px 2px 4px 2px #0000001a;
        transition: box-shadow 0.3s ease;

        &:hover {
            box-shadow: 4px 4px 8px 4px #0000001a;
        }

        .item-link {
            position: absolute;
            left: -1.5rem;
        }

        .item-content {
            h5 {
                color: #515353;
                margin-bottom: 0.5rem;
            }

            p {
                color: #838383;
                margin-bottom: 0;
                line-height: 1.2;
            }
        }

        .item-link a:hover {
            transform: rotate(180deg);
        }

        .item-link a {
            background-color: #000;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            /* right: 2.5rem; */
            border: 2px solid #ffffff;
            box-shadow: 1px 0 #000;
            transition: transform 0.3s ease;
        }
    }
}

@media (min-width: 768px) {
    .resources-section .stats-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet/desktop */
    }
}

@media (max-width: 992px) {
    #knowledge-worlds {
        min-height: 110vh;
    }

    .world-card-wrapper {
        position: relative !important;
        margin: 0 auto 30px !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 90%;
        max-width: 350px;
    }

    .worlds-container {
        min-height: auto;
        position: static;
        padding-top: 30px;
    }

    .section-intro {
        text-align: center !important;
        margin: 0 auto;
    }

    .arrow-wrapper {
        text-align: center !important;
        margin-bottom: 20px;
    }

    .curly-arrow {
        transform: rotate(0deg);
        max-width: 120px;
    }

    .world-1,
    .world-2,
    .world-3,
    .world-4 {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .cloud {
        display: none;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .card-img {
        height: 150px;
    }

    .section-intro {
        font-size: 1rem;
        max-width: 100%;
    }

    .world-card-wrapper {
        width: 100%;
    }
}

/************************************/
/**** 	    General statistics Page css		 ****/
/************************************/

.general-statistics {
    padding: 10rem 0;

    &::before {
        content: "";
        position: absolute;
        background-image: url(../../images/hero-statistics.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 1081px;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -3;
    }

    &::after {
        display: none;
    }

    .container {
        .right {
            top: 0;

            &::before,
            &::after {
                display: none;
            }
        }
    }
}

.general-statistics-navbar {
    &::after {
        content: "";
        position: absolute;
        background-image: url(../../images/curly-top.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 100%;
        height: 150px;
        top: 0;
        left: 0;
        z-index: -1;
    }
}

/* people statistics */
.education-statistics {
    &::before {
        display: none;
        content: "";
        position: absolute;
        background-image: url(../../images/statistics-bg2.png);
        background-size: cover;
        bottom: -4rem;
        min-width: 100%;
        min-height: 100%;
        left: 0;
        right: 0;
        z-index: 0;
        transform: translate(0);
    }
}

.general-statistics-about {
    position: relative;
    overflow: hidden;
    padding: 0rem 30px;
    /* padding-top: 10rem; */

    .container {
        position: relative;
        z-index: 2;
        padding-top: 5rem;

        @media (max-width: 767px) {
            height: 160%;
        }
    }

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url(../../images/statistics-bg.png) center / cover no-repeat;
        z-index: 0;
    }
}

.general-statistics-about,
.statistics-sec {
    /* padding-top: 80px; */
    .container {
        display: block;
        z-index: 2;
        /* padding-top: 3rem; */
    }

    &::after {
        display: none;
    }

    /* Title section styles */
    .section-title-container {
        display: flex;
        align-items: center;
        /* justify-content: flex-end; */
        /* margin-bottom: 60px; */
        position: relative;
        align-items: flex-end;
        padding-top: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--clr-primary);
        border-bottom: 5px solid var(--clr-primary-yellow);
        text-align: right;
        padding-right: 10px;
        padding-left: 2rem;
    }

    .icon-square {
        width: 63px;
        height: 63px;
        background-color: var(--clr-primary-yellow);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-shrink: 0;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .icon-square svg {
        width: 40px;
        height: 40px;
        color: #333;
    }

    /* Cards grid styles */
    .stats-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* margin: 4rem 0; */

        @media (max-width: 767px) {
            margin-top: 4rem;
        }

        .stat-card {
            width: fit-content;
            display: flex;
            flex-direction: row;

            .circle-image-container {
                transform: rotate(7deg);
                top: 0.7rem;
            }

            &:hover {
                animation: none;
            }
        }
    }

    .card-1 {
        .circle-image {
            border-color: var(--clr-primary-pink);
        }

        .rectangle {
            background-color: var(--clr-primary-pink);
        }

        /* @media (min-width: 992px) {
      position: relative;
      right: -6rem;
    } */
    }

    .card-2 {
        .circle-image {
            border-color: var(--clr-primary);
        }

        .rectangle {
            background-color: var(--clr-primary);
        }

        @media (min-width: 992px) {
            position: relative;
            right: -3rem;
        }
    }

    .card-3 {
        .circle-image {
            border-color: var(--clr-primary-green);
        }

        .rectangle {
            background-color: var(--clr-primary-green);
        }

        @media (min-width: 992px) {
            position: relative;
            right: 9rem;
        }
    }

    .card-4 {
        .circle-image {
            border-color: #f06956;
        }

        .rectangle {
            background-color: #f06956;
        }

        @media (min-width: 992px) {
            position: relative;
            right: 4rem;
        }
    }

    .stat-card {
        border-radius: 15px;
        /* padding: 10px; */
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
        margin-inline: auto;
        cursor: pointer;
        position: relative;
    }

    .stat-card:hover {
        animation: none;

        & .rectangle {
            max-width: 16rem;
        }

        & .rectangle p {
            display: block;
        }
    }

    /* morphing blob */

    .circle-image-container {
        position: relative;
        /* margin-left: 20px; */
        flex-shrink: 0;
    }

    .circle-image {
        width: 130px;
        height: 130px;
        border: 3px solid #333;
        overflow: hidden;
        display: flex;
        /* align-items: center; */
        justify-content: center;
        background-color: white;
        border-radius: 10px;
    }

    .circle-image img {
        object-fit: contain;
    }

    .rectangle {
        /* padding: 10px; */
        max-width: 0;
        text-align: right;
        height: 140px;
        display: flex;
        align-items: center;
        background-color: var(--clr-primary);
        color: white;
        /* margin-right: -1rem; */
        z-index: 1;
        margin-right: -1rem;
        border-radius: 5px;
        transition: 1s all ease-out;
    }

    .rectangle p {
        margin: 0;
        font-size: 1.1rem;
        padding: 10px;
        line-height: 1.6;
        display: none;
    }

    /* Button styles */
    .read-more-row {
        /* text-align: end; */
        position: absolute;
        left: 5rem;

        @media (max-width: 767px) {
            right: 0 !important;
            bottom: -50px;
        }
    }

    .read-more-btn {
        /* left: 6rem; */
        background: transparent;
        border: none;
        color: var(--clr-primary);
        border-radius: 50px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .read-more-btn .arrow-down {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        transition: transform 0.3s ease;
    }

    .read-more-btn:hover .arrow-down {
        transform: translateY(3px);
    }
}

.health-statistics {
    padding-top: 30px;
    border-radius: 30px;
    background-color: #ffeef0;

    .health-card {
        border-left: 3px solid white;
    }

    .icon-square {
        background-color: var(--clr-primary);
    }

    .section-title {
        border-color: var(--clr-primary);
        color: var(--clr-primary-pink);
    }

    .center-layout-container {
        padding: 4rem 0;
        margin-bottom: 0 !important;
        min-height: fit-content !important;
    }

    .cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }

    .cards-row {
        display: flex;
        justify-content: center;
        /* gap: 1.5rem; */

        .stat-card {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            flex-basis: 30%;
            border-right: 3px solid rgba(255, 255, 255, 0.7);
            /* padding-right: 1.5rem; */
            border-radius: 0;
            margin-inline: 0;
            padding: 10px;

            &:first-child {
                border-right: none;
            }
        }
    }

    .card-header {
        /* display: flex;
    justify-content: space-between;
    align-items: center; */
    }

    .card-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--clr-primary);
        margin: 0;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .card-description {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--clr-primary);
        margin: 0;
    }
}

@media (max-width: 991px) {
    .general-statistics-about,
    .education-statistics {
        .stats-cards-grid {
            /* margin-top: 1rem; */
            grid-template-columns: 1fr;
            /* gap: 16px; */
        }

        &::after {
            min-height: 100%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .stats-cards-grid {
            margin: 0;
            .stat-card {
                .circle-image-container {
                    transform: rotate(0);
                    top: 0;
                }

                margin-bottom: 2rem;
                height: fit-content;
            }
        }
    }
}

@media (min-width: 768px) {
    .about {
        .stats-cards-grid {
            display: block;
        }
    }

    .stats-cards-grid {
        .stat-card {
            margin-bottom: 2rem;
        }
    }
}


.progress-ring {
    transition: all 0.2s ease-out;

    &:hover {
        transform: scale(1.1);
    }
}

/* Responsive adjustments */
/* @media (max-width: 576px) {
  .section-title-container {
    flex-direction: column;
    align-items: flex-end;
  }

  .section-title {
    font-size: 2rem;
    margin: 0 0 20px 0;
  }

  .yellow-icon-square {
    align-self: flex-end;
  }

  .stat-card {
    flex-direction: column;
    text-align: center;
  }

  .circle-image-container {
    margin: 0 0 20px 0;
  }
} */

/* education statistcs */
.statistics-sec {
    /* margin-top: 10rem; */

    /* Center Layout Container */
    .center-layout-container {
        position: relative;
        /* min-height: 600px; */
        /* margin-bottom: 60px; */
    }
}

.education-statistics {
    background-image: url(../../images/grid-bg.png);
    /* Add your background image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px !important;
    display: flex !important;

    .container {
        flex: 1 !important;
    }

    .education-statistics .container {
        position: relative;
        z-index: 2;
    }

    /* Center Paragraph with Background Image */
    .center-paragraph {
        /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
        max-width: 400px;
        height: 240px;
        background-image: url(../../images/learning-statistics.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
        z-index: 10;
        /* margin: 2rem 0; */
        margin-inline: auto;

        @media (min-width: 768px) {
            align-self: center;
        }
    }

    .center-content {
        /* padding: 40px; */
        border-radius: 10px;
        margin: 20px;
        text-align: center;
    }

    .center-content p {
        font-size: 1.2rem;
        line-height: 1.2;
        margin: 0;
        font-weight: 700;
    }

    /* Position Items */
    .position-item {
        /* position: absolute; */
        /* width: 300px; */
        z-index: 5;
    }

    .item-content {
        display: flex;
        border-radius: 10px;
        position: relative;
        gap: 1rem;

        .rectangle {
            background-color: transparent;
            color: var(--clr-primary);
            display: block;
        }
    }

    /* Pink Circle Pseudo-element */
    .item-content::before {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        background-color: var(--pink-color);
        border-radius: 50%;
        z-index: 6;
    }

    /* Position-specific styles */
    .top-right-item {
        /* top: 15%;
    right: 10%; */
        direction: ltr;

        .rectangle {
            text-align: left;
            display: flex;
            /* align-items: end; */
        }

        .item-content {
            /* align-items: end; */
        }
    }

    .top-left-item {
        top: 15%;
        left: 10%;
        direction: ltr;

        .item-content {
            /* align-items: end; */
        }

        .rectangle {
            display: flex;
            /* align-items: end; */
        }
    }

    .bottom-left-item {
        bottom: 15%;
        left: 10%;
    }

    .bottom-right-item {
        bottom: 15%;
        right: 10%;

        /* direction: ltr; */
        .rectangle {
            text-align: left;
        }
    }

    /* Card Components */
    .circle-image-container {
        position: relative;
        /* margin-left: 15px; */
        flex-shrink: 0;
    }

    .circle-image {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid var(--clr-primary-pink);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: white;
        position: relative;
    }

    .circle-image::before {
        content: "";
        position: absolute;
        width: 40px;
        height: 40px;
        background-color: var(--clr-primary-pink);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.5);
        animation: circlePulse 2s infinite;
    }

    .circle-image img {
        /* width: 50px;
        height: 50px;
        object-fit: contain; */
    }

    .center-layout-container {
        .rectangle {
            background-color: var(--primary-blue);
            text-align: right;
            max-width: 90%;
            height: 100%;
            margin-inline: 5px;
        }

        .rectangle p {
            margin: 0;
            font-size: 1.1rem;
            line-height: 1.2;
            padding: 0;
            display: block;
        }
    }

    .first-row {
        @media (max-width: 991px) {
            height: fit-content;
            flex-direction: column;
            align-items: center;
        }
    }

    .last-row {
        @media (max-width: 991px) {
            flex-direction: column;
            align-items: center;
        }
    }
}

@keyframes circlePulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(0.5);
    }
}

.education {
    .section-title-container {
        .icon-square {
            background-color: var(--clr-primary-pink-light);
        }

        .section-title {
            border-color: var(--clr-primary-pink-light);
        }
    }

    .center-layout-container {
        height: 100%;

        @media (max-width: 991px) {
            align-items: center;
            height: fit-content;
        }

        .circle-image-container {
            align-self: center;
        }
    }

    .center-paragraph {
        @media (max-width: 991px) {
            width: 345px;
        }
    }
}

.youth {
    .section-title-container {
        .icon-square {
            background-color: var(--clr-primary-pink);
        }

        .section-title {
            border-color: var(--clr-primary-pink);
        }
    }
}

@media (max-width: 991px) {
    .education-statistics {
        margin-top: 4rem;

        .position-item {
            /* margin: -20px;
      position: relative; */
            margin: 1rem 0;
        }

        .top-left-item {
            top: 40%;
        }

        .top-right-item {
            top: 40%;
        }

        .center-paragraph {
            /* margin: 4rem 0; */
            /* top: 0; */
            /* left: 50%; */
            /* left: 0; */
            transform: translate(0, 0);
            box-shadow: none;
            position: initial;
            /* margin-inline: auto; */

            .center-content {
                padding: 0;
            }
        }

        .education-statistics-cards-container {
            display: grid;
            grid-template-columns: minmax(120px, auto);
            position: relative;

            .position-item {
                top: initial;
                right: initial;
                left: initial;
                bottom: initial;

                position: relative;
                margin-inline: auto;
            }

            .bottom-left-item {
                direction: ltr;

                .rectangle {
                    text-align: left;
                }
            }

            .bottom-right-item {
                direction: rtl;

                .rectangle {
                    text-align: right;
                }
            }
        }
    }
}

/************************************/
/**** 	    General Statistics Page		 ****/
/************************************/

.read-more-row .read-more-btn::before {
    content: url(../../images/down-arrow.png);
    position: absolute;
    color: black;
    width: 20px;
    height: 20px;
    z-index: -1;
    left: -1.5rem;
    display: block;
    transform: rotate(-135deg);
    transform-origin: 50% 50%;
    transition: all 0.2s ease-in;
}

.read-more-btn {
    &::before {
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    &:hover::before {
        transform: rotate(45deg);
    }
}

/* popluation start */
.population-card {
    border: 3px solid var(--clr-primary-yellow);
    border-radius: 10px;
    padding: 5px 10px;
    transition: all 0.2s ease !important;

    &:hover {
        transform: translateY(-10px) !important;
    }
}
/* popluation end */

/* unemployment start */
.unemployment {
    .section-header {
        width: fit-content;
        text-align: center;
        align-self: center;
        margin: 0;
        margin-top: 0px;
        margin-top: 2rem;
        margin-inline: auto;
        background-color: var(--clr-primary-green);
        color: white;
        padding: 5px 20px;
        border-radius: 10px;
        font-size: 1.2rem;
    }

    .stat-circle {
        display: flex;
        flex-direction: column;
        align-items: center;

        .progress-ring {
            position: relative;
            width: 160px;
            height: 160px;
        }

        .ring-img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 9.5rem;
        }

        .ring-info {
            margin-top: 2rem;
            font-size: 1.2rem;
            color: var(--clr-primary);
            font-weight: bold;
        }

        .progress-ring svg {
            transform: rotate(-90deg);
        }

        .progress-ring circle {
            fill: none;
            /* THIS keeps it hollow */
            stroke-width: 14;
        }

        .ring-bg {
            stroke: #e5e7eb;
        }

        .ring-progress {
            stroke: var(--clr-primary-green);
            /* Bootstrap primary */
            stroke-dasharray: 440;
            stroke-dashoffset: 440;
            transition: stroke-dashoffset 1.8s cubic-bezier(0.2, 0.9, 0.2, 1);
        }

        .ring-text {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 600;
            color: var(--clr-primary-green);
        }
    }

    .section-title-container {
        .icon-square {
            background-color: var(--clr-primary);
        }

        .section-title {
            border-color: var(--clr-primary);
            color: var(--clr-primary-pink);
        }
    }
}

/* unemployment end */

/* poor start */
.poor-statistics {
    background: radial-gradient(white, #d2e0ff);
    padding-top: 4rem;
    border-radius: 30px;

    .ring-text {
        width: fit-content;
        background-color: white;
        color: var(--clr-primary-yellow);
        font-size: 1.7rem;
        border-radius: 5px;
        padding-inline: 5px;
    }

    .poor-card {
        border-left: 3px solid white;

        /* Large screens (3 columns) */
        @media (min-width: 992px) {
            &:nth-child(3n) {
                border-left: none;
            }
        }

        /* Medium screens (2 columns) */
        @media (min-width: 768px) and (max-width: 991px) {
            &:nth-child(2n) {
                border-left: none;
            }
        }

        /* Small screens (1 column) */
        @media (max-width: 767px) {
            border-left: none;
        }
    }

    .section-title-container {
        .icon-square {
            background-color: var(--clr-primary);
        }

        .section-title {
            border-color: var(--clr-primary);
            color: var(--clr-primary-yellow);
        }
    }
}

/* poor end */

/* cultivation start */
.cultivation-stats {
    padding-bottom: 5rem;

    .section-title-container {
        .icon-square {
            background-color: var(--clr-primary-pink-light);
        }

        .section-title {
            border-color: var(--clr-primary-pink-light);
        }
    }
}

/* cultivation end */

/* water start */
.water {
    .icon-square {
        background-color: #f06956;
    }

    .section-title {
        border-color: #f06956;
    }

    .population-card {
        border-color: #f06956;

        .card-header {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #f06956;
        }

        transition: all 0.2s ease !important;

        &:hover {
            transform: translateY(-10px) !important;
        }
    }
}

/* water end */
/* geography sart */
.geography {
    background: radial-gradient(white, #e3f4f4);

    .icon-square {
        background-color: var(--clr-primary-pink);
    }

    .poor-card {
        border-color: var(--clr-primary-pink);
    }

    .section-title-container {
        .icon-square {
            background-color: var(--clr-primary-pink);
        }

        .section-title {
            border-color: var(--clr-primary-pink);
            color: var(--clr-primary-green);
        }
    }
}

/* geography end */
/* technology-info start */
.technology-info {
    .icon-square {
        background-color: var(--clr-primary);
    }

    .section-title {
        color: var(--clr-primary-pink);
        border-color: var(--clr-primary);
    }
}

/* technology-info end */
/* settelments start */
.settelments {
    margin: 0;
    padding-top: 5rem;
    background: linear-gradient(#f8f8f8, white);
}

/* settelments end */

.population {
    /* padding-top: 0; */
}

/************************************/
/**** 	    Footer css		 ****/
/************************************/
footer.footer-section {
    padding: 8rem 0 1rem;
    background: url(../../images/footer-bg.svg) no-repeat center center/cover;
    padding-top: 5.5rem !important;
}

footer a {
    color: #fff;
    text-decoration: none;
}

/************************************/
/**** 	    Did you know page css		 ****/
/************************************/

.did-you-know-section {
    .carousel-control-prev,
    .carousel-control-next {
        position: static;
        width: 50px;
        height: 50px;
        background-color: var(--clr-primary-pink);
        border-radius: 50%;
        opacity: 1;
        transform: none;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background-color: var(--clr-primary-pink-dark);
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
}

.did-you-know-title,
.about_us-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--clr-primary-green);
    margin-bottom: 20px;
}

.did-you-know-subtitle,
.about_us-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}

.about_us-title {
    color: var(--clr-primary-pink);
}

.about_us-subtitle {
    font-size: 1.3rem;
}
