* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
        }

        :root {
            --primary-color: #0a5c36;
            --secondary-color: #1a7c4d;
            --accent-color: #d4af37;
            --light-color: #f8f9fa;
            --dark-color: #333;
            --gray-color: #6c757d;
            --transition: all 0.3s ease;
            --modal-z-index: 2000;
            --modal-backdrop: rgba(0, 0, 0, 0.85);
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: #fff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .containerr {
            width: 100%;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }

        .btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-accent {
            background-color: var(--accent-color);
            color: var(--dark-color);
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.8s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            animation: fadeIn 1s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .logo-img {
            height: 70px;
            margin-right: 15px;
        }

        .logo-text h1 {
            font-size: 1rem;
            color: var(--primary-color);
            margin-bottom: 7px;
        }

        .logo-text p {
            font-size: 0.7rem;
            color: var(--gray-color);
            margin-top: -5px;
        }

        .nav-menu {
            display: flex;
        }

        .nav-menu li {
            margin-left: 20px;
        }

        .nav-menu a {
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-color);
        }

        /* Hero Section with Only Slider and News */
        .hero-container {
            padding-top: 130px;
            padding-bottom: 30px;
            background: linear-gradient(rgba(10, 92, 54, 0.85), rgba(10, 92, 54, 0.9)), url('https://images.unsplash.com/photo-1610360655260-bb6dcc4ac75c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-attachment: fixed;
            display: flex;
            align-items: center;
        }

        .hero-content {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            width: 100%;
        }

        .hero-slider-section {
            flex: 2;
            min-width: 300px;
            animation: fadeInRight 1s ease;
        }

        @keyframes fadeInRight {
            from { transform: translateX(30px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .hero-slider {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            height: 500px;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding: 40px;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .slide-content {
            background: rgba(10, 92, 54, 0.85);
            color: white;
            padding: 25px;
            border-radius: 8px;
            max-width: 80%;
            animation: slideUp 0.8s ease 0.3s both;
        }

        .slide-content h3 {
            color: white;
            margin-bottom: 10px;
            font-size: 1.5rem;
        }

        .slide-content p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-btn {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-btn.active {
            background-color: white;
            transform: scale(1.2);
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 10;
        }

        .arrow {
            color: white;
            background-color: rgba(10, 92, 54, 0.8);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .arrow:hover {
            background-color: var(--primary-color);
            transform: scale(1.1);
        }

        .hero-news-section {
            flex: 1;
            min-width: 300px;
            animation: fadeInLeft 1s ease;
        }

        @keyframes fadeInLeft {
            from { transform: translateX(-30px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .hero-news-container {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            height: 500px;
            display: flex;
            flex-direction: column;
        }

        .hero-news-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 15px;
        }

        .hero-news-header h2 {
            color: var(--primary-color);
            margin-bottom: 0;
            font-size: 1.8rem;
        }

        .hero-news-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            overflow-y: auto;
            flex: 1;
            padding-right: 10px;
        }

        .hero-news-item {
            padding: 20px;
            border-left: 4px solid var(--primary-color);
            background-color: #f8f9fa;
            border-radius: 8px;
            transition: var(--transition);
            cursor: pointer;
        }

        .hero-news-item:hover {
            background-color: #e9ecef;
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .hero-news-date {
            color: var(--accent-color);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hero-news-date i {
            font-size: 0.8rem;
        }

        .hero-news-title {
            font-size: 1.1rem;
            color: var(--dark-color);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .news-excerpt {
            color: var(--gray-color);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .view-all-news {
            margin-top: 20px;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        /* News Marquee Styles */
        .news-marquee {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 0;
            overflow: hidden;
            position: relative;
        }

        .marquee-container {
            display: flex;
            white-space: nowrap;
            animation: scroll-left 30s linear infinite;
        }

        .marquee-item {
            display: inline-block;
            padding: 0 40px;
            font-size: 1rem;
            font-weight: 500;
        }

        .marquee-item i {
            margin-right: 10px;
            color: var(--accent-color);
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        .news-marquee:hover .marquee-container {
            animation-play-state: paused;
        }

        /* About Section */
        .about {
            background-color: white;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .mission-box, .vision-box {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
        }

        .mission-box:hover, .vision-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .mission-box h3, .vision-box h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        /* Certification Process Section */
        .certification-process {
            background-color: white;
        }

        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            position: relative;
        }

        .process-step {
            flex: 1;
            min-width: 250px;
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            position: relative;
            z-index: 1;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        /* Statistics Section */
        .statistics {
            background: linear-gradient(rgba(10, 92, 54, 0.9), rgba(10, 92, 54, 0.9)), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--accent-color);
        }

        .stat-text {
            font-size: 1.1rem;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            animation: fadeInUp 1s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        @keyframes fadeInUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .service-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: white;
        }

        .testimonials-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial-slider {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background-color: #f8f9fa;
        }

        .testimonial-slide {
            padding: 40px;
            display: none;
            animation: fadeIn 1s ease;
        }

        .testimonial-slide.active {
            display: block;
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
            padding-left: 20px;
        }

        .testimonial-text:before {
            content: '"';
            font-size: 4rem;
            color: var(--accent-color);
            position: absolute;
            left: -10px;
            top: -20px;
            opacity: 0.5;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            background-color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .author-info h4 {
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .author-info p {
            color: var(--gray-color);
            font-size: 0.9rem;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }

        .testimonial-dot.active {
            background-color: var(--primary-color);
            transform: scale(1.2);
        }

        /* Leadership Team - FIXED STYLES */
        .leadership {
            padding: 80px 0;
            background-color: white;
            display: block !important; /* Force display */
            opacity: 1 !important; /* Force visibility */
            transform: none !important; /* Remove any transforms */
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-member {
            background-color: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            cursor: pointer;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .member-img {
            height: 250px;
            overflow: hidden;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .team-member:hover .member-img img {
            transform: scale(1.05);
        }

        .member-info {
            padding: 25px;
            text-align: center;
        }

        .member-name {
            color: var(--primary-color);
            margin-bottom: 5px;
            font-size: 1.3rem;
        }

        .member-title {
            color: var(--accent-color);
            font-weight: 500;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .member-bio {
            color: var(--gray-color);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        /* ENHANCED: Team Member Modal Popup - PROFESSIONAL & MOBILE OPTIMIZED */
        .team-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--modal-backdrop);
            z-index: var(--modal-z-index);
            overflow-y: auto;
            padding: 20px;
            animation: fadeIn 0.3s ease;
            touch-action: pan-y pinch-zoom;
            -webkit-overflow-scrolling: touch;
            backdrop-filter: blur(5px);
        }

        .team-modal.active {
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        .modal-content {
            background-color: white;
            max-width: 800px;
            width: 90%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 25px 75px rgba(0, 0, 0, 0.4);
            animation: slideUp 0.4s ease;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
            margin: 20px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Professional Mobile Swipe Indicators */
        .swipe-indicator {
            display: none;
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 5px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 3px;
            z-index: calc(var(--modal-z-index) + 1);
        }

        /* Professional Modal Close Button */
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary-color);
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            z-index: 10;
            transition: var(--transition);
            border: 2px solid white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }

        .modal-close:hover, .modal-close:active {
            background-color: var(--secondary-color);
            transform: scale(1.05);
        }

        .modal-body {
            display: flex;
            flex-direction: column;
        }

        @media (min-width: 768px) {
            .modal-body {
                flex-direction: row;
            }
        }

        .modal-image {
            flex: 1;
            min-height: 250px;
            max-height: 300px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (min-width: 768px) {
            .modal-image {
                min-height: 400px;
                max-height: 500px;
            }
        }

        .modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Professional Image Fallback */
        .image-fallback {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            font-size: 5rem;
            font-weight: bold;
            font-family: 'Montserrat', sans-serif;
        }

        .modal-info {
            flex: 1.5;
            padding: 30px;
            overflow-y: visible;
        }

        @media (min-width: 768px) {
            .modal-info {
                padding: 40px;
            }
        }

        .modal-name {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 8px;
            line-height: 1.2;
            font-weight: 700;
        }

        .modal-title {
            color: var(--accent-color);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid #eee;
            position: relative;
        }

        .modal-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            background-color: var(--primary-color);
            bottom: -2px;
            left: 0;
        }

        .modal-bio {
            color: var(--dark-color);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 30px;
            text-align: justify;
            white-space: pre-line;
        }

        

        

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--gray-color);
            font-size: 0.95rem;
            padding: 12px 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 3px solid transparent;
        }

        .detail-item:hover {
            background-color: #e9ecef;
            border-left-color: var(--primary-color);
            transform: translateX(5px);
        }

        .detail-item i {
            color: var(--primary-color);
            margin-top: 2px;
            min-width: 16px;
            font-size: 1.1rem;
        }

        /* Enhanced Qualifications Section */
        .modal-qualifications {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin-top: 25px;
            border-left: 5px solid var(--accent-color);
        }

        .modal-qualifications h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .modal-qualifications h4 i {
            color: var(--accent-color);
        }

        .modal-qualifications ul {
            list-style-type: none;
            padding-left: 0;
            color: var(--gray-color);
        }

        .modal-qualifications li {
            margin-bottom: 12px;
            padding-left: 24px;
            position: relative;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .modal-qualifications li:before {
            content: "✓";
            color: var(--primary-color);
            font-weight: bold;
            position: absolute;
            left: 0;
            background-color: rgba(10, 92, 54, 0.1);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        /* Professional Mobile Navigation Arrows for Modal */
        .modal-nav {
            display: none;
            position: absolute;
            top: 50%;
            width: 100%;
            justify-content: space-between;
            padding: 0 15px;
            transform: translateY(-50%);
            z-index: 5;
        }

        .modal-nav-arrow {
            background-color: rgba(10, 92, 54, 0.9);
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            border: 2px solid white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
        }

        .modal-nav-arrow:hover, .modal-nav-arrow:active {
            background-color: var(--secondary-color);
            transform: scale(1.1);
        }

        /* Professional Member Counter */
        .member-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            z-index: 5;
            backdrop-filter: blur(5px);
        }
        
        /* FAQs Section */
        .faqs {
            background-color: #f9f9f9;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: white;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .faq-item.active {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        /* Contact Form Section */
        .contact-form-section {
            background-color: white;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(10, 92, 54, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Leadership Carousel Styles */
        .leadership-carousel-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .leadership-carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 30px;
            padding: 10px 0;
        }

        .team-member-carousel {
            flex: 0 0 calc(20% - 24px); /* Show 5 members at a time (20% each minus gap) */
            min-width: 0;
            background-color: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            user-select: none;
            -webkit-user-select: none;
            touch-action: manipulation;
            position: relative;
        }

        .team-member-carousel:active {
            transform: scale(0.98);
        }

        .team-member-carousel:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .leadership-carousel-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 10;
        }

        .carousel-arrow {
            color: white;
            background-color: var(--primary-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.2rem;
            opacity: 0.9;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .carousel-arrow:hover {
            background-color: var(--secondary-color);
            transform: scale(1.1);
            opacity: 1;
        }

        .leadership-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .carousel-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-dot.active {
            background-color: var(--primary-color);
            transform: scale(1.2);
        }

        .carousel-dot:hover {
            background-color: var(--secondary-color);
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: 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-img {
            height: 50px;
            margin-bottom: 15px;
        }

        .footer-logo .logo-img img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        .footer-about p {
            margin-bottom: 20px;
            color: #ccc;
        }

        .footer-links h3, .footer-contact h3 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3:after, .footer-contact h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .footer-contact p {
            margin-bottom: 15px;
            color: #ccc;
            display: flex;
            align-items: center;
        }

        .footer-contact i {
            margin-right: 10px;
            color: var(--accent-color);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Responsive Design - MOBILE FIRST APPROACH */
        @media (max-width: 1200px) {
            .team-member-carousel {
                flex: 0 0 calc(25% - 22.5px); /* Show 4 members on smaller screens */
            }
        }

        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
            }
            
            .hero-slider {
                height: 400px;
            }
            
            .hero-news-container {
                height: 400px;
            }
            
            .team-member-carousel {
                flex: 0 0 calc(33.333% - 20px); /* Show 3 members on tablets */
            }
            
            .modal-body {
                flex-direction: column;
            }
            
            .modal-image {
                min-height: 250px;
                max-height: 300px;
            }
            
            /* Show mobile navigation in modal on tablets */
            .modal-nav {
                display: flex;
            }
            
            /* Show swipe indicator on mobile */
            .swipe-indicator {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 90px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding-top: 40px;
                transition: var(--transition);
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 0 0 25px 0;
            }
            
            .hero-container {
                padding-top: 130px;
                min-height: calc(100vh - 80px);
            }
            
            .section {
                padding: 60px 0;
            }
            
            .slide-content {
                max-width: 95%;
                padding: 20px;
            }
            
            .arrow {
                width: 40px;
                height: 40px;
            }
            
            .leadership-carousel-arrows {
                padding: 0 10px;
            }
            
            .carousel-arrow {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .team-member-carousel {
                flex: 0 0 calc(50% - 15px); /* Show 2 members on mobile */
            }
            
            .modal-info {
                padding: 20px;
            }
            
            .modal-name {
                font-size: 1.7rem;
                margin-bottom: 6px;
            }
            
            .modal-title {
                font-size: 1.1rem;
                margin-bottom: 15px;
            }
            
            .modal-bio {
                font-size: 0.95rem;
                line-height: 1.6;
                margin-bottom: 20px;
            }
            
            
            
            .detail-item {
                padding: 10px;
                font-size: 0.9rem;
            }
            
            /* Ensure modal is easily scrollable on mobile */
            .modal-content {
                max-height: 85vh;
                margin: 10px 0;
                width: 95%;
            }
            
            .modal-close {
                width: 40px;
                height: 40px;
                top: 10px;
                right: 10px;
            }
            
            .modal-nav-arrow {
                width: 40px;
                height: 40px;
            }
            
            .swipe-indicator {
                width: 50px;
            }
        }

        @media (max-width: 576px) {
            .hero-container {
                padding-top: 120px;
                padding-bottom: 40px;
            }
            
            .hero-slider {
                height: 350px;
            }
            
            .hero-news-container {
                height: 350px;
                padding: 20px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            
            .slider-arrows {
                padding: 0 10px;
            }
            
            .arrow {
                width: 35px;
                height: 35px;
            }
            
            .hero-news-header h2 {
                font-size: 1.5rem;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .team-member-carousel {
                flex: 0 0 calc(100% - 0px); /* Show 1 member on very small screens */
            }
            
            .carousel-arrow {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }
            
            .modal-content {
                width: 98%;
                max-height: 90vh;
                margin: 5px 0;
                border-radius: 8px;
            }
            
            .modal-info {
                padding: 15px;
            }
            
            .modal-name {
                font-size: 1.5rem;
            }
            
            .modal-title {
                font-size: 1rem;
                padding-bottom: 10px;
                margin-bottom: 10px;
            }
            
            .modal-bio {
                font-size: 0.9rem;
                line-height: 1.6;
                margin-bottom: 15px;
            }
            
            .modal-qualifications {
                padding: 15px;
                margin-top: 15px;
            }
            
            .modal-qualifications h4 {
                font-size: 1rem;
                margin-bottom: 8px;
            }
            
            .modal-qualifications li {
                font-size: 0.85rem;
                margin-bottom: 8px;
                padding-left: 16px;
            }
            
            .modal-nav-arrow {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            /* Hide carousel arrows on very small screens */
            .leadership-carousel-arrows {
                display: none;
            }
        }

        @media (max-width: 380px) {
            .modal-name {
                font-size: 1.3rem;
            }
            
            .modal-title {
                font-size: 0.95rem;
            }
            
            
            
            .modal-nav-arrow {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
            }
            
            .modal-close {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }

        /* Prevent text selection on interactive elements */
        .team-member-carousel, .modal-close, .modal-nav-arrow, .carousel-arrow {
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }

        /* Improve touch targets for mobile */
        @media (hover: none) and (pointer: coarse) {
            .team-member-carousel {
                min-height: 120px;
            }
            
            .carousel-dot, .testimonial-dot, .slider-btn {
                width: 16px;
                height: 16px;
            }
            
            .nav-menu a {
                padding: 10px 0;
                font-size: 1.1rem;
            }
            
            .btn {
                padding: 14px 30px;
                min-height: 48px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            /* Enhanced touch targets for modal */
            .modal-close, .modal-nav-arrow {
                min-width: 44px;
                min-height: 44px;
            }
        }

        /* Landscape orientation optimization */
        @media (max-height: 600px) and (orientation: landscape) {
            .modal-content {
                max-height: 80vh;
                margin: 5px 0;
                flex-direction: row;
            }
            
            .modal-image {
                min-height: 180px;
                max-height: 200px;
                flex: 0 0 40%;
            }
            
            .modal-info {
                padding: 15px;
                flex: 0 0 60%;
                overflow-y: auto;
            }
            
            .modal-name {
                font-size: 1.3rem;
            }
            
            .modal-bio {
                font-size: 0.8rem;
                margin-bottom: 15px;
                max-height: 80px;
                overflow-y: auto;
            }
            
            .modal-qualifications {
                max-height: 150px;
                overflow-y: auto;
            }
        }

/* =========================================
   PAGE SPECIFIC LAYOUTS
========================================= */

/* --- ABOUTUS --- */

        .btn-accent {
            background-color: var(--accent-color);
            color: var(--dark-color);
        }

        .section {
            padding: 30px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Header Styles */

        .page-aboutus .page-hero {
            background: linear-gradient(rgba(10, 92, 54, 0.85), rgba(10, 92, 54, 0.9)), url('image/about\ img.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0 100px;
            text-align: center;
            animation: fadeIn 1.2s ease;
        }

        .page-aboutus .page-hero h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: slideUp 1s ease 0.3s both;
        }

        .page-aboutus .page-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: slideUp 1s ease 0.5s both;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            animation: slideUp 1s ease 0.7s both;
        }

        .breadcrumb a {
            color: var(--accent-color);
        }

        .breadcrumb span {
            margin: 0 10px;
            color: #ccc;
        }

        /* About Content Sections */
        .about-intro {
            padding: 30px 0;
            background-color: #fff;
        }

        .intro-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }

        .intro-text {
            flex: 1;
            min-width: 300px;
            animation: fadeInLeft 1s ease;
        }

        .intro-text h2 {
            color: var(--primary-color);
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .intro-text p {
            margin-bottom: 20px;
            color: var(--gray-color);
            line-height: 1.8;
        }

        .intro-image {
            flex: 1;
            min-width: 300px;
            animation: fadeInRight 1s ease;
        }

        .intro-image img {
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        /* Mission & Vision */
        .mission-vision {
            padding: 30px 0;
            background-color: #f9f9f9;
        }

        .mv-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(10, 92, 54, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .mv-icon i {
            font-size: 2.5rem;
            color: var(--primary-color);
        }

        /* Values Section */
        .values {
            padding: 30px 0;
            background-color: white;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .value-item {
            text-align: center;
            padding: 30px 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .value-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .value-item:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-10px);
        }

        .value-item:hover .value-icon {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .value-item:hover .value-icon i {
            color: white;
        }

        .value-item:hover h4 {
            color: white;
        }

        .value-item:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(10, 92, 54, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .value-icon i {
            font-size: 2rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .value-item h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            transition: var(--transition);
        }

        .value-item p {
            color: var(--gray-color);
            transition: var(--transition);
        }

        /* History Timeline */
        .history {
            padding: 30px 0;
            background-color: #f9f9f9;
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--primary-color);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(30px);
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item:nth-child(odd) {
            padding-right: calc(50% + 30px);
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            padding-left: calc(50% + 30px);
        }

        .timeline-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: var(--primary-color);
            border-radius: 50%;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }

        .timeline-content {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .timeline-item:hover .timeline-content {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .timeline-year {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .timeline-content h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        /* Leadership Team */
        .leadership {
            padding: 0px 0;
            background-color: white;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .member-img {
            height: 250px;
            overflow: hidden;
        }

        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .member-info {
            padding: 25px;
            text-align: center;
        }

        .member-name {
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .member-title {
            color: var(--accent-color);
            font-weight: 500;
            margin-bottom: 15px;
        }

        .member-bio {
            color: var(--gray-color);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Footer */

        /* Responsive Design */
        @media (max-width: 992px) {
            .page-aboutus .page-hero h2 {
                font-size: 2.5rem;
            }

            .intro-text h2 {
                font-size: 1.8rem;
            }

            .timeline:before {
                left: 30px;
            }

            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                padding-left: 70px;
                padding-right: 0;
                text-align: left;
            }

            .timeline-dot {
                left: 30px;
            }
        }

        @media (max-width: 768px) {

            .page-aboutus .page-hero h2 {
                font-size: 2rem;
            }

            .page-aboutus .page-hero p {
                font-size: 1rem;
            }

            .section {
                padding: 60px 0;
            }

            .intro-content {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .page-aboutus .page-hero {
                padding: 130px 0 80px;
            }

            .page-aboutus .page-hero h2 {
                font-size: 1.8rem;
            }

            .value-item {
                padding: 25px 20px;
            }
        }
    

/* --- CONTACT --- */

        .btn-accent {
            background-color: var(--accent-color);
            color: var(--dark-color);
        }

        .section {
            padding: 30px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Header Styles */

        /* Page Hero */
        .page-contact .page-hero {
            background: linear-gradient(rgba(10, 92, 54, 0.85), rgba(10, 92, 54, 0.9)), url('https://images.unsplash.com/photo-1588681664899-f142ff2dc9b1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0 100px;
            text-align: center;
            animation: fadeIn 1.2s ease;
        }

        .page-contact .page-hero h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: slideUp 1s ease 0.3s both;
        }

        .page-contact .page-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: slideUp 1s ease 0.5s both;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            animation: slideUp 1s ease 0.7s both;
        }

        .breadcrumb a {
            color: var(--accent-color);
        }

        .breadcrumb span {
            margin: 0 10px;
            color: #ccc;
        }

        /* Contact Content */
        .contact-content {
            padding: 30px 0;
            background-color: #fff;
        }

        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }

        /* Contact Info */
        .contact-info {
            flex: 1;
            min-width: 300px;
            animation: fadeInLeft 1s ease;
        }

        .contact-info h2 {
            color: var(--primary-color);
            margin-bottom: 30px;
            font-size: 2rem;
        }

        .contact-info p {
            color: var(--gray-color);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            margin-bottom: 25px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(10, 92, 54, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .contact-item:hover .contact-icon {
            background-color: var(--primary-color);
        }

        .contact-item:hover .contact-icon i {
            color: white;
        }

        .contact-icon i {
            font-size: 1.3rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .contact-text h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .contact-text p {
            margin-bottom: 0;
            color: var(--gray-color);
        }

        .contact-text a:hover {
            color: var(--primary-color);
        }

        /* Business Hours */
        .business-hours {
            margin-top: 40px;
        }

        .hours-title {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .day {
            color: var(--dark-color);
            font-weight: 500;
        }

        .time {
            color: var(--gray-color);
        }

        /* Social Media */
        .social-media {
            margin-top: 40px;
        }

        .social-title {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background-color: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-icon:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }

        /* Contact Form */
        .contact-form {
            flex: 1;
            min-width: 300px;
            animation: fadeInRight 1s ease;
        }

        .form-container {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .form-container h3 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 1.5rem;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark-color);
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 14px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(10, 92, 54, 0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .form-row .form-group {
            flex: 1;
            min-width: 200px;
        }

        .form-message {
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 20px;
            display: none;
        }

        .form-message.success {
            background-color: rgba(10, 92, 54, 0.1);
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
            display: block;
        }

        .form-message.error {
            background-color: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            border: 1px solid #dc3545;
            display: block;
        }

        /* Map Section */
        .map-section {
            padding: 0 0 80px;
        }

        .map-container {
            height: 450px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 1s ease;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background-color: #f8f9fa;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--gray-color);
        }

        .map-placeholder i {
            font-size: 4rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 30px 0;
            background-color: #f9f9f9;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: white;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(30px);
        }

        .faq-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-question {
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: rgba(10, 92, 54, 0.05);
        }

        .faq-question h4 {
            color: var(--primary-color);
            margin-bottom: 0;
            font-size: 1.1rem;
        }

        .faq-icon {
            color: var(--primary-color);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .faq-question.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer.active {
            padding: 0 25px 25px;
            max-height: 500px;
        }

        .faq-answer p {
            color: var(--gray-color);
            line-height: 1.7;
        }

        /* Regional Offices */
        .regional-offices {
            padding: 30px 0;
            background-color: white;
        }

        .offices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .office-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .office-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .office-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .office-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(10, 92, 54, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .office-icon i {
            font-size: 2rem;
            color: var(--primary-color);
        }

        .office-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .office-info p {
            color: var(--gray-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .office-info i {
            margin-right: 10px;
            color: var(--accent-color);
        }

        /* Footer */

        /* Responsive Design */
        @media (max-width: 992px) {
            .page-contact .page-hero h2 {
                font-size: 2.5rem;
            }

            .contact-wrapper {
                flex-direction: column;
            }

            .map-container {
                height: 350px;
            }
        }

        @media (max-width: 768px) {

            .page-contact .page-hero h2 {
                font-size: 2rem;
            }

            .page-contact .page-hero p {
                font-size: 1rem;
            }

            .section {
                padding: 60px 0;
            }

            .form-container {
                padding: 30px;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .contact-info h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 576px) {
            .page-contact .page-hero {
                padding: 130px 0 80px;
            }

            .page-contact .page-hero h2 {
                font-size: 1.8rem;
            }

            .form-container {
                padding: 25px 20px;
            }

            .office-card {
                padding: 25px 20px;
            }

            .map-container {
                height: 300px;
            }
        }
    

/* --- NEWS --- */

        /* ===== CSS Variables ===== */

        /* ===== Reset & Base ===== */

        /* ===== Utility Classes ===== */

        .btn-accent {
            background: linear-gradient(135deg, var(--accent-color), #c9a227);
            color: var(--dark-color);
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--gray-color);
            font-size: 1.1rem;
            margin-top: 20px;
        }

        /* ===== Header ===== */

        .page-news .page-hero {
            background: linear-gradient(135deg, rgba(10, 92, 54, 0.95), rgba(26, 124, 77, 0.9)), 
                        url('image/Gemini_Generated_Image_o8rdvno8rdvno8rd.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
        }

        .page-news .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .page-news .page-hero .container {
            position: relative;
            z-index: 1;
        }

        .page-news .page-hero h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: white;
        }

        .page-news .page-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

.breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.15);
            padding: 10px 25px;
            border-radius: 30px;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        .breadcrumb a {
            color: var(--accent-color);
            font-weight: 500;
        }

        .breadcrumb span {
            color: rgba(255, 255, 255, 0.7);
        }

        /* ===== News Content Section ===== */
        .news-section {
            padding: 60px 0;
            background: #f5f7fa;
        }

        /* News Filter */
        .news-filter {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 50px;
        }

        .filter-btn {
            padding: 10px 24px;
            background: white;
            border: 2px solid transparent;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            color: var(--gray-color);
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        /* Featured News */
        .featured-news {
            margin-bottom: 50px;
        }

        .featured-news-card {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .featured-news-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .featured-img {
            position: relative;
            overflow: hidden;
        }

        .featured-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .featured-news-card:hover .featured-img img {
            transform: scale(1.05);
        }

        .featured-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--accent-color);
            color: var(--dark-color);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .featured-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
            color: var(--gray-color);
            font-size: 0.85rem;
        }

        .featured-meta i {
            color: var(--accent-color);
            margin-right: 5px;
        }

        .featured-title {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .featured-excerpt {
            color: var(--gray-color);
            margin-bottom: 25px;
            line-height: 1.8;
        }

        /* News Grid */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .news-card {
            background: white;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .news-card-img {
            position: relative;
            overflow: hidden;
            height: 220px;
        }

        .news-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .news-card:hover .news-card-img img {
            transform: scale(1.08);
        }

        .news-category-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .category-halal { background: var(--primary-color); color: white; }
        .category-events { background: #e67e22; color: white; }
        .category-certification { background: #9b59b6; color: white; }
        .category-research { background: #3498db; color: white; }
        .category-default { background: var(--gray-color); color: white; }

        .news-card-body {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-card-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 12px;
            color: var(--gray-color);
            font-size: 0.8rem;
        }

        .news-card-meta i {
            color: var(--accent-color);
            font-size: 0.9rem;
        }

        .news-card-title {
            font-size: 1.25rem;
            color: var(--primary-color);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .news-card-excerpt {
            color: var(--gray-color);
            font-size: 0.95rem;
            line-height: 1.7;
            flex: 1;
            margin-bottom: 20px;
        }

        .news-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid var(--gray-light);
        }

        .read-more {
            color: var(--primary-color);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
        }

        .read-more:hover {
            color: var(--secondary-color);
            gap: 10px;
        }

        .share-buttons {
            display: flex;
            gap: 8px;
        }

        .share-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: var(--gray-color);
            background: var(--gray-light);
            transition: var(--transition);
        }

        .share-btn:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Full Article (Expandable) */
        .article-full {
            color: var(--dark-color);
            line-height: 1.9;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--gray-light);
            display: none;
        }

        .article-full.show {
            display: block;
            animation: fadeIn 0.4s ease;
        }

        .article-full p {
            margin-bottom: 18px;
        }

        .article-full h4 {
            color: var(--primary-color);
            margin: 25px 0 15px;
        }

        .article-full ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .article-full li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }

        .article-full li::before {
            content: "•";
            color: var(--accent-color);
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        /* Loading State */
        .loading-container {
            text-align: center;
            padding: 60px 20px;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid var(--gray-light);
            border-top-color: var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .loading-text {
            color: var(--gray-color);
            font-size: 1rem;
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 80px 20px;
            background: white;
            border-radius: var(--radius-lg);
        }

        .empty-state i {
            font-size: 4rem;
            color: var(--gray-light);
            margin-bottom: 25px;
        }

        .empty-state h3 {
            color: var(--dark-color);
            margin-bottom: 10px;
        }

        .empty-state p {
            color: var(--gray-color);
            margin-bottom: 25px;
        }

        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .newsletter-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }

        .newsletter-section::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
        }

        .newsletter-content {
            text-align: center;
            color: white;
            position: relative;
            z-index: 1;
        }

        .newsletter-content h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: white;
        }

        .newsletter-content p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 35px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            display: flex;
            max-width: 550px;
            margin: 0 auto;
            gap: 12px;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px;
            border-radius: var(--radius-md);
            backdrop-filter: blur(10px);
        }

        .newsletter-form input {
            flex: 1;
            padding: 16px 20px;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            background: white;
        }

        .newsletter-form input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
        }

        .newsletter-form .btn {
            white-space: nowrap;
        }

        /* ===== Footer ===== */

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--accent-color);
            color: var(--dark-color);
            transform: translateY(-4px);
        }

        /* ===== Animations ===== */

        .news-card {
            animation: slideUp 0.6s ease forwards;
            opacity: 0;
        }

        .news-card:nth-child(1) { animation-delay: 0.1s; }
        .news-card:nth-child(2) { animation-delay: 0.2s; }
        .news-card:nth-child(3) { animation-delay: 0.3s; }
        .news-card:nth-child(4) { animation-delay: 0.4s; }
        .news-card:nth-child(5) { animation-delay: 0.5s; }
        .news-card:nth-child(6) { animation-delay: 0.6s; }

        /* ===== Responsive ===== */
        @media (max-width: 992px) {
            .featured-news-card {
                grid-template-columns: 1fr;
            }
            
            .featured-img img {
                height: 280px;
            }
            
            .featured-content {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {

            .page-news .page-hero h2 {
                font-size: 2.2rem;
            }

            .page-news .page-hero p {
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
                background: transparent;
                padding: 0;
            }

            .newsletter-form input {
                width: 100%;
            }

            .newsletter-form .btn {
                width: 100%;
            }

            .featured-title {
                font-size: 1.5rem;
            }

            .featured-content {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            .page-news .page-hero {
                padding: 150px 0 80px;
            }

            .page-news .page-hero h2 {
                font-size: 1.8rem;
            }

            .section {
                padding: 60px 0;
            }

            .news-filter {
                gap: 8px;
            }

            .filter-btn {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
        }
    

/* --- SERVICES --- */

        .btn-accent {
            background-color: var(--accent-color);
            color: var(--dark-color);
        }

        .section {
            padding: 30px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Header Styles */

        .page-Services .page-hero {
            background: linear-gradient(rgba(10, 92, 54, 0.85), rgba(10, 92, 54, 0.9)), url('image/service.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0 100px;
            text-align: center;
            animation: fadeIn 1.2s ease;
        }

        .page-Services .page-hero h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: slideUp 1s ease 0.3s both;
        }

        .page-Services .page-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: slideUp 1s ease 0.5s both;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            animation: slideUp 1s ease 0.7s both;
        }

        .breadcrumb a {
            color: var(--accent-color);
        }

        .breadcrumb span {
            margin: 0 10px;
            color: #ccc;
        }

        /* Services Overview */
        .services-overview {
            padding: 30px 0;
            background-color: #fff;
        }

        .overview-text {
            max-width: 800px;
            margin: 0 auto 50px;
            text-align: center;
            animation: fadeIn 1s ease;
        }

        .overview-text h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .overview-text p {
            color: var(--gray-color);
            line-height: 1.8;
        }

        /* Main Services */
        .main-services {
            padding: 30px 0;
            background-color: #f9f9f9;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            height: 200px;
            background-color: rgba(10, 92, 54, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
        }

        .service-icon i {
            font-size: 4rem;
        }

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .service-content p {
            color: var(--gray-color);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .service-features {
            margin-top: 20px;
        }

        .service-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }

        .service-features i {
            color: var(--accent-color);
            margin-right: 10px;
            margin-top: 3px;
        }

        /* Certification Process */
        .certification-process {
            padding: 30px 0;
            background-color: white;
        }

        .process-steps {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .process-steps:before {
            content: '';
            position: absolute;
            left: 40px;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--primary-color);
        }

        .process-step {
            display: flex;
            margin-bottom: 50px;
            position: relative;
            opacity: 0;
            transform: translateX(-30px);
        }

        .process-step.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            flex-shrink: 0;
            margin-right: 30px;
            z-index: 1;
            position: relative;
            transition: var(--transition);
        }

        .process-step:hover .step-number {
            background-color: var(--secondary-color);
            transform: scale(1.1);
        }

        .step-content {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            flex-grow: 1;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .process-step:hover .step-content {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .step-content h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .step-content p {
            color: var(--gray-color);
            line-height: 1.7;
        }

        /* Services page process timeline: reset shared home-card process styles */
        .page-Services .certification-process .process-steps {
            display: block;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            gap: 0;
        }

        .page-Services .certification-process .process-steps:before {
            content: '';
            display: block;
            position: absolute;
            left: 40px;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--primary-color);
        }

        .page-Services .certification-process .process-step {
            display: flex;
            flex: none;
            min-width: 0;
            background: transparent;
            padding: 0;
            border-radius: 0;
            text-align: left;
            box-shadow: none;
            margin-bottom: 50px;
            position: relative;
            opacity: 0;
            transform: translateX(-30px);
        }

        .page-Services .certification-process .process-step.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .page-Services .certification-process .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            flex-shrink: 0;
            margin-right: 30px;
            margin-bottom: 0;
            z-index: 1;
            position: relative;
            transition: var(--transition);
        }

        .page-Services .certification-process .process-step:hover .step-number {
            background-color: var(--secondary-color);
            transform: scale(1.1);
        }

        .page-Services .certification-process .step-content {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            flex-grow: 1;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .page-Services .certification-process .process-step:hover .step-content {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .page-Services .certification-process .step-content h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .page-Services .certification-process .step-content p {
            color: var(--gray-color);
            line-height: 1.7;
        }
        /* Industry Specific Services */
        .industry-services {
            padding: 30px 0;
            background-color: #f9f9f9;
        }

        .industry-tabs {
            max-width: 900px;
            margin: 0 auto;
        }

        .tab-buttons {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tab-btn {
            padding: 12px 25px;
            background-color: white;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .tab-btn:hover,
        .tab-btn.active {
            background-color: var(--primary-color);
            color: white;
        }

        .tab-content {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        .tab-content h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .tab-content p {
            color: var(--gray-color);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .tab-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .tab-feature {
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 4px;
            border-left: 4px solid var(--accent-color);
        }

        .tab-feature h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .tab-feature p {
            margin-bottom: 0;
            font-size: 0.95rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 30px 0;
            background-color: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .benefit-item {
            text-align: center;
            padding: 30px;
            background-color: #f8f9fa;
            border-radius: 8px;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .benefit-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .benefit-item:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-10px);
        }

        .benefit-item:hover .benefit-icon {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .benefit-item:hover .benefit-icon i {
            color: white;
        }

        .benefit-item:hover h4 {
            color: white;
        }

        .benefit-item:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(10, 92, 54, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: var(--transition);
        }

        .benefit-icon i {
            font-size: 2.5rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .benefit-item h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            transition: var(--transition);
        }

        .benefit-item p {
            color: var(--gray-color);
            transition: var(--transition);
        }

        .services-cta {
            padding: 30px 0;
            background: linear-gradient(rgba(10, 92, 54, 0.9), rgba(10, 92, 54, 0.95)), url('image/554107203_1214028517412277_2595321771227849985_n.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

        .services-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            animation: fadeIn 1s ease;
        }

        .services-cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeIn 1s ease 0.3s both;
        }

        .cta-buttons {
            animation: fadeIn 1s ease 0.6s both;
        }

        /* Footer */

        /* Responsive Design */
        @media (max-width: 992px) {
            .page-Services .page-hero h2 {
                font-size: 2.5rem;
            }

            .services-cta h2 {
                font-size: 2rem;
            }

            .page-Services .certification-process .process-steps:before {
                left: 35px;
            }

            .page-Services .certification-process .step-number {
                width: 70px;
                height: 70px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {

            .page-Services .page-hero h2 {
                font-size: 2rem;
            }

            .page-Services .page-hero p {
                font-size: 1rem;
            }

            .section {
                padding: 60px 0;
            }

            .tab-buttons {
                flex-direction: column;
                align-items: center;
            }

            .tab-btn {
                width: 100%;
                max-width: 300px;
            }

            .tab-content {
                padding: 25px;
            }

            .page-Services .certification-process .process-steps:before {
                left: 30px;
            }

            .page-Services .certification-process .step-number {
                width: 60px;
                height: 60px;
                font-size: 1.3rem;
                margin-right: 20px;
            }
        }

        @media (max-width: 576px) {
            .page-Services .page-hero {
                padding: 130px 0 80px;
            }

            .page-Services .page-hero h2 {
                font-size: 1.8rem;
            }

            .service-content {
                padding: 20px;
            }

            .page-Services .certification-process .step-content {
                padding: 20px;
            }

            .services-cta h2 {
                font-size: 1.8rem;
            }
        }
    
