        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #2c7a7b;
            --secondary: #3182ce;
            --accent: #e53e3e;
            --light: #f7fafc;
            --dark: #2d3748;
            --transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #f8f9fa;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3, h4 {
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        p {
            margin-bottom: 1.5rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-accent {
            background: var(--accent);
        }

        .btn-accent:hover {
            background: #c53030;
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 15px 0;
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 10px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: var(--accent);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 30px;
        }

        .nav-link {
            color: var(--dark);
            text-decoration: none;
            font-weight: 300;
            transition: var(--transition);
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--dark);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            margin-top: 0;
        }

        .hero-slider {
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            animation: zoom 8s infinite linear;
        }

        @keyframes zoom {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 1000px;
            text-align: center;
            padding: 0 5%;
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.8s ease 0.5s;
        }

        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }

        .slide h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
            line-height: 1.1;
            max-width: 100%;
        }

        .slide p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 10;
            transform: translateY(-50%);
        }

        .arrow {
            color: white;
            font-size: 2rem;
            cursor: pointer;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
        }

        .arrow:hover {
            color: var(--accent);
            transform: scale(1.2);
        }

        /* Counter Section */
        .counter-section {
            padding: 80px 0;
        }

        .counter-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .counter-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 20px;
            margin: 15px;
            flex: 1;
            min-width: 200px;
            max-width: 250px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            background: white;
        }

        .counter-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .counter-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .counter-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--accent);
        }

        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .counter-text {
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* About Section */
        .about-section {
            position: relative;
            background: url('Imgs/slider/1.jpeg') fixed;
            background-size: cover;
            padding: 100px 0;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
        }

        .about-container {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .about-content {
            flex: 1;
            min-width: 300px;
            padding: 30px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .main-image {
            width: 350px;
            height: 350px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            animation: pulse 4s infinite ease-in-out;
            position: relative;
            z-index: 2;
        }

        @keyframes pulse {
            0% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); }
            50% { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3); }
            100% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); }
        }

        .small-image {
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            z-index: 3;
            animation: moveAround 15s infinite linear;
        }

        @keyframes moveAround {
            0% { top: 10%; left: 10%; }
            25% { top: 10%; left: 70%; }
            50% { top: 70%; left: 70%; }
            75% { top: 70%; left: 10%; }
            100% { top: 10%; left: 10%; }
        }

        /* Rings Animation - Fixed single color */
        .ring {
            position: absolute;
            border-radius: 50%;
            border: 2px solid var(--primary);
            animation: ringPulse 3s infinite ease-in-out;
        }

        .ring-1 {
            width: 400px;
            height: 400px;
            animation-delay: 0s;
        }

        .ring-2 {
            width: 450px;
            height: 450px;
            animation-delay: 1s;
        }

        .ring-3 {
            width: 500px;
            height: 500px;
            animation-delay: 2s;
        }

        @keyframes ringPulse {
            0% { transform: scale(0.8); opacity: 0.7; }
            50% { transform: scale(1); opacity: 0.3; }
            100% { transform: scale(0.8); opacity: 0.7; }
        }

        /* Why Choose Us Section - Redesigned */
        .why-choose-section {
            background: white;
            padding: 100px 0;
            overflow: hidden;
        }

        .journey-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .journey-path {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            z-index: 1;
        }

        .journey-item {
            display: flex;
            width: 100%;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
            position: relative;
            z-index: 2;
        }

        .journey-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .journey-item:nth-child(odd) {
            flex-direction: row;
        }

        .journey-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .journey-content {
            flex: 1;
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: var(--transition);
            max-width: 500px;
        }

        .journey-item:nth-child(odd) .journey-content {
            margin-right: 50px;
        }

        .journey-item:nth-child(even) .journey-content {
            margin-left: 50px;
        }

        .journey-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .journey-icon {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 2rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            z-index: 3;
        }

        .journey-item:nth-child(odd) .journey-icon {
            right: -40px;
        }

        .journey-item:nth-child(even) .journey-icon {
            left: -40px;
        }

        .journey-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }

        .journey-content h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }

        .journey-list {
            list-style: none;
            margin-top: 20px;
        }

        .journey-list li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 30px;
            font-size: 1.1rem;
        }

        .journey-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Events Section - Redesigned */
        .events-section {
            background: var(--light);
        }

        .events-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .events-slider {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .events-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .event-slide {
            min-width: 33.33%;
            padding: 15px;
            transition: var(--transition);
        }

        @media (max-width: 992px) {
            .event-slide {
                min-width: 50%;
            }
        }

        @media (max-width: 768px) {
            .event-slide {
                min-width: 100%;
            }
        }

        .event-card {
            position: relative;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .event-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .event-card:hover .event-image {
            transform: scale(1.05);
        }

        .event-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            color: white;
        }

        .event-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .event-date {
            font-size: 1rem;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .events-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 5;
        }

        .events-arrow {
            background: rgba(255, 255, 255, 0.9);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            font-size: 1.2rem;
        }

        .events-arrow:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .events-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }

        .events-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }

        .events-dot.active {
            background: var(--accent);
            transform: scale(1.2);
        }

        /* What We Do Section */
        .services-section {
            position: relative;
            background: url('https://images.unsplash.com/photo-1551632811-561732d1e306?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') fixed;
            background-size: cover;
            padding: 100px 0;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
        }

        .services-container {
            position: relative;
            z-index: 1;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .view-more-container {
            text-align: center;
        }

        /* Field Projects Section - Redesigned */
        .projects-section {
            background: var(--light);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .project-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }

        .project-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .project-image-container {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
        }

        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .project-card:hover .project-image {
            transform: scale(1.05);
        }

        .project-content {
            padding: 20px;
        }

        .project-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .project-link {
            display: inline-block;
            margin-top: 10px;
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .project-link:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        /* Testimonials Section */
        .testimonials-section {
            background: white;
        }

        .testimonials-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 40px;
            background: var(--light);
            text-align: center;
        }

        .testimonial-content {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }

        .testimonial-content::before,
        .testimonial-content::after {
            content: '"';
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.3;
            position: absolute;
        }

        .testimonial-content::before {
            top: -20px;
            left: -10px;
        }

        .testimonial-content::after {
            bottom: -40px;
            right: -10px;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
        }

        .testimonial-role {
            color: #666;
            font-size: 0.9rem;
        }

        .testimonials-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }

        .testimonials-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }

        .testimonials-dot.active {
            background: var(--accent);
            transform: scale(1.2);
        }

        /* Blog Section - Redesigned */
        .blog-section {
            background: var(--light);
        }

        .blog-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-slider {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .blog-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .blog-slide {
            min-width: 100%;
            display: flex;
            gap: 30px;
            padding: 20px;
        }

        .blog-card {
            flex: 1;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }

        .blog-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .blog-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }

        .blog-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: var(--transition);
        }

        .blog-card:hover .blog-image {
            transform: scale(1.05);
        }

        .blog-content {
            padding: 25px;
        }

        .blog-date {
            color: var(--accent);
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: block;
        }

        .blog-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .blog-excerpt {
            margin-bottom: 15px;
            color: #666;
        }

        .blog-link {
            display: inline-block;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .blog-link:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

        .blog-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 5;
        }

        .blog-arrow {
            background: rgba(255, 255, 255, 0.9);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            font-size: 1.2rem;
        }

        .blog-arrow:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .blog-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }

        .blog-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }

        .blog-dot.active {
            background: var(--accent);
            transform: scale(1.2);
        }

        /* Contact Section */
        .contact-section {
            background: white;
            padding: 100px 0;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-form-container {
            flex: 1;
            min-width: 300px;
        }

        .contact-card {
            background: var(--light);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            transition: var(--transition);
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .contact-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-card i {
            color: var(--accent);
        }

        /* Support Section */
        .support-section {
            position: relative;
            background: url('https://images.unsplash.com/photo-1551632811-561732d1e306?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') fixed;
            background-size: cover;
            padding: 100px 0;
            text-align: center;
            color: white;
        }

        .support-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
        }

        .support-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .support-content h2 {
            color: white;
        }

        .support-content h2::after {
            background: white;
        }

        /* FAQ Section - UPDATED */
        .faq-section {
            background: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item-main {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .faq-question-main {
            padding: 20px;
            background: var(--light);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: var(--transition);
        }

        .faq-question-main:hover {
            background: #e2e8f0;
        }

        .faq-answer-main {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item-main.active .faq-answer-main {
            padding: 20px;
            max-height: 500px;
        }

        .faq-toggle-main {
            transition: var(--transition);
        }

        .faq-item-main.active .faq-toggle-main {
            transform: rotate(180deg);
        }

        .view-faqs {
            text-align: center;
            margin-top: 40px;
        }

        /* Partners Section */
        .partners-section {
            background: var(--light);
            padding: 60px 0;
        }

        .partners-slider {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
        }

        .partners-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .partner-slide {
            min-width: 33.33%;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .partner-logo {
            height: 80px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: var(--transition);
        }

        .partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.1);
        }

        .partners-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }

        .partners-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }

        .partners-dot.active {
            background: var(--accent);
            transform: scale(1.2);
        }

        .partners-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 5;
        }

        .partners-arrow {
            background: rgba(255, 255, 255, 0.9);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            font-size: 1rem;
        }

        .partners-arrow:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        /* Modern Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
            padding: 20px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            max-width: 900px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: slideUp 0.4s ease;
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            transition: var(--transition);
            z-index: 10;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(0, 0, 0, 0.05);
        }

        .close-modal:hover {
            color: var(--accent);
            transform: rotate(90deg);
            background: rgba(0, 0, 0, 0.1);
        }

        .modal-header {
            padding: 30px 30px 20px;
            border-bottom: 1px solid #eee;
            position: relative;
        }

        .modal-header h2 {
            margin-bottom: 10px;
            text-align: left;
        }

        .modal-header h2::after {
            display: none;
        }

        .modal-body {
            padding: 30px;
        }

        /* Glassmorphism Contact Form */
        .glass-form {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.8);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(44, 122, 123, 0.2);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        /* Blog Modal */
        .blog-modal .modal-content {
            max-width: 800px;
        }

        .blog-modal-image {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .blog-modal-date {
            color: var(--accent);
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: block;
        }

        .blog-modal-title {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .blog-modal-content {
            line-height: 1.8;
        }

        .blog-modal-content p {
            margin-bottom: 20px;
        }

        /* Gallery Modal */
        .gallery-modal .modal-content {
            max-width: 95%;
            width: 95%;
        }

        .gallery-container {
            position: relative;
        }

        .gallery-main-image {
            width: 100%;
            max-height: 500px;
            object-fit: contain;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .gallery-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .gallery-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }

        .gallery-btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        .gallery-nav {
            display: flex;
            justify-content: space-between;
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
            padding: 0 20px;
        }

        .gallery-arrow {
            background: rgba(255, 255, 255, 0.9);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            font-size: 1.2rem;
        }

        .gallery-arrow:hover {
            background: white;
            transform: scale(1.1);
        }

        .gallery-thumbnails {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .gallery-thumb {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0.7;
        }

        .gallery-thumb:hover, .gallery-thumb.active {
            opacity: 1;
            transform: scale(1.05);
        }


        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
            font-size: 0.9rem;
        }

        .developer-link {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }

        .developer-link:hover {
            color: white;
            text-decoration: underline;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .zoom-in {
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .zoom-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Media Queries */
        @media (max-width: 1200px) {
            .slide h1 {
                font-size: 3.2rem;
            }
        }

        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .slide h1 {
                font-size: 2.8rem;
            }
            
            .partner-slide {
                min-width: 50%;
            }
            
            .blog-slide {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                background: white;
                width: 80%;
                height: calc(100vh - 70px);
                flex-direction: column;
                align-items: flex-start;
                padding: 50px 30px;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item {
                margin: 15px 0;
            }

            .hero {
                height: 450px;
            }

            .slide h1 {
                font-size: 2.2rem;
            }

            .slide p {
                font-size: 1rem;
            }

            .about-container {
                flex-direction: column;
            }

            .about-content {
                order: 2;
            }

            .about-image {
                order: 1;
                margin-bottom: 30px;
            }

            .main-image {
                width: 280px;
                height: 280px;
            }

            .small-image {
                width: 100px;
                height: 100px;
            }
            
            .ring-1 {
                width: 320px;
                height: 320px;
            }
            
            .ring-2 {
                width: 370px;
                height: 370px;
            }
            
            .ring-3 {
                width: 420px;
                height: 420px;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }

            .events-arrows, .blog-arrows, .partners-arrows {
                display: none;
            }
            
            .journey-item, .journey-item:nth-child(even) {
                flex-direction: column;
                text-align: center;
            }
            
            .journey-item:nth-child(odd) .journey-content,
            .journey-item:nth-child(even) .journey-content {
                margin: 0 0 30px 0;
            }
            
            .journey-icon {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                transform: none;
                margin: 0 auto 20px;
            }
            
            .journey-path {
                display: none;
            }
            
            .partner-slide {
                min-width: 100%;
            }
        }

        @media (max-width: 576px) {
            .slide h1 {
                font-size: 1.8rem;
            }

            h2 {
                font-size: 2rem;
            }

            .counter-number {
                font-size: 2.5rem;
            }

            .main-image {
                width: 250px;
                height: 250px;
            }

            .small-image {
                width: 80px;
                height: 80px;
            }
            
            .ring-1 {
                width: 280px;
                height: 280px;
            }
            
            .ring-2 {
                width: 330px;
                height: 330px;
            }
            
            .ring-3 {
                width: 380px;
                height: 380px;
            }

            .gallery-controls {
                flex-direction: column;
                align-items: center;
            }
            
            .event-slide {
                height: 400px;
            }
            
            .event-title {
                font-size: 1.5rem;
            }
            
            .glass-form {
                padding: 20px;
            }
        }
    

    /* Modern Events Section Styles */
    .modern-events {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        opacity: 0;
        transform: translateY(60px);
        transition: opacity 1s ease, transform 1s ease;
    }

    .modern-events.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .section-title {
        text-align: center;
        margin-bottom: 60px;
        font-size: 3rem;
        font-weight: 700;
        color: #2c3e50;
        position: relative;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #3498db, #2ecc71);
        border-radius: 2px;
    }

    .events-carousel {
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 20px;
        padding: 20px 0;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 30px;
        padding: 0 40px;
    }

    .carousel-item {
        min-width: calc(33.333% - 20px);
        flex: 0 0 auto;
    }

    .event-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        height: 450px;
    }

    .event-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

    .event-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    .event-card:hover .event-img {
        transform: scale(1.1);
    }

    .event-gradient {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 70%;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .event-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        color: white;
        padding: 30px 25px;
        transform: translateY(10px);
        opacity: 1;
        transition: all 0.4s ease;
    }

    .event-card:hover .event-info {
        transform: translateY(0);
    }

    .event-name {
        margin: 0 0 10px;
        font-size: 1.6rem;
        font-weight: 600;
        line-height: 1.3;
    }

    .event-date {
        display: block;
        margin-bottom: 20px;
        font-size: 1rem;
        opacity: 0.9;
        font-weight: 500;
    }

    .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 25px;
        background: linear-gradient(135deg, #3498db, #2ecc71);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    }

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
        background: linear-gradient(135deg, #2980b9, #27ae60);
    }

    .carousel-controls {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        pointer-events: none;
        padding: 0 10px;
    }

    .carousel-arrow {
        width: 60px;
        height: 60px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        pointer-events: all;
        transition: all 0.3s ease;
        border: none;
        font-size: 1.2rem;
        color: #2c3e50;
    }

    .carousel-arrow:hover {
        background: #3498db;
        color: white;
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    }

    .carousel-indicators {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        gap: 12px;
    }

    .indicator {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .indicator.active {
        background: #3498db;
        transform: scale(1.3);
    }

    .indicator.active::after {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border: 2px solid #3498db;
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(1.1); }
        100% { opacity: 1; transform: scale(1); }
    }

    /* Modern Event Modal Styles */
    .event-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 10000;
    }

    .event-modal-overlay.active {
        display: flex;
        animation: modalAppear 0.4s ease;
    }

    @keyframes modalAppear {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .modal-backdrop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(5px);
    }

    .modal-container {
        position: relative;
        background: transparent;
        width: 90%;
        max-width: 1200px;
        max-height: 90vh;
        border-radius: 20px;
        overflow: hidden;
        z-index: 10001;
        animation: modalSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    @keyframes modalSlideIn {
        from { opacity: 0; transform: scale(0.8) translateY(50px); }
        to { opacity: 1; transform: scale(1) translateY(0); }
    }

    .modal-close-btn {
        position: absolute;
        top: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
        z-index: 10002;
        transition: all 0.3s ease;
    }

    .modal-close-btn:hover {
        background: rgba(255, 255, 255, 0.9);
        color: #2c3e50;
        transform: scale(1.1);
        border-color: white;
    }

    .modal-nav-buttons {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        padding: 0 30px;
        z-index: 10002;
    }

    .modal-nav {
        width: 60px;
        height: 60px;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.3rem;
        color: white;
    }

    .modal-nav:hover {
        background: rgba(255, 255, 255, 0.9);
        color: #2c3e50;
        transform: scale(1.1);
        border-color: white;
    }

    .modal-slide {
        display: none;
        width: 100%;
        height: 80vh;
    }

    .modal-slide.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .modal-image-container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-image-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    /* IMPROVED RESPONSIVE DESIGN */
    @media (max-width: 1200px) {
        .carousel-item {
            min-width: calc(50% - 15px);
        }
    }

    @media (max-width: 992px) {
        .carousel-item {
            min-width: calc(50% - 15px);
        }
        
        .event-card {
            height: 400px;
        }
        
        .event-info {
            padding: 25px 20px;
        }
        
        .event-name {
            font-size: 1.4rem;
        }
    }

    @media (max-width: 768px) {
        .modern-events {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 40px;
        }
        
        .carousel-track {
            padding: 0 20px;
            gap: 20px;
        }
        
        .carousel-item {
            min-width: calc(100% - 20px);
        }
        
        .carousel-controls {
            display: none;
        }
        
        .event-card {
            height: 380px;
        }
        
        .event-info {
            padding: 20px;
        }
        
        .event-name {
            font-size: 1.3rem;
        }
        
        .cta-btn {
            padding: 10px 20px;
            font-size: 0.9rem;
        }
        
        .modal-container {
            width: 95%;
        }
        
        .modal-close-btn {
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
        }
        
        .modal-nav {
            width: 50px;
            height: 50px;
            font-size: 1.1rem;
        }
        
        .modal-slide {
            height: 70vh;
        }
    }

    @media (max-width: 576px) {
        .modern-events {
            padding: 40px 0;
        }
        
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
        }
        
        .events-carousel {
            padding: 10px 0;
        }
        
        .carousel-track {
            padding: 0 15px;
            gap: 15px;
        }
        
        .carousel-item {
            min-width: calc(100% - 15px);
        }
        
        .event-card {
            height: 320px;
            border-radius: 15px;
        }
        
        .event-info {
            padding: 15px;
        }
        
        .event-name {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        
        .event-date {
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .cta-btn {
            padding: 8px 16px;
            font-size: 0.85rem;
        }
        
        .carousel-indicators {
            margin-top: 25px;
        }
        
        .indicator {
            width: 10px;
            height: 10px;
        }
        
        .modal-container {
            width: 98%;
        }
        
        .modal-close-btn {
            top: 10px;
            right: 10px;
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }
        
        .modal-nav {
            width: 45px;
            height: 45px;
            font-size: 1rem;
        }
        
        .modal-nav-buttons {
            padding: 0 15px;
        }
        
        .modal-slide {
            height: 60vh;
        }
    }

    @media (max-width: 400px) {
        .event-card {
            height: 280px;
        }
        
        .event-name {
            font-size: 1.1rem;
        }
        
        .event-date {
            font-size: 0.85rem;
        }
        
        .cta-btn {
            padding: 7px 14px;
            font-size: 0.8rem;
        }
    }
    

    .impact-timeline {
        padding: 80px 0;
        background-color: #f8f9fa;
        position: relative;
    }

    .impact-timeline h2 {
        text-align: center;
        margin-bottom: 20px;
        font-size: 2.5rem;
        color: #2c3e50;
    }

    .impact-subtitle {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px;
        font-size: 1.1rem;
        color: #6c757d;
        line-height: 1.6;
    }

    .timeline-container {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 0;
    }

    .timeline-line {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, #3498db, #2ecc71);
        transform: translateX(-50%);
        border-radius: 2px;
    }

    .timeline-item {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 80px;
        position: relative;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .timeline-content {
        width: 45%;
        padding: 30px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .timeline-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 5%;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 5%;
    }

    .timeline-content h3 {
        color: #2c3e50;
        margin-bottom: 15px;
        font-size: 1.5rem;
    }

    .timeline-content p {
        color: #6c757d;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .impact-list {
        list-style-type: none;
        padding-left: 0;
    }

    .impact-list li {
        padding: 8px 0;
        position: relative;
        padding-left: 25px;
        color: #495057;
    }

    .impact-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #2ecc71;
        font-weight: bold;
    }

    .timeline-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #3498db, #2ecc71);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.8rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 2;
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .timeline-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .timeline-line {
            left: 40px;
        }
        
        .timeline-item {
            flex-direction: row !important;
            justify-content: flex-start;
            padding-left: 80px;
        }
        
        .timeline-content {
            width: 85%;
            margin: 0 !important;
        }
        
        .timeline-icon {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }
    }

    @media (max-width: 576px) {
        .impact-timeline {
            padding: 50px 0;
        }
        
        .impact-timeline h2 {
            font-size: 2rem;
        }
        
        .timeline-line {
            left: 30px;
        }
        
        .timeline-item {
            padding-left: 60px;
        }
        
        .timeline-icon {
            width: 60px;
            height: 60px;
            font-size: 1.4rem;
        }
        
        .timeline-content {
            padding: 20px;
        }
    }
    

/* Modern Initiatives Section */
.initiatives-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s ease;
}

.initiatives-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Initiatives Grid */
.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.initiative-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
}

.initiative-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.initiative-card:hover .card-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.3), rgba(46, 204, 113, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.initiative-card:hover .image-overlay {
    opacity: 1;
}

.card-content {
    padding: 25px;
}

.card-title {
    margin: 0 0 10px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
}

.card-text {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.gallery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9, #27ae60);
}

.gallery-btn i {
    transition: transform 0.3s ease;
}

.gallery-btn:hover i {
    transform: translateX(3px);
}

/* Glassmorphism Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.gallery-modal.active {
    display: flex;
    animation: modalAppear 0.4s ease;
}

@keyframes modalAppear {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: modalSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.8) translateY(50px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    transform: scale(1.1);
    border-color: white;
}

.modal-header {
    padding: 25px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
}

.image-counter {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.modal-content {
    padding: 30px;
}

.modal-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Updated Navigation Buttons with Dark Background */
.nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.3);
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    animation: imageFadeIn 0.5s ease;
}

