

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", sans-serif;
}

.header {
    background: #173e84;
    padding: 10px 10px;
}

.headermenu {
    margin: 0px;
}

    .headermenu li {
        float: right;
        padding: 5px 15px;
    }

        .headermenu li a {
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
        }

.heading {
    margin: 0px;
}

    .heading h2 {
        color: #000;
        font-size: 38px;
        font-weight: bold;
        padding-bottom: 50px;
        margin-bottom: 20px;
    }

.heading1 {
    margin: 0px;
    padding: 10px 0px;
}

    .heading1 h2 {
        color: #fff;
        font-size: 38px;
        font-weight: bold;
        padding-bottom: 50px;
        margin-bottom: 20px;
    }


.amity-news {
    background: url(../images/news-bg.jpg) no-repeat;
    background-size: cover;
    border-top: #fff solid 5px;
}

.stay-bg {
    background: url(../images/stay-bg.jpg) no-repeat;
    background-size: cover;
    border-top: #fff solid 5px;
    padding: 90px 0px;
}

.show-all {
    padding: 30px 0px;
    text-align: right;
}

    .show-all a {
        background: #abb8cb;
        padding: 7px 20px;
        border-radius: 50px;
        color: #000;
        font-size: 20px;
        font-weight: bold;
        text-decoration: none;
    }

.text1 p {
    color: #fff;
    font-size: 20px;
    line-height: 38px;
}

.amitynewsbtn {
    border: #ceb028 solid 1px;
    padding: 20px 30px;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    margin: 10px 20px;
    width: 150px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

    .amitynewsbtn:hover {
        border: #ceb028 solid 1px;
        background: #ceb028;
        color: #000;
    }

.quick-link {
    background: #173e84;
    padding: 70px 0px;
}

    .quick-link h3 {
        color: #fff;
        padding: 0px 0px;
        text-align: center;
    }

.quick-link1 {
    margin: 0px;
    padding: 0px;
}

    .quick-link1 li {
        list-style: none;
        margin: 0px;
        padding: 0px;
        text-align: center;
    }

        .quick-link1 li a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
        }

.director {
    background: #dce3e8;
    padding: 90PX 0PX;
}

.heading-two h2 {
    font-size: 52px;
    color: #000;
    text-align: center;
    padding-bottom: 40px;
}

.message-box {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    background: #55719c;
}

.message-text {
    font-size: 16.5px;
    line-height: 1.7;
    color: #000; /* dark text as per image */
}


.amity-news .card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}

.amity-news .card-img-top {
    height: 200px;
    object-fit: cover;
}

.amity-news .card-body {
    min-height: 80px;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

    .footer-links a:hover {
        color: #ffd700;
        padding-left: 5px;
    }

footer .btn {
    transition: all 0.3s ease;
}

    footer .btn:hover {
        transform: translateY(-2px);
    }

.header-menu .nav-link {
    position: relative;
    color: #fff !important;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: color 0.3s ease;
}

    .header-menu .nav-link::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: 5px;
        left: 50%;
        background-color: #ffd700;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .header-menu .nav-link:hover::after,
    .header-menu .nav-link.active::after {
        width: 60%;
    }

    .header-menu .nav-link:hover {
        color: #ffd700 !important;
    }

/* Button Hover Effect */
.navbar .btn-warning {
    transition: all 0.3s ease;
}

    .navbar .btn-warning:hover {
        background-color: #ffc107;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
    }


.section-light {
    background: #f9f9fb;
}

.section-accent {
    background: linear-gradient(135deg, #f5faff, #eaf3ff);
}

/* Headings */
.section-title {
    font-weight: 800;
    letter-spacing: 1px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -8px;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: #4e9fff;
        border-radius: 2px;
    }

/* Cards */
.custom-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

    .custom-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

    .custom-card img {
        transition: transform 0.4s ease;
    }

    .custom-card:hover img {
        transform: scale(1.05);
    }

/* Buttons */
.btn-custom {
    background: linear-gradient(45deg, #4e9fff, #6c63ff);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    transition: 0.3s;
}

    .btn-custom:hover {
        background: linear-gradient(45deg, #6c63ff, #4e9fff);
        transform: translateY(-2px);
    }