
        /* Basic Reset */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

     
        /* Center the button */
        .button-container {
            text-align: center;
        }

        button {
            padding: 12px 30px;
            background-color: #28a745;
            color: #fff;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            font-size: 16px;
            transition: background-color 0.3s ease;
            display: inline-block; /* Adjusted for better centering */
            margin: 20px auto; /* Center horizontally */
        }

        button:hover {
            background-color: #218838;
        }

        /* The Modal */
        .modal {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 1000; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.6); /* Black background with opacity */
            animation: fadeIn 0.5s;
        }

        /* Modal Content */
        .modal-content {
            background-color: #fff;
            margin: 5% auto; /* 5% from the top and centered */
            padding: 30px 40px;
            border: none;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            animation: slideDown 0.5s;
        }

        /* Close Button */
        .close {
            display: none; /* Hidden by default */
            color: #aaa;
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover,
        .close:focus {
            color: #000;
            text-decoration: none;
        }

        /* Form Styling */
        .modal-content h2 {
            margin-bottom: 20px;
            color: #333;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #28a745;
            box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
            outline: none;
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        /* Submit Button */
        .modal-content button[type="submit"] {
            width: 100%;
            padding: 12px;
            background-color: #007BFF;
            color: #fff;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            font-size: 18px;
            transition: background-color 0.3s ease;
        }

        .modal-content button[type="submit"]:hover {
            background-color: #0056b3;
        }

    
        /* Basic Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Main Layout Styles */
       

        h2 {
            font-weight: 600;
            color: #333;
        }

        p {
            color: #666;
            font-size: 14px;
        }

/* Box Layout for Testimonials and Student Hire */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden; /* To hide overflowed items */
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    flex: 1 1 calc(33.333%); /* 3 boxes per view */
    min-width: calc(33.333%);
    box-sizing: border-box;
    padding: 20px;
}

.box-item {
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.box-item img {
    border-radius: 50%;
    margin-bottom: 15px;
    width: 80px;
    height: 80px;
}

.box-item h5 {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

/* Arrow Buttons */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
}

.slider-arrow.left {
    left: 10px;
}

.slider-arrow.right {
    right: 10px;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .slide {
        flex: 1 1 calc(50%);
        min-width: calc(50%);
    }
}

@media (max-width: 576px) {
    .slide {
        flex: 1 1 100%;
        min-width: 100%;
    }
}


/* Box Layout for Testimonials */
.slider-container-testimonials {
    position: relative;
    width: 100%;
    overflow: hidden; /* To hide overflowed items */
}

.slider-wrapper-testimonials {
    display: flex;
    transition: transform 0.5s ease;
}

.slide-testimonial {
    flex: 1 1 calc(33.333%); /* 3 boxes per view */
    min-width: calc(33.333%);
    box-sizing: border-box;
    padding: 20px;
}

.box-item-testimonial {
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.box-item-testimonial img {
    border-radius: 50%;
    margin-bottom: 15px;
    width: 80px;
    height: 80px;
}

.box-item-testimonial h5 {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

.box-item-testimonial p {
    font-style: italic;
    color: #555;
    font-size: 16px;
}

/* Arrow Buttons */
.slider-arrow-testimonials {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
}

.slider-arrow-testimonials.left {
    left: 10px;
}

.slider-arrow-testimonials.right {
    right: 10px;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .slide-testimonial {
        flex: 1 1 calc(50%);
        min-width: calc(50%);
    }
}

@media (max-width: 576px) {
    .slide-testimonial {
        flex: 1 1 100%;
        min-width: 100%;
    }
}




       .stats {
    background-color: #f1f1f1;
    padding: 50px 0;
    text-align: center;
}

.stats-item {
    display: inline-block;
    margin: 0 30px;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.stats-item h2 {
    color: #007bff;
    font-size: 40px;
    margin-bottom: 10px;
    position: relative;
    animation: rotateIn 0.5s ease-in-out; /* Simple animation */
}

.stats-item p {
    color: #333;
    font-size: 16px;
}

.expanded-button {
    width: 200px; /* Adjust the width as needed */
    padding: 15px; /* Adjust padding for a larger button */
    font-size: 1.25rem; /* Increase font size */
    text-align: center; /* Center the text */
}

.text-center {
    display: flex;
    justify-content: center; /* Center the button horizontally */
    align-items: center; /* Center the button vertically (if necessary) */
    height: 100%; /* Ensure it takes up the full height of its container if needed */
}


/* Responsive Layout */
@media (max-width: 768px) {
    .box-item {
        flex: 1 1 calc(50% - 20px);
    }

    .stats-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .box-item {
        flex: 1 1 100%;
    }

    .stats-item {
        margin-bottom: 20px;
    }
}

/* Rotate animation */
@keyframes rotateIn {
    from {
        transform: rotateX(-90deg);
        opacity: 0;
    }
    to {
        transform: rotateX(0);
        opacity: 1;
    }
}

        /* Animations */
        @keyframes fadeIn {
            from {opacity: 0;}
            to {opacity: 1;}
        }

        @keyframes slideDown {
            from {transform: translateY(-50px); opacity: 0;}
            to {transform: translateY(0); opacity: 1;}
        }

        /* Responsive Adjustments */
        @media (max-width: 600px) {
            .modal-content {
                padding: 20px 25px;
            }

            .close {
                font-size: 25px;
                top: 10px;
                right: 15px;
            }
        }
        
      