@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-color: #002374;
    --secondary-color: #ee7d19;
    --tertiary-color: #ffffff;
}

body {
    background: aliceblue;
}

/* =============================== */
.background {
    background: var(--primary-color);
    color: var(--tertiary-color);
}

/* =================================== */
a {
    color: var(--tertiary-color);
    text-decoration: none;
}

/* ============================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.head,
.text {
    color: var(--primary-color);
}

p,
li {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-size: 1.02rem;
}

/* ============================ */

/* =============================================== */


.breadcrumb {
    background: none;
    /* Remove default background */
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
}

.breadcrumb-item {
    display: inline-block;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    margin-right: 8px;
    position: relative;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.breadcrumb-item a:hover {
    color: #ff5733;
}

.breadcrumb-item.active {
    color: #d3d3d3;
    font-weight: 700;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    color: #d3d3d3;
    margin-left: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff5733;
    background: var(--secondary-color);
    color: var(--tertiary-color);
    outline: none;
}

/* ======================================= */
.list-group-item {
    background: var(--secondary-color);
    color: var(--tertiary-color);
    transition: all 0.6s ease-in-out;
}

.list-group-item:hover {
    transform: translateX(10px);
    background: var(--tertiary-color);
    color: var(--primary-color);
}

.list-group-item i {
    background-color: var(--secondary-color);
    padding: 5px;
    border-radius: 5px;
    color: var(--tertiary-color);
}
/* .list-group-item strong{
    font-weight: 700;
    font-size: 20px;
} */

/* ==================btn css========================== */
.btn {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 300%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4));
    transition: all 0.6s ease;
    transform: rotate(25deg);
    z-index: 0;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    color: var(--secondary-color);
    background-color: #fff;
    border-bottom: 2px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* border-radius: 0px; */
}

.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* =============================== */
.why-choose-us {
    background: #1a5187;
}

.why-choose-us .card i {
    color: var(--primary-color);
    font-size: 60px;
}

.why-choose-us .card {
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    transition: transform 0.6s ease-in-out;
    margin-bottom: 20px;
}

.why-choose-us .card:hover {
    transform: translateY(-10px);
    transition: all 0.6s ease-in-out;
}

.why-choose-us .card-body {
    padding: 20px;
}

/* ============================= */
.achievements-section {
    background: url(../images/background/1.jpg) repeat scroll;
    background-size: cover;
    background-position: center center;
    color: var(--tertiary-color);
}

.achievements-counter {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    text-align: center;
}

.counter-box {
    text-align: center;
}

.counter-box h3 {
    font-size: 2.5rem;
    color: var(--tertiary-color);
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* ================================ */
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url(../images/banner/contact-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contact .content {
    color: var(--tertiary-color);
}

.contact .card {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
    color: var(--primary-color);
    margin-bottom: 20px;
    padding: 10px;
}

.contact .card .icon {
    background: var(--primary-color);
    color: var(--tertiary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto;
}

.contact label {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--tertiary-color);
}