*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root {
    --primary-color: #2c5530;
    --secondary-color: #73a580;
    --accent-color: #F57C00;
    --accent-light: #f7ac61;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --primary-color: #2c5530;
    --secondary-color: #73a580;
}
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    max-width: 100%;
}

/* Header & Navigation */
.top-nav {
    background-color: var(--accent-color);
    color: #333;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.top-nav a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.top-nav a:hover {
    color: #000;
}

.top-nav .contact-info i,
.top-nav .social-links i {
    margin-right: 8px;
}

.top-nav .social-links a {
    margin-left: 15px;
    font-size: 1rem;
}

.main-nav {
    background-color: var(--primary-color);
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
    padding: 0;
    min-height: 70px;
}

.navbar-brand img {
    height: 50px;
}

.navbar .dropdown-toggle::after {
    display: none !important;
}

.navbar-nav .nav-link,
.navbar .dropdown-toggle {
    position: relative;
    color: #fff;
    transition: color 0.3s ease;
    padding: 40px 15px !important;
    font-size: 1.05rem;
    font-weight: 500;
}

.navbar-nav .nav-link::after,
.navbar .dropdown-toggle::before {
    content: "";
    position: absolute;
    bottom: 6px; 
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 6px;
    height: 6px;
    background-color: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after,
.navbar .dropdown-toggle:hover::before,
.navbar .dropdown-toggle.active::before {
    background-color: var(--light-color); 
    transform: translateX(-50%) scale(1);
}

.navbar-nav .nav-link:hover,
.navbar .dropdown-toggle:hover {
    color: var(--light-color);
}

/* Mega Dropdown */
.nav-item.mega {
    position: static;
}

.mega-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    border: none;
    z-index: 1039;
    pointer-events: auto;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    background: white;
}

.nav-item.mega:hover .mega-dropdown,
.nav-item.mega.show .mega-dropdown {
    display: block;
}

.mega-inner {
    display: flex;
    min-height: 100px;
    margin: 0px;
    padding: 0px;
    border-radius: 8px;
}

.mega-left {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    width: 280px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    margin: 0px;
    border-radius: 8px 0 0 8px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.menu-item:hover, .menu-item.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-left: 4px solid var(--accent-color);
}

.menu-item i {
    width: 24px;
    margin-right: 12px;
    font-size: 18px;
}

.menu-item span {
    font-weight: 500;
}

.mega-right {
    flex: 1;
    background-color: white;
    border-radius: 0 8px 8px 0;
    overflow: auto;
}

.program-block {
    display: none;
}

.program-block.active {
    display: block;
}

.table-responsive {
    overflow-x: auto;
}

.program-table {
    table-layout: fixed;
    width: 100%;
    height: cover;
    margin: 0;
    border-collapse: collapse;
}

.program-table td {
    border: 1px solid #dee2e6;
    padding: 1rem;
    vertical-align: top;
}

.program-table .icon {
    font-size: 24px;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 8px;
}

.card-title {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: block;
}

.card-title:hover {
    color: var(--secondary-color);
}

.card-links ul {
    padding-left: 0;
    margin-top: 10px;
}

.card-links li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    list-style-type: none;
}

.card-links li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    transition: transform 0.2s ease;
}

.card-links li:hover:before {
    content: "→";
    transform: translateX(2px);
}

.card-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-links a:hover {
    color: var(--primary-color);
}

/* Mobile Accordion */
.mobile-accordion {
    display: none;
    margin: auto;
}

.accordion-button {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 12px 20px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--secondary-color);
    color: white;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background-color: #f8f9fa;
    padding: 0;
}

