
/* Study section  */

.study-hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../media/abroadpage.png'); /* Replace with the actual image for the abroad education page */
    background-size: cover;
    background-position: center;
    color: #0c0b0b;
    text-align: center;
    position: relative;
}

.study-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust overlay as needed */
    z-index: -1;
}

.study-hero-content {
    padding: 50px;
    color: #ffffff;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
}

.study-hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    /* font-family: 'Times New Roman', Times, serif; */
}

.study-hero-content p {
    font-size: 1.5em;
    /* font-family: 'Times New Roman', Times, serif; */
    font-weight: bold
}

/* Abroad Info Section */
.study-info {
    background-color: #ffffff;
}

.study-info .container{
    padding-top: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 1000px;
}

.study-info h2 {
    font-size: 2.6em;
    margin-bottom: 20px;
    /* width: 100%; */
    /* font-family: 'Times New Roman', Times, serif; */
}

.study-info p {
    margin: 30px;
    text-align: justify;
    font-size: 1.2em;
    /* font-family: 'Times New Roman', Times, serif; */
    /* width: 100%; */
}

.study-learn-more-button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 50px;
    background-color: #ffffff; /* Button background color */
    color: #000000; /* Button text color */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 5px rgb(27, 142, 237), 0 0 25px rgb(27, 142, 237);
    font-weight: bold;
}

.study-learn-more-button:hover {
    background-color: #6b6767; /* Background color on hover */
    box-shadow: 0 0 5px rgb(27, 142, 237), 
    0 0 25px rgb(27, 142, 237), 0 0 50px rgb(27, 142, 237)
    0 0 100px rgb(27, 142, 237), 0 0 200px rgb(27, 142, 237) ;
}

.highlight {
    color: #3b99ff; /* Choose any color you like */
    font-weight: bold;
  }

.study-info ul {
    list-style-type: none; /* Removes default bullets */
    padding: 0 80px; /* Removes default padding */
    margin: 0; /* Removes default margin */
    text-align: left; /* Aligns text to the left */
  }

.study-info li {
    display: flex; /* Uses flexbox for alignment */
    align-items: center; /* Centers items vertically */
    margin-bottom: 15px; /* Adds space between list items */
    padding: 10px; /* Adds padding for better spacing */
    border: 1px solid #ddd; /* Adds a border around each item */
    border-radius: 5px; /* Rounds the corners */
    background-color: #f9f9f9; /* Light background color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
  }

.study-info li::before {
    content: "✔"; /* Adds a checkmark before each item */
    color: #4CAF50; /* Green color for the checkmark */
    font-weight: bold; /* Makes the checkmark bold */
    margin-right: 10px; /* Adds space between the checkmark and text */
  }