
    .content-slider {
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 0;
        right: 0;
        text-align: center;
        color: #fff;
    }

    .content-slider.carousel-caption {
        left: 0;
        right: 0;
        top: 30%;
    }

    .content-slider.carousel-caption p {
        line-height: 36px;
    }

    .content-slider.carousel-caption h2 {
        margin-bottom: 50px;
        position: relative;
    }

    .content-slider.carousel-caption h2:before {
        content: "";
        width: 60px;
        height: 3px;
        background: #FFD200;
        left: 50%;
        margin-left: -30px;
        display: inline-block;
        position: absolute;
        bottom: -25px;
    }

    .content-slider p {
        font-size: 26px;
    }

    .content-slider h2 {
        font-size: 48px;
        color: #fff;
        font-weight: bold;
    }

    .content-slider .btn-slider {
        margin-top: 20px;
        display: inline-block;
        color: #fff;
        background: #ffb300;
        font-size: 16px;
        padding: 9px 28px;
        border-radius: 0;
        font-weight: 600;
    }

    .content-slider .btn-slider:hover {
        background: #fff;
        color: #ffb300;
    }
    video {
  width: 100%;
  height: auto;
}

/* =========================
   SECTION
========================= */

.gi-leadership {
    background: #f7f9fc;
    padding: 60px 0;
}

/* =========================
   HEADING
========================= */

.gi-section-head {
    max-width: 750px;
    margin: 0 auto 30px;
    text-align: center;
}

.gi-tag {
    color: #f4a100;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 8px;
}

.gi-title {
    font-size: 32px;
    color: #0a1b5a;
    font-weight: 700;
    /*margin-bottom: 10px;*/
}

.gi-subtitle {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
}

/* =========================
   GRID
========================= */

.gi-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* =========================
   CARD (UPGRADED)
========================= */

.gi-team-card {
    background: #ffffff;
    padding: 30px 22px;
    border-radius: 12px;
    text-align: center;

    border: 1px solid rgba(10, 27, 90, 0.08);

    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.gi-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* Top Highlight Line */
.gi-team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #f4a100;
    opacity: 0;
    transition: 0.3s;
}

.gi-team-card:hover::before {
    opacity: 1;
}

/* =========================
   IMAGE
========================= */

.gi-team-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;

    border: 3px solid #f4a100;
}

.gi-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   TEXT
========================= */

.gi-team-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #0a1b5a;
    margin-bottom: 6px;
}

.gi-team-card span {
    display: block;
    font-size: 14px;
    color: #f4a100;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 12px;
}

.gi-team-card p {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
    .gi-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {

    .gi-team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gi-title {
        font-size: 24px;
    }

    .gi-team-card {
        padding: 25px 18px;
    }

    .gi-team-img {
        width: 100px;
        height: 100px;
    }

    /* ✅ REMOVE text clamp */
    .gi-team-card p {
        font-size: 13px;
        line-height: 1.6;

        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
    }
}

/* =========================
   WORKING PROCESS SECTION
========================= */

/* =========================
   WORKING PROCESS SECTION
========================= */

.gi-process {
    background: linear-gradient(180deg, #f4f7fc 0%, #eef2f8 100%);
    padding: 90px 0 120px;
    position: relative;
}

/* remove heavy curve on mobile */
@media (max-width: 768px) {
    .gi-process::before {
        display: none;
    }
}

/* =========================
   WRAPPER
========================= */

.gi-process-alt {
    position: relative;
    margin-top: 60px;
}

/* CENTER LINE */
.gi-process-alt::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(244,161,0,0.2),
        #f4a100,
        rgba(244,161,0,0.2)
    );
    transform: translateX(-50%);
    z-index: 1;
}

/* =========================
   ITEMS
========================= */

.gi-process-item {
    width: 50%;
    padding: 20px 40px;
    position: relative;
    margin-bottom: 30px;
    z-index: 2;
}

/* LEFT */
.gi-process-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* RIGHT */
.gi-process-item:nth-child(even) {
    left: 50%;
}

