* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background:linear-gradient(to bottom, #bde7ff 0%, #e3f5ff 50%, #ffffff 100%);
    min-height: 100vh;
    /* padding: 0 5px; */
    padding-top: 10px;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Particle Animation */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
        top: -10px;
        background: #ffffff;
        border-radius: 50%;
        opacity: 1;
        filter: brightness(1.4);
        box-shadow:
            0 0 8px #ffffff,
            0 0 16px #ffffff,
            0 0 28px #ffffff,
            0 0 45px rgba(79, 172, 254, 1);
        animation: floatParticle linear forwards;
    
    }

@keyframes floatParticle {
    to {
        transform: translateY(100vh) translateX(100px);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Desktop Layout */
.main-wrapper {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* Profile Card */
.profile-card {
    position: sticky;
    top: 10px;
}
.profile-card {
    background: #1e3a5f; /* b->w */
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 300px;
    flex-shrink: 0;
    margin: 0 auto;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    border: 4px solid #fff; /* b->w */
    margin-bottom: 10px;
    
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;/* b->w */
    margin-bottom: 0px;
}

.profile-title {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}


.download-btn {
    background: #fff; /* b->w */
    color: #1e3a5f;/* b->w */
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.download-btn:hover {
    background: #2d5a8a;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    position: relative;
    color: #fff;   /* b->w */
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Vertical Separator */
.social-link:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background: rgba(30, 58, 95, 0.25);
}

/* Hover effect */
.social-link:hover {
    transform: translateY(-3px);
    color: #000;
}
.rotating-carousel {
    margin-top: 0px;
    position: relative;
    height: 42px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    display: flex;

}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.ecosystem-card h3{
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.ecosystem-card p{
    font-size: 15px;
    line-height: 1.6;
}
.ecosystem-card{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    height:100%;
    text-align: center;
}
.ecosystem-card img{
    display: block;
    margin: 0 auto 15px auto;
}

.ecosystem-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

.eco-logo{
    width: 120px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.ecosystem-card h3{
    font-size:1rem;
    margin-bottom:8px;
    color:#1e3a5f;
}

.ecosystem-card p{
    font-size:0.85rem;
    color:#555;
    line-height:1.5;
}
@media (max-width:768px){

    .ecosystem-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .ecosystem-card{
        padding:20px;
    }

    .eco-logo{
        max-width:140px;
    }

}
.logo-box{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.eco-logo{
    width: 180px;
    height: auto;
    object-fit: contain;
}
/* experresion */
.books-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:30px;
}

.book-card{
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    text-align:center; /* keeps image and title centered */
}

.book-desc{
    text-align: justify;   /* aligns paragraph nicely */
    font-size:0.95rem;
    color:#555;
    line-height:1.6;
}

.book-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

.book-img{
    width:160px;
    height:auto;
    margin-bottom:15px;
}

.book-title{
    font-size:1.1rem;
    color:#1e3a5f;
    margin-bottom:10px;
}
.book-img{
    width:170px;
    height:auto;
    margin-bottom:18px;
    transition: transform 0.3s;
}

.book-card:hover .book-img{
    transform: scale(1.05);
}

.ethos-card{
    position: relative;
    background: rgba(255,255,255,0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border-top: 3px solid #1e3a5f;
}

.ethos-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}


.ethos-card h3{
    font-size: 1rem;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.ethos-card i{
    margin-right: 6px;
}

.verse{
    font-style: italic;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}
.verse-ref{
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.verse-text{
    font-size: 1rem;
    font-style: italic;
    color: #2b2b2b;
    margin-bottom: 12px;
    line-height: 1.5;
}

.verse-note{
    font-size: 0.9rem;
    color: #6b6b6b;
    line-height: 1.6;
}

.reflection{
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}
.carousel-slide {
    flex: 0 0 100%;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff; /* b->w */
    white-space: nowrap;
    letter-spacing: 1px;
    gap: 10px;
}

.carousel-slide i {
    font-size: 1.3rem;
    color: #fff; /* b->w */
}
/* Empowerment Grid */

.cards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:40px;
}


/* Card Design */

.info-card{
    background:#ffffff;
    padding:30px 28px;
    border-radius:14px;
    border:1px solid rgba(0,0,0,0.05);

    box-shadow:0 10px 30px rgba(0,0,0,0.06);

    transition:all 0.35s ease;
    position:relative;
    overflow:hidden;
}
.info-card ul{
    flex-grow:1;
}
.see-more{
    align-self:flex-end;
    text-decoration:none;
    font-size:0.9rem;
    font-weight:600;
    color:#1e3a5f;
    margin-top:10px;
}

.see-more:hover{
    text-decoration:underline;
}


/* Premium hover */

.info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}


/* subtle gradient glow */

.info-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    /* background:linear-gradient(90deg,#4facfe,#00f2fe); */
}


/* Logo */

.emp-logo{
    max-width:110px;
    max-height:60px;
    object-fit:contain;
    margin-bottom:18px;
}


/* Title */

.info-card h3{
    font-size:20px;
    font-weight:600;
    margin-bottom:14px;
    color:#222;
}


/* Bullet list */

.info-card ul{
    padding-left:18px;
    margin:0;
}

.info-card li{
    font-size:14.5px;
    line-height:1.7;
    margin-bottom:10px;
    color:#444;
}


/* Mobile */

@media (max-width:768px){

.cards-grid{
grid-template-columns:1fr;
}

.info-card{
padding:24px;
}

}


.certificate-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:30px;
}

.certificate-img{
    width:100%;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s ease;
    cursor:pointer;
}

.certificate-img:hover{
    transform:scale(1.05);
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}
@media (max-width:768px){

.certificate-grid{
    grid-template-columns:1fr;
}

}
/* Enthusiasms Layout */

.enthusiasm-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:40px;
}


/* Card */

.enthusiasm-card{
    display:flex;
    gap:25px;
    align-items:center;

    background:#fff;
    padding:26px;
    border-radius:14px;

    border:1px solid rgba(0,0,0,0.05);
    box-shadow:0 10px 30px rgba(0,0,0,0.06);

    transition:all 0.3s ease;
}

/* Hover effect */

.enthusiasm-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}


/* Image */

.enthusiasm-card img{
    width:110px;
    height:110px;
    object-fit:contain;
    flex-shrink:0;
    
}


/* Text */

.enth-text h3{
    font-size:18px;
    margin-bottom:6px;
}

.enth-text p{
    font-size:14px;
    line-height:1.6;
    color:#555;
}


/* Mobile */

@media (max-width:600px){

.enthusiasm-card{
    flex-direction:column;
    text-align:center;
}

.enthusiasm-card img{
    width:90px;
    height:90px;
}

}

@keyframes rotateCarousel {
    0% {
        transform: translateX(0);
    }
    24% {
        transform: translateX(0);
    }
    26% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(-100%);
    }
    52% {
        transform: translateX(-200%);
    }
    74% {
        transform: translateX(-200%);
    }
    76% {
        transform: translateX(-300%);
    }
    100% {
        transform: translateX(-300%);
    }
}

/* About Section */
.about-section {
    background: white;
    border-radius: 20px;
    padding: 0 30px 15px 30px;
    flex-grow: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-header {
    text-align: center;
    margin-bottom: 25px;
}

.about-header h1 {
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 15px;
}

/* Tab Navigation */
/* .tab-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 10px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgb(255,255,255,0.9);
    padding-top: 5px;
} */
.tab-navigation {
    transition: border-radius 0.3s;    
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    /* border-bottom: 2px solid #eee; */
    position: sticky;
    top: 0;
    z-index: 100;
    background: #1e3a5f;
    padding-top: 10px;
    border-radius: 15px;
    margin-top: 0px;
    top: 0px;
    margin-left: -30px;
    margin-right: -30px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;

}
/* When sticky is active, change border-radius */
    .tab-navigation.sticky-active {
        border-radius: 0;
        box-shadow: 0 2px 12px rgba(30,58,95,0.08);
    }
/* .tab-btn {
    padding: 8px 16px;
    border: 1px solid #d9d9d9;   
    background: #fff;
    color: #555;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;   
    font-family: 'Poppins', sans-serif;
} */
.tab-btn {
    padding: 5px;
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #1e3a5f;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* .tab-btn:hover {
    color: #1e3a5f;
    background: #f0f4f8;
}

.tab-btn.active {
    background: #1e3a5f;
    color: #fff;
    border-color: #1e3a5f;
} */
.tab-btn:hover {
    color: #fff;
    background: #1e3a5f;
    border-color: #fff;
}

.tab-btn.active {
    background: #1e3a5f;
    color: #fff;
    border-color: #fff;
}
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title {
    font-size: 1.5rem;
    color: #1e3a5f;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #1e3a5f;
    display: inline-block;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(2, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid #1e3a5f;
}

.info-card h3 {
    font-size: 1rem;
    color: #1e3a5f;
    margin-bottom: 5px;
}

.info-card h4 {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-card .date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.info-card .tag {
    display: inline-block;
    background: #e8f4f8;
    color: #1e3a5f;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-top: 5px;
}

/* Vision Box */
.vision-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 20px;
}

.vision-box img {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    object-fit: cover;
}

.vision-content h3 {
    font-size: 1.2rem;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.vision-content p {
    color: #555;
    line-height: 1.6;
}

.vision-content p span {
    color: #1e3a5f;
    font-weight: 600;
}

/* Generic Content Styling */
.content-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-list {
    list-style: none;
    padding: 0;
}

.content-list li {
    padding: 15px 20px;
    background: #f8f9fa;
    margin-bottom: 10px;
    border-radius: 10px;
    border-left: 4px solid #1e3a5f;
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-list li i {
    color: #1e3a5f;
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .main-wrapper {
        flex-direction: column;
        align-items: center;
        gap:5px;
    }

    .profile-card {
        width: 100%;
        max-width: 350px;
        padding: 8px;
    }
    .profile-card {
        position: unset;
        top: unset;
    }

    .about-section {
        width: 100%;
    }

    /* .tab-navigation {
        gap: 5px;
        margin-bottom: 5px;
        padding-bottom: 5px;
        position: sticky;
        top: 0;
        z-index: 100;       
        padding-top: 5px;       
        background: #1e3a5f;
        margin-top: 10px;
        top: 5px;
    } */

    .tab-navigation {
        gap: 5px;
        margin-bottom: 5px;
        padding-bottom: 5px;
        position: sticky;
        top: 0;
        z-index: 100;
        /* background: linear-gradient(to bottom, #bde7ff 0%, #e3f5ff 50%, #ffffff 100%); */
        padding-top: 5px;
        /* background: rgb(255, 255, 255, 0.9); */
        background: #1e3a5f;
        margin-top: 0px;
        /* top: 5px; */
        margin-left: -11px;
        margin-right: -11px;
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .tab-btn {
        padding: 4px 6px;
        font-size: 0.75rem;
    }

    .vision-box {
        flex-direction: column;
        text-align: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
    .about-header,.about-header h1{
        margin-bottom: 5px;display: none;
    }
    .carousel-slide{
    font-size: 0.9rem;
    }
    .carousel-slide i{
        font-size: 0.9rem;
    }
    .profile-name{
        font-size: 2rem;
    }
    .hero-services{
        font-size: 0.7rem;
        font-weight: 600;
        color: #0f52ba;
    }
}

@media (max-width: 480px) {
    /* body {
        padding: 10px;
    } */

    .profile-card {
        text-align: center;    padding: 8px;
    }

    .social-links {
        width: 100%;
        flex-wrap: wrap;
        box-sizing: border-box;
        justify-content: space-around;
        align-items: center;
        margin-bottom: 0;
    }

    .main-wrapper {
        align-items: flex-start;
    }

    .profile-image {
        width: 100px;
        height: 100px;
        margin: 2px;
        /* margin-top: 2px; */
    }

    /* .profile-name {
        font-size: 1.05rem;
    } */

    .about-section {
        padding: 0 10px 10px 10px;
    }

    .about-header h1 {
        font-size: 1.2rem;
    }

    .tab-btn {
        padding: 4px 4px;
        font-size: 0.6rem;
    }

    .section-title {
        font-size: 1rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1e3a5f;
    border-radius: 4px;
}

/* Skills/Tags section */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.skill-tag {
    background: #1e3a5f;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Timeline styling for employment/education */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #1e3a5f;
}

.timeline-item {
    position: relative;
    padding-bottom: 25px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #1e3a5f;
    border-radius: 50%;
    border: 3px solid white;
}

.timeline-item h3 {
    color: #1e3a5f;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-item h4 {
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.timeline-item .period {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.timeline-item p {
    color: #555;
    line-height: 1.6;
}

/* Two-Column Hero Layout for Entrepreneurship */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    /* background: white;
    border-radius: 20px; */
    /* padding: 30px; */
    /* box-shadow: 0 10px 40px rgba(30, 58, 95, 0.12); */
}

/* Left Column: Company Information */
.hero-left {
    padding-right: 20px;
    text-align: center;
    margin-top: 0;
    padding-top: 0;
}

.role-label {
    font-size: 0.9rem;
    color: #0f52ba;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.hero-company-name {
    font-size: 2rem;
    color: #1e3a5f;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 5px;
}

.hero-company-subtitle {
    font-size: 1.8rem;
    color: #0f52ba;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-period {
    font-size: 1rem;
    color: #888;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #1e3a5f, #0f52ba);
    border-radius: 2px;
    margin-bottom: 2px;
}

.hero-tagline {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    font-weight: 500;
}
.hero-services{
        font-size: 0.8rem;
        font-weight: 600;
        color: #0f52ba;
        text-align: center;
    }

/* Hero Logo Section */
.hero-logos {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin: 0px 0;
        /* margin-top: -3%;*/
} 

.hero-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-logo:hover {
    opacity: 1;
}

/* Right Column: Story & Statistics */

.hero-right {
    padding-left: 20px;
    border-left: 2px solid #e8ecf1;
}

.hero-quote {
    font-size: 1rem;
    color: #0f52ba;
    font-style: italic;
    font-weight: 600;
    line-height: 1.8;
    margin: 0 0 10px 0;
    padding: 0px 0 20px 0;
    border-left: 4px solid #0f52ba;
    padding-left: 20px;
}

.hero-story {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Statistics Grid */
.stats-gap-2px {
    gap: 10px !important;
}

.hero-stat {
    text-align: center;
    padding: 5px;
    background: linear-gradient(135deg, #e8f4ff 0%, #f0f8ff 100%);
    border-radius: 12px;
    border-top: 3px solid #1e3a5f;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0px;
}

.stat-title {
    display: block;
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}
/* Education Story Section */

.education-story{
    max-width: 850px;
    line-height: 1.9;
    font-size: 16px;
    color: #444;
}

/* Paragraph spacing */
.education-story p{
    margin-bottom: 20px;
}

/* Highlight lines */
.education-story .highlight{
    font-weight: 600;
    color: #1f3c88;
    font-size: 18px;
}

/* Mobile Responsive */
@media (max-width: 768px){

    .education-story{
        max-width: 100%;
        font-size: 15px;
        line-height: 1.8;
    }

    .education-story p{
        margin-bottom: 16px;
    }

    .education-story .highlight{
        font-size: 16px;
    }

}
.education-list{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

.education-item{
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.education-item h3{
    font-size:1rem;
    color:#1e3a5f;
    margin-bottom:5px;
}
.sub-section-title{
    font-size:1.2rem;
    color:#1e3a5f;
    margin-top:40px;
    margin-bottom:20px;
}

.degree{
    font-size:0.9rem;
    color:#555;
}

.edu-period{
    font-size:0.85rem;
    color:#888;
    margin-top:5px;
}
/* Small phones */
@media (max-width: 480px){

    .education-story{
        font-size: 14px;
        line-height: 1.7;
    }

    .education-story .highlight{
        font-size: 15px;
    }

}
/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 5px;
    }

    .hero-left {
        padding-right: 0;
    }

    .hero-right {
        padding-left: 0;
        border-left: none;
    }

    .hero-company-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-layout {
        padding: 5px;
        gap: 20px;
    }

    .hero-company-name {
        font-size: 1.3rem;
    }

    .hero-company-subtitle {
        font-size: 1.3rem;
    }

    .hero-quote {
        font-size: 1rem;
    }

    .hero-period,.hero-divider{
        margin-bottom: 0px;
    }
}

.entrepreneur-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid #1e3a5f;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.entrepreneur-item:hover {
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.15);
    transform: translateY(-2px);
}

.entrepreneur-item::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 25px;
    height: 25px;
    background: #1e3a5f;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px #1e3a5f;
}

.entrepreneur-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8ecf1;
}

.entrepreneur-header h3 {
    font-size: 1.3rem;
    color: #1e3a5f;
    margin-bottom: 5px;
    font-weight: 700;
}

.entrepreneur-header h4 {
    font-size: 1rem;
    color: #0f52ba;
    margin-bottom: 8px;
    font-weight: 600;
}

.entrepreneur-header .period {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.entrepreneur-content {
    color: #333;
}

.entrepreneur-content p {
    line-height: 1.8;
    margin-bottom: 12px;
    color: #555;
}

.entrepreneur-content .highlight-quote {
    background: linear-gradient(135deg, #e8f4ff 0%, #f0f8ff 100%);
    border-left: 4px solid #0f52ba;
    padding: 15px 20px;
    border-radius: 8px;
    font-style: italic;
    color: #0f52ba;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
}

.entrepreneur-content .highlight-quote::before {
    content: '"';
    font-size: 2.5rem;
    color: #0f52ba;
    opacity: 0.2;
    position: absolute;
    left: 5px;
    top: -10px;
}

.entrepreneur-content .achievement {
    background: linear-gradient(135deg, #fff8e7 0%, #fffbf0 100%);
    border-left: 4px solid #ff9800;
    padding: 18px 20px;
    border-radius: 8px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 15px;
}

.entrepreneur-content .achievement strong {
    color: #ff6f00;
    font-weight: 700;
}

/* Responsive adjustments for entrepreneur timeline */
@media (max-width: 768px) {
    .entrepreneur-item {
        margin-left: 0;
        padding: 20px;
    }

    .entrepreneur-item::before {
        left: -10px;
        width: 20px;
        height: 20px;
    }

    .entrepreneur-header h3 {
        font-size: 1.1rem;
    }

    .entrepreneur-header h4 {
        font-size: 0.95rem;
    }
}
