   :root {
    --dark: #1a1a2e;
    --primary: #ff6a3e;
    --primaryLight: rgb(244, 229, 201);
    --secondary: #34a853;
    --secondaryLight: #e6f4ea;
    --light: #ffffff;
    --text: #333333;
    --textLight: #5f6368;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --sectionPadding: 5rem 2rem;
    --headerFontSize: 2.5rem;
}

  body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--primaryLight);
    overflow-x: hidden;
    scroll-behavior: smooth;
  }

*, *:before, *:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
}

/* new navbar */
 /* Topbar styles */
 .topbar {
    background-color: var(--dark);
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    /* color: black; */
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-info a {
    color: var(--light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primaryLight);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--light);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primaryLight);
    transform: translateY(-2px);
}

/* Main navbar styles */
.navbar {
    background-color: rgba(244, 229, 201, 0.423);
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar:hover {
    background-color: rgba(244, 229, 201);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 0;
}

.logo {
    color: var(--dark);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--dark);
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.menu li {
    position: relative;
}

.menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.menu a:hover {
    color: var(--dark);
}

.menu a i {
    font-size: 0.8rem;
}

/* Dropdown styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--light);
    min-width: 220px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    color: var(--text);
    padding: 0.75rem 1.5rem;
    display: block;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--primary);
    background-color: var(--primaryLight);
}

/* Mobile menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: relative;
    z-index: 2000;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: var(--dark);
    border-radius: 10px;
    transition: var(--transition);
}

/* Mobile dropdown indicator */
.dropdown > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    margin-left: 0.25rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    .topbar {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
    
    .navbar {
        padding: 0 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: var(--primaryLight);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .menu.active {
        right: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
        margin-top: 0.5rem;
        margin-left: 1rem;
    }
    
    .dropdown-menu a {
        color: var(--light);
        padding: 0.5rem 0;
    }
    
    .dropdown-menu a:hover {
        color: var(--primary);
        background-color: transparent;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* new hero section without carousal */
/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--sectionPadding) 2rem;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

/* Background image with overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/img/hero1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Diagonal accent overlay */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top right, var(--primary) 0%, transparent 70%);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    color: var(--light);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-button {
    display: inline-block;
    padding: 1.2rem 3.2rem;
    background-color: var(--primaryDark);
    /* background-color: var(--primary); */
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--light);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-button:hover {
    /* background-color: var(--primaryDark); */
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-button:active {
    transform: translateY(-1px);
}

.hero-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.hero-button:hover::after {
    left: 100%;
}

/* Stats section */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--light);
    opacity: 0.8;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light);
}

