* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Be Vietnam Pro', sans-serif;

}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    padding: 80px 100px;
    overflow: hidden;
    padding-top: 176px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
    display: block;
}

/* ===== Breadcrumb ===== */
.breadcrumb-nav {
    position: absolute;
    top: 116px;
    right: 60px;
    font-size: 14px;
    text-align: right;
    font-weight: 600;
    z-index: 10;
}

.breadcrumb-nav a {
    color:#1D4060;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: #002244;
}

.breadcrumb-current {
    color:#18548A;
}

.breadcrumb-sep {
    margin: 0 8px;
    color: #526B82;
}

/* ===== Hero Content ===== */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* ===== Left Side ===== */
.hero-left-side {
    flex: 1 1 480px;
}



.hero-title {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.15;
    color: #1D5689;
    margin-bottom: 20px;
}


.hero-para {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #124e82;
}

/* ===== Contact Box ===== */
.hero-contact-box {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    margin-bottom: 35px;
}

.hero-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.hero-contact-item strong {
    display: block;
    font-size: 14px;
    color: #1D5689;
    margin-bottom: 3px;
}

.hero-contact-item p {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}

.hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.hero-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* ===== Buttons ===== */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-buttons a {
    text-decoration: none;
    display: block;
}

.btn {
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    border-radius: 2px;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-outline-blue {
    border: 1.5px solid #1D5689;
    color: #1D5689;
}

.btn-outline-blue:hover {
    background: #EF365C;
    color: #fff;
    border: #EF365C;
}

.btn-outline-pink {
    border: 1.5px solid #e91e8c;
    color: #e91e8c;
    display: none;
}

.btn-outline-pink:hover {
    background: #e91e8c;
    color: #fff;
}

/* ===== Right Side (Image) ===== */
.hero-right-side {
    flex: 1 1 450px;
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: block;
}

/* ===== Responsive ===== */


@media (max-width: 1024px) {
    .hero-section {
        padding: 70px 60px;
        padding-top: 166px;
    }

    .hero-title {
        font-size: 33px;
    }

  

    .breadcrumb-nav {
        right: 40px;
    }
}


@media (max-width: 1050px) {
    .hero-section {
        padding: 20px 50px;
        display: flex;
        flex-direction: column;
        padding-top: 89px;
    }

    .hero-contact-box{
        display: none;
    }

    .hero-para{
        font-size: 17px;
    }

   
    .hero-content {
        display: contents;
    }

    .hero-right-side {
        order: 1;
    }

    .breadcrumb-nav {
        order: 2;
        position: static;
        text-align: left;
        margin: 15px 0;
        padding: 0;
    }

    .hero-left-side {
        order: 3;
        text-align: center;
    }

    .hero-left-side,
    .hero-right-side,
    .hero-img {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .hero-right-side {
        margin-bottom: 15px;
    }

    .hero-left-side {
        margin-top: 15px;
    }

  

    .hero-title {
        font-size: 32px;
    }

    .hero-para {
        font-size: 16px;
    }

   
    .hero-buttons {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons a {
        display: block;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-section {
        padding: 15px;
        padding-top: 73px;
    }

    .breadcrumb-nav {
        font-size: 13px;
        margin-bottom: 12px;
        padding: 0;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-para {
        font-size: 16px;
    }

    
}




/* ==========================================
   Top Announcement Bar Section Styles
   ================================          */

.top-announcement-bar {
    background-color: #1D5689; 
    padding: 12px 5%;
    width: 100%;
    box-sizing: border-box;
    
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Action Items Group */
.top-action-items {
    display: flex;
    align-items: center;
    gap: 35px;
}

.top-action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.top-action-item:hover {
    opacity: 0.8;
}

/* Image Icon Sizing */
.top-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

/* Right Side Button Styling */
.swift-ams-btn {
    background-color: #b80031; 
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.swift-ams-btn:hover {
    background-color: #EF365C;
}

/* Responsive adjustment for smaller screens */
@media screen and (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 15px;
    }

    .top-action-items {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .top-right-action {
        width: 100%;
    }

    .swift-ams-btn {
        display: block;
        text-align: center;
        width: 100%;
    }
}

/* ==========================================
   Destination Section Styles
   ================================          */

.destinations-section {
    padding: 60px 100px;
    background: #eef0f4;
    overflow: hidden;
}

.destinations-header {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 auto 12px;
}

.destinations-header .sb-page-title {
    margin-bottom: 10px;
}

.destinations-intro {
    margin: 0 auto 28px;
    font-size: 18px;
    line-height: 1.6;
    color: #124e82;
}

.destinations-track {
    display: flex;
    gap: 16px;
    margin: 0 auto;
    height: 480px;
    overflow: hidden;
}

.dest-card {
    position: relative;
    flex: 1 1 200px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: flex-grow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-card.is-active {
    flex-grow: 3.2;
}

/* Background Image & Contrast Gradient */
.dest-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1; /* Keep base image clear */
}

/* Gradient overlay ensures text is legible regardless of image brightness */
.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.75) 60%, 
        rgba(0, 0, 0, 0.95) 100%
    );
    z-index: 1;
    transition: opacity 0.3s ease;
}

/* Vertical Title (Collapsed state) */
.dest-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    white-space: nowrap;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s ease;
    z-index: 2;
}

.dest-card.is-active .dest-title {
    opacity: 0;
    pointer-events: none;
}

/* Expanded Content Area */
.dest-expanded {
    position: absolute;
    inset: 0;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
    z-index: 2;
    background: linear-gradient(
        to top, 
        rgba(0, 0, 0, 0.92) 0%, 
        rgba(0, 0, 0, 0.65) 70%, 
        transparent 100%
    );
}

.dest-card.is-active .dest-expanded {
    opacity: 1;
    transform: translateY(0);
}

.dest-title-h {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    white-space: normal;      /* was nowrap — let long titles wrap */
    text-align: center;
    text-wrap: balance;       /* even line lengths when it wraps (2 lines instead of 1 long + 1 short) */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.dest-subtitle {
    color: #EF365C; 
    font-size: 14px;
    font-weight: 700;
    margin-top: -6px;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.dest-points {
    list-style: none;
    padding: 0;
    margin: 4px 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.dest-points li {
    color: #ffffff;
    font-size: 13.5px;
    line-height: 1.4;
    text-align: center;
    max-width: 360px;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.dest-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1D5689;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(2, 39, 71, 0.25);
    transition: transform 0.2s ease, background-color 0.25s ease;
    white-space: nowrap;
}

.dest-btn:hover {
    background: #EF365C;
    transform: translateY(-2px);
}


.destinations-track[data-count="1"] {
    justify-content: center;
}

.destinations-track[data-count="1"] .dest-card {
    flex: 0 0 400px;
}

/* ==========================================
   Responsive Breakpoints
   ================================          */

/* Laptop / Desktop (1024px) */
@media (max-width: 1024px) {
    .destinations-section {
        padding: 40px 70px;
    }

    .destinations-intro{
        font-size: 16px;
    }

    .destinations-track {
        height: 440px;
        gap: 12px;
    }

    .dest-card.is-active {
        flex-grow: 4;
    }

    .dest-title-h {
        font-size: 26px;
    }

    .dest-points li {
        font-size: 13px;
        max-width: 300px;
    }
}


/* Tablet (768px) */
@media (max-width: 768px) {
    .destinations-section {
        padding: 30px 16px;
        overflow: visible;
    }

    .destinations-header {
        text-align: center;
    }

    .destinations-header .sb-page-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .destinations-intro {
        text-align: center;
        font-size: 14px;
        margin-bottom: 20px;
        display: none;
    }

    /* Stack cards into a single column */
    .destinations-track {
        flex-direction: column;
        height: auto;
        gap: 16px;
    }

    .dest-card,
    .dest-card.is-active {
        flex-grow: 0;
        width: 100%;
        height: 340px; 
    }

    /* Always show expanded content, hide the collapsed vertical title */
    .dest-title {
        display: none;
    }

    .dest-expanded {
        opacity: 1;
        transform: translateY(0);
    }

    .dest-title-h {
        font-size: 24px;
        white-space: normal;
    }

    .dest-subtitle {
        font-size: 12px;
    }

    .dest-points li {
        max-width: 280px;
        font-size: 12px;
    }

    .dest-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .destinations-track.slick-initialized {
        display: block;
        overflow: visible;
    }

    .destinations-track.slick-initialized .slick-list {
        overflow: hidden;
    }

    .destinations-track.slick-initialized .slick-slide {
        margin: 0;
        height: auto;
    }

    .destinations-track.slick-initialized .slick-slide > div {
        width: 100%;
        display: flex;
    }

    .destinations-track.slick-initialized .dest-card,
    .destinations-track.slick-initialized .dest-card.is-active {
        width: 100%;
        height: 340px;
        flex: none;
    }

    .destinations-track.slick-initialized .dest-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        padding: 0;
        border: none;
        background: #1D5689;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 3;
    }

    .destinations-track.slick-initialized .dest-arrow img {
        width: 12px;
        height: 12px;
        object-fit: contain;
    }

    .destinations-track.slick-initialized .slick-prev.dest-arrow {
        left: -10px;
    }

    .destinations-track.slick-initialized .slick-next.dest-arrow {
        right: -10px;
    }

    .destinations-track.slick-initialized .slick-prev:before,
    .destinations-track.slick-initialized .slick-next:before {
        content: '' !important;
        display: none !important;
    }

    .destinations-track.slick-initialized .slick-dots {
        position: static;
        margin-top: 16px;
        display: flex !important;
        justify-content: center;
        gap: 8px;
    }

    .destinations-track.slick-initialized .slick-dots li button:before {
        font-size: 8px;
        color: #c7cbd3;
        opacity: 1;
    }

    .destinations-track.slick-initialized .slick-dots li.slick-active button:before {
        color: #1D5689;
        opacity: 1;
    }

    .destinations-track[data-count="1"] .slick-dots {
        display: none !important;
    }
}


@media (max-width: 480px) {
    .destinations-section {
        padding: 20px 30px;
    }

    .destinations-track:not(.slick-initialized) {
        flex-direction: column;
        height: auto;
        gap: 12px;
    }

    .destinations-track:not(.slick-initialized) .dest-card,
    .destinations-track:not(.slick-initialized) .dest-card.is-active {
        flex-grow: 0;
        width: 100%;
        height: 300px;
    }

    .dest-title {
        display: none;
    }

    .dest-expanded {
        opacity: 1;
        transform: translateY(0);
        padding: 16px 8px;
        gap: 6px;
    }

    .dest-title-h {
        font-size: 20px;
        white-space: normal;
    }

    .dest-subtitle {
        font-size: 11px;
    }

    .dest-points {
        margin: 2px 0 6px;
        gap: 4px;
    }

    .dest-points li {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.3;
    }

    .dest-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}




/* ==========================================
   Service Section Styles
   ================================          */
.service-section {
    position: relative;
    padding: 60px 100px;
    overflow: visible;
    
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    z-index: 0;
    background-image: url('../images/bg-image.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
}
.service-content .sb-page-title {
    position: relative;
    margin: 0;
    text-align: center;
}

.service-para {
    max-width: 1200px;
    margin: 25px auto;
    text-align: center;
    line-height: 1.7;
    font-size: 18px;
    color: #124e82;
}

.service-content .sb-page-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e91e63;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(var(--card-count, 4), 1fr);
    gap: 24px;
    align-items: start;
}

/* Once Slick initializes (desktop only, >4 cards), it takes over layout */
.service-cards.slick-initialized {
    display: block;
}

.service-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: relative;
}

.service-cards.slick-initialized .service-card {
    height: 100%;
}
.service-card-media {
    position: relative;
    height: 320px;
    cursor: pointer;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    opacity: 0.8;
}
.service-card:hover .service-card-bg { transform: scale(1.06); }

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(29, 86, 137, 0.85);
    transition: background 0.35s ease;
}
.service-card:hover .service-card-overlay {
    background: rgba(185, 0, 59, 0.55);
}

.service-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
}

.service-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(179, 195, 223, 0.888);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.service-card-icon img {
    width: 22px;
    height: 22px;
    color: #fff;
}

.service-card-title {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.title-line2 {
    display: block;
}
.service-card-toggle {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-card-toggle:hover {
    background: rgba(255, 255, 255, 0.4);
}

.service-card-toggle img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card.is-open .service-card-toggle img {
    transform: rotate(180deg);
}

.service-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.service-card-body-inner { padding: 24px 26px; }
.service-card-body-inner p {
    color: #124e82;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 18px;
}
.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1D5689;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 15px 21px;
    border-radius: 8px;
    transition: background 0.3s ease;
}
.service-card-btn:hover { background: #002244; }

/* ================= DESKTOP SLICK — only fires when many-cards (>4) ================= */

@media (min-width: 769px) {
    .service-cards.many-cards.slick-initialized {
        overflow: visible;
    }

    .service-cards.many-cards.slick-initialized .slick-list {
        margin: 0 -12px;
        overflow: hidden;
    }

    .service-cards.many-cards.slick-initialized .slick-track {
        display: flex !important;
        align-items: stretch;
    }

    .service-cards.many-cards.slick-initialized .slick-slide {
        margin: 0 12px;
        height: auto;
        display: flex !important;
    }

    .service-cards.many-cards.slick-initialized .slick-slide > div {
        width: 100%;
        display: flex;
    }

    .service-cards.many-cards.slick-initialized .service-card {
        width: 100%;
        height: 100%;
    }

    .service-cards.many-cards.slick-initialized .slick-dots {
        margin-top: 30px;
        position: static;
    }

        /* 1 card — reduced width, centered */
    .service-cards:not(.slick-initialized)[style*="--card-count: 1"] {
        grid-template-columns: 400px;
        justify-content: center;
    }

    /* 2 cards — reduced width, centered */
    .service-cards:not(.slick-initialized)[style*="--card-count: 2"] {
        grid-template-columns: repeat(2, 350px);
        gap: 24px;
        justify-content: center;
    }


        .service-cards.many-cards.slick-initialized .slick-dots li button:before {
        font-size: 8px;
        color: #c7cbd3;
        opacity: 1;
    }

    .service-cards.many-cards.slick-initialized .slick-dots li.slick-active button:before {
        color: #1D5689;
        opacity: 1;
    }

       .service-cards.many-cards.slick-initialized .service-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        padding: 0;
        border: none;
        background: #1D5689;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
    }

    .service-cards.many-cards.slick-initialized .service-arrow img {
        width: 16px;
        height: 16px;
        object-fit: contain;
    }

    .service-cards.many-cards.slick-initialized .slick-prev.service-arrow {
        left: -50px;
    }

    .service-cards.many-cards.slick-initialized .slick-next.service-arrow {
        right: -50px;
    }

    .service-cards.many-cards.slick-initialized .slick-prev:before,
.service-cards.many-cards.slick-initialized .slick-next:before {
    content: '' !important;
    display: none !important;
}
}


@media (min-width: 1000px) and (max-width: 1024px) {
    .service-card-title {
        font-size: 22px;
    }

    .service-card-body-inner p{
        font-family: 16px;
    }
}


/* ================= MOBILE — untouched from your original ================= */
@media (max-width: 768px) {
    .service-section { padding: 20px 16px; }


    .service-content .sb-page-title{
        margin-bottom: 30px;
        font-size: 28px;
    }

    .service-para{
        display: none;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    }

    .service-card-media {
        height: auto;
        padding: 32px 24px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .service-card-bg,
    .service-card-overlay {
        display: none;
    }

    .service-card-content {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        gap: 14px;
        height: auto;
    }

    .service-card-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
   .service-card-icon img {
        width: 22px;
        height: 22px;
    }

    .service-card-title {
        flex: 1;
        color: #1D5689;
        font-size: 25px;
        text-align: center;
        font-weight: 800;
    }

    .title-line2 {
        display: inline;
    }

    .service-card-toggle {
        position: static;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: #eef1f6;
        color: #14213d;
    }

    .service-card-body-inner {
        padding: 8px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .service-card-body-inner p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 20px;
        text-align: center;
    }

    .service-card-btn {
        display: inline-flex;
        width: auto;
        align-self: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .service-section {
        padding: 28px 12px;
    }

    .service-cards {
        gap: 10px;
    }

    .service-card-media {
        padding: 20px 16px;
        gap: 10px;
    }

    .service-card-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
    .service-card-icon img {
        width: 18px;
        height: 18px;
    }

    .service-card-title {
        font-size: 17px;
    }

    .service-card-toggle {
        width: 34px;
        height: 34px;
    }

    .service-card-body-inner {
        padding: 6px 16px 20px;
    }

    .service-card-body-inner p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .service-card-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
}



/* ==========================================
  Process Section Styles
   ================================          */

.process-section {
    padding: 60px 100px;
}

.process-content {
    display: flex;
    align-items: stretch;
    gap: 64px;
}

/* LEFT SIDE */

.process-left-side {
    flex: 0 0 34%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}


.process-left-side .sb-page-title {
    margin: 0;
    padding: 0;
}

.process-para {
    margin-top: 16px;
    line-height: 1.7;
    font-size: 18px;
    color: #124e82;
}
/* RIGHT SIDE */
.process-right-side {
    flex: 1;
}

.process-steps {
    display: flex;
    flex-direction: column;
}

.process-step {
    display: flex;
    gap: 24px;
    padding-bottom: 36px;
    position: relative;
    
}

.process-step-last {
    padding-bottom: 0;
}

.step-number-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1D5689;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 16px rgba(11, 95, 255, 0.28);
}

.step-line {
    width: 5px;
    height: 30px;
    margin-top: 6px;
    background: #1D5689;
}

.step-body {
    padding: 10px 16px;
    border: 1px solid #1D5689;
    border-radius: 10px;
    background: #fff;
    flex: 1;
}

.step-body:hover {
    box-shadow: 0 10px 24px rgba(11, 41, 82, 0.08);
    transform: translateY(-3px);
}

.step-title{
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color:#EF365C;
}

.step-desc{
    color: #1D5689;
    font-size: 16px;


}



.step-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: default;
    text-align: left;
}

/* Icon hidden on desktop */
.step-icon-img {
    display: none;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

/* ================= MOBILE — 768px ================= */
@media (max-width: 768px) {
    .process-section {
        padding: 30px 50px;
    }

    .process-left-side .sb-page-title{
        font-size: 28px;
    }

    .process-content {
        flex-direction: column;
        gap: 16px;
    }

    .step-title{
        font-size: 17px;
    }

    .process-para {
        display: none;
    }

    /* Turn the step body into the mobile card container */
    .process-step {
        display: flex;
        align-items: stretch;
        gap: 14px;
        padding: 0;
        margin-bottom: 16px;
        background: none;
        border: none;
    }

        .step-number-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .step-line {
        height: 20px;
        margin-top: 8px;
        
    }

    .step-body {
        padding: 24px 16px;
        border: 1px solid #1b4d86;
        border-radius: 10px;
        background: #fff;
        flex: 1;
    }

   

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .step-toggle {
       justify-content: center; 
        text-align: center;
        position: relative;
    }

    .step-title {
       margin: 0;
        font-size: 16px;
        text-align: center;
        width: 100%;
    }

 

    /* Force icon to show on mobile */
    .step-icon-img {
        display: block !important;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .step-toggle[aria-expanded="true"] .step-icon-img {
            transform: translateY(-50%) rotate(180deg);    }

    /* Description accordion toggle */
    .step-desc {
        display: none;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #eef0f3;
        text-align: center;
        font-size: 14px;
    }

    .step-toggle[aria-expanded="true"] + .step-desc {
        display: block;
    }
}

/* ==========================================
   Credentials Section Styles
   ================================          */

.credentials-section {
    padding: 60px 100px;
    background: #f7f9fc;
}

.credentials-content {
    margin: 0 auto;
    text-align: center;
}

.credentials-content .sb-page-title{
    margin: 0;
}

.credentials-para {
    margin: 10px auto 0;
    color: #124e82;
    line-height: 1.7;
    font-size: 18px;
}

.credentials-cards {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(var(--cred-count, 4), minmax(260px, 1fr));
    gap: 24px;
    text-align: left;
    justify-content: center;
}

.credentials-cards.slick-initialized {
    display: block;
}

.credential-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    width: 260px;
    height: 260px;
    padding: 28px 20px;
    background: #fff;
    border: 3px solid #1D5689;
    border-radius: 12px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    box-sizing: border-box;
}

.credential-card:hover {
    box-shadow: 0 10px 24px rgba(11, 41, 82, 0.08);
    transform: translateY(-3px);
}

.credential-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.credential-text {
    margin: 0;
    line-height: 1.6;
    color: #124e82;
}

/* ================= DESKTOP SLICK (only fires when >4 cards, "many-credentials") ================= */
@media (min-width: 769px) {
    .credentials-cards.many-credentials.slick-initialized {
        overflow: visible;
    }

    .credentials-cards.many-credentials.slick-initialized .slick-list {
        margin: 0 -12px;
        padding-top: 6px;
        overflow: hidden;
    }

    .credentials-cards.many-credentials.slick-initialized .slick-track {
        display: flex !important;
        align-items: stretch;
    }

    .credentials-cards.many-credentials.slick-initialized .slick-slide {
        margin: 0 12px;
        height: auto;
        display: flex !important;
        justify-content: center;
    }

    .credentials-cards.many-credentials.slick-initialized .slick-slide > div {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .credentials-cards.many-credentials.slick-initialized .credential-icon {
        width: 85px !important;
        height: 85px !important;
        min-width: 85px !important;
        min-height: 85px !important;
        border-radius: 50% !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
    }

    .credentials-cards.many-credentials.slick-initialized .credential-text {
        font-size: 16px;
    }

    .credentials-cards.many-credentials.slick-initialized .credential-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .credentials-cards.many-credentials.slick-initialized .slick-dots {
        margin-top: 20px;
    }

       /* 1 card — big, centered */
    .credentials-cards:not(.slick-initialized)[style*="--cred-count: 1"] {
        justify-items: center;
    }
    .credentials-cards:not(.slick-initialized)[style*="--cred-count: 1"] .credential-card {
        width: 300px;
        height: 300px;
        justify-content: center;
    }
    .credentials-cards:not(.slick-initialized)[style*="--cred-count: 1"] .credential-icon {
        width: 110px;
        height: 110px;
    }
    .credentials-cards:not(.slick-initialized)[style*="--cred-count: 1"] .credential-text {
        font-size: 18px;
    }

    /* 2 cards — centered */
    .credentials-cards:not(.slick-initialized)[style*="--cred-count: 2"] {
        grid-template-columns: repeat(2, 290px);
        justify-items: center;
        gap: 40px;
    }
    .credentials-cards:not(.slick-initialized)[style*="--cred-count: 2"] .credential-card {
        width: 290px;
        height: 290px;
        justify-content: center;
    }
    .credentials-cards:not(.slick-initialized)[style*="--cred-count: 2"] .credential-icon {
        width: 105px;
        height: 105px;
    }
    .credentials-cards:not(.slick-initialized)[style*="--cred-count: 2"] .credential-text {
        font-size: 17px;
    }

    /* 3 cards — centered */
    .credentials-cards:not(.slick-initialized)[style*="--cred-count: 3"] {
        justify-items: center;
    }
    .credentials-cards:not(.slick-initialized)[style*="--cred-count: 3"] .credential-card {
        width: 280px;
        height: 280px;
        justify-content: center;
    }
    .credentials-cards:not(.slick-initialized)[style*="--cred-count: 3"] .credential-icon {
        width: 100px;
        height: 100px;
    }
    .credentials-cards:not(.slick-initialized)[style*="--cred-count: 3"] .credential-text {
        font-size: 16px;
    }
    .credentials-cards.many-credentials.slick-initialized .slick-dots li button:before {
        font-size: 8px;
        color: #c7cbd3;
        opacity: 1;
    }

    .credentials-cards.many-credentials.slick-initialized .slick-dots li.slick-active button:before {
        color: #1D5689;
        opacity: 1;
    }

    .credentials-cards.many-credentials.slick-initialized .credential-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        padding: 0;
        border: none;
        background: #1D5689;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
    }

    .credentials-cards.many-credentials.slick-initialized .credential-arrow img {
        width: 16px;
        height: 16px;
        object-fit: contain;
    }

    .credentials-cards.many-credentials.slick-initialized .slick-prev.credential-arrow {
        left: -50px;
    }

    .credentials-cards.many-credentials.slick-initialized .slick-next.credential-arrow {
        right: -50px;
    }

    .credentials-cards.many-credentials.slick-initialized .slick-prev:before,
    .credentials-cards.many-credentials.slick-initialized .slick-next:before {
        content: '' !important;
        display: none !important;
    }
}


/* ================= TABLET RANGE ONLY — 4 cards show 2x2 (iPad Pro/Mini, Surface Duo etc.) ================= */
@media (min-width: 769px) and (max-width: 1024px) {
       .credentials-cards:not(.slick-initialized)[style*="--cred-count: 4"] {
        grid-template-columns: repeat(2, 260px);
        row-gap: 30px;
        column-gap: 40px;
        justify-content: center;
    }
    .credentials-cards:not(.slick-initialized)[style*="--cred-count: 4"] .credential-card {
        width: 260px;
        height: 260px;
        padding: 18px 12px;
        justify-content: center;
    }
    .credentials-cards:not(.slick-initialized)[style*="--cred-count: 4"] .credential-icon {
        width: 85px;
        height: 85px;
    }
    .credentials-cards:not(.slick-initialized)[style*="--cred-count: 4"] .credential-text {
        font-size: 16px;
    }
}


/* ================= LARGE TABLET — 1000px to 1024px (iPad Pro etc.) ================= */
@media (min-width: 1000px) and (max-width: 1024px) {
    .credentials-section {
        padding: 40px 40px;
    }

    .credentials-cards.many-credentials.slick-initialized .credential-arrow {
        width: 30px;
        height: 30px;
    }

    .credentials-cards.many-credentials.slick-initialized .credential-arrow img {
        width: 12px;
        height: 12px;
    }

    .credentials-cards.many-credentials.slick-initialized .slick-prev.credential-arrow {
        left: -20px;
    }

    .credentials-cards.many-credentials.slick-initialized .slick-next.credential-arrow {
        right: -20px;
    }
}


/* ================= SMALL TABLET — 769px to 999px ================= */
@media (min-width: 769px) and (max-width: 999px) {
    .credentials-section {
        padding: 30px 50px;
    }

    .credentials-cards:not(.slick-initialized) {
         grid-template-columns: repeat(min(var(--cred-count, 4), 2), minmax(260px, 1fr));
        gap: 20px;
    }
}

/* ================= MOBILE — 768px ================= */
@media (max-width: 768px) {
    .credentials-section {
        padding: 20px 30px;
    }


    .credentials-content .sb-page-title{
        font-size: 28px;
    }

    .credentials-para{
        display: none;
    }

    .credentials-cards {
        margin-top: 28px;
        gap: 16px;
    }

    .credentials-cards.slick-initialized .slick-list {
        margin: 0 40px;
        overflow: hidden;
        padding-top: 6px;
    }

    .credentials-cards:not(.slick-initialized) {
        grid-template-columns: 1fr;
    }

    .credential-card {
        padding: 32px 16px;
        min-height: 220px;
        justify-content: center;
    }

    .credentials-cards .slick-slide {
        display: flex !important;
        justify-content: center;
    }

    .credentials-cards .slick-slide > div {
        width: 100%;
    }

    .credentials-cards .credential-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100%;
    }

    .credentials-cards .credential-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 72px !important;
        height: 72px !important;
        min-width: 72px !important;
        min-height: 72px !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 50% !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
    }

    .credentials-cards .credential-icon img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .credentials-cards.slick-initialized .credential-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        padding: 0;
        border: none;
        background: #1D5689;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
    }

    .credentials-cards.slick-initialized .credential-arrow img {
        width: 12px;
        height: 12px;
        object-fit: contain;
    }

    .credentials-cards.slick-initialized .slick-prev.credential-arrow {
        left: 0;
    }

    .credentials-cards.slick-initialized .slick-next.credential-arrow {
        right: 0;
    }

    .credentials-cards.slick-initialized .slick-prev:before,
    .credentials-cards.slick-initialized .slick-next:before {
        content: '' !important;
        display: none !important;
    }

    .credentials-cards[style*="--cred-count: 1"] .slick-dots {
        display: none;
    }
}





/* ==========================================
   Intake Section Styles
   ================================          */

.intake-timeline-section {
    padding: 60px 100px;
    background: #f7f9fc;
}

.intake-content {
    margin: 0 auto;
    text-align: center;
}


.intake-content .sb-page-title{
    margin-bottom: 30px;
}



.intake-para {
    margin: 16px auto 32px;
    max-width: 1100px;
    color: #124e82;
    line-height: 1.7;
    font-size: 18px;
}

/* Tab Buttons */
.intake-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 24px;
    background: #fff;
    border: 2px solid #1D5689;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #124e82;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tab-btn:hover {
    border-color: #1D5689;
    color: #1D5689;
}

