body {
    /* font-family: "Segoe UI", sans-serif; */
    background: #f8f9fa;
}

/* ================= HOME PAGE ================= */

/* Services section */
.service-card {
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #eef2f7;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
    padding: 0px 0px 10px 0px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-img-top-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.card-img-top-wrapper img.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.card-img-top-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.08);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-img-top-wrapper:hover img {
    transform: scale(1.05);
}

.card-img-top-wrapper:hover .overlay {
    opacity: 1;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 17px;
}

.card-text {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.9;
    margin-top: 8px;
}

@media(max-width:768px) {
    .card-img-top-wrapper img {
        height: 180px;
    }

    .card-body {
        padding: 12px;
    }
}


/* Commitment Section*/
.service-icon-card {
    background: #fff;
    border-radius: 5px;
    padding: 20px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f7;
    transition: all 0.35s ease;
    height: 100%;
}

.service-icon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #ffc107;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff3cd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-icon i {
    color: #ffc107;
    font-size: 24px;
    transition: color 0.3s ease;
}

.service-icon-card:hover .service-icon {
    background: #ffc107;
}

.service-icon-card:hover .service-icon i {
    color: #fff;
}

.service-title {
    font-weight: 600;
    font-size: 17px;
}

.service-desc {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.9;
    margin-top: 8px;
}

.service-title a:hover {
    color: #ffc107;
}

@media (max-width: 768px) {
    .service-icon-card {
        padding: 20px 15px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }
}


/* ABOUT SECTION */

.fab-about-section {
    background: #f8fafc;
    padding: 20px 0;
    overflow: hidden;
}

.fab-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 520px;
}


/* ABOUT FEATURES SECTION*/

.fab-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.fab-feature {
    display: flex;
    align-items: center;
}

.fab-feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #f4b400;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fab-feature p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.fab-collage {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 420px;
    margin-left: auto;
    margin-bottom: 40px;
}

.fab-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.fab-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fab-card1 {
    width: 55%;
    height: 55%;
    top: 0;
    left: 0;
    z-index: 3;
}

.fab-card2 {
    width: 50%;
    height: 50%;
    top: 10%;
    right: 0;
    z-index: 2;
}

.fab-card3 {
    width: 50%;
    height: 50%;
    bottom: 0;
    left: 20%;
    z-index: 1;
}

.fab-card4 {
    width: 35%;
    height: 35%;
    bottom: 10%;
    right: 10%;
    z-index: 4;
}

@media (max-width:991px) {
    .fab-collage {
        height: 360px;
    }
}

@media (max-width:767px) {
    .fab-collage {
        display: none;
    }

    .fab-about-section {
        padding: 60px 20px;
    }
}


/* Partner SECTION */

.fab-partners {
    padding: 70px 0;
    background: #ffffff;
}

.fab-partner-header {
    text-align: center;
    margin-bottom: 45px;
}

.fab-partner-title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fab-partner-subtitle {
    color: #777;
    font-size: 15px;
}

.fab-partner-logos {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    align-items: center;
    gap: 65px;
}

.fab-logo {
    position: relative;
    transition: .3s;
}

.fab-logo img {
    max-width: 110px;
    height: auto;

    filter: grayscale(100%);
    opacity: .65;

    transition: all .4s ease;
}

.fab-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width:992px) {
    .fab-partner-logos {
        grid-template-columns: repeat(4, auto);
        gap: 30px;
    }
}

@media (max-width:576px) {
    .fab-logo img {
        max-width: 90px;
    }

    .fab-partner-logos {
        grid-template-columns: repeat(2, auto);
        gap: 30px;
    }
}

/* CTA SECTION */

.cta-modern-unique {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    position: relative;
    overflow: hidden;
}

/* SOFT GLOW BACKGROUND */

.cta-modern-unique::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #ffc107;
    filter: blur(120px);
    opacity: .15;
    top: -120px;
    left: -100px;
}

.cta-modern-unique::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #ffc107;
    filter: blur(120px);
    opacity: .15;
    bottom: -120px;
    right: -100px;
}

.cta-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-title span {
    color: #ffc107;
    position: relative;
}

/* underline animation */

.cta-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: #ffc107;
    border-radius: 2px;
}

