/* ================= HERO ================= */
.about-hero {
    padding: 120px 0;
    background: #d5e7f9;

}

/* CONTENT */
.about-hero-content {
    max-width: 550px;
}

/* BREADCRUMB */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb span {
    color: #64748b;
}

/* HEADING */
.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.about-hero h1 span {
    background:#2563eb;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.about-hero p {
    color: #475569;
    margin: 20px 0 30px;
    font-size: 17px;
    line-height: 1.7;
}

/* BUTTON GROUP */
.hero-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* BUTTON */
.hero-btn {
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* PRIMARY */
.hero-btn.primary {
    background:#2563eb;
    color: #fff;
    box-shadow: 0 10px 20px rgba(37,99,235,0.2);
}

/* SECONDARY */
.hero-btn.secondary {
    border: 2px solid #2563eb;
    color: #2563eb;
}

/* HOVER */
.hero-btn:hover {
    transform: translateY(-3px);
}

/* IMAGE */
.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .about-hero {
        padding: 80px 0;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .hero-image {
        margin-top: 40px;
    }
}
/* ================= WHO I AM ================= */

.who-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;

    

}

/* SOFT GRADIENT GLOW */
.who-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;

    background: radial-gradient(circle, rgba(20, 184, 166, 0.15), transparent 60%);
    filter: blur(100px);
}

/* IMAGE */
.who-image {
    position: relative;
    text-align: center;
}

.who-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 2;

   

}

/* FLOAT CARD */
.who-card {
    position: absolute;
    bottom: 20px;
    left: 20px;

    background: #fff;
    padding: 15px 20px;
    border-radius: 14px;
    margin-bottom: 25px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 3;
}

.who-card h4 {
    font-size: 16px;
    margin: 0;
    color: #0f172a;
}

.who-card p {
    font-size: 13px;
    margin: 0;
    color: #64748b;
}

/* CONTENT */
.who-content {
    padding-left: 30px;
}

/* BADGE */
.section-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* HEADING */
.who-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

/* HIGHLIGHT COLORS */
.highlight-blue {
    color: #2563eb;
}

.highlight-green {
    color: #14B8A6;
}

/* TEXT */
.who-content p {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
}

/* FEATURES */
.who-features {
    margin-top: 30px;
}

.who-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

/* ICON BOX */
.who-item i {
    font-size: 18px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    width: 40px;
    height: 40px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.who-item h5 {
    margin: 0;
    font-size: 16px;
    color: #0f172a;
}

.who-item p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

/* BUTTON */
.who-btn {
    display: inline-block;
    margin-top: 20px;

    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;

    padding: 12px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
    
}

.who-btn:hover {
    transform: translateY(-3px);
   
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .who-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .who-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .who-content h2 {
        font-size: 24px;
    }
}

/* OVERLAY (LIGHT EFFECT FOR READABILITY) */
.who-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(248, 250, 252, 0.85);
    z-index: 0;
}

/* CONTENT ABOVE BG */
.who-section .container {
    position: relative;
    z-index: 2;
}

/* IMAGE */
.who-image {
    position: relative;
}

.who-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* FLOAT CARD */
.who-card {
    position: absolute;
    bottom: -20px;
    left: 20px;

    background: #fff;
    padding: 18px;
    border-radius: 12px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.who-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #2563eb;
}

.who-card p {
    font-size: 13px;
    color: #6B7280;
}

/* CONTENT */
.who-content {
    padding-left: 40px;
}

/* BADGE */
.section-badge {
    background: rgba(20, 184, 166, 0.1);
    color: #14B8A6;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

/* HEADING */
.who-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1F2937;
    margin: 15px 0;
}

/* TEXT */
.who-content p {
    color: #6B7280;
    margin-bottom: 15px;
}

/* FEATURES */
.who-features {
    margin-top: 20px;
}

.who-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.who-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #14B8A6, #0f766e);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    font-size: 18px;
}

.who-item h5 {
    margin: 0;
    font-size: 16px;
    color: #1F2937;
}

.who-item p {
    margin: 0;
    font-size: 14px;
}

/* BUTTON */
.who-btn {
    display: inline-block;
    margin-top: 15px;

    background: #2563eb;
    color: #fff;

    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;

    transition: 0.3s;
}

.who-btn:hover {
    transform: translateY(-3px) !important;
    
}

/* ================= ANIMATIONS ================= */

