/* General bodyt styling with attractive background and centering */
.bodyt {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 50px 0;
    min-height: 100vh;
}

.bodyt h1 {
    text-align: center;
    font-family: "Limelight", cursive;
    font-weight: bold;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* About-us section as an attractive card */
.about-us {
    max-width: 95%;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-us p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
    text-align: justify;
}

/* Founder section with card-like design and circular image */
.founder {
    margin-top: 60px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.founder:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transform: scale(1.02);
}

.founder div {
    flex: 1;
    padding: 30px;
}

.founder img {
    width: 80%;
    height: 600px;
    object-fit: cover;
    margin: 20px auto;
    display: block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.founder img:hover {
    transform: scale(1.05);
}

.founder p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    margin-top: 20px;
    text-align: justify;
}

.founder h2 {
    text-align: center;
    font-family: "Limelight", cursive;
    font-weight: bold;
    font-size: 32px;
    color: #3498db;
    margin-bottom: 20px;
    position: relative;
}

.founder h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.founder h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 24px;
    margin-top: 10px;
    color: #2c3e50;
}

.founder span {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

/* Mission and Vision section with enhanced hover and icons */
.msvs {
    display: flex;
    flex-direction: row;
    max-width: 90%;
    margin: 60px auto;
    gap: 30px;
}

.msvs div {
    flex: 1;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.msvs div:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.3);
}

.msvs div:hover p,
.msvs div:hover li {
    color: white;
}

.msvs div p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    text-align: justify;
    margin-bottom: 20px;
}

.msvs div h3 {
    font-family: "Limelight", cursive;
    font-weight: bold;
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    color: #3498db;
    position: relative;
}

.msvs div h3::before {
    content: '🎯';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.msvs div:nth-child(2) h3::before {
    content: '🔭';
}

.msvs ul {
    list-style: none;
    padding: 0;
}

.msvs li {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.msvs li i {
    position: absolute;
    left: 0;
    top: 0;
    color: #3498db;
    font-size: 14px;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .bodyt {
        padding: 20px 0;
    }

    .about-us, .founder, .msvs {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
        flex-direction: column;
    }

    .founder img {
        width: 150px;
        height: 150px;
    }

    .msvs {
        flex-direction: column;
        gap: 20px;
    }

    .bodyt h1, .founder h2, .msvs div h3 {
        font-size: 24px;
    }

    .about-us p, .founder p, .msvs div p {
        font-size: 16px;
    }
}