.cta-desc {
    max-width: 600px;
    margin: auto;
    font-size: 13px;
    color: #666;
    margin-bottom: 30px;
}

.cta-glow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffc107;
    color: #fff;
    padding: 6px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    transition: .35s;
}

.tr-apply-btn {
    /*display: inline-flex;*/
    align-items: center;
    gap: 8px;
    background: #ffc107;
    color: #fff;
    padding: 12px 18px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    transition: .35s;
    /* cursor */
}

.cta-glow-btn:hover {
    background: #111;
    color: #fff;
    /* transform: translateY(-3px) scale(1.03); */
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

@media (max-width:992px) {
    .cta-title {
        font-size: 32px;
    }
}

@media (max-width:576px) {
    .cta-modern-unique {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-desc {
        font-size: 14px;
    }
}



/* ================= TRAINING PAGE ================= */

.hero-section {
    background: linear-gradient(180deg, #ffffff, #f5f7fa);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

/* SOFT BACKGROUND SHAPES */

/*.hero-section::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 500px;*/
/*    height: 500px;*/
/*    background: #ffc1071a;*/
/*    border-radius: 50%;*/
/*    top: -120px;*/
/*    right: -120px;*/
/*    filter: blur(80px);*/
/*}*/

/*.hero-section::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 400px;*/
/*    height: 400px;*/
/*    background: #0d6efd14;*/
/*    border-radius: 50%;*/
/*    bottom: -120px;*/
/*    left: -120px;*/
/*    filter: blur(90px);*/
/*}*/

/* DESCRIPTION */

.hero-desc {
    margin-top: 20px;
    font-size: 17px;
    color: #6c757d;
    max-width: 520px;
}

/* BUTTON */

.hero-buttons {
    margin-top: 25px;
}

.hero-btn {
    padding: 12px 26px;
    font-weight: 600;
    border-radius: 6px;
}

/* IMAGE */

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    border-radius: 5px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.hero-img:hover {
    transform: scale(1.04);
}

/* STATS */

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item h4 {
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Tablet */

@media(max-width:991px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
}

/* RESPONSIVE */

@media(max-width:991px) {

    .hero-title {
        font-size: 36px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-stats {
        justify-content: center;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

}

.about-program {
    background: #f8fafc;
}

/* FEATURE BOX */

.about-feature {
    background: #fff;
    border: 1px solid #eef2f7;
    padding: 25px;
    border-radius: 5px;
    text-align: center;
    transition: .3s;
    height: 100%;
    border-left: 3px solid #ffc107;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
    transform: translateY(-6px);
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); */
    /* border-color: #ffc107; */
}

/* ICON */

.about-feature i {
    font-size: 26px;
    color: #ffc107;
    margin-bottom: 10px;
}

/* TITLE */

.about-feature h6 {
    font-weight: 600;
    margin: 0;
}

/* TEXT */

.section-desc {
    color: #6c757d;
    line-height: 1.7;
}

/* LIST */

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #6c757d;
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffc107;
    font-weight: 700;
}


/* SECTION */

.branches-section {
    background: #f8fafc;
}

/* TAG */

.section-tag {
    background: #ffc107;
    color: #000;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

/* TITLE */

.section-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.section-sub {
    color: #6c757d;
    max-width: 650px;
    margin: auto;
    text-transform: uppercase;
}

/* CARD */

.branch-card {
    background: #fff;
    padding: 30px 22px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
    border: 1px solid #eef2f7;

}

/* HOVER */

.branch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #ffc107;
}

.branch-icon {
    width: 55px;
    height: 55px;
    margin: auto;
    margin-bottom: 15px;
    background: #fff3cd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branch-icon i {
    color: #ffc107;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branch-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.branch-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .section-title {
        font-size: 28px;
    }

    .branch-card {
        padding: 30px 20px;
    }

}

/* Feauter */

/* TRAINING SECTION */

.training-section {
    background: #f8fafc;
}

/* FEATURE CARD */

.feature-card {
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 5px;
    border: 1px solid #eef2f7;
    height: 100%;
    transition: all .35s ease;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* HOVER EFFECT */

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #ffc107;
}

/* ICON */

.feature-icon {
    width: 55px;
    height: 55px;
    margin: auto;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #fff3cd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffc107;
}

/* TITLE */

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */

.feature-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .feature-card {
        padding: 28px 22px;
    }

}

/* Process */

/* SECTION */

.process-section {
    background: #f8fafc;
}

/* TIMELINE */

.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

/* ARROW LINE */

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom,
            rgba(255, 193, 7, 0.15),
            #ffc107,
            #ffc107,
            rgba(255, 193, 7, 0.15));
    border-radius: 20px;
}

/* ITEM */

.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 40px;
}