.stat-label {
    font-size: 1rem;
    color: var(--light);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-container {
        align-items: center;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-section::after {
        height: 30%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: calc(var(--sectionPadding) / 1.5) 1.5rem;
    }
    
    .hero-container {
        padding: 1.5rem;
    }
    
    .hero-button {
        padding: 1rem 2.4rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: calc(var(--sectionPadding) / 2) 1rem;
    }
    
    .hero-container {
        padding: 1rem;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

 /* Hero Section */
 .hero {
    position: relative;
    height: 100vh;
    max-height: 1200px;
    overflow: hidden;
    isolation: isolate;
}

/* Carousel Slides */
.carousel {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* backdrop-filter: blur(1px); */
    z-index: -1;
}

.slide-content {
    max-width: 1200px;
    width: 90%;
    padding: 2rem;
    text-align: center;
    z-index: 3;
}

.slide-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.slide-subheading {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    background:  var(--primary);
    color: white;
    font-size: clamp(0.5rem, 1vw, 1.2rem);
    font-weight: 500;
    padding: 1em 2.5em;
    /* border-radius: 50px; */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(41, 42, 72, 0.4);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(32, 33, 54, 0.6);
}

.cta-button:active {
    transform: translateY(1px);
}

/* Navigation Controls */
.carousel-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* .carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    transform: translateY(-50%);
} */

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.nav-btn:focus {
    outline: 2px solid white;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .slide-heading {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }
    
    .slide-subheading {
        font-size: clamp(1rem, 3vw, 1.4rem);
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .carousel-controls {
        bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 85vh;
    }
    
    .nav-btn {
        width: 36px;
        height: 36px;
        padding: 0;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .cta-button {
        padding: 0.8em 2em;
    }
}

                            

  

    /* What We Do Section - Enhanced */
    .what-we-do {
        position: relative;
        padding: var(--sectionPadding);
        background: linear-gradient(135deg, white 50%, rgb(244, 229, 201) 50%);
        color: var(--light);
        overflow: hidden;
    }
    
    .what-we-do::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--dark) 50%, var(--primaryLight) 50%);
        z-index: -1;
    }
    
    .what-we-do-content {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    .what-we-do h2 {
        font-size: var(--headerFontSize);
        font-weight: 700;
        text-align: center;
        margin-bottom: 3rem;
        color: var(--dark);
        position: relative;
        padding-bottom: 1rem;
    }
    
    .what-we-do h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--primary);
    }
    
    .programs-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
        /* border: 1px solid red; */
        
        /* background-color: var(--light);
        box-shadow: var(--shadows); */
    }
    
    .program-card {
        position: relative;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        transition: var(--transition);
        cursor: pointer;
        display: flex;
        align-items: flex-end;
        box-shadow: var(--shadow);
        background-size: cover;
        background-position: center;
    }
    
    .program-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
        z-index: 1;
        transition: var(--transition);
    }
    
    .program-card:hover::before,
    .program-card.active::before {
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
    }
    
    .what-we-do-overlay {
        position: relative;
        z-index: 2;
        padding: 2rem;
        color: var(--light);
        transition: var(--transition);
        transform: translateY(20px);
        opacity: 1;
    }
    
    .program-card:hover .what-we-do-overlay,
    .program-card.active .what-we-do-overlay {
        transform: translateY(0);
        opacity: 1;
    }
    
    .what-we-do-overlay h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .what-we-do-overlay p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }
    
    .btn {
        display: inline-block;
        padding: 0.8rem 1.8rem;
        background: transparent;
        color: var(--light);
        border: 2px solid var(--light);
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.85rem;
    }
    
    .btn:hover {
        background: var(--primary);
        color: var(--light);
    }
    
    .mission-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        background: var(--light);
        padding: 3rem;
        box-shadow: var(--shadow);
    }
    
    .mission-text {
        padding: 1rem;
    }
    
    .mission-text h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--dark);
    }
    
    .mission-text p {
        margin-bottom: 1.5rem;
        color: var(--textLight);
        line-height: 1.8;
    }
    
    .impact-points {
        padding: 1rem;
        background: var(--secondaryLight);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .impact-points h4 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: var(--dark);
    }
    
    .impact-points ul {
        list-style: none;
    }
    
    .impact-points li {
        margin-bottom: 1rem;
        padding-left: 2rem;
        position: relative;
        color: var(--textLight);
        line-height: 1.7;
    }
    
    .impact-points li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        color: var(--secondary);
        font-weight: 700;
    }
    
   
    
    /* Responsive Design */
    @media (min-width: 1000px) {
        .programs-grid {
            padding: 4.5rem;
        }
    }

    @media (max-width: 992px) {
        .mission-content {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 768px) {
        .what-we-do {
            background: linear-gradient(to bottom, white 50%, var(--primaryLight) 50%);
        }
        
        .what-we-do::before {
            background: linear-gradient(to bottom, var(--dark) 50%, var(--primaryLight) 50%);
        }
        
        .programs-grid {
            grid-template-columns: 1fr;
        }
        
        .what-we-do h2 {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 576px) {
        .what-we-do h2 {
            font-size: 1.8rem;
        }
        
        .what-we-do-overlay h3 {
            font-size: 1rem;
        }

        .what-we-do-overlay p {
            font-size: 0.8rem;
        }

        .what-we-do-overlay .btn {
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
        }
        
        .mission-text h3 {
            font-size: 1.5rem;
        }
        
        .impact-points h4 {
            font-size: 1.2rem;
        }
        
        .mission-content {
            padding: 1.5rem;
        }
    }
    

/* footer */
  /* Unique Footer Styles */
  .gc-footer {
    background: linear-gradient(135deg, #0d0d1a 0%, #090917 100%);
    color: var(--light);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gc-footer-top {
    padding: 4rem 0;
    position: relative;
}

.gc-footer-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.gc-footer-mission {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.gc-footer-mission h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.gc-footer-mission p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.gc-footer-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gc-footer-cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.gc-footer-cta-button:hover {
    color: var(--light);
}

.gc-footer-cta-button:hover::before {
    width: 100%;
}

.gc-footer-main {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gc-footer-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gc-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.gc-footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    color: var(--light);
}

.gc-footer-column h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.gc-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
}

.gc-footer-logo span {
    color: var(--primary);
}

.gc-footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.gc-footer-nav {
    list-style: none;
}

.gc-footer-nav li {
    margin-bottom: 0.8rem;
}

.gc-footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.gc-footer-nav a::before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition);
    color: var(--primary);
}

.gc-footer-nav a:hover {
    color: var(--light);
    padding-left: 20px;
}

.gc-footer-nav a:hover::before {
    opacity: 1;
    left: 0;
}

.gc-footer-contact {
    list-style: none;
}

.gc-footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.gc-footer-contact i {
    color: var(--primary);
    min-width: 20px;
    margin-top: 4px;
}

.gc-footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.gc-footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.gc-footer-contact a:hover,
.gc-footer-contact span:hover {
    color: var(--light);
}

.gc-footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.gc-footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

.gc-footer-social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.gc-footer-newsletter {
    margin-bottom: 1rem;
}

.gc-footer-newsletter-form {
    display: flex;
    margin-bottom: 1rem;
}

.gc-footer-newsletter-input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-family: inherit;
}

.gc-footer-newsletter-button {
    background: var(--primary);
    border: none;
    padding: 0 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--light);
}

