.impact-hero{
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.impact-content{
    max-width: 750px;
    text-align: left;
}

.impact-tag{
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid rgba(212,175,55,.4);
    border-radius: 40px;
    color: #d4af37;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.impact-content h1{
    font-size: 65px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
}

.impact-content h1 span{
    color: #d4af37;
}

.impact-content p{
    color: rgba(255,255,255,.85);
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.hero-buttons{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-gold,
.btn-outline{
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: .4s;
    font-weight: 600;
}

.btn-gold{
    background: #d4af37;
    color: #081523;
}

.btn-outline{
    border: 2px solid #d4af37;
    color: #d4af37;
}

.btn-gold:hover,
.btn-outline:hover{
    transform: translateY(-5px);
}

.impact-hero{
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-bg{
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/global-impact-bg.jpg");
    background-size: cover;
    background-position: center;
    animation: heroZoom 12s ease-in-out infinite alternate;
}

.impact-overlay{
    position: absolute;
    inset: 0;
    background: rgba(7,18,35,0.75);
}

.impact-content{
    position: relative;
    z-index: 2;
}
.impact-hero{
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

/* Animated Background */
.hero-bg{
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: url("../images/about/global-impact_hero.jpg") center/cover no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
    z-index: 1;
}

/* Dark Overlay */
.impact-overlay{
    position: absolute;
    inset: 0;
    background: rgba(7,18,35,0.85);
    z-index: 2;
}

/* Content */
.impact-content{
    position: relative;
    z-index: 3;
    max-width: 750px;
}
.hero-bg{
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: url("../images/about/global-impact_hero.jpg") center/cover no-repeat;
    z-index: 1;

    animation: heroZoom 12s infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.3);
    }
}
.impact-stats{
    padding: 120px 8%;
    background: #081523;
}

.section-heading{
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 70px;
}

.section-heading span{
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading h2{
    color: #fff;
    font-size: 48px;
    margin: 20px 0;
}

.section-heading p{
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

.stats-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.stat-card{
    background: #102338;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: .4s;
    border: 1px solid rgba(255,255,255,.05);
}

.stat-card:hover{
    transform: translateY(-10px);
}

.stat-card h3{
    color: #d4af37;
    font-size: 55px;
    margin-bottom: 15px;
}

.stat-card p{
    color: #fff;
    font-size: 18px;
}
.global-presence{
    padding: 120px 8%;
    background: #0d1b2d;
}

.presence-grid{
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.presence-content h2{
    font-size: 50px;
    color: #fff;
    margin: 20px 0;
}

.presence-content h2 span{
    color: #d4af37;
}

.presence-content p{
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    margin-bottom: 35px;
}

.countries-list{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.countries-list span{
    background: rgba(212,175,55,.12);
    color: #d4af37;
    padding: 10px 20px;
    border-radius: 30px;
}

.map-wrapper{
    position: relative;
}

.map-wrapper img{
    width: 100%;
    opacity: .9;
}

/* Glowing Dots */

.map-dot{
    position: absolute;
    width: 14px;
    height: 14px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 20px #d4af37;
    animation: pulse 2s infinite;
}

.dot-1{ top:40%; left:69%; } /* India */
.dot-2{ top:34%; left:18%; } /* USA */
.dot-3{ top:30%; left:48%; } /* UK */
.dot-4{ top:44%; left:74%; } /* Singapore */
.dot-5{ top:35%; left:52%; } /* UAE */
.dot-6{ top:30%; left:15%; } /* Canada */

@keyframes pulse{
    0%{
        transform: scale(1);
        opacity: 1;
    }
    50%{
        transform: scale(1.8);
        opacity: .5;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}

@media(max-width:991px){
    .presence-grid{
        grid-template-columns: 1fr;
    }

    .presence-content{
        text-align: center;
    }

    .countries-list{
        justify-content: center;
    }
}

.impact-timeline{
    padding: 120px 8%;
    background: #081523;
}

.timeline{
    position: relative;
    max-width: 1200px;
    margin: 80px auto 0;
}

.timeline::before{
    content: "";
    position: absolute;
    width: 3px;
    background: rgba(212,175,55,.4);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item{
    position: relative;
    width: 50%;
    padding: 20px 50px;
}

.timeline-item.left{
    left: 0;
}

.timeline-item.right{
    left: 50%;
}

.timeline-content{
    background: #102338;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.06);
    transition: .4s;
}

.timeline-content:hover{
    transform: translateY(-10px);
}

.timeline-content span{
    color: #d4af37;
    font-weight: 700;
    font-size: 20px;
}

.timeline-content h3{
    color: #fff;
    margin: 15px 0;
}

.timeline-content p{
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

.timeline-item::before{
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #d4af37;
    border-radius: 50%;
    top: 45px;
    right: -9px;
    box-shadow: 0 0 20px #d4af37;
}

.timeline-item.right::before{
    left: -9px;
}

@media(max-width:991px){

    .timeline::before{
        left: 20px;
    }

    .timeline-item,
    .timeline-item.right{
        width: 100%;
        left: 0;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline-item::before,
    .timeline-item.right::before{
        left: 11px;
    }
}
.global-partners{
    padding: 120px 0;
    background: #0d1b2d;
    overflow: hidden;
}

.partners-slider{
    width: 100%;
    overflow: hidden;
    margin-top: 70px;
}

.partners-track{
    display: flex;
    width: max-content;
    animation: partnerSlide 30s linear infinite;
}

.partner-logo{
    width: 220px;
    height: 120px;
    background: #102338;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 20px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.partner-logo img{
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .8;
    transition: .4s;
}

.partner-logo:hover img{
    filter: grayscale(0%);
    opacity: 1;
}

.partner-btn{
    text-align: center;
    margin-top: 60px;
}

@keyframes partnerSlide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}
.partners-track:hover{
    animation-play-state: paused;
}
.partner-logo{
    backdrop-filter: blur(10px);
}
.success-stories{
    padding: 120px 8%;
    background: #081523;
}

.testimonial-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 70px;
}

.testimonial-card{
    background: #102338;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,.06);
    transition: .4s;
}

.testimonial-card:hover{
    transform: translateY(-12px);
}

.quote-icon{
    width: 60px;
    height: 60px;
    background: rgba(212,175,55,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.quote-icon i{
    color: #d4af37;
    font-size: 22px;
}

.testimonial-card p{
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    margin-bottom: 35px;
}

.testimonial-author{
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4{
    color: #fff;
    margin-bottom: 5px;
}

.testimonial-author span{
    color: #d4af37;
    font-size: 14px;
}

@media(max-width:991px){
    .testimonial-grid{
        grid-template-columns: 1fr;
    }
}
.future-vision{
    position: relative;
    padding: 140px 8%;
    background:
        linear-gradient(rgba(7,18,35,.75),
        rgba(7,18,35,.75)),
        url("../images/about/future-vision-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.future-content{
    position: relative;
    max-width: 900px;
    margin: auto;
    z-index: 2;
}

.vision-tag{
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid rgba(212,175,55,.4);
    border-radius: 40px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.future-content h2{
    font-size: 58px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 30px;
}

.future-content h2 span{
    color: #d4af37;
}

.future-content p{
    color: rgba(255,255,255,.85);
    line-height: 1.9;
    font-size: 20px;
    max-width: 800px;
    margin: auto;
    margin-bottom: 45px;
}

.future-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

== Navigation==
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.award-card,
.category-card,
.stat-box {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(212,175,55,0.15);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.4);
}

.award-card:hover,
.category-card:hover,
.stat-box:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow:
        0 25px 60px rgba(212,175,55,0.18);
}
.about-text p,
.award-cta p {
    color: rgba(255,255,255,0.75);
}

.category-card h3,
.award-card h3,
.stat-box p {
    color: #ffffff;
}
section {
    position: relative;
}

section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background:
        linear-gradient(
            to right,
            transparent,
            rgba(212,175,55,0.5),
            transparent
        );
}