/* =========================
   CARD
========================= */

.gi-process-content {
    background: #ffffff;
    padding: 25px 25px 25px 70px;
    border-radius: 12px;
    border: 1px solid rgba(10,27,90,0.06);
    position: relative;

    max-width: 520px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    transition: 0.3s;
}

/* alignment fix */
.gi-process-item:nth-child(odd) .gi-process-content {
    margin-left: auto;
}

.gi-process-item:nth-child(even) .gi-process-content {
    margin-right: auto;
}

.gi-process-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* =========================
   ICON
========================= */

.gi-process-icon {
    position: absolute;
    left: 20px;
    top: 25px;

    width: 42px;
    height: 42px;

    background: linear-gradient(135deg, #f4a100, #ffb733);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 16px;

    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(244,161,0,0.35);

    z-index: 3;
}

/* =========================
   TEXT
========================= */

.gi-process-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0a1b5a;
    margin-bottom: 10px;
}

.gi-process-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* =========================
   TIMELINE DOT (FIXED)
========================= */

.gi-process-item::before {
    content: "";
    position: absolute;
    top: 32px;
    width: 16px;
    height: 16px;

    background: #ffffff;
    border: 3px solid #f4a100;
    border-radius: 50%;

    box-shadow: 0 0 0 4px rgba(244,161,0,0.15);

    z-index: 3;
}

/* LEFT DOT */
.gi-process-item:nth-child(odd)::before {
    right: -8px;
}

/* RIGHT DOT */
.gi-process-item:nth-child(even)::before {
    left: -8px;
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 768px) {

    .gi-process {
        padding: 70px 0 90px;
    }

    .gi-process-alt::before {
        left: 18px;
    }

    .gi-process-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 15px;
        text-align: left !important;
        left: 0 !important;
    }

    .gi-process-item::before {
        left: 10px !important;
        right: auto;
    }

    .gi-process-content {
        padding: 20px 20px 20px 65px;
    }

    .gi-process-icon {
        left: 15px;
        top: 20px;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .gi-process-content h4 {
        font-size: 15px;
    }

    .gi-process-content p {
        font-size: 13px;
    }
}

/* =========================
   ACHIEVEMENTS SECTION
========================= */

.gi-achievements {
    background: #ffffff;
    padding: 5px 0;
}

/* HEADING */
.gi-section-heading .tag {
    color: #f4a100;
    font-weight: 600;
    font-size: 15px;
}

.gi-section-heading h2 {
    font-size: 32px;
    color: #0a1b5a;
    margin: 10px 0;
}

.gi-section-heading p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================
   ACHIEVEMENT CARDS
========================= */

.gi-achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gi-ach-card {
    background: #f7f9fc;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gi-ach-card i {
    font-size: 28px;
    color: #f4a100;
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: giFadeUp 0.6s ease forwards;
    
}

.gi-ach-card:nth-child(1) { animation-delay: 0.1s; }
.gi-ach-card:nth-child(2) { animation-delay: 0.2s; }
.gi-ach-card:nth-child(3) { animation-delay: 0.3s; }
.gi-ach-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes giFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gi-ach-card:hover i {
    transform: translateY(-8px);
    
}

.gi-ach-card h4 {
    font-size: 22px;
    color: #0a1b5a;
}

.gi-ach-card p {
    font-size: 14px;
    color: #555;
}

.gi-ach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* =========================
   FLEET BOX
========================= */

.gi-fleet-box {
    background: #f3f6fb;
    margin-top: 60px;
    padding: 40px;
    border-radius: 12px;
}

.gi-fleet-box h3 {
    color: #0a1b5a;
    margin-bottom: 10px;
}

.gi-fleet-box p {
    color: #666;
    margin-bottom: 25px;
}

