@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800;900&display=swap');

#about {
    /*background-image: url('aboutbackground.jpg');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.section-padding {
    padding: 60px 0;
}

.section-white {
    background:#ffffff;
}

.section-white .about-subtitle {
    color: #000000;
    font-weight: 550;
}


.section-white .text-content.about-text-white{
    color: #000000;
    font-weight: 550;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.02em;
}

.about-subtitle {
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.01em;
    font-family:'Lucida Sans';
    text-align: center;
    justify-items: center;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background:  #0e57a4;
    border-radius: 2px;
}

.section-gradient-blue {
    background: #1B4F83;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-grid:last-of-type {
    margin-bottom: 0;
}

.about-grid > div {
    flex: 1;
    min-width: 300px;
}

.image-container-collage {
    position: relative;
    width: 100%;
    padding-top: 95%;
    max-width: 600px;
    margin: 0;
    overflow: hidden;
}

.collage-image-primary,
.collage-image-secondary,
.collage-image-tertiary {
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.collage-image-primary {
    top: 0;
    left: 0;
    width: 60%;
    height: 40%;
    z-index: 1;
    transform: rotateZ(-4deg);
}

.collage-image-secondary {
    top: 20%;
    right: 0;
    width: 60%;
    height: 40%;
    z-index: 1;
    transform: rotateZ(3.5deg);
}

.collage-image-tertiary {
    bottom: 10%;
    left: 5%;
    width: 65%;
    height: 40%;
    z-index: 5;
    transform: rotateZ(5deg);
}

.collage-image-primary:hover,
.collage-image-secondary:hover,
.collage-image-tertiary:hover {
    transform: scale(1.03) rotateZ(0deg);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
    line-height: 1.7;
    color: #333333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mv-horizontal-cards-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 100px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    padding: 0 15px;
}

.mv-styled-card {
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(0, 123, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-styled-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.mv-icon-circle-overlap-top {
    background: linear-gradient(to right, #aa68b3, #587aff);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    border: 4px solid #ffffff;
    z-index: 2;
}

.mv-icon {
    width: 70px;
    height: 70px;
    filter: brightness(0) invert(1);
}

.mv-card-main-title {
    font-family: 'Playfair Display';
    color: #004cff;
    font-size: 2em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mv-card-body-text {
    font-family:'Arial Narrow', Arial;
    color: #000000;
    font-size: 1.1em;
    line-height: 1.8;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    font-weight: 400;
}

.text-content {
    font-family: 'Inter', sans-serif;
    font-size: 1.07em;
    line-height: 1.6;
    margin-bottom: 1em;
    color: #000000;
    font-weight: 400;
    text-align:justify;
    padding: 15px;
}

.section-white .text-content p {
    color: #ffffff;
}