 /* Base Styles & Variables */
        :root {
            --dark-green: #233d4d;
            --light-orange: #fe7f2d;
            --medium-green: #215e61;
            --light-green: #2a7a7e;
            --dark-gray: #333;
            --light-gray: #f5fbe6;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
            opacity: 0;
            animation: fadeInBody 0.5s ease-in forwards;
            transition: background-color 0.25s ease, color 0.25s ease;
            overflow-x: hidden;
        }

        @keyframes fadeInBody {
            to {
                opacity: 1;
            }
        }

        /* Smooth section reveal animations */
        .section {
            animation: slideUpFade 0.8s ease-out forwards;
            opacity: 0;
        }

        @keyframes slideUpFade {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        header {
            animation: slideDownFade 0.6s ease-out forwards;
        }

        @keyframes slideDownFade {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        footer {
            animation: slideUpFade 0.8s ease-out forwards;
            opacity: 0;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0;
            animation: slideUpFade 0.8s ease-out forwards;
            opacity: 0;
        }

        /* Stagger animation delays for multiple sections */
        .section:nth-of-type(1) { animation-delay: 0.1s; }
        .section:nth-of-type(2) { animation-delay: 0.2s; }
        .section:nth-of-type(3) { animation-delay: 0.3s; }
        .section:nth-of-type(4) { animation-delay: 0.4s; }
        .section:nth-of-type(5) { animation-delay: 0.5s; }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--dark-green);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--light-orange);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--light-orange);
            color: var(--dark-green);
            font-weight: 600;
            border-radius: 20px;
            transition: var(--transition);
            border: 2px solid var(--light-orange);
        }

        .btn:hover {
            background-color: transparent;
            color: var(--light-orange);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--light-orange);
            border: 2px solid var(--light-orange);
            border-radius: 20px;
        }

        .btn-outline:hover {
            background-color: var(--light-orange);
            color: var(--dark-green);
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            /* background-color: rgba(10, 61, 47, 0.95); */
            background-color: white;
            padding: 15px 0;
            transition: var(--transition);
        }

        header.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-text {
            color: var(--white);
            font-size: 1.8rem;
            font-weight: 700;
        }

         span {
            color: var(--light-orange);
        }

        .nav-list {
            display: flex;
        }

        .nav-list li {
            margin-left: 30px;
        }

        .nav-list a {
            color: var(black);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-list a:hover {
            color: var(--light-orange);
        }

        .nav-list a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--light-orange);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }

        .nav-list a:hover::after {
            width: 100%;

        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--dark-green);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px 12px;
        }

        /* theme-toggle styles removed */

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(10, 61, 47, 0.2), rgba(10, 61, 47, 0.2)), url('./assets/images/maksym-kaharlytskyi-u13zBF4r56A-unsplash.jpg');
            object-fit: cover;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
            margin-top: 50px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #e0e0e0;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            border-radius: 20px;
        }

        /* Services Section */
        .services {
            background-color: var(--light-gray);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            /* background-color: var(--white); */
            background: linear-gradient(rgba(4, 59, 15, 1.0), rgba(3, 59, 18, 1.0)), url('./assets/images/elena-mozhvilo-RhXAO8OXyDY-unsplash.jpg');
            color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            height: 70px;
            width: 70px;
            background-color: var(--white);
            color: var(--light-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 30px auto 20px;
        }

        .service-content {
            padding: 30px 25px 30px;
            text-align: center;
        }

        .service-content h3 {
            color: var(--white);
        }

        /* About Section */
        #about {
            background-color: var(--white);
        }
        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            align-items: center;
        }

        .about-text h2 {
            color: var(--dark-green);
        }

        .about-highlights {
            margin-top: 30px;
        }

        .highlight {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .highlight-icon {
            color: var(--light-orange);
            font-size: 1.5rem;
            margin-right: 15px;
        }

        /* Projects Section */
        /* .projects {
            background-color: var(--light-gray);
        }

        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .project-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .project-img {
            height: 200px;
            background-color: var(--medium-green);
            background-size: cover;
            background-position: center;
        }

        .project-content {
            padding: 25px;
        }

        .project-content h3 {
            color: var(--dark-green);
        } */

        /* Contact Section */
        #contact {
            background-color: var(--light-gray);
        }
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .contact-info h3 {
            color: var(--dark-green);
            margin-bottom: 20px;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-icon {
            color: var(--light-orange);
            font-size: 1.2rem;
            margin-right: 15px;
            margin-top: 5px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
        }

        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--dark-green);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo .logo-text {
            font-size: 1.8rem;
        }

        .footer-about p {
            margin-bottom: 20px;
            color: #ccc;
        }

        .footer-links h4,
        .footer-contact h4 {
            color: var(--light-orange);
            margin-bottom: 20px;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #ccc;
            transition: var(--transition);
        }

        .footer-links ul li a:hover {
            color: var(--light-orange);
            padding-left: 5px;
        }

        .footer-contact p {
            color: #ccc;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .footer-contact i {
            color: var(--light-orange);
            margin-right: 10px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 25px;
                left: 90%;
            }

            /* .logo {
                display: none;
        
        /* Lightbox Modal Styles - Removed */

            .nav-list {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            }

            .nav-list.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-list li {
                margin: 15px 0;
            }

            .hero h1 {
                font-size: 2.3rem;
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 200px;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }

        /* Services Page Styles */
        .services-hero {
            background: linear-gradient(rgba(10, 61, 47, 0.4), rgba(10, 61, 47, 0.6)), url('./assets/images/elena-mozhvilo-RhXAO8OXyDY-unsplash.jpg');
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-top: 50px;
        }

        .services-hero h1 {
            font-size: 3rem;
            margin-bottom: auto;
            color: var(--white);
            background: linear-gradient(rgba(10, 61, 47, 0.4), rgba(10, 61, 47, 0.6));
            padding: 10px 20px;
        }

        .services-hero p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            color: #e0e0e0;
            background: linear-gradient(rgba(10, 61, 47, 0.4), rgba(10, 61, 47, 0.6));
            padding: 10px 20px;
        }

        /* Detailed Services Section */
        .services-detailed {
            background-color: var(--white);
        }

        .service-detail-card {
            margin-bottom: 80px;
            padding: 40px 0;
            border-bottom: 1px solid #eee;
        }

        .service-detail-card:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .service-detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .service-detail-grid.reverse {
            direction: rtl;
        }

        .service-detail-grid.reverse > * {
            direction: ltr;
        }

        .service-detail-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .service-detail-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
            color: var(--light-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            flex-shrink: 0;
        }

        .service-detail-header h2 {
            color: var(--dark-green);
            margin: 0;
        }

        .service-detail-content {
            color: var(--dark-gray);
        }

        .service-detail-content p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #666;
        }

        .service-features {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .service-features li {
            display: flex;
            align-items: center;
            color: var(--dark-gray);
        }

        .service-features i {
            color: var(--light-orange);
            margin-right: 12px;
            font-size: 0.9rem;
        }

        .service-detail-img {
            display: flex;
            justify-content: center;
            
        }

        .img-placeholder {
            width: 50%;
            height: 300px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            border: 5px solid #0a3d2f;
        }

        /* Specialized Services Section */
        .specialized-services {
            background-color: var(--light-gray);
        }

        .specialized-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .specialized-card {
            background-color: var(--white);
            padding: 30px 25px;
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .specialized-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .specialized-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
            color: var(--light-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
        }

        .specialized-card h3 {
            color: var(--dark-green);
            margin-bottom: 15px;
        }

        .specialized-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Why Choose Us Section */
        .why-choose-us {
            background-color: var(--white);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .why-card {
            background: linear-gradient(135deg, rgba(10, 61, 47, 0.05), rgba(26, 92, 72, 0.05));
            padding: 35px 25px;
            border-radius: 8px;
            border-left: 4px solid var(--light-orange);
            transition: var(--transition);
        }

        .why-card:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .why-icon {
            width: 50px;
            height: 50px;
            background-color: var(--light-orange);
            color: var(--dark-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .why-card h3 {
            color: var(--dark-green);
            margin-bottom: 10px;
        }

        .why-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
            color: var(--white);
            text-align: center;
        }

        .cta-content h2 {
            color: var(--white);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-content p {
            color: #e0e0e0;
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-buttons .btn {
            background-color: var(--light-orange);
            color: var(--dark-green);
        }

        .cta-buttons .btn-outline {
            background-color: transparent;
            color: var(--light-orange);
            border: 2px solid var(--light-orange);
        }

        .cta-buttons .btn-outline:hover {
            background-color: var(--light-orange);
            color: var(--dark-green);
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--light-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--light-orange);
            color: var(--dark-green);
        }

        /* Responsive Services Page */
        @media (max-width: 992px) {
            .service-detail-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .service-detail-grid.reverse {
                direction: ltr;
            }

            .service-features {
                grid-template-columns: 1fr;
            }

            .service-detail-img {
                display: flex;
                justify-content: center;
                width: 100%;
            }

            .img-placeholder {
                width: 100%;
            }

            .services-hero h1 {
                font-size: 2.3rem;
            }

            .cta-content h2 {
                font-size: 2rem;
            }
            
        }

        @media (max-width: 768px) {
            .services-hero {
                height: 50vh;
            }

            .services-hero h1 {
                font-size: 2rem;
            }

            .services-hero p {
                font-size: 1rem;
            }

            .service-detail-card {
                margin-bottom: 60px;
                padding: 30px 0;
            }

            .service-detail-header {
                flex-direction: column;
                text-align: center;
                margin-bottom: 20px;
            }

            .service-detail-header h2 {
                margin-top: 10px;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-buttons .btn {
                width: 100%;
                max-width: 250px;
            }
        }

        @media (max-width: 576px) {
            .services-hero {
                height: 40vh;
            }

            .services-hero h1 {
                font-size: 1.8rem;
            }

            .services-hero p {
                font-size: 0.95rem;
            }

            .specialized-grid {
                grid-template-columns: 1fr;
            }

            .cta-content h2 {
                font-size: 1.8rem;
            }

            .cta-content p {
                font-size: 1rem;
            }

            .service-detail-header h2 {
                font-size: 1.5rem;
            }

            .img-placeholder {
                height: 39.5vh;
                font-size: 3rem;
            }
        }

        /* About Page Styles */
        .about-hero {
            background: linear-gradient(rgba(10, 61, 47, 0.3), rgba(10, 61, 47, 0.3)), url('./assets/images/capacity-for-the-agbara.avif');
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-top: 50px;
        }

        .about-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .about-hero p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            color: #e0e0e0;
        }

        /* About Overview Section */
        .about-overview {
            background-color: var(--white);
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .overview-content h2 {
            color: var(--dark-green);
        }

        .overview-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .about-values {
            margin-top: 40px;
        }

        .about-values h3 {
            color: var(--dark-green);
            margin-bottom: 25px;
            font-size: 1.5rem;
        }

        .values-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .value-item {
            background: linear-gradient(135deg, rgba(10, 61, 47, 0.05), rgba(26, 92, 72, 0.05));
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid var(--light-orange);
        }

        .value-icon {
            font-size: 1.8rem;
            color: var(--light-orange);
            margin-bottom: 12px;
        }

        .value-item h4 {
            color: var(--dark-green);
            margin-bottom: 8px;
        }

        .value-item p {
            color: #666;
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.5;
        }

        .overview-stats {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .stat-box {
            background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
            color: var(--white);
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(10, 61, 47, 0.15);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--light-orange);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            color: #e0e0e0;
        }

        /* Certifications Section */
        .certifications-section {
            background-color: var(--light-gray);
        }

        .certifications-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            align-items: start;
        }

        .cert-upload-box {
            background: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .upload-icon {
            font-size: 3rem;
            color: var(--light-orange);
            text-align: center;
            margin-bottom: 15px;
        }

        .cert-upload-box h3 {
            color: var(--dark-green);
            text-align: center;
            margin-bottom: 10px;
        }

        .cert-upload-box p {
            text-align: center;
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .cert-upload-area {
            border: 2px dashed #ddd;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: #f9f9f9;
        }

        .cert-upload-area:hover {
            border-color: var(--light-orange);
            background-color: rgba(249, 168, 38, 0.05);
        }

        .cert-upload-area p {
            margin: 0;
            color: #999;
        }

        .cert-upload-area i {
            display: block;
            margin-bottom: 10px;
            font-size: 2rem;
            color: var(--light-orange);
        }

        /* Certification Gallery */
        .cert-gallery {
            background: var(--white);
            padding: 30px;
            border-radius: 8px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            min-height: 300px;
        }

        .cert-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            background: #f5f5f5;
            aspect-ratio: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s ease;
            border: 2px solid #eee;
        }

        .cert-item:hover {
            transform: scale(1.05);
            border-color: var(--light-orange);
        }

        .cert-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cert-pdf-icon {
            font-size: 3rem;
            color: #c5221f;
            text-align: center;
        }

        .cert-name {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: var(--white);
            padding: 8px;
            font-size: 0.8rem;
            text-align: center;
            word-break: break-word;
            max-height: 45%;
            overflow: hidden;
        }

        .cert-delete {
            position: absolute;
            top: 5px;
            right: 5px;
            background: rgba(220, 53, 69, 0.9);
            color: white;
            border: none;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            transition: background 0.3s ease;
            opacity: 0;
        }

        .cert-item:hover .cert-delete {
            opacity: 1;
        }

        .cert-delete:hover {
            background: rgba(220, 53, 69, 1);
        }

        /* Mission & Vision Section */
        .mission-vision {
            background-color: var(--white);
        }

        .mission-vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .mission-box,
        .vision-box {
            background: linear-gradient(135deg, rgba(10, 61, 47, 0.05), rgba(26, 92, 72, 0.05));
            padding: 35px;
            border-radius: 8px;
            border: 1px solid rgba(10, 61, 47, 0.1);
        }

        .mv-icon {
            font-size: 2.5rem;
            color: var(--light-orange);
            margin-bottom: 15px;
        }

        .mission-box h3,
        .vision-box h3 {
            color: var(--dark-green);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .mission-box p,
        .vision-box p {
            color: #666;
            line-height: 1.8;
            margin: 0;
            font-size: 0.95rem;
        }

        /* Why Partner Section */
        .why-partner {
            background-color: var(--light-gray);
        }

        .partner-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .partner-card {
            background: var(--white);
            padding: 30px 25px;
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .partner-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .partner-icon {
            font-size: 2.2rem;
            color: var(--light-orange);
            margin-bottom: 15px;
        }

        .partner-card h4 {
            color: var(--dark-green);
            margin-bottom: 12px;
        }

        .partner-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Responsive About Page */
        @media (max-width: 992px) {
            .overview-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .mission-vision-grid {
                grid-template-columns: 1fr;
            }

            .certifications-container {
                grid-template-columns: 1fr;
            }

            .about-hero h1 {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 768px) {
            .about-hero {
                height: 50vh;
            }

            .about-hero h1 {
                font-size: 2rem;
            }

            .about-hero p {
                font-size: 1rem;
            }

            .overview-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .cert-gallery {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
        }

        @media (max-width: 576px) {
            .about-hero {
                height: 40vh;
            }

            .about-hero h1 {
                font-size: 1.8rem;
            }

            .about-hero p {
                font-size: 0.95rem;
            }

            .overview-stats {
                grid-template-columns: 1fr 1fr;
            }

            .stat-number {
                font-size: 1.8rem;
            }

            .stat-label {
                font-size: 0.85rem;
            }

            .cert-gallery {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
                gap: 10px;
                padding: 15px;
            }

            .value-item {
                padding: 15px;
            }

            .cert-upload-area {
                padding: 20px;
            }

        }