/* FLEET GRID */
.gi-fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gi-fleet-item {
    background: #fff;
    padding: 15px 18px;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gi-fleet-item i {
    color: #f4a100;
    margin-right: 8px;
}

.gi-fleet-item span {
    font-weight: 600;
    color: #0a1b5a;
}

/* TOTAL */
.gi-total {
    margin-top: 20px;
    font-size: 15px;
    color: #333;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 992px) {
    .gi-achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .gi-achievement-grid {
        grid-template-columns: 1fr;
    }

    .gi-section-heading h2 {
        font-size: 24px;
    }

    .gi-fleet-grid {
        grid-template-columns: 1fr;
    }

    .gi-fleet-box {
        padding: 25px;
    }
}

/* =========================
   SECTION
========================= */
.gis-why-section {
    position: relative;
    background: #0b1d3a;
    overflow: hidden;
}

/* IMAGE */
.gis-why-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url('../img/choose.jpg') center/cover no-repeat;
}

/* =========================
   CONTENT
========================= */
.gis-why-content {
    padding: 60px 20px;
}

/* TAG */
.gis-why-tag {
    color: #f4a100;
    font-size: 15px;
    font-weight: 600;
}

/* TITLE */
.gis-why-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin: 10px 0;
}

.gis-why-title span {
    color: #f4a100;
}

/* DESCRIPTION */
.gis-why-desc {
    color: #cbd3e1;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* =========================
   HIGHLIGHTS
========================= */
.gis-why-highlights {
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
}

.gis-why-highlight {
    display: flex;
    align-items: center;
    gap: 12px;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);

    padding: 12px 15px;
    border-radius: 8px;

    transition: 0.3s;
}

.gis-why-highlight i {
    color: #f4a100;
    font-size: 16px;
}

.gis-why-highlight span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.gis-why-highlight:hover {
    background: rgba(244,161,0,0.08);
    transform: translateX(5px);
}

/* =========================
   LIST
========================= */
.gis-why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.gis-why-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.gis-why-list i {
    color: #f4a100;
    margin-top: 4px;
}

.gis-why-list strong {
    color: #fff;
    font-size: 15px;
}

.gis-why-list p {
    color: #cbd3e1;
    font-size: 13px;
    margin: 3px 0 0;
}

/* =========================
   BUTTON
========================= */
.gis-why-btn {
    display: inline-block;
    background: #f4a100;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s;
}

.gis-why-btn:hover {
    background: #d98c00;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 991px) {

    .gis-why-image {
        display: none;
    }

    .gis-why-content {
        padding: 40px 15px;
    }

    .gis-why-title {
        font-size: 24px;
    }

    .gis-why-desc {
        font-size: 13px;
    }

    .gis-why-highlight span {
        font-size: 13px;
    }

    .gis-why-list strong {
        font-size: 14px;
    }

    .gis-why-list p {
        font-size: 12px;
    }
}

/* =========================
   SECTION
========================= */

.gism-service h3{
    font-size: 20px;
    
}

.gism-service p{
    font-size: 15px;
    color: #322c2c;
    line-height: 1.7;
    
}

/* ICON WRAPPER */
.service-icon {
    width: 88px;
    height: 88px;
    background: rgba(244,161,0,0.1);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;
}

/* FONT AWESOME ICON */
.service-icon i {
    font-size: 45px;   /* perfect size */
    color: #f4a100;
    line-height: 1;
}

/* ABOUT PAGE CSS */
/* SECTION */
.gism-about-section {
    padding: 30px 0;
    background: #f4f7fb;
}

/* IMAGE */
.gism-about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* CONTENT WRAP */
.gism-about-content-wrap {
    padding-left: 30px;
}

/* TAG */
.gism-tag {
    color: #f4a100;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* HEADING */
.gism-about-content-wrap h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0b1c39;
    margin: 10px 0 20px;
}

.gism-about-content-wrap h2 span {
    color: #f4a100;
}

/* TEXT */
.gism-about-content-wrap p {
    color: #000000;
    line-height: 1.8;
    /*margin-bottom: 15px;*/
}

/* VM SECTION */
.gism-vm-section {
    margin-top: 60px;
}

/* CARDS */
.gism-vm-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
    height: 100%;
}

