
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Main Header Container */
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    transition: all 0.3s ease;
}

/* Top Bar - Logo, Search, Social Icons */
.top-bar {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 10px 0;
}

.top-bar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.navbar-brand {
    text-decoration: none;
}

.navbar-brand img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Right Side Container */
.top-right-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Search Bar */
.search-container {
    position: relative;
}

.search-input {
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 10px 50px 10px 20px;
    width: 280px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-input:focus {
    outline: none;
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
    background: #ffffff;
}

.search-input::placeholder {
    color: #6c757d;
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #f39c12;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-btn:hover {
    background: #e67e22;
    transform: translateY(-50%) scale(1.1);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon.linkedin { background: #0077b5; }
.social-icon.facebook { background: #1877f2; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.youtube { background: #ff0000; }
.social-icon.twitter { background: #000000; }

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Donate Button */
.donate-btn {
    background: #f39c12;
    color: white !important;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.donate-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    color: white !important;
}

/* Mobile Hamburger and Donate Button Container */
.mobile-controls {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-donate-btn {
    background: #f39c12;
    color: white !important;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-hamburger {
    background: #f39c12;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    color: white;
    font-size: 18px;
}

/* Bottom Navigation Bar */
.bottom-nav {
    background: #ffffff;
    padding: 0;
}

.main-navbar {
    padding: 0;
}

.navbar-nav {
    width: 100%;
    justify-content: center;
}

.navbar-nav .nav-item {
    margin: 0;
}

.navbar-nav .nav-link {
    color: #333333 !important;
    font-weight: 500;
    font-size: 15px;
    padding: 18px 22px !important;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.navbar-nav .nav-link:hover {
    color: #f39c12 !important;
    background: rgba(243, 156, 18, 0.05);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #f39c12;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link.active {
    color: #f39c12 !important;
    background: rgba(243, 156, 18, 0.05);
}

/* Hero Section */
.hero-section {
    margin-top: 140px;
}

.hero-carousel {
    height: 600px;
}

.carousel-item {
    height: 600px;
}

.carousel-item img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-color: #333;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background: #f39c12;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .search-input {
        width: 240px;
    }
    
    .top-right-section {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .search-input {
        width: 200px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    /* Hide bottom navigation on mobile */
    .bottom-nav {
        display: none !important;
    }
    
    /* Show mobile controls */
    .mobile-controls {
        display: flex !important;
    }
    
    /* Hide desktop elements on mobile */
    .search-container,
    .social-icons,
    .donate-btn {
        display: none !important;
    }
    
    .hero-section {
        margin-top: 80px;
    }
    
    .top-bar {
        padding: 8px 0;
    }
    
    .navbar-brand img {
        height: 50px;
    }
    
    .hero-carousel,
    .carousel-item,
    .carousel-item img {
        height: 400px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        margin-top: 70px;
    }
    
    .top-bar {
        padding: 5px 0;
    }
    
    .navbar-brand img {
        height: 45px;
    }
    
    .hero-carousel,
    .carousel-item,
    .carousel-item img {
        height: 300px;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1060;
    padding-top: 80px;
}

.mobile-menu.show {
    left: 0;
}

.mobile-menu .nav-link {
    color: #333333 !important;
    padding: 15px 25px !important;
    border-bottom: 1px solid #f8f9fa;
    font-weight: 500;
}

.mobile-menu .nav-link:hover {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12 !important;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1055;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}








/* Childhood to Livelihood Approach Section */
.childhood-livelihood-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.childhood-livelihood-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(243, 156, 18, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.content-center {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: #f39c12;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: justify;
}

.know-more-btn {
    background: #f39c12;
    color: white;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.know-more-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    color: white;
}

.left-image-container,
.right-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-image-container img,
.right-image-container img {
    max-height: 500px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.left-image-container img:hover,
.right-image-container img:hover {
    transform: scale(1.05);
}

/* Who We Are Section */
.who-we-are-section {
    background: #ffffff;
    position: relative;
    padding: 80px 0;
}

.content-left {
    padding-right: 40px;
}

.section-title-left {
    font-size: 2.8rem;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.title-underline-left {
    width: 80px;
    height: 4px;
    background: #f39c12;
    margin-bottom: 30px;
    border-radius: 2px;
}

.section-description-left {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: justify;
}

.know-more-btn-left {
    background: #f39c12;
    color: white;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.know-more-btn-left:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    color: white;
}

.right-image-container-2 {
    position: relative;
    text-align: center;
}

.right-image-container-2 img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.right-image-container-2 img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title,
    .section-title-left {
        font-size: 2.4rem;
    }
    
    .content-left {
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    .section-title,
    .section-title-left {
        font-size: 2.2rem;
    }
    
    .section-description,
    .section-description-left {
        font-size: 1rem;
    }
    
    .content-left {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .childhood-livelihood-section .row,
    .who-we-are-section .row {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .childhood-livelihood-section,
    .who-we-are-section {
        padding: 60px 0;
    }
    
    .section-title,
    .section-title-left {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .title-underline,
    .title-underline-left {
        width: 60px;
        height: 3px;
        margin-bottom: 25px;
    }
    
    .section-description,
    .section-description-left {
        font-size: 0.95rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .know-more-btn,
    .know-more-btn-left {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .content-center {
        padding: 0 20px;
    }
    
    .content-left {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .right-image-container-2 {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .section-title,
    .section-title-left {
        font-size: 1.8rem;
    }
    
    .section-description,
    .section-description-left {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .childhood-livelihood-section,
    .who-we-are-section {
        padding: 40px 0;
    }
    
    .content-center,
    .content-left {
        padding: 0 15px;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-center,
.content-left {
    animation: fadeInUp 0.8s ease-out;
}

.left-image-container img,
.right-image-container img,
.right-image-container-2 img {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Hover Effects */
.childhood-livelihood-section:hover::before {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.who-we-are-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.02) 0%, rgba(243, 156, 18, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.who-we-are-section:hover::before {
    opacity: 1;
}










/* Outreach and Impact Section */
.outreach-impact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: #f39c12;
    border-radius: 2px;
}

/* Program Tabs */
.program-tabs {
    margin-bottom: 50px;
}

.tab-btn {
    background: #e9ecef;
    color: #6c757d;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    margin: 0 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-btn.active {
    background: #f39c12;
    color: white;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.tab-btn:hover {
    transform: translateY(-2px);
}

/* Tab Content */
.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stats Section */
.stat-item {
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f39c12;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f39c12;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

.stat-number.large {
    font-size: 3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    line-height: 1.3;
}

/* Partnership Section */
.partnership-title {
    color: #6c757d;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Circular Chart */
.chart-section {
    margin-top: 60px;
}

.circular-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.circular-chart {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: conic-gradient(
        #f39c12 0deg 108deg,
        #ffc107 108deg 198deg,
        #ff9800 198deg 342deg,
        #f57c00 342deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateChart 2s ease-in-out;
}

.livelihood-chart {
    background: conic-gradient(
        #f39c12 0deg 72deg,
        #ffc107 72deg 144deg,
        #ff9800 144deg 216deg,
        #f57c00 216deg 288deg,
        #e65100 288deg 360deg
    );
}

@keyframes rotateChart {
    from { transform: rotate(-10deg); }
    to { transform: rotate(0deg); }
}

.chart-center {
    position: absolute;
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.center-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.chart-segment {
    position: absolute;
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

.chart-segment .percentage {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.chart-segment .label {
    font-size: 0.8rem;
    display: block;
    line-height: 1.2;
}

.chart-segment .sub-label {
    font-size: 0.7rem;
    opacity: 0.9;
    display: block;
    margin-top: 3px;
}

.chart-segment .amount {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
}

/* Segment Positioning */
.segment-1 { top: 20px; left: 50%; transform: translateX(-50%); }
.segment-2 { top: 50%; right: 20px; transform: translateY(-50%); }
.segment-3 { bottom: 20px; left: 50%; transform: translateX(-50%); }
.segment-4 { top: 50%; left: 20px; transform: translateY(-50%); }
.segment-5 { top: 30%; left: 30%; transform: translate(-50%, -50%); }

.chart-footer {
    margin-top: 30px;
    color: #6c757d;
    font-style: italic;
    font-size: 0.9rem;
}

/* Counter Animation */
@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stat-number.counting {
    animation: countUp 0.5s ease-in-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .circular-chart {
        width: 350px;
        height: 350px;
    }
    
    .center-image {
        width: 100px;
        height: 100px;
    }
    
    .chart-center {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-number.large {
        font-size: 2.5rem;
    }
    
    .circular-chart {
        width: 300px;
        height: 300px;
    }
    
    .chart-center {
        width: 110px;
        height: 110px;
    }
    
    .center-image {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .outreach-impact-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tab-btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-number.large {
        font-size: 2.2rem;
    }
    
    .circular-chart {
        width: 280px;
        height: 280px;
    }
    
    .chart-segment {
        font-size: 0.8rem;
    }
    
    .chart-segment .percentage {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .stat-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-number.large {
        font-size: 1.8rem;
    }
    
    .circular-chart {
        width: 250px;
        height: 250px;
    }
    
    .chart-center {
        width: 90px;
        height: 90px;
    }
    
    .center-image {
        width: 70px;
        height: 70px;
    }
    
    .chart-segment {
        font-size: 0.7rem;
    }
    
    .chart-segment .percentage {
        font-size: 1rem;
    }
}



.school-section {
    width: 100%;
    background: #f7b733;
    background: linear-gradient(to bottom, #ffffff 0%, #f7b733 50%, #fc4a1a 100%);
    padding: 0;
    margin: 0;
  }
  
  .school-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  









  .media-section {
    background: #f8f9fa;
    padding: 0;
    position: relative;
    z-index: 1;
}

.media-column {
    background: #f39c12;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.media-column .column-header {
    text-align: center;
    padding: 30px 20px 20px;
    position: relative;
    z-index: 3;
}

.media-column .column-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.media-column .title-underline {
    width: 60px;
    height: 3px;
    background: white;
    margin: 0 auto;
    border-radius: 2px;
}

/* Media Carousel Styling */
.media-carousel {
    height: calc(100% - 120px);
    position: relative;
}

.media-carousel .carousel-inner {
    height: 100%;
}

.media-carousel .carousel-item {
    height: 100%;
}

.media-card {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.media-image {
    height: 70%;
    overflow: hidden;
    position: relative;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.media-card:hover .media-image img {
    transform: scale(1.1);
}

.media-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
}

.media-content {
    height: 30%;
    background: rgba(243, 156, 18, 0.95);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.media-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.media-explore-btn {
    background: white;
    color: #f39c12;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.media-explore-btn:hover {
    background: #f8f9fa;
    color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Media Carousel Controls */
.media-carousel-control-prev,
.media-carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 45%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    z-index: 15;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-column:hover .media-carousel-control-prev,
.media-column:hover .media-carousel-control-next {
    opacity: 1;
}

.media-carousel-control-prev {
    left: 15px;
}

.media-carousel-control-next {
    right: 15px;
}

.media-carousel-control-prev:hover,
.media-carousel-control-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.media-carousel-control-prev i,
.media-carousel-control-next i {
    color: #f39c12;
    font-size: 16px;
}

/* Media Carousel Indicators */
.media-carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

.media-carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
}

.media-carousel-indicators .active {
    background: white;
    transform: scale(1.3);
}

/* Column Specific Styling */
.news-column {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.blogs-column {
    background: linear-gradient(135deg, #f39c12 0%, #d68910 100%);
}

.gallery-column {
    background: linear-gradient(135deg, #f39c12 0%, #f4d03f 100%);
}

/* ===== AWARDS SECTION STYLES (Fixed) ===== */
.awards-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.awards-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.awards-title-underline {
    width: 80px;
    height: 4px;
    background: #f39c12;
    border-radius: 2px;
    margin-bottom: 50px;
}

/* Awards Carousel Container */
.awards-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Award Cards */
.award-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #f39c12;
}

.award-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.award-card:hover .award-image img {
    transform: scale(1.1);
}

.award-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

.award-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
}

.award-description strong {
    color: #495057;
    font-weight: 600;
}

.award-highlight {
    color: #f39c12;
    font-weight: 600;
}

/* Awards Carousel Controls */
.awards-carousel-control-prev,
.awards-carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(243, 156, 18, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    border: 2px solid white;
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.awards-carousel-control-prev:hover,
.awards-carousel-control-next:hover {
    background: #f39c12;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.awards-carousel-control-prev {
    left: -25px;
}

.awards-carousel-control-next {
    right: -25px;
}

.awards-carousel-control-prev i,
.awards-carousel-control-next i {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

/* Awards Carousel Indicators */
.awards-carousel-indicators {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.awards-carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(243, 156, 18, 0.3);
    border: none;
    transition: all 0.3s ease;
}

.awards-carousel-indicators .active {
    background: #f39c12;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .awards-carousel-control-prev {
        left: -15px;
    }
    
    .awards-carousel-control-next {
        right: -15px;
    }
}

@media (max-width: 992px) {
    .media-column {
        height: 450px;
        margin-bottom: 0;
    }
    
    .media-column .column-title {
        font-size: 1.8rem;
    }
    
    .awards-section-title {
        font-size: 2.4rem;
    }
    
    .award-image {
        height: 220px;
    }
    
    .award-content {
        padding: 25px 20px;
    }
    
    .award-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .media-column {
        height: 400px;
    }
    
    .media-content {
        padding: 15px;
    }
    
    .media-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .media-carousel-control-prev,
    .media-carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .awards-section {
        padding: 60px 0;
    }
    
    .awards-section-title {
        font-size: 2rem;
    }
    
    .awards-carousel-control-prev,
    .awards-carousel-control-next {
        width: 40px;
        height: 40px;
        opacity: 0.9;
    }
    
    .awards-carousel-control-prev {
        left: 10px;
    }
    
    .awards-carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .media-column {
        height: 350px;
    }
    
    .media-column .column-title {
        font-size: 1.4rem;
    }
    
    .awards-section-title {
        font-size: 1.8rem;
    }
    
    .award-image {
        height: 180px;
    }
    
    .award-content {
        padding: 15px 12px;
    }
    
    .award-description {
        font-size: 0.85rem;
    }
}










/* Get Involved Section */
.get-involved-section {
    position: relative;
    background: #ffffff;
}

/* Top Content Section */
.get-involved-content {
    padding: 80px 0 60px;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.get-involved-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.get-involved-underline {
    width: 100px;
    height: 4px;
    background: #f39c12;
    border-radius: 2px;
    margin-bottom: 30px;
}

.get-involved-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Involvement Cards */
.involvement-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.involvement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.involvement-card:hover::before {
    transform: scaleX(1);
}

.involvement-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #f39c12;
}

.involvement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.involvement-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
}

.involvement-card:hover .involvement-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
}

.involvement-icon i {
    font-size: 2rem;
    color: white;
    z-index: 1;
    position: relative;
}

.involvement-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.involvement-card:hover .involvement-title {
    color: #f39c12;
}

.involvement-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 30px;
    font-weight: 400;
}

.involvement-btn {
    background: #f39c12;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 2px solid #f39c12;
}

.involvement-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.involvement-btn:hover::before {
    left: 100%;
}

.involvement-btn:hover {
    background: #e67e22;
    border-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
    color: white;
}

/* Full Width Background Image Section (FIXED) */
.get-involved-image-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 400px;
    overflow: hidden;
    display: block;
}

.full-width-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(243, 156, 18, 0.1) 0%,
        rgba(230, 126, 34, 0.1) 50%,
        rgba(243, 156, 18, 0.1) 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.involvement-card {
    animation: fadeInUp 0.6s ease-out;
}

.involvement-card:nth-child(1) {
    animation-delay: 0.1s;
}

.involvement-card:nth-child(2) {
    animation-delay: 0.2s;
}

.involvement-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .get-involved-title {
        font-size: 2.5rem;
    }
    
    .involvement-card {
        padding: 35px 25px;
    }
    
    .get-involved-image-section {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .get-involved-content {
        padding: 60px 0 40px;
    }
    
    .get-involved-title {
        font-size: 2.2rem;
    }
    
    .get-involved-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .involvement-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .involvement-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .involvement-icon i {
        font-size: 1.8rem;
    }
    
    .involvement-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .involvement-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .get-involved-image-section {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .get-involved-content {
        padding: 50px 0 30px;
    }
    
    .get-involved-title {
        font-size: 2rem;
    }
    
    .get-involved-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .involvement-card {
        padding: 25px 15px;
        margin-bottom: 25px;
    }
    
    .involvement-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .involvement-icon i {
        font-size: 1.5rem;
    }
    
    .involvement-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .involvement-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .involvement-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .get-involved-image-section {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .get-involved-content {
        padding: 40px 0 20px;
    }
    
    .get-involved-title {
        font-size: 1.8rem;
    }
    
    .get-involved-underline {
        width: 80px;
        height: 3px;
        margin-bottom: 25px;
    }
    
    .get-involved-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .involvement-card {
        padding: 20px 12px;
        margin-bottom: 20px;
    }
    
    .involvement-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    .involvement-icon i {
        font-size: 1.3rem;
    }
    
    .involvement-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .involvement-description {
        font-size: 0.85rem;
        margin-bottom: 18px;
        line-height: 1.5;
    }
    
    .involvement-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .get-involved-image-section {
        height: 200px;
    }
}

/* High Resolution Displays */
@media (min-width: 1400px) {
    .get-involved-image-section {
        height: 500px;
    }
    
    .involvement-card {
        padding: 45px 35px;
    }
    
    .involvement-icon {
        width: 90px;
        height: 90px;
    }
    
    .involvement-icon i {
        font-size: 2.2rem;
    }
}






/* Footer Section */
.footer-section {
    background: #f39c12;
    padding: 60px 0 30px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    opacity: 0.9;
    z-index: 1;
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

/* Footer Navigation Links */
.footer-links {
    margin-bottom: 30px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #333;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #222;
    transform: translateX(5px);
}

.footer-link:hover::before {
    width: 100%;
}

/* Newsletter Section */
.newsletter-section {
    margin-bottom: 30px;
}

.newsletter-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.newsletter-form {
    max-width: 400px;
}

.newsletter-input-group {
    display: flex;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: white;
    color: #FFFFFF;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    background: #333;
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Social Media Section */
.social-media-section {
    text-align: left;
    margin-bottom: 30px;
}

.social-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon i {
    font-size: 1.2rem;
    z-index: 1;
    position: relative;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Social Icon Colors */
.facebook {
    background: #3b5998;
    color: white;
}

.linkedin {
    background: #0077b5;
    color: white;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.youtube {
    background: #ff0000;
    color: white;
}

.twitter {
    background: #1da1f2;
    color: white;
}

/* Certifications */
.certifications {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.certification-badge {
    height: 60px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.certification-badge:hover {
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom-links {
    text-align: right;
}

.copyright-text {
    display: block;
    font-size: 0.9rem;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-policy-links {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.policy-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #222;
    text-decoration: underline;
}

.separator {
    color: #FFFFFF;
    font-weight: 300;
}

/* Disclaimer Section */
.disclaimer-section {
    border-top: 1px solid rgba(51, 51, 51, 0.2);
    padding-top: 20px;
    margin-top: 20px;
}

.disclaimer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-section {
        padding: 50px 0 25px;
    }
    
    .certifications {
        justify-content: center;
    }
    
    .footer-bottom-links {
        text-align: center;
    }
    
    .footer-policy-links {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .newsletter-title,
    .social-title {
        font-size: 1.2rem;
    }
    
    .footer-link {
        font-size: 0.95rem;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .certifications {
        justify-content: flex-start;
        gap: 15px;
    }
    
    .certification-badge {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 35px 0 15px;
    }
    
    .newsletter-section,
    .social-media-section {
        text-align: center;
        margin-top: 30px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 8px;
    }
    
    .newsletter-input {
        border-radius: 8px 8px 0 0;
        margin-bottom: 0;
    }
    
    .newsletter-btn {
        border-radius: 0 0 8px 8px;
        padding: 15px 25px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .certifications {
        justify-content: center;
        margin-bottom: 25px;
    }
    
    .footer-bottom-links {
        text-align: center;
        margin-top: 20px;
    }
    
    .footer-policy-links {
        flex-direction: column;
        gap: 5px;
    }
    
    .separator {
        display: none;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 30px 0 15px;
    }
    
    .footer-nav-list li {
        margin-bottom: 10px;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .newsletter-title,
    .social-title {
        font-size: 1.1rem;
    }
    
    .newsletter-input,
    .newsletter-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon i {
        font-size: 1rem;
    }
    
    .certifications {
        gap: 10px;
    }
    
    .certification-badge {
        height: 40px;
    }
    
    .copyright-text,
    .policy-link {
        font-size: 0.8rem;
    }
    
    .disclaimer-title {
        font-size: 1rem;
    }
    
    .disclaimer-text {
        font-size: 0.85rem;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section .row > div {
    animation: fadeInUp 0.6s ease-out;
}

.footer-section .row:nth-child(1) > div:nth-child(1) { animation-delay: 0.1s; }
.footer-section .row:nth-child(1) > div:nth-child(2) { animation-delay: 0.2s; }
.footer-section .row:nth-child(1) > div:nth-child(3) { animation-delay: 0.3s; }

/* Accessibility */
.footer-link:focus,
.newsletter-btn:focus,
.social-icon:focus,
.policy-link:focus {
    outline: 2px solid #333;
    outline-offset: 2px;
}

.newsletter-input:focus {
    outline: 2px solid #f39c12;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .footer-section {
        background: white !important;
        color: #FFFFFF !important;
    }
    
    .footer-section::before {
        display: none;
    }
    
    .social-icons,
    .newsletter-section {
        display: none;
    }
}








/* About Page Styles */
.about-page {
    overflow-x: hidden;
}

/* Hero Section */
.about-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.8), rgba(230, 126, 34, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-underline {
    width: 100px;
    height: 4px;
    background: white;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Our Story Section */
.our-story-section {
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: #f39c12;
    margin-bottom: 30px;
    border-radius: 2px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.story-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
    color: #333;
}

.highlight-item i {
    color: #f39c12;
    margin-right: 15px;
    font-size: 1.2rem;
}

.story-image-container {
    position: relative;
}

.story-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    z-index: -1;
}

.story-quote {
    position: absolute;
    bottom: -30px;
    left: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.story-quote i {
    color: #f39c12;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.story-quote p {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.story-quote span {
    font-weight: 600;
    color: #333;
    font-size: 0.8rem;
}

/* Mission Vision Values Section */
.mission-vision-section {
    background: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.foundation-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.foundation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: transform 0.4s ease;
    transform: scaleX(0);
}

.mission-card::before { background: #e74c3c; }
.vision-card::before { background: #3498db; }
.values-card::before { background: #2ecc71; }

.foundation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.foundation-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.mission-card .card-icon { background: #e74c3c; }
.vision-card .card-icon { background: #3498db; }
.values-card .card-icon { background: #2ecc71; }

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.card-stats {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mini-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
}

.mini-label {
    font-size: 0.9rem;
    color: #666;
}

.values-list {
    text-align: left;
}

.value-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
}

.value-item i {
    color: #2ecc71;
    margin-right: 12px;
}

/* Journey Timeline Section */
.journey-timeline-section {
    background: #f8f9fa;
}

.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.journey-item:nth-child(even) {
    flex-direction: row-reverse;
}

.journey-year {
    background: #f39c12;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 30px;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.journey-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.journey-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.journey-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.journey-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Our Approach Section */
.our-approach-section {
    background: white;
}

.approach-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #f39c12;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin: 0 30px;
}

.marker-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.timeline-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.timeline-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stat-badge {
    background: #f39c12;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Leadership Section */
.leadership-section {
    background: #f8f9fa;
}

.leader-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.leader-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(243, 156, 18, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f39c12;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #333;
    color: white;
    transform: scale(1.1);
}

.leader-info {
    padding: 25px;
    text-align: center;
}

.leader-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.leader-position {
    font-size: 1rem;
    color: #f39c12;
    font-weight: 500;
    margin-bottom: 15px;
}

.leader-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.leader-achievements {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.achievement-badge {
    background: #f8f9fa;
    color: #666;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Awards Section */
.awards-section {
    background: white;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.award-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.award-item:hover::before {
    transform: scaleX(1);
}

.award-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.award-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.award-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.award-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.award-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.award-year {
    background: #f39c12;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Global Presence Section */
.global-presence-section {
    background: #f8f9fa;
}

.presence-content {
    padding-right: 30px;
}

.presence-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.presence-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.presence-stat {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

.presence-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.presence-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.presence-highlights {
    position: relative;
    width: 100%;
    height: 100%;
}

.highlight-point {
    position: absolute;
    cursor: pointer;
}

.point-marker {
    width: 20px;
    height: 20px;
    background: #f39c12;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.point-info {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-point:hover .point-info {
    opacity: 1;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(243, 156, 18, 0); }
    100% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0); }
}

/* Testimonials Section */
.testimonials-section {
    background: white;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f39c12;
}

.testimonial-text {
    flex: 1;
}

.quote-icon {
    color: #f39c12;
    font-size: 2rem;
    margin-bottom: 15px;
}

.testimonial-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #f39c12;
    font-weight: 500;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: #f39c12;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: #e67e22;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #f39c12;
}

/* Impact Numbers Section */
.impact-numbers-section {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.impact-card {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.impact-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.impact-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Innovation Section */
.innovation-section {
    background: #f8f9fa;
}

.innovation-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.innovation-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.innovation-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* CTA Section */
.cta-section {
    background: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: #f39c12;
    color: white;
    border: 2px solid #f39c12;
}

.cta-btn.secondary {
    background: transparent;
    color: #f39c12;
    border: 2px solid #f39c12;
}

.cta-btn.tertiary {
    background: #333;
    color: white;
    border: 2px solid #333;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
    background: #e67e22;
    border-color: #e67e22;
    color: white;
}

.cta-btn.secondary:hover {
    background: #f39c12;
    color: white;
}

.cta-btn.tertiary:hover {
    background: #222;
    border-color: #222;
    color: white;
}

.cta-contact {
    margin-top: 20px;
}

.contact-link {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .presence-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .approach-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .timeline-content {
        margin-left: 20px;
    }
    
    .journey-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .journey-year {
        margin: 0 0 20px 0;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .foundation-card {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 250px;
        text-align: center;
        justify-content: center;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .presence-stats {
        gap: 15px;
    }
    
    .presence-stat {
        padding: 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .foundation-card {
        padding: 25px 15px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .marker-number {
        font-size: 1.2rem;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    .journey-content {
        padding: 20px;
    }
    
    .journey-image {
        height: 150px;
    }
    
    .testimonial-content {
        padding: 25px;
    }
    
    .testimonial-image img {
        width: 80px;
        height: 80px;
    }
    
    .quote-icon {
        font-size: 1.5rem;
    }
    
    .testimonial-text p {
        font-size: 1rem;
    }
}






