    :root {
        --primary-color: #2c5f2d;
        --secondary-color: #4a7c59;
        --accent-color: #97bc62;
        --text-dark: #2c3e50;
        --text-light: #6c757d;
        --bg-light: #f8f9fa;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
    }

    .margintop{
        margin-top: 4% !important;
    }
    /* Header Styles */
    .navbar-brand img {
        height: 50px;
        width: auto;
    }

    .navbar-custom {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        padding: 1rem 0;
        transition: transform 0.3s ease;
    }

    .navbar-brand-text {
        color: white !important;
        font-weight: bold;
        font-size: 1.5rem;
    }

    .navbar-nav .nav-link {
        color: rgba(255,255,255,0.9) !important;
        font-weight: 500;
        padding: 0.5rem 1rem !important;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        color: white !important;
        background-color: rgba(255,255,255,0.1);
        border-radius: 5px;
    }

    .dropdown-menu {
        background: var(--primary-color);
        border: none;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }

    .dropdown-item {
        color: rgba(255,255,255,0.9) !important;
        padding: 0.7rem 1.5rem;
        transition: all 0.3s ease;
    }

    .dropdown-item:hover {
        background-color: rgba(255,255,255,0.1);
        color: white !important;
    }

    /* Hero Section */
    .hero-section {
        background: linear-gradient(rgba(44,95,45,0.8), rgba(74,124,89,0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f0f8ff" width="1200" height="600"/><path fill="%23e6f3ff" d="M0,300L40,280C80,260,160,220,240,200C320,180,400,180,480,190C560,200,640,220,720,210C800,200,880,160,960,150C1040,140,1120,160,1160,170L1200,180V0H1160C1120,0,1040,0,960,0C880,0,800,0,720,0C640,0,560,0,480,0C400,0,320,0,240,0C160,0,80,0,40,0H0V300Z"/></svg>');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 100px 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }

    /* Card Styles */
    .card-modern {
        border: none;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        border-radius: 15px;
        overflow: hidden;
    }

    .card-modern:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .card-modern .card-header {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border: none;
        padding: 1.5rem;
    }

    /* Section Styles */
    .section-padding {
        padding: 30px 0;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 3rem;
        position: relative;
        text-align: center;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        border-radius: 2px;
    }

    /* Service Cards */
    .service-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        height: 100%;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .service-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

    .service-icon i {
        font-size: 2rem;
        color: white;
    }

    /* Partner Cards */
    .partner-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        height: 100%;
    }

    .partner-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .partner-logo {
        min-height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partner-name {
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .partner-link {
        color: var(--accent-color);
        font-size: 0.9rem;
    }

    /* Gallery Styles */
    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        margin-bottom: 2rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .gallery-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: all 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(rgba(44,95,45,0.8), rgba(74,124,89,0.8));
        opacity: 0;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        font-weight: bold;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-col.hidden {
        display: none;
    }

    .gallery-col:not(.hidden) .gallery-item {
        animation: slideInUp 0.5s ease forwards;
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Video Section */
    .video-container {
        position: relative;
        background: var(--bg-light);
        border-radius: 15px;
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        border-radius: 10px;
    }

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Statistics Section */
    .stats-section {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 60px 0;
    }

    .stat-item {
        text-align: center;
        padding: 2rem;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    /* Achievement Cards */
    .achievement-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        height: 100%;
    }

    .achievement-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .achievement-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

    .achievement-icon i {
        font-size: 1.8rem;
        color: white;
    }

    .achievement-card h5 {
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    /* Contact Form */
    .contact-form {
        background: white;
        border-radius: 15px;
        padding: 3rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .form-control {
        border-radius: 10px;
        border: 2px solid #e9ecef;
        padding: 12px 20px;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(44,95,45,0.25);
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border: none;
        padding: 12px 30px;
        border-radius: 10px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(44,95,45,0.4);
    }

    /* Pagination Styles */
    .pagination-btn {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .pagination-btn:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(44, 95, 45, 0.3);
        color: white;
    }

    .pagination-btn:disabled {
        background: #bdc3c7;
        cursor: not-allowed;
        transform: none;
        opacity: 0.6;
    }

    .pagination-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .pagination-info {
        background: #f8f9fa;
        padding: 10px 20px;
        border-radius: 20px;
        font-weight: 600;
        color: var(--text-dark);
    }

    /* Footer */
    .footer {
        background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
        color: white;
        padding: 60px 0 30px;
    }

    .footer h5 {
        color: var(--accent-color);
        margin-bottom: 1.5rem;
        font-weight: bold;
    }

    .footer-links a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        padding: 5px 0;
    }

    .footer-links a:hover {
        color: var(--accent-color);
        padding-left: 10px;
    }

    .social-linkes a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.1);
        color: white;
        border-radius: 50%;
        margin-right: 10px;
        transition: all 0.3s ease;
    }

    .social-linkes a:hover {
        background: var(--primary-color);
        transform: translateY(-3px);
    }

    .footer-bottom {
        background: rgba(0,0,0,0.3);
        padding: 20px 0;
        margin-top: 40px;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* Animations */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Back to Top Button */
    #backToTop {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: none;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2rem;
        }

        .hero-content p {
            font-size: 1.1rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .stat-number {
            font-size: 2rem;
        }

        .navbar-brand-text {
            font-size: 1.2rem;
        }
    }

    /* Alert Styles */
    .alert {
        border-radius: 10px;
        border: none;
    }

    .alert-sm {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