.gism-vm-box:hover {
    transform: translateY(-5px);
}

/* TITLE */
.gism-vm-box h4 {
    margin-bottom: 15px;
    color: #0b1c39;
}

/* LIST */
.gism-vm-box ul {
    list-style: none;
    padding: 0;
}

.gism-vm-box ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 16px;
}

.gism-vm-box ul li i {
    color: #f4a100;
    margin-right: 10px;
    margin-top: 4px;
}

/* QUOTE */
.gism-about-quote {
    margin-top: 50px;
}

.gism-about-quote p {
    font-size: 20px;
    font-weight: 600;
    color: #1d3b6d;
}

/* MOBILE */
@media (max-width: 768px) {

    .gism-about-content-wrap {
        padding-left: 0;
        margin-top: 20px;
        text-align: center;
    }

    .gism-about-content-wrap h2 {
        font-size: 26px;
    }
}

/* ===============================
   SERVICES SECTION FINAL CSS
================================ */

/* ROW CONTROL */
.gism-service-row {
    row-gap: 28px;
    /*justify-content: center;*/
}

/* REMOVE RANDOM BOOTSTRAP GAPS */
.gism-service-row > div {
    margin-bottom: 0 !important;
}


/* CARD */
.gism-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 12px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* HOVER EFFECT */
.gism-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* IMAGE */
.gism-service-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.gism-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gism-service-card:hover .gism-service-img img {
    transform: scale(1.05);
}


/* TITLE */
.gism-service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0b1c39;
    margin-bottom: 6px;
}


/* DESCRIPTION */
.gism-service-card p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 8px;
}


/* LEARN MORE BUTTON */
.gism-link {
    font-size: 15px;
    font-weight: 500;
    color: #f1971a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    transition: 0.3s ease;
}

.gism-link:hover {
    color: #0b1c39;
    gap: 10px;
}

.gism-link i {
    font-size: 12px;
}


/* MOBILE OPTIMIZATION */
@media (max-width: 767px) {
    .gism-service-img {
        height: 180px;
    }

    .gism-service-card {
        padding: 10px;
    }
}

/* ===============================
   CREWING EXPERTISE SECTION
================================ */

.gism-expertise-section {
    padding: 70px 0;
    background: #f6f8fb;
}

/* HEADING */
.gism-expertise-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0b1c39;
    margin-bottom: 10px;
}

.gism-expertise-heading p {
    max-width: 650px;
    margin: 0 auto 40px;
    color: #5f6c7b;
    font-size: 14px;
}

/* GRID */
.gism-expertise-row {
    row-gap: 30px;
}

/* CARD */
.gism-exp-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid #eef1f5;
    height: 100%;
    position: relative;
}

/* HOVER EFFECT */
.gism-exp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* DONUT CIRCLE */
.gism-exp-circle {
    width: 130px;
    height: 130px;
    margin: 0 auto 18px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    /* default background (will be overridden by JS) */
    background: conic-gradient(#1572a1 0deg, #d6eaf5 0deg);
}

/* INNER WHITE CIRCLE */
.gism-exp-circle::before {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.03);
}

/* NUMBER INSIDE */
.gism-exp-circle span {
    position: relative;
    z-index: 2;
    font-size: 26px;
    font-weight: 600;
    color: #0b1c39;
}

/* TITLE */
.gism-exp-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0b1c39;
    margin-bottom: 6px;
}

/* DESCRIPTION */
.gism-exp-card p {
    font-size: 13px;
    color: #6b7785;
    margin: 0;
    line-height: 1.5;
}

/* SUBTLE BORDER GLOW ON HOVER */
.gism-exp-card:hover {
    border-color: #dbeaf5;
}

/* MOBILE */
@media (max-width: 991px) {
    .gism-exp-circle {
        width: 120px;
        height: 120px;
    }

    .gism-exp-circle::before {
        width: 85px;
        height: 85px;
    }
}