.accordion-link {
    display: block;
    padding: 10px 20px;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.accordion-link:hover {
    background-color: #e9ecef;
    color: var(--primary-color);
}

.accordion-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Buttons */
.cta-accent {
    background-color: var(--accent-color);
    color: white;
}

.cta-accent:hover {
    background-color: #e67300;
    color: white;
}

.btn{
    max-width: fit-content;
}

/* Hero Carousel Fixes */
.hero-carousel {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0px;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100vh;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Ensure Bootstrap carousel works */
.carousel-control-prev,
.carousel-control-next {
    z-index: 20;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.overlay-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    z-index: 10;
    padding: 0 20px;
}

.overlay-content .top{
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;
    color: white;
    z-index: 10;
}

.overlay-content .top h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 1.5rem 0px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.overlay-content .top p {
    font-size: 1.3rem;
    max-width: 900px;
    margin-bottom: 2.5rem;
    color: #bdc1c4;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.bottom{
    background-color: #0000009b;
    padding: 20px 40px;
    border-radius: 8px;
}

.core-values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.core-value {
    padding: 0 20px;
    max-width: 260px;
    font-size: .87rem;
    text-align: left;
    transition: all 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
}

.core-value:hover {
    transform: translateY(-4px);
    color: var(--light-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
}

.text-success{
    color: #46B049;
}

/* Responsive */
@media (max-width: 991.98px) {
    body {
        padding-top: 160px;
    }
    
    .main-nav {
        padding: 30px;
    }
    
    .top-nav .contact-info,
    .top-nav .social-links {
        text-align: center;
        justify-content: center !important;
    }
    
    .top-nav .social-links a {
        margin: 0 8px;
    }
    
    .main-nav {
        min-height: 60px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        text-align: left;
    }
    
    .navbar-nav .nav-link:after {
        display: none;
    }
    
    .mega-dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border-top: 1px solid var(--primary-color);
        padding: 0;
        margin: 0;
        height: auto;
        background: none;
    }
    
    .nav-item.mega.show .mega-dropdown {
        display: block;
    }
    
    .mega-inner {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }
    
    .mega-left {
        display: none;
    }
    
    .mobile-accordion {
        display: block;
    }
    
    .mega-right {
        flex: 1;
        padding: 0;
        border-radius: 0;
        max-height: none;
        background: transparent;
    }
    
    .program-block {
        padding: 0;
    }
    
    .program-table {
        display: none;
    }
    
    .overlay-content h1 {
        font-size: 2.5rem;
    }
    
    .overlay-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .top-nav {
        font-size: 0.8rem;
        padding: 6px 0;
    }
    
    .top-nav .social-links a {
        margin: 0 5px;
    }
    
    .navbar-brand img {
        height: 40px;
    }
}
/* About Section */
#about {
    padding: 80px 0 !important;
}

.section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Video Container */
/* Video Thumbnail Container */
.video-thumbnail-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

/* Thumbnail Styles */
.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail-container:hover .thumbnail-image {
    transform: scale(1.05);
}

/* Play Overlay */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.video-thumbnail-container:hover .play-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.play-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.video-thumbnail-container:hover .play-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.play-text {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Video Embed Container (Hidden by default) */
.video-embed-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: #000;
    z-index: 10;
}

.video-embed-container.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-embed {
    width: 90%;
    height: 80%;
    border: none;
    border-radius: 8px;
}

/* Close Button */
.video-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-close-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .play-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .play-text {
        font-size: 1rem;
    }
    
    .video-embed {
        width: 95%;
        height: 70%;
    }
}

/* Animation Classes */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Button Styles */
.view-all-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-all-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 85, 48, 0.3);
    color: white;
}

/* Text Styles */
.lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #about {
        padding: 60px 0 !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .video-container {
        margin-top: 2rem;
    }
}
/* ===== MISSION & VISION SECTION ===== */
.mission-vision-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: 10%;
    left: 5%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    bottom: 10%;
    right: 5%;
}

.mission-vision-section .card {
    border: none;
    border-radius: 16px;
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: white;
}

.mission-vision-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.mission-vision-section .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.mission .card-icon {
    background: var(--primary-color);
}

.vision .card-icon {
    background: #3a8bbb;
}

.approach .card-icon {
    background: var(--accent-color);
}

.pillar-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pillar-badge:hover {
    transform: translateY(-3px);
}

.mission .pillar-badge {
    background: rgba(46, 160, 44, 0.1);
    color: var(--primary-color);
}

.vision .pillar-badge {
    background: rgba(58, 139, 187, 0.1);
    color: #3a8bbb;
}

.approach .pillar-badge {
    background: rgba(245, 124, 0, 0.1);
    color: var(--accent-color);
}

.report-section {
    background: linear-gradient(rgba(0, 11, 6, 0.8), rgba(0, 0, 0, 0.7)),
    url('../images/logo.png') fixed center/cover no-repeat;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.report-content {
    max-width: 600px;
    margin: 0 auto;
}

.report-title {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

.report-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--light-color);
    color: var(--secondary-color);
}
/* ===== PROGRAMS/DEPARTMENTS SECTION ===== */
.department-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #4be47e2e 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.bg-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    left: 5%;
}

