* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* ABOUT US BANNER */
.about-banner {
    position: relative;
    height: 300px;
    background-image: url("banner.jpg"); /* change image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK OVERLAY */
.about-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

/* TEXT */
.about-banner h1 {
    position: relative;
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    z-index: 1;
}



*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body{
    background:#f5f7fb;
}

/* SECTION */
.about-section{
    padding:60px 0;
}

/* CONTAINER */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:40px;
}

/* LEFT CARD */
.about-left{
    width:30%;
}

.card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.card h3{
    margin-bottom:15px;
    color:#1e293b;
}

.card p{
    color:#555;
    margin:10px 0;
    line-height:1.6;
}

.card i{
    color:#2563eb;
    margin-right:10px;
}

.card hr{
    border:none;
    border-top:1px solid #eee;
    margin:20px 0;
}

/* RIGHT CONTENT */
.about-right{
    width:70%;
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.about-right h2{
    font-size:32px;
    margin-bottom:20px;
    color:#1e293b;
}

.about-right h2 span{
    color:#2563eb;
}

.about-right p{
    font-size:16px;
    color:#444;
    line-height:1.8;
    margin-bottom:16px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .container{
        flex-direction:column;
    }
    .about-left,
    .about-right{
        width:100%;
    }
}




*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', Arial, sans-serif;
}

body{
    background:#f8fafc;
}

/* SECTION */
.timeline-section{
    max-width:1100px;
    margin:90px auto;
    padding-left:70px;
    position:relative;
}

/* VERTICAL LINE */
.timeline-section::before{
    content:'';
    position:absolute;
    left:34px;
    top:150px;
    width:3px;
    height:calc(100% - 150px);
    background:#0d9488;
}

/* TITLE */
.main-title{
    text-align:center;
    font-size:38px;
    color:#0f172a;
    font-weight:700;
}

.main-title span{
    color:#f59e0b;
}

.subtitle{
    text-align:center;
    color:#475569;
    margin:15px 0 70px;
    font-size:16px;
}

/* ITEM */
.timeline-item{
    display:flex;
    align-items:flex-start;
    gap:25px;
    padding:32px 0;
    border-bottom:1px solid #e5e7eb;
    position:relative;
}

/* ICON */
.icon{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    flex-shrink:0;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.icon.teal{ background:#0d9488; }
.icon.gold{ background:#f59e0b; }
.icon.navy{ background:#0f172a; }

/* CONTENT CARD */
.content{
    background:#ffffff;
    padding:24px 28px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.content:hover{
    transform:translateY(-6px);
}

.content h3{
    font-size:21px;
    color:#0f172a;
    margin-bottom:8px;
}

.content p{
    color:#475569;
    line-height:1.7;
    max-width:780px;
}

/* ARROW */
.arrow{
    margin-left:auto;
    width:38px;
    height:38px;
    background:#0f172a;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    cursor:pointer;
    transition:0.3s;
}

.arrow:hover{
    background:#0d9488;
}

/* RESPONSIVE */
@media(max-width:768px){
    .timeline-section{
        padding-left:35px;
    }
    .timeline-section::before{
        left:18px;
    }
}