@media (max-width: 767px) {
    .gism-expertise-section {
        padding: 50px 0;
    }

    .gism-exp-circle {
        width: 100px;
        height: 100px;
    }

    .gism-exp-circle::before {
        width: 70px;
        height: 70px;
    }

    .gism-exp-circle span {
        font-size: 20px;
    }
}

/* =========================
   VESSEL SECTION BG
========================= */

.gism-vessel-section-bg {
    padding: 80px 0;
    background: linear-gradient(
        rgba(10, 30, 50, 0.55),
        rgba(10, 30, 50, 0.35)
    ),
    url('../img/gism-vessel-bg.webp') center/cover no-repeat;
}

/* =========================
   FULL WIDTH WRAPPER
========================= */

.gism-vessel-wrapper {
    width: 100%;
    max-width: 1400px; /* control how wide you want */
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   IMAGE CARD (BIG + PREMIUM)
========================= */

.gism-vessel-card {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;

    /* soft premium frame */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);

    box-shadow: 0 25px 80px rgba(0,0,0,0.35);
    padding: 12px;
}

/* =========================
   IMAGE
========================= */

.gism-vessel-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;

    transition: transform 0.6s ease;
}

/* subtle zoom effect */
.gism-vessel-card:hover img {
    transform: scale(1.03);
}

/* =========================
   EXTRA LARGE SCREEN (FULL BLEED LOOK)
========================= */

@media (min-width: 1400px) {
    .gism-vessel-wrapper {
        max-width: 1600px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .gism-vessel-section-bg {
        padding: 50px 0;
    }

    .gism-vessel-wrapper {
        padding: 0 15px;
    }

    .gism-vessel-card {
        padding: 8px;
        border-radius: 14px;
    }

    .gism-vessel-card img {
        border-radius: 10px;
    }
}

/* =========================
   COMMITMENT SECTION
========================= */

.commitment-section {
    padding: 40px 0;
    background: #f7f9fc;
}

/* Layout */
.commitment-wrapper {
    display: flex;
    /*align-items: center;*/
    gap: 50px;
}

/* =========================
   IMAGE
========================= */

.commitment-image {
    flex: 1;
}

.commitment-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

/* =========================
   CONTENT
========================= */

.commitment-content {
    flex: 1;
}

.commitment-title {
    font-weight: 700;
    font-size: 32px;
    color: #0a1b5a;
    margin: 0 0 18px 0;
}

/* Individual points */
.commitment-item {
    margin-bottom: 25px;
}

.commitment-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0b1c39;
    margin-bottom: 8px;
}

.commitment-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
}

/* =========================
   HOVER EFFECT (SUBTLE)
========================= */

.commitment-item:hover h4 {
    color: #f1971a;
    transition: 0.3s ease;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .commitment-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .commitment-title {
        font-size: 28px;
        text-align: center;
    }

    .commitment-content {
        text-align: center;
    }
}

@media (max-width: 576px) {

    .commitment-section {
        padding: 60px 0;
    }

    .commitment-title {
        font-size: 24px;
    }

    .commitment-item h4 {
        font-size: 18px;
    }

    .commitment-item p {
        font-size: 14px;
    }
}

/* =========================
   CAREER SECTION
========================= */

.career-section {
    padding: 50px 0;
    background: #f7f9fc;
}

/* =========================
   INTRO
========================= */

.career-intro {
    max-width: 800px;
    margin-bottom: 60px;
}

.career-intro h5 {
    font-size: 16px;
    font-weight: 600;
    color: #f1971a;
    margin-bottom: 10px;
}

.career-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0a1b5a;
    margin-bottom: 20px;
}

.career-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
}

/* =========================
   GUIDANCE SECTION
========================= */

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b1c39;
    margin-bottom: 15px;
}

.career-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

/* =========================
   LIST
========================= */

.career-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.career-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* custom bullet */
.career-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #f1971a;
    font-size: 14px;
}

/* =========================
   NOTE
========================= */

.career-note {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
}

/* =========================
   CTA
========================= */