.bg-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    bottom: 10%;
    right: 5%;
}

.department-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.department-card:hover .card-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(44, 85, 48, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.card-content {
    padding: 25px;
}

.department-card .card-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.card-subtitle {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.card-description {
    color: var(--dark-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.program-tag {
    background: rgba(44, 85, 48, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.program-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.view-all-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.view-all-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 85, 48, 0.3);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .slide-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .slide-visual {
        height: 300px;
    }
    
    .customer-story-card.compressed {
        min-width: 280px;
        height: 380px;
    }
    
    .customer-story-card.expanded {
        min-width: 280px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .mission-vision-section,
    .work-section,
    .department-showcase,
    #annual-stats {
        padding: 60px 0;
    }
    
    .slide-info {
        padding: 30px 25px;
    }

    .floating-shape,
    .bg-element {
        display: none;
    }
}

/* ===== PROJECTS & IMPACT SECTION - LEFT IMAGE LAYOUT ===== */
.projects-impact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    /* position: relative; */
    overflow: hidden;
}

/* Category Filters */
.category-filters {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

/* Projects Slider */
.projects-slider {
    display: flex;
    gap: 25px;
    padding: 30px 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    margin-bottom: 40px;
}

.projects-slider::-webkit-scrollbar {
    display: none;
}

.project-card {
    min-width: 400px;
    height: auto;
    flex-shrink: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-card-content {
    display: block;
    max-width: 600px; 
}

.project-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image-container img {
    transform: scale(1.05);
}

.project-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-info-container {
    padding: 20px;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.project-description {
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.project-stat {
    text-align: center;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--dark-color);
    font-weight: 500;
}

.project-progress {
    margin-bottom: 12px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(44, 85, 48, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.8s ease;
}

.progress-text {
    font-size: 0.75rem;
    color: var(--dark-color);
    font-weight: 600;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border: 1.5px solid var(--primary-color);
    border-radius: 15px;
    width: fit-content;
}

.project-link:hover {
    background: var(--primary-color);
    color: white;
    gap: 8px;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(44, 85, 48, 0.3);
}

/* Projects Footer */
.projects-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

.slider-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-control-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(44, 85, 48, 0.3);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.view-all-projects-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    background: white;
}

.view-all-projects-btn:hover {
    background: var(--primary-color);
    color: white;
    gap: 10px;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}
/* Blog & Events Section Styles - Fixed */
.blog-events-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.content-heading {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.view-all-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Blog Styles */
.blog-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.featured-blog .blog-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.featured-blog .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.featured-blog .blog-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-blog .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-blog .blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-blog .blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #6c757d;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.featured-blog .blog-title {
    font-size: 1.5rem;
}

.blog-excerpt {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: var(--accent-color);
}

.blog-stats {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #6c757d;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.blog-item .blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-item .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-item .blog-image {
    height: 180px;
    overflow: hidden;
}

.blog-item .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item .blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-item .blog-content {
    padding: 20px;
}

.blog-item .blog-title {
    font-size: 1.2rem;
}

/* Events Styles */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.event-item.featured {
    border-left: 4px solid var(--accent-color);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    min-width: 70px;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}

.event-info {
    padding: 20px;
    flex: 1;
}

.event-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #6c757d;
}

.event-meta i {
    color: var(--primary-color);
    width: 15px;
}

.event-description {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.event-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.event-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.event-btn.primary {
    background: var(--primary-color);
    color: white;
}

.event-btn.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.event-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.event-btn.secondary:hover {
    background: rgba(44, 85, 48, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .featured-blog .blog-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .blog-events-section {
        padding: 60px 0 !important;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .event-item {
        flex-direction: column;
    }
    
    .event-date {
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;
        min-height: auto;
        padding: 10px 15px;
    }
    
    .event-day {
        font-size: 1.2rem;
    }
}

/* What You Can Do Section Styles */
.engagement-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.engagement-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.engagement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.engagement-card:hover::before {
    transform: scaleX(1);
}

.engagement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.engagement-card.donate {
    border-top-color: #e74c3c;
}

.engagement-card.volunteer {
    border-top-color: var(--primary-color);
}

.engagement-card.partner {
    border-top-color: #f39c12;
}

.engagement-card.advocate {
    border-top-color: #9b59b6;
}

.engagement-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
}

.engagement-card.donate .engagement-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.engagement-card.volunteer .engagement-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.engagement-card.partner .engagement-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.engagement-card.advocate .engagement-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.engagement-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.4rem;
}

.engagement-description {
    color: #495057;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.engagement-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #495057;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.engagement-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.engagement-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.engagement-btn.primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.engagement-btn.primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 85, 48, 0.3);
}

.engagement-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.engagement-btn.secondary:hover {
    background: rgba(44, 85, 48, 0.1);
    transform: translateY(-2px);
}
/* Main CTA */
.main-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    padding: 3rem 2rem;
    color: white;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.main-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.05"><polygon points="1000,100 1000,0 0,100"></polygon></svg>');
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
}

.cta-btn.primary {
    background: var(--accent-color);
    color:var(--light-color);
    border: 2px solid var(--accent-color);
}

.cta-btn.primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 124, 0, 0.4);
}


/* Responsive Design */
@media (max-width: 768px) {
    .engagement-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .engagement-card {
        padding: 2rem 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .engagement-actions {
        flex-direction: column;
    }
    
    .engagement-btn {
        width: 100%;
    }
}

/* Animation Classes */
/* .engagement-card,
.stat-item,
.cta-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
} */

.engagement-card.visible,
.stat-item.visible,
.cta-content.visible {
    opacity: 1;
    transform: translateY(0);
}

x/* Contact Us & Footer Section Styles - No Clashes */
/* All classes are prefixed with 'rada-' to avoid conflicts */

/* Contact Section */
.rada-contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.rada-contact-info {
    padding: 1rem;
}

.rada-contact-title {
    color: var(--primary-color);
    font-weight: 700;
}

.rada-contact-description {
    color: #495057;
    line-height: 1.6;
}

.rada-contact-features {
    margin-bottom: 2rem;
}

.rada-feature-item {
    color: #495057;
    line-height: 1.6;
}

.rada-contact-stats {
    margin-top: 2rem;
    padding-top: 1rem;
}

.rada-stat-col {
    padding: 0.5rem;
}

.rada-stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.rada-stat-number {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.rada-stat-label {
    color: #6c757d;
}

/* Contact Form */
.rada-contact-form-card {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    border-radius: 1rem;
}

.rada-form-title {
    color: var(--primary-color);
}

.rada-form-subtitle {
    color: #6c757d;
}

.rada-contact-form {
    margin-top: 1.5rem;
}

.rada-form-row {
    margin-bottom: 1rem;
}

.rada-form-col {
    margin-bottom: 1rem;
}

.rada-form-field {
    margin-bottom: 1rem;
}

.rada-form-input {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
    transition: all 0.3s ease;
    padding: 12px 15px;
    width: 100%;
}

.rada-form-input:focus {
    background-color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(44, 85, 48, 0.25);
    color: #495057;
}

.rada-form-input::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

.rada-submit-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    border-style: none;
}

.rada-submit-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.rada-contact-alt {
    margin-top: 1.5rem;
}

.rada-call-text {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.rada-phone-number {
    color: var(--primary-color);
    text-decoration: none;
}

.rada-phone-number:hover {
    color: var(--secondary-color);
}

/* Footer Section */
.rada-footer-section {
    background-color: var(--primary-color);
    color: white;
    border-top: 5px solid var(--accent-color);
}

.rada-footer-top {
    padding-bottom: 3rem;
}

.rada-footer-col {
    margin-bottom: 2rem;
}

.rada-footer-brand {
    display: flex;
    align-items: center;
}

.rada-footer-logo-text {
    color: white;
}

.rada-footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

.rada-social-icons {
    display: flex;
    gap: 0.5rem;
}

.rada-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white !important;
    text-decoration: none;
}

.rada-social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    color: white;
}

.rada-footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.rada-footer-links {
    margin: 0;
    padding: 0;
}

.rada-footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
    line-height: 2;
    display: block;
}

.rada-footer-link:hover {
    color: white;
    text-decoration: underline;
}

.rada-footer-contact {
    margin: 0;
    padding: 0;
}

.rada-contact-item {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.9rem;
}

/* Footer Middle */
.rada-footer-middle {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.rada-footer-middle-col {
    margin-bottom: 1.5rem;
}

.rada-regional-list {
    margin: 0;
    padding: 0;
}

.rada-regional-item {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.9rem;
}

.rada-partner-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rada-partner-btn {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
}

.rada-partner-btn:hover {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
}

.rada-newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rada-newsletter-form {
    margin-top: 1rem;
}

.rada-newsletter-input {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #495057;
    border-radius: 0.375rem;
    padding: 10px 15px;
    flex: 1;
}

.rada-newsletter-input:focus {
    background-color: white;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(245, 124, 0, 0.25);
    color: #495057;
}

.rada-newsletter-input::placeholder {
    color: #6c757d;
}

.rada-newsletter-btn {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    font-weight: 600;
    white-space: nowrap;
}

.rada-newsletter-btn:hover {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-1px);
}

/* Footer Bottom */
.rada-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.rada-copyright-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.rada-separator {
    color: rgba(255, 255, 255, 0.5);
}

.rada-policy-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.rada-policy-link:hover {
    color: white;
    text-decoration: underline;
}

.rada-certification-text {
    color: rgba(255, 255, 255, 0.8);
}

/* .rada-certification-logo {
    filter: brightness(0) invert(1);
    height: 25px;
    margin-left: 0.75rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.rada-certification-logo:hover {
    opacity: 1;
} */

/* Responsive Design */
@media (max-width: 991.98px) {
    .rada-contact-section .rada-contact-title {
        font-size: 2.5rem;
    }
    
    .rada-footer-col {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .rada-contact-section {
        padding: 60px 0 !important;
    }
    
    .rada-contact-form-card {
        padding: 2rem !important;
    }
    
    .rada-footer-section {
        text-align: center;
    }
    
    .rada-social-icons {
        justify-content: center;
    }
    
    .rada-footer-bottom .rada-certification-col {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .rada-newsletter-form {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .rada-newsletter-btn {
        width: 100%;
    }
}

/* Testimonials & Feeds Section Styles - COMPLETE VERSION */
/* All classes are prefixed with 'rada-' to avoid clashes */

.rada-testimonials-feeds {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.rada-tf-header {
    margin-bottom: 3rem;
}

.rada-tf-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.rada-tf-subtitle {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials Container */
.rada-testimonials-container {
    position: relative;
}

.rada-testimonials-header {
    margin-bottom: 2rem;
}

.rada-testimonials-heading {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.rada-testimonial-controls {
    display: flex;
    gap: 0.5rem;
}

.rada-tf-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rada-tf-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Testimonials Slider Styles */
.rada-testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }
  
  .rada-testimonials-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
  }
  
  .rada-testimonials-slider {
    overflow: hidden;
    position: relative;
  }
  
  .rada-testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }
  
  .rada-testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  .rada-testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin: 20px 0;
  }
  
  .rada-quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .rada-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-style: italic;
  }
  
  .rada-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  
  .rada-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .rada-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .rada-author-info {
    text-align: left;
  }
  
  .rada-author-name {
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
  }
  
  .rada-author-role {
    color: var(--secondary-color);
    margin: 0;
    font-size: 0.9rem;
  }
  
  .rada-author-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-top: 5px;
  }
  
  .rada-testimonial-rating {
    margin-top: 20px;
  }
  
  .rada-stars {
    color: #FFD700 !important;
    margin-bottom: 10px;
  }
  
  .rada-rating-text {
    color: var(--secondary-color);
    font-size: 0.9rem;
  }
  
  /* Slider Controls */
  .rada-testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
  }
  
  .rada-tf-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .rada-tf-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
  }
  
  .rada-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .rada-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .rada-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
  }
  