.tab-btn.active {
    background: #1D5689;
    border-color: #1D5689;
    color: #fff;
}

/* Panels */
.intake-panels {
    background: #fff;
    border-radius: 12px;
    border: 2px solid #e1e7ec;
    padding: 32px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(11, 41, 82, 0.04);
}

.intake-panel {
    display: none;
}

.intake-panel.active {
    display: block;
}

.panel-body h3 {
    margin-top: 0;
    font-size: 20px;
    color: #1D5689;
    margin-bottom: 12px;
}

.panel-body p {
    color: #124e82;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* WYSIWYG list content (replaces old .panel-list) */
.panel-list-wysiwyg ul,
.panel-list-wysiwyg ol {
    padding-left: 20px;
    margin: 0 0 20px;
}


.panel-list-wysiwyg li,
.panel-list-wysiwyg p {
    margin-bottom: 10px;
    color: #124e82;
    font-size: 15px;
    line-height: 1.5;
}

.panel-list-wysiwyg strong {
    color: #1D5689;
}

/* Lead Notice Footer */
.intake-lead-notice {
    margin-top: 30px;
    padding: 16px 20px;
    background: rgba(27, 77, 134, 0.06);
    border-left: 4px solid #1D5689;
    border-radius: 4px;
    text-align: left;
}

.intake-lead-notice p {
    margin: 0;
    font-size: 15px;
    color: #124e82;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .intake-timeline-section {
        padding: 30px 50px;
    }

    .intake-content .sb-page-title{
        font-size: 28px;
    }

    .intake-para{
        display: none;
    }
    .intake-tabs {
        gap: 8px;
    }

    
    .tab-btn {
        flex: 1 1 40%;
        padding: 10px 12px;
        font-size: 13px;
        min-height:40px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .intake-panels {
        padding: 20px;
    }

    .panel-body p{
        font-size: 16px;
    }
}



/* ==========================================
   Q & A Section Styles
   ================================          */

.faq-section {
    padding: 60px 100px;
    background: #f7f9fc;
}

.faq-content {

    margin: 0 auto;
}


.faq-content .sb-page-title{
    margin-bottom: 30px;
    text-align: center;
    
}


.faq-para {
    text-align: center;
    margin: 16px auto 40px;
    color: #124e82;
    line-height: 1.7;
    font-size: 18px;
}

/* Remove box container, apply top/bottom borders between items */
.faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #d0d7de; /* Top border for the entire list */
}