.career-cta {
    padding: 20px 25px;
    background: #ffffff;
    border-left: 4px solid #f1971a;
    border-radius: 8px;
}

.career-cta p {
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
}

.career-cta a {
    font-size: 22px;
    font-weight: 600;
    color: #1e2756;
    text-decoration: none;
}

.career-cta a:hover {
    color: #f1971a;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .career-intro h2,
    .section-title {
        font-size: 28px;
    }

    .career-intro {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {

    .career-section {
        padding: 60px 0;
    }

    .career-intro h2,
    .section-title {
        font-size: 24px;
    }

    .career-intro p,
    .career-desc,
    .career-list li,
    .career-note {
        font-size: 14px;
    }

    .career-cta {
        text-align: center;
    }

    .career-cta a {
        font-size: 16px;
    }
}

/* =========================
   WORKING PROCESS SECTION CAREER
========================= */

/* =========================
   WORKING PROCESS SECTION
========================= */

.gism-process {
    background: linear-gradient(180deg, #f4f7fc 0%, #eef2f8 100%);
    padding: 90px 0 120px;
    position: relative;
}

/* remove heavy curve on mobile */
@media (max-width: 768px) {
    .gism-process::before {
        display: none;
    }
}

/* =========================
   WRAPPER
========================= */

.gism-process-alt {
    position: relative;
    margin-top: 60px;
}

/* CENTER LINE */
.gism-process-alt::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(244,161,0,0.2),
        #f4a100,
        rgba(244,161,0,0.2)
    );
    transform: translateX(-50%);
    z-index: 1;
}

/* =========================
   ITEMS
========================= */

.gism-process-item {
    width: 50%;
    padding: 20px 40px;
    position: relative;
    margin-bottom: 30px;
    z-index: 2;
}

/* LEFT */
.gism-process-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* RIGHT */
.gism-process-item:nth-child(even) {
    left: 50%;
}

/* =========================
   CARD
========================= */

.gism-process-content {
    background: #ffffff;
    padding: 25px 25px 25px 70px;
    border-radius: 12px;
    border: 1px solid rgba(10,27,90,0.06);
    position: relative;

    max-width: 520px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    transition: 0.3s;
}

/* alignment fix */
.gism-process-item:nth-child(odd) .gism-process-content {
    margin-left: auto;
}

.gism-process-item:nth-child(even) .gism-process-content {
    margin-right: auto;
}

.gism-process-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* =========================
   ICON
========================= */

.gism-process-icon {
    position: absolute;
    left: 20px;
    top: 25px;

    width: 42px;
    height: 42px;

    background: linear-gradient(135deg, #f4a100, #ffb733);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 16px;

    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(244,161,0,0.35);

    z-index: 3;
}

/* =========================
   TEXT
========================= */

.gism-process-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0a1b5a;
    margin-bottom: 10px;
}

.gism-process-content p {
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
}

/* =========================
   TIMELINE DOT (FIXED)
========================= */

.gism-process-item::before {
    content: "";
    position: absolute;
    top: 32px;
    width: 16px;
    height: 16px;

    background: #ffffff;
    border: 3px solid #f4a100;
    border-radius: 50%;

    box-shadow: 0 0 0 4px rgba(244,161,0,0.15);

    z-index: 3;
}

/* LEFT DOT */
.gism-process-item:nth-child(odd)::before {
    right: -8px;
}

/* RIGHT DOT */
.gism-process-item:nth-child(even)::before {
    left: -8px;
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 768px) {

    .gism-process {
        padding: 70px 0 90px;
    }

    .gism-process-alt::before {
        left: 18px;
    }

    .gism-process-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 15px;
        text-align: left !important;
        left: 0 !important;
    }

    .gism-process-item::before {
        left: 10px !important;
        right: auto;
    }

    .gismsm-process-content {
        padding: 20px 20px 20px 65px;
    }

    .gism-process-icon {
        left: 15px;
        top: 20px;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .gism-process-content h4 {
        font-size: 15px;
    }

    .gism-process-content p {
        font-size: 13px;
    }
}

