/* Additional About Page Styles */

/* Full-page background for About page */
body {
    background: url('images/about-bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Side-by-side Section Styles (for Values & Founder Info) */
.side-by-side-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    margin: 10px auto;
    background: rgba(66, 66, 66, 0.3); /* Semi-transparent background */
    backdrop-filter: blur(10px);
    border-radius: 15px;
    max-width: 1200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.side-by-side-section .info {
    flex: 1.2;
    margin-right: 20px;
    color: #fcfcfc;
}

.side-by-side-section .info h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    font-family: 'verdana', serif;
}

.side-by-side-section .info h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-family: 'verdana', serif;
}

.side-by-side-section .info p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.side-by-side-section .image {
    flex: 0.5;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-by-side-section .image img {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
}

.founder-section{
    margin: 40px auto;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
}


/* Vision and Mission sections as separate vertical blocks */
.vision-section,
.mission-section {
    margin: 40px auto;
    max-width: 1200px;
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Set backgrounds for each section */
.vision-section {
    background-image: url('images/vision-bg.jpg');
}

.mission-section {
    background-image: url('images/mission-bg.jpg');
}

/* Text overlay container */
.section-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    background: rgba(62, 62, 62, 0.3);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-sizing: border-box;
}

/* For the Mission section, move the text overlay to the top */
.mission-section .section-text {
    top: 0;
    bottom: auto;
    border-radius: 15px;
}

.section-text h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    font-family: 'verdana', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

.section-text p {
    font-size: 1.2em;
    color: #ffffff;
}

/* Increase text size for the Vision section only */
.vision-section .section-text h2 {
    font-size: 2.8em;
}
.vision-section .section-text p {
    font-size: 2em; 
}

/* What We Do Section Styles */
.what-we-do-section {
    padding: 40px;
    margin: 40px auto;
    background: rgba(62, 62, 62, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    max-width: 1200px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.what-we-do-section:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(62, 62, 62, 0.3);
}

.what-we-do-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-family: 'verdana', serif;
    text-transform: uppercase;
    color: #ffffff;
}

.what-we-do-section p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
}

.what-we-do-section .learn-more {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    background-color: rgba(0, 80, 158, 0.8);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.what-we-do-section .learn-more:hover {
    background-color: rgba(62, 62, 62, 0.3);
}



.values-details {
    display: flex;
    border-bottom: 1px solid #ccc;
}

.values-details .topic:last-child {
    border-bottom: none;
}

.values-icon {
    flex: 1;
    max-width: 150px;
}

.values-icon img {
    width: 100px;
    border-radius: 10px;
    margin-top: 10px;
}

.values-text{
    flex: 2;
    position: relative;
    color: #fcfcfc;
}

body {
    padding-top: 70px; /* or slightly more if needed */
}