/* FADE UP */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FLOAT IMAGE */
@keyframes floatImg {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* IMAGE */
.who-image img {
    animation: fadeUp 0.8s ease forwards, floatImg 5s ease-in-out infinite;
}

/* FLOAT CARD */
.who-card {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* RIGHT CONTENT */
.section-badge {
    animation: fadeUp 0.6s ease forwards;
}

.who-content h2 {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.who-content p {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* FEATURES STAGGER */
.who-item {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.who-item:nth-child(1) {
    animation-delay: 0.5s;
}

.who-item:nth-child(2) {
    animation-delay: 0.7s;
}

.who-item:nth-child(3) {
    animation-delay: 0.9s;
}

/* BUTTON */
.who-btn {
    animation: fadeUp 1.1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {

    .who-content {
        padding-left: 0;
        margin-top: 50px;
        text-align: center;
    }

    .who-item {
        justify-content: center;
    }

    .who-card {
        left: 50%;
        transform: translateX(-50%);
    }

    .who-content h2 {
        font-size: 28px;
    }
}

/* ================= JOURNEY SECTION ================= */
.journey-section {
    padding: 100px 0;
    background: #f9fafb;
    position: relative;
    overflow: hidden;
}

/* DOT BACKGROUND (LIKE IMAGE) */
.journey-section::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background-image: radial-gradient(#14B8A6 1px, transparent 1px) !important;
    background-size: 22px 22px !important;
    opacity: 0.12 !important;
}

/* HEADER */
.journey-header {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* BADGE */
.journey-badge {
    display: inline-block;
    background: rgba(20, 184, 166, 0.1);
    color: #14B8A6;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* TITLE */
.journey-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

/* TEXT */
.journey-header p {
    color: #6B7280;
    font-size: 16px;
}

/* CARD */
.journey-card {
    background: #eef2f7;
    padding: 30px;
    border-radius: 18px;

    transition: 0.3s ease;
    height: 100%;

    
}

/* ICON */
.journey-card .icon {
    width: 55px;
    height: 55px;

    background: linear-gradient(135deg, #2563eb, #1d5adc);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    font-size: 20px;
    margin-bottom: 15px;
}

/* TITLE */
.journey-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

/* TEXT */
.journey-card p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* HOVER EFFECT */
.journey-card:hover {
    transform: translateY(-8px);
    
}

/* ================= JOURNEY ANIMATION ================= */

/* FADE UP */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HEADER */
.journey-badge {
    animation: fadeUp 0.6s ease forwards;
}

.journey-header h2 {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.journey-header p {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* CARDS */
.journey-card {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

/* STAGGER EFFECT */
.col-lg-3:nth-child(1) .journey-card {
    animation-delay: 0.2s;
}

.col-lg-3:nth-child(2) .journey-card {
    animation-delay: 0.4s;
}

.col-lg-3:nth-child(3) .journey-card {
    animation-delay: 0.6s;
}

.col-lg-3:nth-child(4) .journey-card {
    animation-delay: 0.8s;
}

/* IMPORTANT */
.journey-badge,
.journey-header h2,
.journey-header p,
.journey-card {
    animation-fill-mode: forwards;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .journey-header h2 {
        font-size: 30px;
    }

    .journey-section {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .journey-header h2 {
        font-size: 24px;
    }

    .journey-header p {
        font-size: 14px;
    }
}

/* ================= APPROACH SECTION ================= */
.approach-section {
    padding: 100px 0;
    background: #f8fafc; /* light background */
}

/* HEADER */
.approach-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

/* BADGE */
.approach-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* TITLE */
.approach-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

/* TEXT */
.approach-header p {
    color: #64748b;
    font-size: 16px;
}

/* CARD */
.approach-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    height: 100%;

    border: 1px solid #e2e8f0;

    transition: all 0.3s ease;
}

/* ICON */
.approach-card .icon {
    width: 55px;
    height: 55px;

    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    font-size: 20px;
    margin-bottom: 20px;

    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

/* TITLE */
.approach-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

/* TEXT */
.approach-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* HOVER */
.approach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #2563eb;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .approach-header h2 {
        font-size: 28px;
    }
}

/* ================= WHY SECTION ================= */
.why-section {
    padding: 80px 0;
    background: #ffffff;
}

/* HEADING */
.why-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 50px;
}

/* CARD */
.why-card {
    text-align: center;
    padding: 20px;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 20px;
}

/* ICON COLORS */
.icon.green {
    background: #e6f9f3;
    color: #14B8A6;
}

.icon.blue {
    background: #e0ecff;
    color: #2563eb;
}

.icon.purple {
    background: #f3e8ff;
    color: #9333ea;
}

.icon.orange {
    background: #fff4e6;
    color: #f97316;
}

/* TITLE */
.why-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

/* TEXT */
.why-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .why-heading h2 {
        font-size: 26px;
    }

    .why-card {
        margin-bottom: 30px;
    }
}
/* ================= WHAT YOU CAN EXPECT ================= */

.expect-section {
    padding: 80px 0;
    background: #f8fafc; /* light background */
}

/* HEADING */
.expect-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 50px;
}

/* CARD STYLE */
.expect-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 14px;

    border: 1px solid #e2e8f0;
    text-align: left;

    transition: all 0.3s ease;
    height: 100%;
}

/* HOVER EFFECT */
.expect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

/* ICON BASE */
.expect-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    font-size: 20px;

    margin-bottom: 15px;
}

/* ICON COLORS */
.expect-icon.green {
    background: #e6f9f3;
    color: #14B8A6;
}

.expect-icon.blue {
    background: #e0ecff;
    color: #2563eb;
}

.expect-icon.orange {
    background: #fff4e6;
    color: #f97316;
}

.expect-icon.purple {
    background: #f3e8ff;
    color: #9333ea;
}

/* TITLE */
.expect-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

/* DESCRIPTION */
.expect-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .expect-heading h2 {
        font-size: 26px;
    }

    .expect-card {
        margin-bottom: 25px;
    }
}