/* index.css */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
    background-color: #dde1e8;
    margin: 0;
    font-family: Arial, sans-serif;
}

footer {
    --tw-bg-opacity: 1;
    background-color: rgb(25 28 37/var(--tw-bg-opacity));
    color: white;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 0 0 0px 0;
}

header {
    background-color: #ffffffcc;
    padding: 10px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header nav */
.border-b {
    border-bottom-width: 1px;
}
.w-full {
    width: 100%;
}
.z-50 {
    z-index: 50;
}
.top-0 {
    top: 0;
}
.justify-between {
    justify-content: space-between;
}
/* End Header nav */

.logo {
    width: 40px; 
    height: 40px; 
}

.title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 20px;
}

nav {
    display: flex;
    margin-right: 10px; 
}

nav a {
    font-weight: 600;
    color: black;
    text-decoration: none;
    margin: 0 7.5px;
}

nav a:last-child {
    margin-right: 10px;
}

marquee {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: yellow;
    color: red;
    height: 50px;
}
marquee a {
    text-decoration: none;
    color: inherit;
}

/* == Start of GRID ITEMS == */

.grid-container-2,
.grid-container-1,
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

.grid-container-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-container-2 {
    grid-template-columns: repeat(2, 1fr);
}

.container {
    background: #2f64729c;
    border-radius: 10px;
    box-shadow: 0 0 10px #000000a8;
    gap: 0px;
    display: grid;
    grid-template-rows: none;
    justify-items: stretch;
}

.container-box,
.container-box-tools,
.container-box-irctc,
.container-box-icai,
.container-box-a {
    background-size: cover;
    background-position: center;
    border-radius: 0 0 10px 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.container-box-a {
    background-image: url("../assets/bg/a-t-f.png");
}

/* Not To Be Touched */
.grid-item {
    margin: 0 20px 20px 20px;
    background-color: #ee770e;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 78%);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.grid-item:hover {
    transform: scale(1.05);
}

.grid-head {
    height: fit-content;
    width: -webkit-fill-available;
    background-color: #f4fffd;
    color: #000000;
    padding: 7.5px;
    text-align: justify;
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    border-radius: 10px 10px 0 0;
}

.grid-head img {
    margin: 0 10px;
}

/* Not To Be Touched */

/* === GRID ITEMS END ===*/


/* === Title, Button, Text, Image === */
.title-under-image {
    text-decoration-line: overline;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin: 5px 0 0 0;
}

.title-beside-image {
    text-decoration-line: underline;
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 16px;
    margin: 5px 0 5px 0;
}

.bio {
    text-align: start;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin: 2px 8px;
    font-size: 14px;
}

.button-under-image {
    display: inline-block;
    margin: 8px 0 0 0;
    padding: 6px 10px;
    font-size: 14px;
    background-color: #c2652f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-items: center;
    text-decoration: none;
}

.button-under-image:hover {
    background-color: #4f9db3;
    transform: scale(1.1);
}

.round-image {
    border-radius: 50%;
    max-width: 60px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}
 
.normal-image {
    max-width: 60px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.normal-image:hover,
.round-image:hover {
    transform: scale(1.1);
}


/* == ITEMS : CONSTANT == */
.left-side {
    flex: 1;
    text-align: center;
}

.right-side {
    flex: 1;
}

.section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    margin: 5px 15px 0px 0px;
}

.ml-1, .mx-1 {
    margin-left: 0.25rem!important;
}


/* Banner CSS */
.img-fluid {
    max-width: 100%;
    height: auto;
}
img{
    vertical-align: middle;
}