body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

header {
    background-color: #1b476b;
    position: relative;
    overflow: hidden;
}

.header-image {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid blue;
    border-radius: 10px;
}

.header-content {
    background-image: url('./assets/gadschools.jpg');
    width: 100%;
    height: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 40vh;
    border-radius: 10px;
    text-align: center;
    margin-top: 1px;
}



#head-text {
    background-color: black;
    padding: 10px;
    color: white;
    position: relative;
    top: -50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.5);
    font-size: 1.5rem;
    border-radius: 10px;
}

.banner {
    display: flex;
}



h1 {
    padding: 1px;
    font-style: italic;
}

.heading {
    font-family: cursive;
    font-style: oblique;
    color: antiquewhite;
    font-size: 25px;
    margin-left: 5px;
    padding: 1px;
    background-color: #007bff;
    border-radius: 5px;
    padding: 2px;
}

.logo {
    margin-left: 1px;
    transition: all 0.3s ease-in-out;
    filter: brightness(1);
}

.logo:hover {
    animation: glow 1.5s infinite alternate;
    /* Apply glowing animation */
    filter: brightness(1.5);
    /* Increase brightness on hover */
}

/* Keyframes for glowing animation */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #fa2c2c, 0 0 20px #fa2c2c;
        box-shadow: 0 0 5px #ffffff, 0 0 10px #fa2c2c, 0 0 15px #fa2c2c;
    }

    100% {
        text-shadow: 0 0 10px #fa2c2c, 0 0 20px #fa2c2c, 0 0 30px #fa2c2c, 0 0 40px #fa2c2c;
        box-shadow: 0 0 10px #fa2c2c, 0 0 20px #fa2c2c, 0 0 30px #fa2c2c;
    }
}

nav {
    font-size: large;
    font-weight: bolder;
}

.scrollbar {
    width: 100%;
    height: 35px;
    background-color: #336aea;
}

marquee {
    color: yellow;
    font-size: large;
}

.highlight {
    font-size: x-large;
    color: red;
    font-weight: bolder;
}

h2 {
    background-color: #1b476b;
    text-decoration: underline;
    font-style: italic;
    text-align: center;
    border-radius: 5px;
}

.div-heading {
    margin-top: 10px;

}

.image {
    border: 1px solid blue;
    border-radius: 10px;
}

p {
    font-size: large;
    border-radius: 8px;

    padding: 5px;
}

.description-list {
    max-width: 600px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: large;
}

.box-shadow {
    max-width: 600px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

dt {
    font-weight: bold;
    color: #2c3e50;
    transition: color 0.3s;
}

.description-list dt:hover {
    color: #2980b9;
    /* Change color on hover */
}

.ed {
    margin-left: 60px;
    color: #001F3F;
}


input[readonly] {
    background-color: #e9ecef;
    /* Light gray background for readonly input */
    cursor: not-allowed;
    /* Show cursor as not allowed */
    text-align: right;
    /* Align text to the right inside the input */
}

form {
    border: 2px solid #007bff;
    /* Blue border color */
    background-color: #e9ecef;
    /* Light gray background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional shadow for depth */
}

.footer {
    background-color: #1b476b;
    color: white;
    padding: 40px 0;
}

.footer .social-icons i {
    font-size: 1.8rem;
    margin: 0 10px;
    color: white;
}

/* jumbotron-start  */
.content {
    position: relative;
    width: 100%;
}

.list-unstyled li a {
    text-decoration: none;
    color: white;
}

.jumbooverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000e9;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
}

.content:hover .jumbooverlay {
    height: 100%;
}

.content:hover {
    border-bottom: 7px solid #004d71;
    height: 183px;
}

.text {
    color: #ffffff;
    font-size: 14px;
    position: absolute;
    top: 25%;
    left: 30%;
    width: 75%;
    transform: translate(-30%, -30%);
    text-align: center;
}

.jumbotron-anchor {
    text-decoration: none;
}

/* jumbotron-end  */


@media (max-width: 768px) {
    .header-content {
        height: 20vh;
        
    }

    #head-text {
        font-size: 1.2rem;
        top: -100px;
        line-height: 30px;
    }
    .offered-service-div{
        justify-content: center;
        margin-bottom: 15px;
        display: flex;
    }
    
    
}