body {
    background-color: #0d1a26;
    color: #fff;
    font-family: sans-serif;
    font-size: 18px;
    margin: 0;
    padding: 0;
}

.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 0;
    background: linear-gradient(to right, #008080, #008B8B);
}
.hero-section::after {
    position: absolute;
    right: 20px;
    bottom: 0px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 2em;
    font-weight: 700;
    pointer-events: none;
    z-index: 10;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 2.2em;
    font-weight: 500; 
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.background-animation-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}
.about-us-team-section {
    background-color: #f0f7f9;
    padding: 80px 5%;
    text-align: center;
    color: #0d1a26;
}

.about-us-team-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-team-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #142f60;
}
.founder_story h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #142f60;
}

.about-us-team-section .subtitle {
    font-size: 1.1em;
    font-weight: 400;
    color: #397088;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
}

.team-member-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-member-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.team-member-card h3 {
    font-size: 1.4em;
    margin: 0 0 5px 0;
    color: #142f60;
}

.team-member-card .title {
    font-size: 0.95em;
    color: #397088;
    margin-bottom: 10px;
}

.linkedin-link {
    color: #0077B5;
    font-size: 1.5em;
    text-decoration: none;
    display: inline-block;
    padding: 5px;
    transition: color 0.3s ease;
}

.linkedin-link:hover {
    color: #004f7f;
}

.mission-vision-section {
    background-color: #e6f6f8;
    padding: 60px 5%;
    color: #0d1a26;
}

.mission-vision-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.mission-card, .vision-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.mission-card {
    border: 1px solid rgba(4, 218, 230, 0.2);
}

.vision-card {
    border: 1px solid rgba(101, 131, 197, 0.2);
}

.card-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    position: relative;
}

.card-icon .icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.mission-card .card-title {
    color: #04dae6;
}

.vision-card .card-title {
    color: #e604da;
}

.card-text {
    font-size: 1em;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
}

.our-values-section {
    background-color: #f0f7f9;
    padding: 80px 5%;
    text-align: center;
    color: #0d1a26;
}

.our-values-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.our-values-section h2 {
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #142f60;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
}

.value-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.value-card::before,
.value-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.value-card::before {
    top: -50px;
    left: -50px;
    background: radial-gradient(#ffe0b2, #ffcc80);
}

.value-card::after {
    bottom: -50px;
    right: -50px;
    background: radial-gradient(#bbdefb, #90caf9);
}

.value-card .icon-container {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto; 
    display: flex; 
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.value-card .icon-container .icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.value-card h3 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
    color: #142f60;
    position: relative;
    z-index: 2;
}

.value-card p {
    font-size: 1em;
    line-height: 1.5;
    color: #333;
    position: relative;
    z-index: 2;
}
.founder-story-section {
    width: 100%;
    min-height: 80vh; 
    padding: 40px 0;
    background-color: #e9f9f6;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.founder-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="%23e0f2f7" stroke-width="1" d="M50 0L100 25L100 75L50 100L0 75L0 25Z M50 0L0 25L0 75L50 100L100 75L100 25Z M50 0L100 25L50 50L0 25L50 0Z M0 25L50 50L0 75L0 25Z M100 25L100 75L50 50L100 25Z"/></svg>'); */
    background-size: 80px;
    opacity: 0.7;
    z-index: 0;
}

.founder-section {
    display: flex;
    align-items: center;
    padding: 30px;
    width: 100%; 
    max-width: 1300px;
    box-shadow: none; 
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 350px;
    margin-bottom: 20px; 
    z-index: 1;
}

.founder-section:last-of-type {
    margin-bottom: 0;
}

.founder-image-container {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.founder-image {
    width: 100%;
    height: 100%;
    border-radius: 10% 1% 15% 1%;
    object-fit: cover;
    border: 5px solid #fdfdfd;
    box-shadow: 0 0 0 5px rgba(0, 76, 80, 0.2);
    transition: transform 0.3s ease;
}

.founder-image:hover {
    transform: scale(1.05);
}

.founder-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.founder-name {
    font-size: 1.7em;
    color: #142f60;
}

.founder-description {
    font-size: 1.2em;
    line-height: 1.5;
    color: #555;
}
.ceo-section .founder-image-container {
    margin-right: 30px;
}
.ceo-section .founder-details {
    text-align: left;
}

.cto-section {
    flex-direction: row-reverse;
}
.cto-section .founder-image-container {
    margin-left: 30px;
    margin-right: 0;
}
.cto-section .founder-details {
    text-align: left;
}

.cto-section .founder-image {
    border-color: #ffffff;
    box-shadow: 0 0 0 5px rgba(242, 167, 238, 0.2);
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5em;
    }
    .hero-section::after {
        right: 10px;
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .founder-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .ceo-section .founder-details, 
    .cto-section .founder-details {
        text-align: center;
    }

    .founder-image-container {
        width: 150px;
        height: 150px;
        margin: 0 auto 20px auto !important;
    }

    .founder-name {
        font-size: 1.8em;
    }
    .founder-description {
        font-size: 1.3em;
    }
    
}

@media (max-width: 650px) {
    .mission-vision-container {
        flex-direction: column;
        gap: 20px;
    }
    .mission-card, .vision-card {
        min-width: unset;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .value-card {
        text-align: center;
    }
    .value-card .icon-container {
        margin-left: auto;
        margin-right: auto; 
    }
    .our-values-section h2 {
        margin-bottom: 40px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
}