/* Social Feeds Styles */
.rada-feeds-container {
    height: 100%;
}

.rada-feeds-header {
    margin-bottom: 2rem;
}

.rada-feeds-heading {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rada-feeds-subtitle {
    color: #6c757d;
    margin: 0;
}

.rada-social-feeds {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.rada-social-feeds::-webkit-scrollbar {
    width: 6px;
}

.rada-social-feeds::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.rada-social-feeds::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.rada-feed-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.rada-feed-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.rada-feed-item:nth-child(1) {
    border-left-color: #1877f2; /* Facebook blue */
}

.rada-feed-item:nth-child(2) {
    border-left-color: #1da1f2; /* Twitter blue */
}

.rada-feed-item:nth-child(3) {
    border-left-color: #e4405f; /* Instagram pink */
}

.rada-feed-item:nth-child(4) {
    border-left-color: #0077b5; /* LinkedIn blue */
}

.rada-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.rada-feed-platform {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.rada-facebook { color: #1877f2; }
.rada-twitter { color: #1da1f2; }
.rada-instagram { color: #e4405f; }
.rada-linkedin { color: #0077b5; }

.rada-feed-time {
    color: #6c757d;
    font-size: 0.85rem;
}

.rada-feed-content {
    margin-bottom: 1rem;
}

.rada-feed-text {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rada-feed-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.rada-feed-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rada-feed-image img:hover {
    transform: scale(1.05);
}

.rada-feed-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.rada-feed-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Follow CTA */
.rada-follow-cta {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.rada-follow-text {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.rada-social-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.rada-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.rada-fb-btn {
    background: #1877f2;
    color: white;
}

.rada-tw-btn {
    background: #1da1f2;
    color: white;
}

.rada-ig-btn {
    background: #e4405f;
    color: white;
}

.rada-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

/* CTA Section */
.rada-tf-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 4rem 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.rada-tf-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.05"><polygon points="0,0 1000,100 1000,0"></polygon></svg>');
    background-size: cover;
}

.rada-cta-content {
    position: relative;
    z-index: 2;
}

.rada-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.rada-cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rada-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.rada-cta-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.rada-primary-btn {
    background: var(--accent-color);
    color: #333;
    border: 2px solid var(--accent-color);
}

.rada-primary-btn:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 124, 0, 0.4);
    color: #333;
}

.rada-secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.rada-secondary-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}


/* Hover Effects */
.rada-indicator-item:hover .rada-indicator-icon {
    transform: scale(1.1) rotate(5deg);
}

.rada-feed-item:hover .rada-feed-image img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .rada-testimonials-feeds {
        padding: 60px 0 !important;
    }
    
    .rada-testimonials-track {
        width: 300%;
    }
    
    .rada-testimonial-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .rada-indicators-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .rada-testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .rada-testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .rada-author-info {
        text-align: center;
    }
    
    .rada-quote-icon {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .rada-indicator-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .rada-cta-title {
        font-size: 1.8rem;
    }
    
    .rada-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .rada-cta-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .rada-social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .rada-social-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .rada-feed-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rada-feed-time {
        align-self: flex-end;
    }
}

@media (max-width: 576px) {
    .rada-testimonials-feeds {
        padding: 40px 0 !important;
    }
    
    .rada-tf-title {
        font-size: 2rem;
    }
    
    .rada-testimonial-card {
        padding: 1.5rem;
    }
    
    .rada-trust-indicators {
        padding: 2rem 1.5rem;
    }
    
    .rada-tf-cta {
        padding: 3rem 1.5rem;
    }
    
    .rada-cta-title {
        font-size: 1.6rem;
    }
}

/* Print Styles */
@media print {
    .rada-testimonials-feeds {
        background: white !important;
        padding: 20px 0 !important;
    }
    
    .rada-testimonial-card,
    .rada-feed-item {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .rada-tf-btn,
    .rada-social-btn,
    .rada-cta-btn {
        display: none !important;
    }
}

/* Stories Section - Fixed with Medium Cards */
.success-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}
  
.success-section .section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.success-section .section-subtitle {
    color: var(--secondary-color);
    font-weight: 400;
    margin-bottom: 3rem;
}
  
.success-section .case-slider {
    display: flex;
    gap: 20px; /* Reduced gap for smaller cards */
    padding: 20px 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
  
.success-section .case-slider::-webkit-scrollbar {
    display: none;
}
  
/* Medium Size Cards */
.success-section .case-item {
    min-width: 280px;  /* Reduced */
    height: 360px;     /* Reduced */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    flex-shrink: 0;
    background-color: #000;
}
  
.success-section .case-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
  
.success-section .case-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
  
.success-section .case-item:hover img {
    transform: scale(1.05);
}
  
.success-section .case-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px; /* Reduced */
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: var(--light-color);
    transform: translateY(0);
    transition: all 0.4s ease;
}
  
.success-section .case-item:hover .case-content {
    transform: translateY(-5px);
}
  
.success-section .case-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 4px 10px; /* Slightly smaller */
    border-radius: 20px;
    font-size: 0.75rem; /* Smaller */
    font-weight: 500;
    margin-bottom: 8px;
}
  
.success-section .case-title {
    font-size: 1.1rem; /* Reduced */
    font-weight: 600;
    line-height: 1.3; /* Tighter */
    margin-bottom: 8px;
    color: var(--light-color);
}
  
.success-section .case-description {
    font-size: 0.85rem; /* Slightly smaller */
    opacity: 0.9;
    line-height: 1.4; /* Tighter */
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--light-color);
}
  
.success-section .play-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    padding: 6px 14px; /* Smaller */
    border-radius: 30px;
    font-size: 0.85rem; /* Smaller */
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}
  
.success-section .play-btn:hover {
    background: var(--light-color);
    transform: scale(1.05);
    color: var(--primary-color);
}
  
/* Fixed Video Fallback Centralization */
.success-section .video-fallback {
    text-align: center;
    color: white;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 15;
}

.success-section .video-fallback.active {
    display: block;
}

.success-section .video-fallback h4 {
    margin-bottom: 10px;
    color: var(--light-color);
    font-size: 1.5rem;
}

.success-section .video-fallback p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 1rem;
}

/* Rest of your video styles remain the same */
.success-section .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
    background: #000;
    border-radius: 16px;
}
  
.success-section .video-container.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  
.success-section .video-player {
    width: 90%;
    height: 70%;
    border: none;
    border-radius: 12px;
    display: none;
}
  
.success-section .video-player.active {
    display: block;
}
  
.success-section .video-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}
  