/* LEFT */

.timeline-item.left {
    left: 0;
    text-align: right;
}

/* RIGHT */

.timeline-item.right {
    left: 50%;
}

/* CARD */

.timeline-card {
    background: #fff;
    padding: 25px 28px;
    border-radius: 5px;
    /* border: 1px solid #eef2f7; */
    transition: .3s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.timeline-card:hover {
    transform: translateY(-6px);

}

/* STEP CIRCLE */

.step-circle {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 35px;
    width: 55px;
    height: 55px;
    background: #ffc107;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* TEXT */

.timeline-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* ARROW POINTER */

.timeline-item.left .timeline-card::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 30px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.timeline-item.right .timeline-card::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 30px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}

/* MOBILE */

@media(max-width:768px) {

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left {
        text-align: left;
    }

    .step-circle {
        left: 20px;
    }

    .timeline-item.left .timeline-card::after,
    .timeline-item.right .timeline-card::after {
        left: -10px;
        border-color: transparent #fff transparent transparent;
    }

}


/* ELIGIBILITY SECTION */

.eligibility-section {
    background: #f8fafc;
}

.eligibility-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 5px;
    border: 1px solid #eef2f7;
    text-align: center;
    transition: all .35s ease;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.eligibility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #ffc107;
}

.eligibility-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #fff3cd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffc107;

}

.eligibility-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.eligibility-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

@media(max-width:768px) {

    .eligibility-card {
        padding: 30px 25px;
    }

}


/* CTA SECTION */

.internship-cta {
    /*padding: 80px 0;*/
    background: linear-gradient(135deg, #fffdf6, #f8fafc);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    width: 100%;
    text-align: center;
}

/* SOFT GLOW BACKGROUND */

/*.internship-cta::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 400px;*/
/*    height: 400px;*/
/*    background: #ffc107;*/
/*    filter: blur(120px);*/
/*    opacity: .15;*/
/*    top: -120px;*/
/*    left: -100px;*/
/*}*/

/*.internship-cta::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 350px;*/
/*    height: 350px;*/
/*    background: #ffc107;*/
/*    filter: blur(120px);*/
/*    opacity: .15;*/
/*    bottom: -120px;*/
/*    right: -100px;*/
/*}*/


.cta-content {
    max-width: 700px;
    margin: auto;
}

.cta-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    color: #555;
    margin-bottom: 30px;
    font-size: 16px;
}

/* CTA BUTTON */

.training-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffc107;
    color: #fff;
    padding: 8px 34px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: .35s;
    /* box-shadow: 0 15px 35px rgba(255, 193, 7, .35); */
}

.training-cta-btn:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}



.modal {
    z-index: 9999;
}

.modal-backdrop {
    z-index: 9990;
}


.modal-dialog {
    margin-top: 0px;
}

.internship-modal {
    border: none;
    border-radius: 4px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    padding: 5px;
}

/* MOBILE */
@media (max-width:768px) {
    .modal-dialog {
        margin-top: 20px;
    }
}

/* FORM */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px 16px;
}

/* FORM GROUP */

.form-group {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #444;
}

/* INPUTS */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 28px;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 3px 10px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
}

.form-group input::-webkit-input-placeholder {
    font-size: 11px;
}

.form-group input:-ms-input-placeholder {
    font-size: 11px;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}


.form-select-custom {
    color: #999;
    text-transform: uppercase;
}

.form-select-custom option[value=""] {
    color: #999;
}

.form-select-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    padding-right: 30px;
}

/* textarea height */

.form-group textarea {
    height: auto;
    min-height: 35px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ffc107;
    outline: none;
}

/* FULL WIDTH */

.form-group.full {
    grid-column: 1 / -1;
}

.submit-btn {
    margin-top: 16px;
    width: 100%;
    background: #ffc107;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    color: #fff;
    transition: .3s;
}

.submit-btn:hover {
    background: #000;
    color: #fff;

}