@keyframes imageFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .initiatives-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .initiatives-section {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-container {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px 20px 0;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .image-container {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 1.8rem;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .gallery-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .image-container {
        height: 300px;
    }
}

        .annual-reports-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .annual-reports-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(49,130,206,0.10) 0%, rgba(49,130,206,0) 70%);
            border-radius: 50%;
        }

        .annual-reports-section::after {
            content: '';
            position: absolute;
            bottom: -120px;
            left: -120px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(44,122,123,0.10) 0%, rgba(44,122,123,0) 70%);
            border-radius: 50%;
        }

        .reports-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
            position: relative;
            z-index: 1;
        }

        .reports-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px;
            border-radius: 30px;
            background: rgba(44, 122, 123, 0.1);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .reports-header h2 {
            font-size: 2.7rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .reports-header h2::after {
            background: var(--accent);
        }

        .reports-header p {
            color: #5a6c7d;
            font-size: 1.1rem;
            margin-bottom: 0;
        }

        .reports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .report-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(44, 62, 80, 0.08);
            border: 1px solid rgba(44, 62, 80, 0.06);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            opacity: 0;
            transform: translateY(40px);
        }

        .report-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .report-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(44, 62, 80, 0.15);
        }

        .report-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .report-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .report-year-tag {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--secondary);
            background: rgba(49, 130, 206, 0.1);
            padding: 6px 14px;
            border-radius: 20px;
        }

        .report-card h3 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .report-card p {
            color: #5a6c7d;
            font-size: 0.98rem;
            margin-bottom: 26px;
            line-height: 1.6;
        }

        .report-card-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .report-view-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 13px 26px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(44, 122, 123, 0.25);
        }

        .report-view-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(44, 122, 123, 0.35);
        }

        .report-download-btn {
            width: 46px;
            height: 46px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(44, 62, 80, 0.06);
            color: #2c3e50;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .report-download-btn:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-3px);
        }

        .reports-view-all {
            text-align: center;
            margin-top: 45px;
            position: relative;
            z-index: 1;
        }

        .reports-view-all a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            font-size: 1.05rem;
            transition: var(--transition);
        }

        .reports-view-all a i {
            transition: transform 0.3s ease;
        }

        .reports-view-all a:hover {
            color: var(--accent);
        }

        .reports-view-all a:hover i {
            transform: translateX(5px);
        }

        @media (max-width: 480px) {
            .reports-header h2 {
                font-size: 2.1rem;
            }

            .report-card {
                padding: 32px 24px;
            }

            .report-card-actions {
                flex-wrap: wrap;
            }
        }
    

    .volunteer-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        position: relative;
        overflow: hidden;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    .volunteer-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease forwards;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease 0.2s forwards;
    }

    .volunteer-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    .volunteer-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        opacity: 0;
        transform: translateY(40px);
    }

    .volunteer-card:nth-child(1) { animation: fadeInUp 0.8s ease 0.4s forwards; }
    .volunteer-card:nth-child(2) { animation: fadeInUp 0.8s ease 0.6s forwards; }
    .volunteer-card:nth-child(3) { animation: fadeInUp 0.8s ease 0.8s forwards; }

    .volunteer-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .card-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #ff6b6b, #ee5a24);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 2rem;
        animation: float 3s ease-in-out infinite;
    }

    .volunteer-card:nth-child(2) .card-icon {
        background: linear-gradient(135deg, #4ecdc4, #44a08d);
        animation-delay: 0.5s;
    }

    .volunteer-card:nth-child(3) .card-icon {
        background: linear-gradient(135deg, #45b7d1, #96c93d);
        animation-delay: 1s;
    }

    .volunteer-card h3 {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .volunteer-card p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
    }

    .volunteer-cta {
        text-align: center;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        padding: 18px 45px;
        background: linear-gradient(135deg, #ff6b6b, #ee5a24);
        color: white;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
        opacity: 0;
        animation: fadeInUp 0.8s ease 1s forwards;
    }

    .cta-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
    }

    /* Modal Styles */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        padding: 20px;
    }

    .modal-overlay.active {
        display: flex;
        animation: modalFadeIn 0.3s ease;
    }

    .modal-container {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 25px;
        width: 100%;
        max-width: 700px;
        max-height: 90vh;
        overflow-y: auto;
        animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .modal-header {
        padding: 30px 40px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        justify-content: between;
        align-items: center;
    }

    .modal-header h2 {
        color: white;
        font-size: 2.2rem;
        font-weight: 700;
        margin: 0;
    }

    .close-button {
        background: rgba(255, 255, 255, 0.1);
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close-button:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    .volunteer-form {
        padding: 40px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group label {
        display: block;
        color: white;
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 15px 20px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        color: white;
        font-size: 1rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    }

    .form-group textarea {
        min-height: 100px;
        resize: vertical;
    }

    .interest-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 10px;
    }

    .option {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        color: white;
    }

    .option:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .custom-radio {
        width: 20px;
        height: 20px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        position: relative;
        transition: all 0.3s ease;
    }

    .option input:checked + .custom-radio {
        border-color: #ff6b6b;
        background: #ff6b6b;
    }

    .option input:checked + .custom-radio::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
    }

    .checkbox-group {
        margin-top: 20px;
    }

    .checkbox {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        color: white;
    }

    .custom-checkbox {
        width: 20px;
        height: 20px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 5px;
        position: relative;
        transition: all 0.3s ease;
    }

    .checkbox input:checked + .custom-checkbox {
        border-color: #ff6b6b;
        background: #ff6b6b;
    }

    .checkbox input:checked + .custom-checkbox::after {
        content: '✓';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 12px;
        font-weight: bold;
    }

    .submit-button {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 18px 45px;
        background: linear-gradient(135deg, #4ecdc4, #44a08d);
        color: white;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .submit-button:hover:not(:disabled) {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(78, 205, 196, 0.6);
    }

    .submit-button:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }

    /* Animations */
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes modalFadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: scale(0.8) translateY(50px);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .section-title {
            font-size: 2.2rem;
        }
        
        .volunteer-cards {
            grid-template-columns: 1fr;
        }
        
        .form-row {
            grid-template-columns: 1fr;
        }
        
        .interest-options {
            grid-template-columns: 1fr;
        }
        
        .modal-header {
            padding: 25px 25px 15px;
        }
        
        .volunteer-form {
            padding: 25px;
        }
        
        .modal-header h2 {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.6rem;
        }
        
        .volunteer-card {
            padding: 30px 20px;
        }
        
        .cta-button {
            padding: 15px 35px;
            font-size: 1rem;
        }
    }
    

        .testimonials-section {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            text-align: center;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
        }

        h2 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 60px;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2980b9);
            border-radius: 2px;
        }

        .testimonials-slider {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .testimonial-slide {
            flex: 0 0 100%;
            padding: 60px 40px;
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 350px;
            position: relative;
        }

        .testimonial-slide:nth-child(even) {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .quote-icon {
            font-size: 2.5rem;
            color: #3498db;
            margin-bottom: 25px;
            opacity: 0.7;
        }

        .testimonial-content {
            font-size: 1.4rem;
            line-height: 1.6;
            color: #2c3e50;
            margin-bottom: 30px;
            max-width: 800px;
            font-style: italic;
            position: relative;
        }

        .testimonial-author {
            font-size: 1.3rem;
            font-weight: 700;
            color: #3498db;
            margin-bottom: 8px;
        }

        .testimonial-role {
            font-size: 1.1rem;
            color: #7f8c8d;
            font-weight: 500;
        }

        .testimonials-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .testimonials-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: #bdc3c7;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonials-dot.active {
            background-color: #3498db;
            transform: scale(1.2);
        }

        .testimonials-dot:hover {
            background-color: #2980b9;
        }

        .slide-indicators {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }

        .indicator {
            width: 50px;
            height: 4px;
            background-color: #bdc3c7;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background-color: #3498db;
            width: 70px;
        }

        /* Animation for slide entrance */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .testimonial-slide.active {
            animation: fadeInUp 0.8s ease forwards;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h2 {
                font-size: 2.2rem;
            }
            
            .testimonial-slide {
                padding: 40px 20px;
                min-height: 300px;
            }
            
            .testimonial-content {
                font-size: 1.2rem;
            }
            
            .testimonial-author {
                font-size: 1.1rem;
            }
            
            .testimonial-role {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            h2 {
                font-size: 1.8rem;
            }
            
            .testimonial-slide {
                padding: 30px 15px;
                min-height: 280px;
            }
            
            .testimonial-content {
                font-size: 1.1rem;
            }
            
            .quote-icon {
                font-size: 2rem;
            }
        }
    

        .phf-blog-section {
        max-width: 1400px;
        margin: 0 auto;
        }

        .phf-section-header {
        text-align: center;
        margin-bottom: 60px;
        animation: phfFadeInDown 0.8s ease;
        }

        @keyframes phfFadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
        }

        .phf-section-subtitle {
        color: rgba(0, 0, 0, 0.9);
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 10px;
        display: inline-block;
        padding: 8px 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        backdrop-filter: blur(10px);
        }

        .phf-section-title {
        color: rgb(26, 26, 26);
        font-size: 48px;
        font-weight: 800;
        margin-top: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .phf-slider-container {
        position: relative;
        overflow: hidden;
        padding: 20px 0 40px;
        }

        .phf-slider-wrapper {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        gap: 30px;
        padding: 0 15px;
        }

        .phf-blog-slide {
        min-width: calc(33.333% - 20px);
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        transition: all 0.4s ease;
        cursor: pointer;
        position: relative;
        }

        .phf-blog-slide:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
        }

        .phf-slide-image-container {
        position: relative;
        height: 280px;
        overflow: hidden;
        }

        .phf-slide-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        }

        .phf-blog-slide:hover .phf-slide-image {
        transform: scale(1.15) rotate(2deg);
        }

        .phf-slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        }

        .phf-blog-slide:hover .phf-slide-overlay {
        opacity: 1;
        }

        .phf-slide-date {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 12px 18px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 14px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        z-index: 2;
        animation: phfPulse 2s infinite;
        }

        @keyframes phfPulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
        }

        .phf-slide-category {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: rgba(255, 255, 255, 0.95);
        color: #667eea;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        z-index: 2;
        }

        .phf-slide-content {
        padding: 30px;
        }

        .phf-slide-title {
        color: #1a1a2e;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        }

        .phf-slide-excerpt {
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        }

        .phf-slide-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 20px;
        border-top: 2px solid #f0f0f0;
        }

        .phf-author-info {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: #888;
        }

        .phf-author-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 14px;
        }

        .phf-read-more {
        color: #667eea;
        font-weight: 700;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: gap 0.3s ease;
        }

        .phf-blog-slide:hover .phf-read-more {
        gap: 12px;
        }

        .phf-arrow-icon {
        transition: transform 0.3s ease;
        }

        .phf-blog-slide:hover .phf-arrow-icon {
        transform: translateX(5px);
        }

        .phf-slider-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
        }

        .phf-control-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: white;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        color: #667eea;
        }

        .phf-control-btn:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        transform: scale(1.1);
        }

        .phf-control-btn:active {
        transform: scale(0.95);
        }

        .phf-slider-dots {
        display: flex;
        gap: 12px;
        }

        .phf-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        }

        .phf-dot.phf-active {
        background: white;
        width: 40px;
        border-radius: 10px;
        }

        .phf-dot:hover {
        background: rgba(255, 255, 255, 0.7);
        transform: scale(1.2);
        }

        /* Modal Styles */
        .phf-blog-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        z-index: 1000;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
        animation: phfFadeIn 0.3s ease;
        }

        @keyframes phfFadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
        }

        .phf-blog-modal.phf-modal-active {
        display: flex;
        }

        .phf-modal-content {
        background: white;
        width: 90%;
        max-width: 1000px;
        max-height: 90vh;
        border-radius: 24px;
        overflow: hidden;
        position: relative;
        animation: phfSlideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
        }

        @keyframes phfSlideUp {
        from {
            opacity: 0;
            transform: translateY(50px) scale(0.9);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        }

        .phf-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: all 0.3s ease;
        font-size: 24px;
        }

        .phf-modal-close:hover {
        background: #ff4757;
        transform: rotate(90deg) scale(1.1);
        }

        .phf-modal-body {
        overflow-y: auto;
        max-height: 90vh;
        }

        .phf-modal-image {
        height: 400px;
        overflow: hidden;
        position: relative;
        }

        .phf-modal-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        }

        .phf-modal-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(to bottom, transparent, white);
        }

        .phf-modal-text {
        padding: 50px;
        background: white;
        }

        .phf-modal-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
        flex-wrap: wrap;
        }

        .phf-modal-category {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 10px 20px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        }

        .phf-modal-date {
        color: #888;
        font-size: 14px;
        font-weight: 600;
        }

        .phf-modal-title {
        color: #1a1a2e;
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 30px;
        line-height: 1.3;
        }

        .phf-modal-article {
        color: #444;
        line-height: 1.9;
        font-size: 16px;
        }

        .phf-modal-article p {
        margin-bottom: 20px;
        }

        .phf-modal-article h4 {
        color: #1a1a2e;
        font-size: 22px;
        font-weight: 700;
        margin-top: 30px;
        margin-bottom: 15px;
        }

        .phf-modal-article ul {
        margin: 20px 0;
        padding-left: 25px;
        }

        .phf-modal-article li {
        margin-bottom: 12px;
        position: relative;
        }

        .phf-modal-article li::marker {
        color: #667eea;
        }

        /* Responsive */
        @media (max-width: 1024px) {
        .phf-blog-slide {
            min-width: calc(50% - 15px);
        }
        }

        @media (max-width: 768px) {
        .phf-section-title {
            font-size: 32px;
        }

        .phf-blog-slide {
            min-width: calc(100% - 30px);
        }

        .phf-modal-text {
            padding: 30px;
        }

        .phf-modal-title {
            font-size: 28px;
        }

        .phf-modal-image {
            height: 250px;
        }
        }
    

    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        top: -15%;
    }

    .modal-content {
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 20px;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        margin: 10% auto;
        padding: 30px;
        width: 90%;
        max-width: 500px;
        animation: modalSlideIn 0.3s ease-out;
        color: white;
    }

    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(-50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .close:hover {
        color: #333;
    }

    .modal-content h3 {
        color: #ffffff;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }

    .modal-subtitle {
        color: #ffffff;
        margin-bottom: 25px;
        font-size: 0.9rem;
    }

    .payment-options {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .payment-method h4 {
        color: #ffffff;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

    .payment-details {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 15px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .detail-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .detail-item:last-child {
        border-bottom: none;
    }

    .label {
        color: #ffffff;
        font-weight: 500;
        font-size: 0.9rem;
    }

    .value {
        color: #ffffff;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .modal-footer {
        margin-top: 25px;
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .modal-footer p {
        color: #e15300;
        font-weight: 500;
        font-size: 0.95rem;
    }

    @media (max-width: 768px) {
        .modal-content {
            margin: 20% auto;
            padding: 20px;
            width: 85%;
        }
        
        .detail-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
        }
    }
    

        /* Modern FAQ Section Styles */
        .modern-faq-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .modern-faq-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .modern-faq-title {
            text-align: center;
            margin-bottom: 20px;
            font-size: 2.8rem;
            font-weight: 700;
            color: #2c3e50;
            position: relative;
        }

        .modern-faq-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #2c7a7b, #3182ce);
            border-radius: 2px;
        }

        .modern-faq-subtitle {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
        }

        .modern-faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .modern-faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .modern-faq-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .modern-faq-item:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
        }

        .modern-faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: #2c3e50;
            transition: all 0.3s ease;
            background: white;
            position: relative;
        }

        .modern-faq-question:hover {
            background: #f8f9fa;
        }

        .modern-faq-question::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e9ecef, transparent);
        }

        .modern-faq-toggle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #f1f3f4;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            color: #2c7a7b;
        }

        .modern-faq-item.active .modern-faq-toggle {
            background: #2c7a7b;
            color: white;
            transform: rotate(180deg);
        }

        .modern-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: white;
        }

        .modern-faq-item.active .modern-faq-answer {
            max-height: 500px;
        }

        .modern-faq-answer p {
            padding: 0 30px 25px;
            margin: 0;
            color: #6c757d;
            line-height: 1.7;
        }

        .modern-faq-actions {
            text-align: center;
            margin-top: 50px;
        }

        .modern-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background: linear-gradient(135deg, #2c7a7b, #3182ce);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(44, 122, 123, 0.3);
        }

        .modern-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(44, 122, 123, 0.4);
            background: linear-gradient(135deg, #256a6a, #2c72b8);
        }

        /* Modern FAQ Modal Styles */
        .modern-faq-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            padding: 20px;
        }

        .modern-faq-modal.active {
            display: flex;
            animation: modernModalAppear 0.4s ease;
        }

        @keyframes modernModalAppear {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modern-modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
        }

        .modern-modal-container {
            position: relative;
            background: white;
            border-radius: 20px;
            width: 90%;
            max-width: 1000px;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            z-index: 10001;
            animation: modernModalSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes modernModalSlideIn {
            from { opacity: 0; transform: scale(0.8) translateY(50px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        .modern-modal-header {
            padding: 25px 30px;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #2c7a7b, #3182ce);
            color: white;
        }

        .modern-modal-title {
            margin: 0;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .modern-modal-close {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .modern-modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .modern-modal-body {
            padding: 0;
            max-height: calc(90vh - 100px);
            overflow-y: auto;
        }

        .modern-modal-faqs {
            padding: 30px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .modern-modal-faq-item {
            background: #f8f9fa;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .modern-modal-faq-item:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .modern-modal-faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #2c3e50;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .modern-modal-faq-question:hover {
            background: #e9ecef;
        }

        .modern-modal-faq-toggle {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: #e9ecef;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            color: #2c7a7b;
            font-size: 0.9rem;
        }

        .modern-modal-faq-item.active .modern-modal-faq-toggle {
            background: #2c7a7b;
            color: white;
            transform: rotate(180deg);
        }

        .modern-modal-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: white;
        }

        .modern-modal-faq-item.active .modern-modal-faq-answer {
            max-height: 500px;
        }

        .modern-modal-faq-answer p {
            padding: 0 20px 20px;
            margin: 0;
            color: #6c757d;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .modern-modal-faqs {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .modern-faq-section {
                padding: 60px 0;
            }
            
            .modern-faq-title {
                font-size: 2.2rem;
            }
            
            .modern-faq-question {
                padding: 20px;
                font-size: 1rem;
            }
            
            .modern-faq-answer p {
                padding: 0 20px 20px;
            }
            
            .modern-modal-container {
                width: 95%;
            }
            
            .modern-modal-header {
                padding: 20px;
            }
            
            .modern-modal-title {
                font-size: 1.5rem;
            }
            
            .modern-modal-faqs {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .modern-faq-title {
                font-size: 1.8rem;
            }
            
            .modern-faq-subtitle {
                font-size: 1rem;
            }
            
            .modern-btn {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
            
            .modern-modal-title {
                font-size: 1.3rem;
            }
            
            .modern-modal-faq-question {
                padding: 15px;
                font-size: 0.95rem;
            }
            
            .modern-modal-faq-answer p {
                padding: 0 15px 15px;
            }
        }
    

        /* Partners Section Styles */
        .partners-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .partners-section h2 {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 50px;
            color: #2c3e50;
            position: relative;
        }

        .partners-section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #2c7a7b, #3182ce);
            border-radius: 2px;
        }

        .partners-slider {
            position: relative;
            max-width: 1000px;
            margin: 0 auto 40px;
            overflow: hidden;
            border-radius: 15px;
            padding: 40px 0;
        }

        .partners-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .partner-slide {
            flex: 0 0 20%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            min-height: 140px;
        }

        .round-logo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: shadowPulse 3s infinite ease-in-out;
        }

        @keyframes shadowPulse {
            0%, 100% {
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            }
            50% {
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            }
        }

        .round-logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.7s ease;
        }

        .round-logo:hover::before {
            left: 100%;
        }

        .round-logo:hover {
            transform: translateY(-8px) scale(1.05);
            animation: shadowPulseHover 1.5s infinite ease-in-out;
        }

        @keyframes shadowPulseHover {
            0%, 100% {
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            }
            50% {
                box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
            }
        }

        .round-logo span {
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        /* Different color schemes for logos */
        .logo-1 {
            background: linear-gradient(135deg, #2c7a7b, #38b2ac);
        }

        .logo-2 {
            background: linear-gradient(135deg, #3182ce, #5a9bd4);
        }

        .logo-3 {
            background: linear-gradient(135deg, #e53e3e, #fc8181);
        }

        .logo-4 {
            background: linear-gradient(135deg, #2d3748, #4a5568);
        }

        .logo-5 {
            background: linear-gradient(135deg, #805ad5, #9f7aea);
        }

        .logo-6 {
            background: linear-gradient(135deg, #d69e2e, #ecc94b);
            color: #2d3748;
        }

        .logo-7 {
            background: linear-gradient(135deg, #38a169, #68d391);
        }

        .logo-8 {
            background: linear-gradient(135deg, #e53e3e, #ed8936);
        }

        .logo-9 {
            background: linear-gradient(135deg, #3182ce, #4299e1);
        }

        .logo-10 {
            background: linear-gradient(135deg, #2c7a7b, #319795);
        }

        .partners-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            pointer-events: none;
            z-index: 10;
        }

        .partners-arrow {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            pointer-events: all;
            margin: 0 20px;
        }

        .partners-arrow:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .partners-arrow i {
            font-size: 1.2rem;
            color: #2c7a7b;
        }

        .partners-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .partners-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .partners-dot.active {
            background: #2c7a7b;
            transform: scale(1.2);
        }

        /* Floating Animation Elements */
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(44, 122, 123, 0.05);
            animation: float 20s infinite linear;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 70%;
            left: 80%;
            animation-delay: 5s;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 20%;
            left: 90%;
            animation-delay: 10s;
        }

        .shape:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 80%;
            left: 10%;
            animation-delay: 15s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .partner-slide {
                flex: 0 0 25%;
            }
            
            .round-logo {
                width: 90px;
                height: 90px;
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            .partner-slide {
                flex: 0 0 33.333%;
            }
            
            .partners-section h2 {
                font-size: 2.2rem;
            }
            
            .round-logo {
                width: 80px;
                height: 80px;
                font-size: 1.2rem;
            }
            
            .partners-arrow {
                width: 40px;
                height: 40px;
                margin: 0 10px;
            }
        }

        @media (max-width: 576px) {
            .partner-slide {
                flex: 0 0 50%;
            }
            
            .partners-section h2 {
                font-size: 1.8rem;
            }
            
            .round-logo {
                width: 70px;
                height: 70px;
                font-size: 1.1rem;
            }
        }
    

    /* Scroll to Top Button */
    .phf-scroll-to-top {
        position: fixed;
        bottom: 100px; /* Position above WhatsApp button */
        right: 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 15px;
        border-radius: 50%;
        font-size: 20px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
        display: none; /* Hidden by default */
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        z-index: 999;
        border: none;
        opacity: 0;
        transform: translateY(20px);
    }

    .phf-scroll-to-top.phf-show {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .phf-scroll-to-top:hover {
        background: linear-gradient(135deg, #5568d3 0%, #6339a0 100%);
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    }

    .phf-scroll-to-top:active {
        transform: translateY(-2px);
    }

    .phf-scroll-to-top i {
        color: white;
    }

    /* Floating WhatsApp Button */
    .phf-whatsapp-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: green;
        color: rgb(255, 255, 255);
        padding: 15px;
        border-radius: 50%;
        font-size: 30px;
        text-align: center;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        z-index: 1000;
        border: none;
    }

    .phf-whatsapp-btn i {
        color: white;
    }

    .phf-whatsapp-btn:hover {
        background-color: #1ebe5d;
    }

    /* Ring animation around the button */
    @keyframes phf-ring-pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
            box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    .phf-whatsapp-btn {
        animation: phf-ring-pulse 2s infinite;
    }

    /* Modal styles */
    .phf-whatsapp-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1001;
        justify-content: center;
        align-items: center;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .phf-whatsapp-modal-content {
        background-color: white;
        border-radius: 20px;
        width: 90%;
        max-width: 380px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: phf-modal-appear 0.3s ease-out;
    }

    @keyframes phf-modal-appear {
        from {
            opacity: 0;
            transform: scale(0.8) translateY(-20px);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    /* Top layer - Green gradient */
    .phf-modal-top-layer {
        background: linear-gradient(135deg, #25D366, #128C7E);
        padding: 30px 25px 25px 25px;
        text-align: center;
        position: relative;
    }

    /* Close button */
    .phf-close-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.3);
        border: none;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        font-size: 18px;
        cursor: pointer;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
    }

    .phf-close-modal:hover {
        background: rgba(0, 0, 0, 0.5);
    }

    /* WhatsApp icon in modal with animation */
    .phf-modal-whatsapp-icon {
        font-size: 48px;
        color: white;
        margin-bottom: 15px;
        animation: phf-icon-pulse 2s infinite;
    }

    @keyframes phf-icon-pulse {
        0% {
            transform: scale(1);
            text-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
        }
        50% {
            transform: scale(1.1);
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
        }
        100% {
            transform: scale(1);
            text-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
        }
    }

    .phf-modal-title {
        color: white;
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 8px 0;
    }

    .phf-modal-description {
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        margin: 0;
        line-height: 1.4;
    }

    /* Bottom layer - White */
    .phf-modal-bottom-layer {
        padding: 25px;
    }

    .phf-contact-info {
        text-align: center;
        margin-bottom: 25px;
    }

    .phf-phone-number {
        font-size: 18px;
        font-weight: 600;
        color: #25D366;
        margin: 0 0 5px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .phf-response-time {
        font-size: 14px;
        color: #666;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .phf-modal-buttons {
        display: flex;
        gap: 12px;
    }

    .phf-btn {
        flex: 1;
        padding: 14px 14px;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        text-decoration: none;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .phf-btn-secondary {
        background-color: #f0f0f0;
        color: #333;
        border: 1px solid #e0e0e0;
    }

    .phf-btn-secondary:hover {
        background-color: #e5e5e5;
    }

    .phf-btn-primary {
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: white;
        border: none;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }

    .phf-btn-primary:hover {
        background: linear-gradient(135deg, #1ebe5d, #0d7a68);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .phf-scroll-to-top {
            width: 45px;
            height: 45px;
            font-size: 18px;
            bottom: 85px;
            right: 15px;
        }

        .phf-whatsapp-btn {
            width: 50px;
            height: 50px;
            font-size: 18px;
            bottom: 15px;
            right: 15px;
        }
        
        .phf-whatsapp-modal-content {
            max-width: 350px;
        }
        
        .phf-modal-top-layer {
            padding: 25px 20px 20px 20px;
        }
        
        .phf-modal-bottom-layer {
            padding: 20px;
        }
    }

    @media (max-width: 480px) {
        .phf-scroll-to-top {
            width: 40px;
            height: 40px;
            font-size: 16px;
            bottom: 75px;
            right: 10px;
        }

        .phf-whatsapp-btn {
            width: 45px;
            height: 45px;
            font-size: 16px;
            bottom: 10px;
            right: 10px;
        }
        
        .phf-whatsapp-modal-content {
            max-width: 320px;
        }
        
        .phf-modal-title {
            font-size: 18px;
        }
        
        .phf-modal-buttons {
            flex-direction: column;
        }
        
        .phf-btn {
            padding: 12px 16px;
        }
    }