.success-section .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.4);
    z-index: 5;
    transition: all 0.3s ease;
    cursor: pointer;
}
  
.success-section .play-icon {
    width: 60px;       /* Reduced */
    height: 60px;      /* Reduced */
    background: rgba(70, 176, 73, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;   /* Reduced */
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 12px; /* Reduced */
}
  
.success-section .play-text {
    color: white;
    font-weight: 500;
    font-size: 1rem;   /* Slightly smaller */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* Controls and buttons */
.success-section .slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}
  
.success-section .slider-btn {
    width: 45px;       /* Slightly smaller */
    height: 45px;      /* Slightly smaller */
    border-radius: 50%;
    background: var(--light-color);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-color);
}
  
.success-section .btn.cta-accent {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 25px; /* Slightly smaller */
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
/* Testimonials Responsive Styles - Small Screens Only */
@media (max-width: 991.98px) {
    .rada-testimonials-section {
        padding: 3rem 0;
    }
    
    .rada-testimonials-wrapper {
        border-radius: 12px;
    }
    
    .rada-testimonial-card {
        padding: 30px 20px;
        margin: 10px 0;
    }
    
    .rada-testimonial-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .rada-testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .rada-author-info {
        text-align: center;
    }
    
    .rada-author-name {
        font-size: 1.1rem;
    }
    
    .rada-author-role {
        font-size: 0.85rem;
    }
    
    .rada-quote-icon {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .rada-testimonials-section {
        padding: 2rem 0;
    }
    
    .rada-testimonial-card {
        padding: 25px 15px;
    }
    
    .rada-testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .rada-author-image {
        width: 50px;
        height: 50px;
    }
    
    .rada-tf-title {
        font-size: 2rem;
    }
    
    .rada-tf-subtitle {
        font-size: 1rem;
    }
    
    .rada-testimonial-controls {
        margin-top: 20px;
    }
    
    .rada-tf-btn {
        width: 45px;
        height: 45px;
    }
    
    .rada-testimonial-dots {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .rada-testimonials-section {
        padding: 1.5rem 0;
    }
    
    .rada-testimonial-card {
        padding: 20px 15px;
        margin: 5px 0;
    }
    
    .rada-testimonial-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .rada-author-name {
        font-size: 1rem;
    }
    
    .rada-author-role,
    .rada-author-location {
        font-size: 0.8rem;
    }
    
    .rada-stars {
        font-size: 0.9rem;
    }
    
    .rada-rating-text {
        font-size: 0.8rem;
    }
    
    .rada-tf-title {
        font-size: 1.8rem;
    }
    
    .rada-testimonials-heading,
    .rada-feeds-heading {
        font-size: 1.5rem;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .rada-testimonial-card {
        padding: 15px 10px;
    }
    
    .rada-testimonial-text {
        font-size: 0.85rem;
    }
    
    .rada-author-image {
        width: 45px;
        height: 45px;
    }
    
    .rada-tf-btn {
        width: 40px;
        height: 40px;
    }
    
    .rada-dot {
        width: 10px;
        height: 10px;
    }
}
.text-accent{
    color: var(--accent-color);
}