.faq-item {
    border-bottom: 1px solid #d0d7de; /* Line separating each question */
    background: transparent;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 22px 10px; /* Vertical padding replaces box padding */
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1D5689;
    cursor: pointer;
}

.faq-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
    background: transparent;
}

.faq-answer p {
    margin: 0 0 20px 0;
    color: #124e82;
    font-size: 16px;
    line-height: 1.6;
}

/* Open state styles handled via JS class */
.faq-item.active .faq-answer {
    max-height: 250px; 
    padding-bottom: 10px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 20px 30px;
    }
    .faq-question {
        padding: 18px 0;
        font-size: 15px;
    }

    .faq-content .sb-page-title{
        font-size: 28px;
    }

    .faq-para{
        display: none;
    }

    .faq-question{
        font-size: 16px;
    }

    .faq-answer p{
        font-size: 14px;
    }
}


/* ==========================================
   NOC Section Styles
   ================================          */


.noc-section {
    padding: 60px 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.noc-content {
    margin: 0 auto;
    display: flex;
    align-items: center; /* Vertically aligns left content with right box */
    gap: 56px;
}

/* LEFT SIDE */
.noc-left-side {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.noc-content .sb-page-title {
    margin: 0;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}



.noc-para {
    text-align: left; /* Changed from center to left for better alignment */
    margin: 0;
    color: #124e82;
    line-height: 1.7;
    font-size: 18px;
}

/* RIGHT SIDE (Checklist Box) */
.noc-right-side {
    flex: 1;
    width: 100%;
}

.noc-checklist-box {
    background: #ffffff;
    border: 1px solid rgba(27, 77, 134, 0.15);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 10px 30px -5px rgba(11, 41, 82, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.noc-checklist-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(11, 41, 82, 0.12);
}

.noc-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #e2e8f0;
}

.checklist-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.check-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.checklist-text {
    margin: 0;
    color: #124e82;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .noc-section {
        padding: 50px 40px;
    }

    .noc-content {
        flex-direction: column;
        gap: 32px;
    }

    .noc-left-side {
        flex: 1 1 100%;
        width: 100%;
    }

    .noc-content .sb-page-title {
        font-size: 28px;
    }

    .noc-para {
        display: none;
        
    }

    .noc-checklist-box {
        padding: 24px 20px;
    }

    .checklist-text{
        font-size: 16px;
    }
}







/* ===== Team Section ===== */
.team-section {
    padding: 60px 100px;
    background: #fff;
}

.team-content {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-left-side {
    border-radius: 20px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.team-right-side .sb-page-tag,
.team-right-side .sb-page-title {
    text-align: left;
    margin: 0 0 14px;
}

.team-para {
    color: #124e82;
    font-size: 18px;
    line-height: 1.7;
    margin: 18px 0 28px;
}

.team-check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-check-item img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    object-fit: contain;
}

.team-check-item span {
    color: #124e82;
    font-weight: 600;
    font-size: 16px;
}



/* ===== Team Section - Responsive ===== */

@media (max-width: 1024px) {
    .team-section {
        padding: 40px 70px;
    }

    .team-content {
        gap: 40px;
    }

    .team-para {
        font-size: 15px;
    }

    .team-check-item span {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 30px 50px;
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .team-left-side {
        order: -1;
    }

    .team-image {
        max-height: 340px;
    }

    .team-right-side {
        text-align: center;
    }

    .team-right-side .sb-page-tag{
        text-align: center;
    }

    .team-right-side .sb-page-title{
        text-align: center;
        font-size: 28px;
    }

    .team-para {
        font-size: 15px;
        line-height: 1.5;
        margin: 14px 0 22px;
    }

    .team-check-list {
        gap: 14px;
        align-items: center;
    }

    .team-check-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 20px 30px;
    }

    .team-content {
        gap: 20px;
    }

    .team-left-side {
        border-radius: 14px;
    }

    .team-image {
        max-height: 220px;
        border-radius: 14px;
    }

    .team-para {
        font-size: 14px;
        line-height: 1.4;
        margin: 10px 0 18px;
    }

    .team-check-list {
        gap: 10px;
    }

    .team-check-item svg {
        width: 16px;
        height: 16px;
    }

    .team-check-item span {
        font-size: 13px;
    }
}



/* ==========================================
   Success Stories Section Styles
   ================================          */
.review-section {
    padding: 60px 100px;
    background: #fff;
}

.review-content {
    margin: 0 auto;
}

.review-content .sb-page-title {
    text-align: left;
    margin: 0;
}

.review-intro {
    margin: 12px 0 32px;
    color: #124e82;
    line-height: 1.7;
    font-size: 18px;
    text-align: center;
}

.review-fallback-note {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #1b55d2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: -16px 0 24px;
    display: none;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(var(--story-count, 4), 1fr);
    gap: 24px;
}

.review-cards.slick-initialized {
    display: block;
}

.review-card {
    background: #eef0f4;
    border-radius: 14px;
    padding: 36px 24px;
    margin: 0 10px;
    text-align: center;
    height: auto;
    min-height: 360px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.review-avatar-wrap {
    position: relative !important;
    width: 100px !important;
    height: 100px !important;
    margin: 0 0 22px 0 !important;
}

.review-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: #EF365C;
    margin-bottom: 10px;
}

.review-destination {
    font-size: 15px;
    font-weight: 600;
    color: #1D5689;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.review-course {
    font-size: 16px;
    color: #124e82;
    margin-bottom: 18px;
}

.review-outcome {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e6f4ea;
    color: #1e7e34;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.review-outcome::before {
    content: "✔";
    font-size: 11px;
}

/* Slick dots styling */
.review-cards .slick-dots {
    position: static;
    margin-top: 24px;
    display: flex !important;
    justify-content: center;
    gap: 8px;
}

.review-cards .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.review-cards .slick-dots li button {
    width: 6px;
    height: 6px;
    padding: 0;
    border-radius: 50%;
    background: #c7cbd3;
    font-size: 0;
    cursor: pointer;
}

.review-cards .slick-dots li button:before {
    display: none;
}

.review-cards .slick-dots li.slick-active button {
    background: #1D5689;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* ================= DESKTOP SLICK — fires when many-stories (>4) ================= */
@media (min-width: 769px) {
    .review-cards.many-stories.slick-initialized {
        overflow: visible;
    }

    .review-cards.many-stories.slick-initialized .slick-list {
        margin: 0 -12px;
        overflow: hidden;
    }

    .review-cards.many-stories.slick-initialized .slick-track {
        display: flex !important;
        align-items: stretch;
    }

    .review-cards.many-stories.slick-initialized .slick-slide {
        margin: 0 12px;
        height: auto;
        display: flex !important;
    }

    .review-cards.many-stories.slick-initialized .slick-slide > div {
        width: 100%;
        display: flex;
    }

    .review-cards.many-stories.slick-initialized .review-card {
        width: 100%;
        height: 100%;
    }

    .review-cards.many-stories.slick-initialized .review-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        padding: 0;
        border: none;
        background: #1D5689;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
    }

    .review-cards.many-stories.slick-initialized .review-arrow img {
        width: 16px;
        height: 16px;
        object-fit: contain;
    }

    .review-cards.many-stories.slick-initialized .slick-prev.review-arrow {
        left: -50px;
    }

    .review-cards.many-stories.slick-initialized .slick-next.review-arrow {
        right: -50px;
    }

    .review-cards.many-stories.slick-initialized .slick-prev:before,
    .review-cards.many-stories.slick-initialized .slick-next:before {
        content: '' !important;
        display: none !important;
    }
}

@media (max-width: 768px) {
    .review-section {
        padding: 20px 30px;
    }

    .review-content .sb-page-tag {
        text-align: center;
    }

    .review-content .sb-page-title {
        text-align: center;
        font-size: 28px;
    }

    .review-intro {
        text-align: center;
    }

    /* Mobile: Slick always runs regardless of story count */
    .review-cards:not(.slick-initialized) {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-cards.slick-initialized .slick-list {
        margin: 0 34px;
        overflow: hidden;
    }

    .review-cards.slick-initialized .review-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        padding: 0;
        border: none;
        background: #1D5689;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
    }

    .review-cards.slick-initialized .review-arrow img {
        width: 12px;
        height: 12px;
        object-fit: contain;
    }

    .review-cards.slick-initialized .slick-prev.review-arrow {
        left: 0;
    }

    .review-cards.slick-initialized .slick-next.review-arrow {
        right: 0;
    }

    .review-cards.slick-initialized .slick-prev:before,
    .review-cards.slick-initialized .slick-next:before {
        content: '' !important;
        display: none !important;
    }

}

/* ==========================================
  Location Section Styles
   ================================          */

.location-section {
    padding: 60px 100px;
}

.location-content {
    display: flex;
    margin: 0 auto;
    background-color: #eef1f6;
    border-radius: 10px;
    overflow: hidden;
    min-height: 420px;
}

.location-left-side {
    flex: 0 0 40%;
    padding: 60px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-left-side .sb-page-title{
    text-align: left;
     margin: 0;
}

.location-para {
    font-size: 15px;
    color: #124e82;
    margin: 10px 0 28px;
}

/* Office block */
.location-office-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.location-pin-icon {
    flex-shrink: 0;
    margin-top: 4px;
}

.location-office-name {
    font-size: 16px;
    font-weight: 600;
    color: #1D5689;
    margin: 0 0 4px;
}

.location-office-address {
    font-size: 14px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0;
    max-width: 280px;
}

/* Social block */
.location-social-block {
    margin-bottom: 32px;
}

.location-social-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.location-social-icon {
    flex-shrink: 0;
}

.location-social-label {
    font-size: 16px;
    font-weight: 600;
    color: #1D5689;
    margin: 0;
}

.location-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.location-social-link:hover {
    background-color: #e2e8f0;
    transform: translateY(-2px);
}

.location-social-link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Directions button */
.location-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #EF365C;
    text-decoration: none;
    border-bottom: 2px solid #EF365C;
    width: fit-content;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.location-directions-btn:hover {
    opacity: 0.75;
}

/* Map side */
.location-right-side {
    flex: 0 0 60%;
    position: relative;
}

.location-map {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive - 1024px */
@media (max-width: 1024px) {
    .location-section {
        padding: 40px 70px;
    }

    .location-left-side {
        padding: 50px 40px;
    }

    .location-left-side .sb-page-title {
        font-size: 30px;
    }
}
/* Responsive - 768px */
@media (max-width: 768px) {
    .location-section {
         flex-direction: column;
    min-height: auto;
    }

    .location-content {
        flex-direction: column;
        min-height: auto;
    }

    .location-right-side {
    height: 300px;   /* add this */
}

    .location-left-side,
    .location-right-side {
        flex: 0 0 100%;
    }

    .location-left-side {
        padding: 40px 30px;
        align-items: center;
    }

    .location-left-side .sb-page-title {
        font-size: 28px;
        text-align: center;
    }

    .location-para {
        font-size: 14px;
        margin: 8px 0 24px;
        text-align: center;
    }

    .location-office-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .location-office-address {
        margin: 0 auto;
    }

    .location-pin-icon,
    .location-social-icon {
        display: none;
    }

    .location-social-heading {
        justify-content: center;
    }

    .location-social-icons {
        justify-content: center;
    }

    .location-directions-btn {
        margin: 0 auto;
    }

    .location-map {
         height: 300px;   
    min-height: unset;
    }
}


/* Responsive - 480px */
@media (max-width: 480px) {
    .location-section {
        padding: 20px 30px;
    }

    .location-right-side {
    height: 260px;  
}

    .location-left-side {
        padding: 30px 20px;
    }

    .location-left-side .sb-page-title {
        font-size: 26px;
    }

    .location-para {
        font-size: 13px;
        margin: 6px 0 20px;
    }

    .location-office-block {
        gap: 10px;
        margin-bottom: 20px;
    }

    .location-office-name {
        font-size: 15px;
    }

    .location-office-address {
        font-size: 13px;
    }

    .location-social-block {
        margin-bottom: 24px;
    }

    .location-social-link {
        width: 32px;
        height: 32px;
    }

    .location-directions-btn {
        font-size: 14px;
    }

    .location-map {
        height: 260px;   
    min-height: unset;
    }
}


/* ==========================================
  Contact Section Styles
   ================================          */

.contact-section {
    padding: 60px 100px;
    background: #f7f7fa;
}

.enquiry-card {
    margin: 0 auto;
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;

    
}


/* ---------- Right: Swift AMS panel ---------- */

.enquiry-side {
    flex: 1 1 40%;
    background: #1D5689;
    color: #fff;
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.enquiry-badge {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
    background: #b80031;
    border: 1px solid rgba(210, 13, 13, 0.753);
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 30px;
}

.enquiry-side-title {
    font-size: 23px;
    font-weight: 700;
    margin: 0 0 20px;
}

.enquiry-side-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 26px;
    max-width: 400px;

}


.enquiry-qr-wrap {
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 26px;
}

.enquiry-qr-img {
    display: block;
    width: 150px;
    height: 150px;
    object-fit: contain;
}


.enquiry-side-text-sm {
    font-size: 13px;
    margin-bottom: 26px;

}

.enquiry-swift-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
    background: #b80031;
    border-radius: 10px;
    padding: 12px 24px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    margin-bottom: 26px;

}

.enquiry-swift-btn:hover {
    transform: translateY(-1px);
    background: #EF365C;
}

.enquiry-btn-icon {
    display: block;
}

.enquiry-footer-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 22px;
}



 
@media (max-width: 1024px) {

    .contact-section {
        padding: 40px 80px;
    }

    .enquiry-card {
        max-width: 950px;
    }

    
    .enquiry-side {
        padding: 42px 28px;
    }

    
   
}
 
@media (max-width: 768px) {

.contact-section {
        padding: 30px 60px;
    }

.enquiry-card {
        width: 100%;
        flex-direction: column;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(20, 20, 43, 0.08);
        border: 12px solid #1b3a6b;;
    }

    .enquiry-qr-wrap {
        display: none;
}
 
    



.enquiry-side {
        order: -1;
        width: 100%;
        box-sizing: border-box;
        padding: 36px 28px;
        border-radius: 0;
        background: #8a8f98;
    }
    
}
 
@media (max-width: 480px) {
      .contact-section {
        padding: 20px 16px;
    }

    .enquiry-side {
        padding: 24px 20px;   
    }
}
  




/* ==========================================
   Consultation Section Styles
   ================================          */
.consultation-section {
    padding: 60px 100px;
}

.consultation-content {
    margin: 0 auto;
    padding: 100px 80px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consultation-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.2;
  
}


.consultation-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #274b8e 0%, #6a3a8e 50%, #c9337c 100%);
    opacity: 0.75;
    z-index: 2; 
}


.consultation-inner {
    position: relative;
    z-index: 3;
}



.consultation-title {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
}

.consultation-para {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto 32px;
}

.consultation-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.consultation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.consultation-btn-filled {
    background-color: #ffffff;
    color: #1D5689;
    border: 1px solid #ffffff;
}

.consultation-btn-filled:hover {
    background-color: #1D5689;
    color: #ffffff;
    border: #1D5689;
}

.consultation-btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.consultation-btn-outline:hover {
    background-color: #1D5689;
    border: #1D5689;
}

/* Responsive - 1024px */
@media (max-width: 1024px) {
    .consultation-section {
        padding: 40px 70px;
    }

    .consultation-content {
        padding: 70px 60px;
    }

    .consultation-title {
        font-size: 30px;
    }
}

/* Responsive - 768px */
@media (max-width: 768px) {
    .consultation-section {
        padding: 30px 50px;
    }

    .consultation-content {
        padding: 60px 40px;
    }

    .consultation-title {
        font-size: 28px;
    }

    .consultation-para {
       display: none;
    }

     .consultation-buttons {
        flex-direction: column;
        width: 100%;
    }

    .consultation-btn {
        border-radius: 10px;
    }

    
}

/* Responsive - 480px */
@media (max-width: 480px) {
    .consultation-section {
        padding: 20px 30px;
    }

    .consultation-content {
        padding: 60px 24px;
    }

    .consultation-title {
        font-size: 22px;
    }


    
}