@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Quicksand:wght@300..700&display=swap');



:root {

    --primary-blue: #1C3666;

    --secondary-orange: #f97316;

    --light-blue: #3b82f6;

}



body {

    font-family: "Inter", sans-serif;

}



h2,

h4,

h6 {

    color: #1C3666;

    font-weight: 800;

}



.navbar {

    background-color: white;

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}



.hero-section {

    background: url('../assets/banner.webp');

    background-size: cover;

    background-position: center;

    color: white;

    padding: 120px 0 80px;

    height: 100vh;

    position: relative;

    display: flex;

    align-items: flex-end;

}



.hero-section .container {

    width: 100%;

}



.hero-title {

    font-size: 38px;

    font-weight: bold;

    margin-bottom: 20px;

}



.btn-orange {

    background-color: var(--secondary-orange);

    color: white;

    padding: 12px 30px;

    border: none;

    border-radius: 5px;

    font-weight: bold;

}



.lead {

    font-size: 16px;

    font-weight: 300;

    text-align: justify;

}



.btn-orange:hover {

    background-color: #ea580c;

    color: white;

}



.sdg-section {

    padding: 60px 0;

    background-color: #f8f9fa;

}



.sdg-card {

    background-color: white;

    border-left: 5px solid #22c55e;

    padding: 30px;

    margin-bottom: 30px;

}



.objective-item {

    margin-bottom: 20px;

    /* padding-left: 30px; */

    position: relative;

}



.objective-item i {

    position: absolute;

    left: 0;

    color: var(--secondary-orange);

}



.achievements-section {

    padding: 60px 0;

    background-color: white;

}



.achievements-section h2 {

    font-size: 2rem;

    font-weight: 800;

    text-align: start;

    margin-bottom: 20px;

}



.achievement-card {

    padding: 12px;

    border-left: 10px solid var(--secondary-orange);

    background-color: #f8f9fa;

    height: 100%;

}



.achievement-number {

    font-size: 3rem;

    font-weight: bold;

    color: var(--primary-blue);

    margin-bottom: 10px;

}



.achievement-card p {

    font-size: 16px;

    font-weight: 600;

    /* text-align: justify; */

}



.vision-section {

    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23166534" width="1200" height="400"/></svg>');

    background-size: cover;

    color: white;

    padding: 80px 0;

    text-align: center;

}



.objectives-section {

    background-color: var(--primary-blue);

    color: white;

}



.objective-box {

    text-align: center;

    padding: 30px 20px;

}



.objective-box p {

    font-size: 18px;

    font-weight: 700;

    text-align: justify;

}



.objective-number {

    font-size: 108px;

    font-weight: bold;

    opacity: 0.9;

}



.partnerships-section {

    padding: 60px 0;

    text-align: center;

    background-color: #f8f9fa;

}



.partner-logo {

    object-fit: contain;

}



h2 {

    color: #1C3666;

    font-weight: 800;

}



.events-section {

    padding: 60px 0;

    background-color: white;

}



.event-card {

    position: relative;

    overflow: hidden;

    border-radius: 8px;

    margin: 0 15px;

}



.event-card img {

    width: 100%;

    height: 300px;

    object-fit: cover;

}



.event-overlay {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));

    color: white;

    padding: 20px;

}



.event-overlay p {

    font-size: 12px;

    font-weight: 600;

    text-align: justify;

    margin: 0;

}



.event-date {

    font-size: 3rem;

    font-weight: bold;

    display: block;

    line-height: 1;

}



.month {

    font-size: 16px;

    font-weight: bold;

    display: block;

    margin-bottom: 10px;

}



/* Carousel Styling */

.carousel-container {

    position: relative;

    overflow: hidden;

    padding: 0 50px;

}



.carousel-track {

    display: flex;

    transition: transform 0.5s ease;

}



.carousel-slide {

    min-width: calc(33.333% - 30px);

    margin: 0 15px;

}



/* Navigation Buttons */

