/* General styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Section specific styles */
.linkage {
    padding: 40px 0;
}
/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

/* Header styling */
.text-center {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em;
    background: linear-gradient(45deg, #1e90ff, #ff6347);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 40px 0;
    position: relative;
    animation: fadeIn 1.5s ease-in-out;
}

/* Add a bottom underline effect */
.text-center::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(45deg, #1e90ff, #ff6347);
    margin: 10px auto 0;
    border-radius: 2px;
    animation: expand 1.5s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

/* Header styling */
h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2em;
    color: #ffffff;
    background: linear-gradient(45deg, #1e90ff, #ff6347);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInDown 1.5s ease-in-out;
    margin-bottom: 20px;
}

/* Fade-in-down animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adding decorative elements */
h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff6347;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1e90ff;
}
/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Paragraph styling */
.bank_linkage p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: #f7f7f7;
    border-left: 5px solid #1e90ff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-in-out;
}

.linkage p {
    font-size: 1.1em;
    margin-bottom: 20px;
}
.linkage li {
    font-size: 1.1em;
    margin-bottom: 10px;
    list-style-type: disc;
    margin-left: 20px;
    color: #16a085;
}
/* Adding a subtle background decoration */
.bank_linkage p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 144, 255, 0.1);
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

/* Ensuring the text remains above the decoration */
.bank_linkage p span {
    position: relative;
    z-index: 2;
}

/* Fade-in-up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Expand animation for underline */
@keyframes expand {
    from {
        width: 0;
    }
    to {
        width: 50px;
    }
}



/* Image styles */
.img {
    text-align: center;
}

.img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Training tiles styles */
.training_tile {
    padding: 40px 0;
    background-color: #f1f1f1;
}

.training_tile .frame {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.training_tile .layer {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.training_tile .layer:hover {
    transform: scale(1.05);
}

.training_tile img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.training_tile .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 0 0 8px 8px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col-lg-6, .col-lg-4, .col-lg-12 {
        margin-bottom: 20px;
    }

    .col-lg-12 {
        margin-top: 20px;
    }
}
/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

/* Underlined header styling */
.bank_linkage h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8em;
    color: #1e90ff;
    text-align: left;
    margin: 40px 0 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

/* Custom underline effect */
.bank_linkage h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #ff6347;
    margin-top: 5px;
    transition: width 0.3s ease-in-out;
}

/* Hover effect for underline */
.bank_linkage h3:hover::after {
    width: 120%;
}

/* Animation */
@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}