.loader {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Optional: disabled button style */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .cta-content h2 {
        font-size: 26px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    /* 
    .modal-dialog {
        margin: 15px;
    } */

}




/* ================= ABOUT US PAGE ================= */
/* 
.fab-aboutuspage {
    padding: 50px 0;
    background: linear-gradient(135deg, #fffdf6, #f8fafc);
} */

.fab-aboutuspage {
    background: linear-gradient(180deg, #ffffff, #f5f7fa);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

/* SOFT BACKGROUND SHAPES */

.fab-aboutuspage::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #ffc1071a;
    border-radius: 50%;
    top: -120px;
    right: -120px;
    filter: blur(80px);
}

.fab-aboutuspage::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #0d6efd14;
    border-radius: 50%;
    bottom: -120px;
    left: -120px;
    filter: blur(90px);
}


.fab-aboutuspage-content {
    max-width: 520px;
}

.fab-aboutuspage-tag {
    background: #ffc107;
    color: #fff;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.fab-aboutuspage-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 15px;
    color: #111;
    text-transform: uppercase;
}

.fab-aboutuspage-title span {
    color: #ffc107;
}

.fab-aboutuspage-desc {
    color: #666;
    margin-bottom: 25px;
}

.fab-aboutuspage-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fab-aboutuspage-item {
    display: flex;
    gap: 12px;
    font-size: 14px;
}

.fab-aboutuspage-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #f4b400;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fab-aboutuspage-image-stack {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.fab-aboutuspage-img-main {
    width: 80%;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.fab-aboutuspage-img-float {
    position: absolute;
    width: 200px;
    height: 120px;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.fab-aboutuspage-img-top {
    top: -30px;
    left: -20px;
}

.fab-aboutuspage-img-bottom {
    bottom: -60px;
    right: -10px;
}

.fab-aboutuspage-image-stack:hover .fab-aboutuspage-img-float {
    transform: translateY(-6px);
    transition: 0.4s;
}

@media (max-width: 991px) {

    .fab-aboutuspage-title {
        font-size: 30px;
    }

    .fab-aboutuspage-img-float {
        width: 180px;
    }

}

@media (max-width: 767px) {
    .fab-aboutuspage-title {
        font-size: 30px;
    }

    .fab-aboutuspage-images-wrap {
        display: none;
    }

    .fab-aboutuspage-content {
        text-align: left;
        margin: auto;
    }

    .fab-aboutuspage-item {
        justify-content: left;
    }

    .fab-aboutuspage {
        padding: 40px 10px;
    }

}

/* about page Overview section */
.fab-aboutuspage-overview {
    padding: 20px 0px 20px 0;
    background: #f8fafc;

}

.fab-aboutuspage-box {
    /* background: #ffffff; */
    padding: 20px 0px 20px 0;
    border-radius: 5px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06); */
    height: 100%;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.fab-aboutuspage-box {
    justify-content: space-between;
}

.fab-heading-wrap {
    display: inline-block;
}

.fab-aboutuspage-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    margin-top: 15px;
}

.fab-aboutuspage-tab {
    background: #f1f3f7;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}

/* HOVER */
.fab-aboutuspage-tab:hover {
    background: #e9ecef;
}

/* ACTIVE */
.fab-aboutuspage-tab.active {
    background: #ffc107;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* TAB CONTENT */
.fab-aboutuspage-tabcontent {
    display: none;
    animation: fabFade 0.4s ease;
}

.fab-aboutuspage-tabcontent.active {
    display: block;
}

/* LIST */
.fab-aboutuspage-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.fab-aboutuspage-list li {
    margin-bottom: 12px;
    padding-left: 35px;
    /* space only for icon */
    position: relative;
}

.fab-aboutuspage-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    background: #ffc107;
    color: #fff;
    width: 18px;
    height: 18px;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ACCORDION */
.fab-aboutuspage-acc-item {
    /* border-bottom: 1px solid #eee; */
    padding: 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

/* Title */
.fab-aboutuspage-acc-title {
    font-weight: 600;
    position: relative;
    padding-left: 30px;

    /* space for icon */
}

/* ICON (LEFT SIDE) */
.fab-aboutuspage-acc-title::before {
    content: "+";
    position: absolute;
    left: 0px;
    top: 2px;
    width: 22px;
    height: 22px;
    background: #f1f3f7;
    color: #333;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* ACTIVE ICON */
.fab-aboutuspage-acc-item.active .fab-aboutuspage-acc-title::before {
    content: "−";
    background: #ffc107;
    color: #fff;
}

/* Hover effect */
.fab-aboutuspage-acc-item:hover {
    background: #f9fafb;
}

/* Active item background */
.fab-aboutuspage-acc-item.active {
    background: #fff8e1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.fab-aboutuspage-acc-content {
    display: none;
    margin-top: 10px;
    color: #666;
}

.fab-aboutuspage-acc-item.active .fab-aboutuspage-acc-content {
    display: block;
}

/* RESPONSIVE */
/* Tablet */
@media (max-width: 991px) {
    .fab-aboutuspage-heading {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .fab-aboutuspage-box {
        padding: 10px 0px 10px 11px;
    }

    .fab-aboutuspage-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .fab-aboutuspage-tab {
        font-size: 12px;
        padding: 4px 10px;
    }

    .fab-aboutuspage-heading {
        font-size: 14px;
    }
}


/* About Page Why Choose Us */

/* SECTION */
.fab-whyus {
    background: #f8fafc;
}

/* FEATURE CARD */
.fab-feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
    text-align: left;
    border-left: 3px solid #ffc107;
}

.fab-icon {
    width: 50px;
    height: 50px;
    background: #fff8e1;
    color: #ffc107;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}

/* HIGHLIGHT CARD */
.fab-highlight-card {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #fff;
    padding: 35px;
    border-radius: 5px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* LIST */
.fab-highlight-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.fab-highlight-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.fab-highlight-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
}

/* BUTTON */
.fab-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 10px;
    margin-top: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.fab-btn:hover {
    background: #000;
    color: #fff;
}



/* RESPONSIVE */

/* Mobile */
@media (max-width: 767px) {

    .fab-feature-card {
        text-align: center;
    }

    .fab-icon {
        margin: 0 auto 15px;
    }

    .fab-highlight-card {
        text-align: left;
    }

}

/* About us Page team section  */

.fab-team {
    /* background: linear-gradient(135deg, #fffdf6, #f8fafc); */
    background: #f8fafc;
}

/* CARD */
.fab-team-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* spreads content evenly */
    height: 100%;
}

.fab-team-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); */
}

/* IMAGE */
.fab-team-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #fff;
}


/* FLOATING SOCIAL */
.fab-team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
    opacity: 1;
    transform: translateY(10px);
    transition: 0.3s;
}

.fab-team-card:hover .fab-team-social {
    /* opacity: 1; */
    transform: translateY(0);
}

/* ICON */
.fab-team-social a {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.fab-team-social a:hover {
    background: #ffc107;
    color: #fff;
}

/* INFO */
.fab-team-info h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.fab-team-info span {
    font-size: 14px;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .fab-team-img img {
        width: 100px;
        height: 100px;
    }
}


/* About us page counter  */

.fab-network {
    /* background: linear-gradient(135deg, #fffdf6, #f8fafc); */
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.fab-network-wrap {
    position: relative;
    height: 400px;
}

.fab-network-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.fab-node {
    position: absolute;
    text-align: center;
}

.fab-node-inner {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.fab-node-inner i {
    color: #ffc107;
    margin-bottom: 5px;
    font-size: 28px;
}

.fab-node-inner h3 {
    font-size: 22px;
    margin: 0;
}

.fab-node-inner p {
    font-size: 12px;
    margin: 0;
    color: #777;
}

.fab-node-inner:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* NODE POSITIONS */
.node-1 {
    top: 20%;
    left: 15%;
}

.node-2 {
    top: 60%;
    left: 40%;
}

.node-3 {
    top: 25%;
    right: 5%;
}



/* Service Page  */

.modern-wave-services {
    background: #f5f6fa;
}

/* Zig-zag cards */
.zig-card:nth-child(even) {
    margin-top: 60px;
}

.service-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.5s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 21, 21, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 2rem;
}

.service-card:hover .icon-overlay {
    opacity: 1;
}

.service-content {
    padding: 20px;
}

.service-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.service-content p {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.9;
    margin-top: 8px;
}

/* Optional: reduce the offset for small screens */
@media (max-width: 576px) {
    .zig-card:nth-child(even) {
        margin-top: 0px;
    }

    .zig-card {
        margin-top: 0px;
        margin-bottom: 10px;
    }
}



/* ================= CONTACT PAGE ================= */

.contact-modern {
    background: #f6f8fb;
}

/* COMMON CARD */
.contact-card {
    background: #fff;
    padding: 28px;
    border-radius: 5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* ================= FORM ================= */
.input-modern {
    position: relative;
}

/* INPUT + TEXTAREA */
.input-modern input,
.input-modern textarea {
    width: 100%;
    padding: 14px;
    /* border: 1px solid #e5e7eb; */
    border-radius: 6px;
    outline: none;
    background: transparent;
}

/* LABEL */
.input-modern label {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 14px;
    color: #6b7280;
    transition: 0.3s;
    pointer-events: none;
    background: #fff;
}

/* FLOAT EFFECT */
.input-modern input:focus+label,
.input-modern input:not(:placeholder-shown)+label,
.input-modern textarea:focus+label,
.input-modern textarea:not(:placeholder-shown)+label {
    top: -8px;
    left: 10px;
    font-size: 12px;
    padding: 0 4px;
    color: #000;
}

.contactus-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffc107;
    color: #fff;
    padding: 15px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    transition: .35s;
    /* box-shadow: 0 15px 35px rgba(255, 193, 7, .35); */
}

/* ================= OFFICE CARDS ================= */

.office-card.compact {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    border-left: 3px solid #ffc107;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: 0.2s;
}

.office-card.branch {
    border-left-color: #ffc107;
}

.office-card.compact:hover {
    transform: translateY(-2px);
}

/* TOP */
.office-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.office-top h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

/* BADGE */
.badge {
    font-size: 10px;
    padding: 5px 8px;
    border-radius: 20px;
    background: #ffc107;
    color: #fff;
}

.badge.secondary {
    background: #ffc107;
}

/* INFO */
.info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.info-row i {
    font-size: 12px;
    color: #ffc107;
}

.info-row p {
    margin: 0;
    font-size: 13px;
    color: #374151;
}

/* ================= MAP ================= */

.map-box iframe {
    width: 100%;
    height: 288px;
    border-radius: 5px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    border: none;
}

/* ================= TRUST STRIP ================= */

/* WRAPPER */
.trust-modern {
    margin-top: 40px;
}

/* ITEM */
.trust-item {
    background: #fff;
    padding: 20px 10px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
    border-left: 3px solid #ffc107;
}

/* ICON */
.icon-box {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #fff8e1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 20px;
    color: #ffc107;
}

/* TEXT */
.trust-item h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 14px;
    color: #6b7280;
}

/* HOVER */
.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .office-card.compact {
        margin-bottom: 10px;
    }
}


/* ================= FOOTER ================= */

.footer-pro {
    background: #0b1220;
    color: #cbd5e1;
}

/* CTA */
.footer-cta {
    padding: 30px 0;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cta-btn {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

.cta-btn:hover {
    background: #222;
    color: #fff;
}

/* MAIN */
.footer-main {
    padding: 40px 0;
}

/* TEXT */
.footer-desc {
    font-size: 14px;
    margin: 15px 0;
    color: #94a3b8;
}

/* TITLE */
.footer-title {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
    color: #94a3b8;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffc107;
    padding-left: 4px;
}

/* ================= CONTACT ================= */

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0px;
}

.footer-contact-list li {
    gap: 10px;
    margin-bottom: 8px;
    color: #94a3b8;
}

/* ================= SOCIAL ================= */

.footer-social {
    margin-top: 15px;
    font-size: 12px;
}

.footer-social a {
    display: inline-flex;
    width: 30px;
    height: 30px;
    background: #1e293b;
    color: #fff;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 5px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #fff;
    color: #000;
}

/* ================= BOTTOM ================= */

.footer-bottom {
    border-top: 1px solid #1e293b;
    /* padding: 10px 0 0; */
}

.footer-bottom p {
    margin: 0;
    padding: 15px;
    font-size: 13px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .footer-cta .container {
        text-align: center;
        flex-direction: column;
    }

    .cta-btn {
        margin-top: 10px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-menu {
        margin-top: 10px;
    }
}