
    /* About Section */
    .about-section {
        padding: 100px 0 50px;
        background-color: #fff;
        text-align: center;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .about-section h1 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 2rem;
    }
    
    .about-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 3rem;
    }
    
    .about-text {
        flex: 1;
        text-align: left;
        padding-right: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
        color: #212529;
        margin-bottom: 1rem;
    }
    
    .about-image {
        flex: 1;
    }
    
    .about-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Features */
    .features {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .feature-card {
        flex: 1;
        background-color: #f1f1f1;
        padding: 2rem;
        border-radius: 10px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        min-width: 300px;
    }
    
    .feature-card i {
        font-size: 2rem;
        color: #3498db;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
        /*Partner*/
    
    
        /* Ensure cards are uniform */
        .partner-wap {
            background-color: #ffffff;
            transition: 1s;
            cursor: pointer;
        }
    
        .partner-wap:hover {
            background: rgb(255, 255, 255);
            background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 5, 5, 0) 90%, #ffffff, rgb(255, 255, 255) 99.999%);
            background-size: 300% 300%;
            background-position: 0% 100%;
            transition: .5s;
            cursor: pointer;
        }
    
        /* Fix column height consistency */
        .row .col-md-3 {
            display: flex;
            /* Ensures all columns stretch uniformly */
        }
    
        /* Make cards fill their container */
        .card {
            width: 100%;
            height: 250px;
            /* Fixed height for consistency; adjust as needed */
            margin: 0 auto;
        }
    
        /* Style images inside cards */
        .partner-img {
            max-width: 80%;
            /* Limits image width to avoid overflow */
            max-height: 80%;
            /* Limits image height to fit within card */
            object-fit: contain;
            /* Ensures images scale proportionally without distortion */
            margin: auto;
            /* Centers the image */
        }

          .objective-icon {
            width: 100px; /* Set a fixed width */
            height: 100px; /* Ensure equal height */
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px; /* Optional: Adjust for rounded corners */
            border-radius: 13px;
            width: 8rem;
        }
        