.gc-footer-newsletter-button:hover {
    background: #e55a30;
}

.gc-footer-disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.gc-footer-bottom {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.gc-footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.gc-footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.gc-footer-legal {
    display: flex;
    gap: 1.5rem;
}

.gc-footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.gc-footer-legal a:hover {
    color: var(--light);
}

.gc-footer-built {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.gc-footer-built a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.gc-footer-built a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .gc-footer-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .gc-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .gc-footer-column h4::after {
        width: 40px;
    }
    
    .gc-footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gc-footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Mobile menu hidden by default */
#mobileMenu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
}

/* Overlay hidden by default */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Show mobile menu when toggled */
#mobileMenu[aria-hidden="false"] {
    display: block;
    transform: translateX(0);
}

/* Show overlay when mobile menu is open */
#overlay {
    display: block;
}


 /* Global Reach Section */
 .global-reach-section {
    padding: var(--sectionPadding);
    background-color: var(--light);
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.global-reach-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 1;
}

/* Header remains at top */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: var(--headerFontSize);
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--textLight);
    line-height: 1.8;
}

/* Refactored Layout: Map and Text Side-by-Side */
.map-text-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    align-items: center;
}

.text-content {
    padding: 1rem;
}

.impact-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.highlight-icon {
    background-color: var(--secondaryLight);
    color: var(--secondary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.highlight-text h3 {
    color: var(--dark);
    margin: 0 0 0.5rem;
}

.highlight-text p {
    margin: 0;
    color: var(--textLight);
    font-size: 1rem;
    line-height: 1.6;
}

/* Map container - right side */
.map-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 500px;
    background-color: var(--light);
    z-index: 10;
}

/* Leaflet map styling */
#impact-map {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

/* Custom marker styling */
.map-marker {
    background-color: var(--primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(255, 106, 62, 0.3);
    animation: pulse 2s infinite;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.map-marker::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--light);
    border-radius: 50%;
}

.map-marker:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(255, 106, 62, 0.4);
}

/* Tooltip styling */
.leaflet-tooltip {
    background-color: var(--dark);
    color: var(--light);
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.leaflet-tooltip:before {
    border-top-color: var(--dark);
}

/* Image Grid - now below the map-text row */
.image-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 220px; /* Increased height for better visibility */
    gap: 20px; /* Increased gap for better spacing */
}