.carousel-btn {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background-color: var(--secondary-orange);

    color: white;

    border: none;

    width: 40px;

    height: 40px;

    border-radius: 50%;

    cursor: pointer;

    z-index: 10;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    transition: background-color 0.3s;

}



.carousel-btn:hover {

    background-color: #ea580c;

}



.carousel-btn.prev {

    left: 0;

}



.carousel-btn.next {

    right: 0;

}



/* Dots Navigation */

.carousel-dots {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 30px;

}



.dot {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background-color: #d1d5db;

    cursor: pointer;

    transition: all 0.3s;

}



.dot.active {

    background-color: var(--secondary-orange);

    width: 30px;

    border-radius: 6px;

}



/* Responsive */

@media (max-width: 992px) {

    .carousel-slide {

        min-width: calc(50% - 30px);

    }

}



@media (max-width: 768px) {

    .carousel-slide {

        min-width: calc(100% - 30px);

    }
.objective-item{
padding-left: 0;
}


    .carousel-container {

        padding: 0 20px;

    }



    .carousel-btn {

        width: 35px;

        height: 35px;

        font-size: 18px;

    }

}







.events-section {

    padding: 60px 0;

    background-color: white;

}



.event-card {

    position: relative;

    overflow: hidden;

    border-radius: 8px;

    margin-bottom: 30px;

}



.event-card img {

    width: 100%;

    height: 300px;

    object-fit: cover;

}



.event-overlay {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));

    color: white;

    padding: 20px;

}



.event-overlay p {

    font-size: 12px;

    font-weight: 600;

    text-align: justify;

    align-items: flex-end;

}



.event-date {

    font-size: 3rem;

    font-weight: bold;

    display: block;

    align-items: flex-start;

}



.month {

    font-size: 16px;

    font-weight: bold;

    display: block;

    margin-bottom: 10px;

}



.team-section {

    background-color: #f8f9fa;

}



.team-card {

    background-color: white;

    border-radius: 8px;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    margin-bottom: 30px;

}



.team-card img {

    width: 100%;

    object-fit: cover;

}



.team-info {

    background-color: var(--primary-blue);

    color: white;

    margin: 20px;

    padding: 20px;

    position: absolute;

    bottom: -100px;

    border-top-right-radius: 20px;

    border-bottom-left-radius: 20px;

    opacity: 0.8;

}



.team-info h5 {

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 5px;

    text-transform: uppercase;

}



.team-info p {

    font-size: 14px;

    font-weight: 300;

    margin-bottom: 5px;

}



.roadmap-section {

    padding: 60px 0;

    background-color: white;

}



.roadmap-card {

    border-left: 5px solid #dc2626;

    padding: 30px;

    background-color: #f8f9fa;

}



.footer {

    background-color: var(--primary-blue);

    color: white;

    padding: 40px 0 20px;

}



.footer a {

    color: white;

    text-decoration: none;

}



.footer a:hover {

    color: var(--secondary-orange);

}



.wheel-container {

    position: relative;

    width: 400px;

    height: 400px;

    margin: 0 auto;

}



.wheel {

    position: relative;

    width: 100%;

    height: 100%;

    transform: rotate(-90deg);

}



.segment {

    position: absolute;

    width: 100%;

    height: 100%;

    clip-path: polygon(50% 41%, 42% 0%, 58% 6%);

    transform-origin: 50% 55%;

}



.segment-inner {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: flex-start;

    justify-content: center;

    padding-top: 30px;

}



.icon {

    width: 35px;

    height: 35px;

    background: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

    border-radius: 4px;

    transform: rotate(90deg);

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

}



.segment:nth-child(1) {

    /* background: #E5243B; */

    transform: rotate(0deg);

}



.segment:nth-child(2) {

    /* background: #DDA63A; */

    transform: rotate(21.18deg);

}



.segment:nth-child(3) {

    /* background: #4C9F38; */

    transform: rotate(42.36deg);

}



.segment:nth-child(4) {

    /* background: #C5192D; */

    transform: rotate(63.54deg);

}



