/* Appui Conseil */

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

body {
    font-family: Arial, sans-serif;
}

/* First Section: Header Banner */
.header-banner {
    background-image: url('your-banner-image.jpg'); /* Replace with your image */
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.banner-content {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 20px;
}

/* Second Section: Courses */
.courses {
    padding: 40px;
    text-align: center;
}

.course-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.course-item {
    border: 1px solid #ccc;
    margin: 10px;
    padding: 20px;
    width: 200px; /* Adjust as necessary */
}

/* Third Section: Info */
.info-section {
    background-color: #f0f0f0; /* Light background color */
    padding: 40px;
    text-align: center;
}

.info-section a {
    margin: 10px;
}

/* Fourth Section: Grid Display */
.grid-display {
    display: flex;
    justify-content: space-around;
    background-color: #e0e0e0;
    padding: 20px;
}

.grid-item {
    background-color: white;
    padding: 20px;
    margin: 10px;
    flex: 1; /* Equal width */
    text-align: center;
}

/* Fifth Section: Testimonials */
.testimonials {
    padding: 40px;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-item {
    border: 1px solid #ccc;
    margin: 10px;
    padding: 20px;
    width: 250px; /* Adjust as necessary */
}

/* Sixth Section: Small Banners */
.small-banners {
    display: flex;
    justify-content: space-around;
    padding: 40px;
}

.small-banner {
    background-image: url('your-banner-image.jpg'); /* Replace with your image */
    background-size: cover;
    color: white;
    padding: 20px;
    width: 45%; /* Adjust as necessary */
    text-align: center;
}

.btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}



/* Custom CSS for additional styling */
body {
    font-family: Arial, sans-serif;
}

/* Hero Section */
.hero {
    background: url('/img/college.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}
.hero h1 {
    font-size: 3rem;
}
.hero p {
    font-size: 1.25rem;
}

.hero {
    transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hero:hover {
    transform: scale(0.9);
}




.col:hover{
    /* transform: scale(0.9); */
    transform: translateY(-1.25rem);
}

/* About Section */
.about-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

/* Course Section */
.course-section h2 {
    margin-bottom: 30px;
}

.course-card img {
    height: 200px;
    object-fit: cover;
}

/* Footer */
.footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
}

.footer a {
    color: #adb5bd;
    text-decoration: none;
}

.footer a:hover {
    color: #f8f9fa;
}