.image-item {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.image-item:nth-child(1) { grid-column: span 3; }
.image-item:nth-child(2) { grid-column: span 3; }
.image-item:nth-child(3) { grid-column: span 2; }
.image-item:nth-child(4) { grid-column: span 2; }
.image-item:nth-child(5) { grid-column: span 2; }

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-item:hover img {
    transform: scale(1.1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--light);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: var(--transition);
    opacity: 0;
}

.image-item:hover .image-caption {
    transform: translateY(0);
    opacity: 1;
}

.country-name {
    font-weight: 700;
    font-size: 1.3rem; /* Slightly larger for better visibility */
    margin-bottom: 0.3rem;
}

.country-desc {
    font-size: 0.95rem;
    opacity: 0.9;
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    background-color: var(--secondaryLight);
    border-radius: 4px;
    padding: 2rem; /* Increased padding */
    margin-top: 3rem; /* Increased margin */
    box-shadow: var(--shadow);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem; /* Slightly larger */
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem; /* Slightly larger */
    color: var(--textLight);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 106, 62, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(255, 106, 62, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 106, 62, 0); }
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .map-text-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .map-container {
        height: 400px;
        order: 2; /* Map below text on smaller screens */
    }
    
    .text-content {
        order: 1;
    }
    
    .image-grid {
        grid-auto-rows: 180px;
    }
    
    .stats-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 130px;
    }
}

@media (max-width: 768px) {
    .global-reach-section {
        padding: 3rem 1.5rem;
    }

    
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .image-grid {
        grid-auto-rows: 150px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    
    .image-item:nth-child(1),
    .image-item:nth-child(2),
    .image-item:nth-child(3),
    .image-item:nth-child(4),
    .image-item:nth-child(5) {
        grid-column: span 1;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 1.5rem;
    }

   
}

@media (min-width: 1000px) {
    /* Styles for screens around 15 inches */
    .map-text-container {
        padding: 0 4rem;
        /* border: 1px solid blue; */
    }
}


/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cta-51 {
        padding: var(--sectionPadding);
        position: relative;
    }
    #cta-51 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #cta-51 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #cta-51 .cs-title {
        color: var(--bodyTextColorWhite);
    }
    #cta-51 .cs-text {
        margin-bottom: 1rem;
        color: var(--bodyTextColorWhite);
        opacity: 0.8;
    }
    #cta-51 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #cta-51 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #cta-51 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #cta-51 .cs-button-solid:hover:before {
        width: 100%;
    }
    #cta-51 .cs-picture {
        height: 100%;
        width: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #cta-51 .cs-picture:before {
        /* black color overlay */
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background: #000;
        opacity: 0.8;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #cta-51 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

  /* ========== PARTNERS SECTION ========== */
  .gr-partners-section {
    background: var(--light);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .gr-partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .gr-partners-title {
    color: var(--dark);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }

  .gr-partners-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 1rem auto 2rem;
    border-radius: 2px;
  }

  .gr-partners-subtitle {
    color: var(--textLight);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

  .gr-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .gr-partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 160px;
    background: var(--light);
    border-radius: 16px;
    transition: var(--transition);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
  }

  .gr-partner-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
  }

  .gr-partner-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }

  .gr-partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  .gr-partner-logo {
    max-width: 120px;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: var(--transition);
  }

  .gr-partner-card:hover .gr-partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
  }

  .gr-partner-name {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
  }

  .gr-partner-card:hover .gr-partner-name {
    opacity: 1;
    transform: translateY(0);
  }

  /* Decorative elements */
  .gr-partners-deco {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--secondaryLight);
    opacity: 0.2;
    z-index: 0;
  }

  .gr-deco-1 {
    top: -80px;
    left: -80px;
  }

  .gr-deco-2 {
    bottom: -80px;
    right: -80px;
  }

  /* ========== RESPONSIVE DESIGN ========== */
  @media (max-width: 900px) {
    .gr-partners-grid {
      gap: 1.8rem;
    }
  }

  @media (max-width: 768px) {
    :root {
      --sectionPadding: 3.5rem 1.5rem;
    }

    .gr-partners-title {
      font-size: 2rem;
    }

    .gr-partners-subtitle {
      font-size: 1.1rem;
    }

    .gr-partners-grid {
      gap: 1.5rem;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .gr-partner-card {
      height: 140px;
      padding: 1rem;
    }

    .gr-partner-logo {
      max-width: 100px;
    }
  }

  @media (max-width: 480px) {
    :root {
      --sectionPadding: 2.5rem 1rem;
    }

    .gr-partners-title {
      font-size: 1.8rem;
    }

    .gr-partners-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .gr-partner-card {
      height: 130px;
    }

    .gr-partner-logo {
      max-width: 90px;
    }
  }