.segment:nth-child(5) {

    /* background: #FF3A21; */

    transform: rotate(84.72deg);

}



.segment:nth-child(6) {

    /* background: #26BDE2; */

    transform: rotate(105.9deg);

}



.segment:nth-child(7) {

    /* background: #FCC30B; */

    transform: rotate(127.08deg);

}



.segment:nth-child(8) {

    /* background: #A21942; */

    transform: rotate(148.26deg);

}



.segment:nth-child(9) {

    /* background: #FD6925; */

    transform: rotate(169.44deg);

}



.segment:nth-child(10) {

    /* background: #DD1367; */

    transform: rotate(190.62deg);

}



.segment:nth-child(11) {

    /* background: #FD9D24; */

    transform: rotate(211.8deg);

}



.segment:nth-child(12) {

    /* background: #BF8B2E; */

    transform: rotate(232.98deg);

}



.segment:nth-child(13) {

    /* background: #3F7E44; */

    transform: rotate(254.16deg);

}



.segment:nth-child(14) {

    /* background: #0A97D9; */

    transform: rotate(275.34deg);

}



.segment:nth-child(15) {

    /* background: #56C02B; */

    transform: rotate(296.52deg);

}



.segment:nth-child(16) {

    /* background: #00689D; */

    transform: rotate(317.7deg);

}



.segment:nth-child(17) {

    /* background: #19486A; */

    transform: rotate(338.88deg);

}



.center {

    position: absolute;

    top: 50%;

    left: 56%;

    transform: translate(-50%, -50%);

    width: 140px;

    height: 140px;

    background: white;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    z-index: 10;

}



.sdg-logo {

    text-align: center;

    color: #009edb;

    font-weight: bold;

    line-height: 1.2;

}



.sdg-logo .sustainable {

    font-size: 10px;

    letter-spacing: 0.5px;

}



.sdg-logo .goals {

    font-size: 20px;

    letter-spacing: 1px;

}



.health-card {

    color: white;

    padding: 30px;

    border-radius: 8px;

    height: 100%;

}



.good-health {

    /* background-color: #2C9B48; */

    /* padding: 20px; */

}



.health-card h3 {

    font-size: 26px;

    font-weight: bold;

    margin-bottom: 20px;

    display: flex;

    align-items: center;

    gap: 25px;

}



.health-card p {

    font-size: 14px;

    line-height: 1.6;

    font-weight: 600;

}



.objectives-grid {

    display: flex;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
    flex-wrap: wrap;

}



.objective-item {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    /* padding: 12px; */

    background: rgba(255, 255, 255, 0.1);

    border-radius: 6px;

    font-size: 13px;

    line-height: 1.4;

    align-items: center;

}



.objective-item a {

    font-weight: 800;

    color: #0D3050;

}



.vision-section {

    background: url('../assets/earth.webp');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    height: 80vh;

    position: relative;

}



.vision-section h2 {

    position: absolute;

    bottom: 20px;

    left: 20px;

    margin: 0;

}



@media (max-width: 768px) {

    .wheel-container {

        width: 280px;

        height: 280px;

        margin-bottom: 30px;

    }



    .health-card h3 {

        flex-direction: column;

    }



    .health-card h3 img {

        align-self: flex-start;

    }

.segment-inner img

 {

    width: 40px;

}

.sdg-logo img {

    width: 100px;

}

    .center {

        width: 120px;

        height: 120px;

    }



    .sdg-logo .sustainable {

        font-size: 8px;

    }



    .sdg-logo .goals {

        font-size: 14px;

    }



    .objectives-grid {

        grid-template-columns: 1fr;

    }



    .segment-inner {

        padding-top: 20px;

    }



    .icon {

        width: 25px;

        height: 25px;

        font-size: 14px;

    }



    .team-info {

        margin: 8px;

        padding: 20px;

        bottom: 0;

    }

}



@media (max-width: 576px) {

    .team-info {

        margin: 8px;

        padding: 20px;

        bottom: 0;

    }

}