 :root {
            --primary-color: rgb(127, 181, 0);
            --primary-light: rgba(127, 181, 0, 0.1);
            --primary-dark: rgb(100, 150, 0);
            --text-dark: #2c3e50;
            --text-light: #5d6d7e;
            --light-bg: #f9fbf7;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-light);
        }

        .red{
            border: 1px solid red !important;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            font-weight: 600;
        }
        
        .about-section {
            padding: 100px 0;
            background-color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .section-title .title-decorator {
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            display: block;
            margin: 0 auto 20px;
            border-radius: 2px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .about-content h3 {
            font-size: 2rem;
            margin-bottom: 25px;
            line-height: 1.3;
        }
        
        .highlight-text {
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .about-feature-list {
            margin-top: 30px;
        }
        
        .about-feature-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .about-feature-list i {
            color: var(--primary-color);
            margin-right: 12px;
            font-size: 1.2rem;
            margin-top: 3px;
        }
        
        .about-img-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .about-img-main {
            width: 100%;
            height: auto;
            border-radius: 12px;
            transition: transform 0.5s ease;
        }
        
        .about-img-container:hover .about-img-main {
            transform: scale(1.03);
        }
        
        .about-img-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 30px;
            color: white;
        }
        
        .about-img-overlay h4 {
            color: white;
            margin-bottom: 5px;
            font-size: 1.4rem;
        }
        
        .stats-container {
            margin-top: 50px;
            padding: 30px;
            background-color: var(--light-bg);
            border-radius: 12px;
            border-left: 5px solid var(--primary-color);
        }
        
        .stat-item {
            text-align: center;
            padding: 20px 10px;
        }
        
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--text-dark);
            font-weight: 600;
        }
        
        .mission-vision-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }
        
        .mission-box, .vision-box {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--primary-color);
        }
        
        .mission-box:hover, .vision-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(127, 181, 0, 0.1);
        }
        
        .mission-box i, .vision-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            display: inline-block;
        }
        
        .team-section {
            padding: 80px 0;
        }
        
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 25px;
            border: 5px solid var(--primary-light);
            transition: all 0.3s ease;
        }
        
        .team-member:hover .team-img {
            transform: scale(1.05);
            border-color: var(--primary-color);
        }
        
        .team-name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .team-role {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(127, 181, 0, 0.2);
        }
        
        .leaf-decoration {
            position: absolute;
            opacity: 0.05;
            z-index: 0;
        }
        
        .leaf-1 {
            top: 10%;
            left: 5%;
            width: 200px;
            transform: rotate(15deg);
        }
        
        .leaf-2 {
            bottom: 10%;
            right: 5%;
            width: 150px;
            transform: rotate(-20deg);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .about-section {
                padding: 70px 0;
            }
            
            .section-title h2 {
                font-size: 2.3rem;
            }
            
            .about-content h3 {
                font-size: 1.8rem;
            }
            
            .about-img-container {
                margin-top: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .mission-box, .vision-box {
                margin-bottom: 30px;
                padding: 30px;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
        }
        .enquiry-btn{
            background-color: rgb(127, 181, 0);
            color: white;
        }
        .enquiry-btn:hover{
            background-color: rgb(154, 213, 16);
            color: white;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        }

        /* Enquiry Modal */
.enquiry-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.enquiry-modal-content {
    background: #fff;
    max-width: 400px;
    margin: 8% auto;
    padding: 25px;
    border-radius: 8px;
    position: relative;
}

.enquiry-modal-content h3 {
    margin-bottom: 15px;
    text-align: center;
}

.enquiry-modal-content input,
.enquiry-modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.enquiry-modal-content button {
    width: 100%;
    padding: 10px;
    background: #2d7a2d;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.enquiry-modal-content button:hover {
    background: #256325;
}

.enquiry-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}
.bg-overlay {
    /* position: absolute; */
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* adjust darkness here */
    z-index: 1;
}
.about-bg-container {
    /* background-size: contain !important; */
    background-repeat: no-repeat;
    background-position: center center;
}
.slide-sub-title{
    color: rgb(127, 181, 0) !important;
}