
:root{
  --brand-blue-dark:#002b69;
  --brand-blue:#004aab;
  --brand-blue-light:#005ecb;
  --brand-orange:#ff7a00;
  --brand-text:#061b4d;
  --brand-light:#f4f9ff;
  --brand-rgb:0, 74, 171;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    color: #10213f;
    background: #ffffff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* Header */
.BIZL-header {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.BIZL-header-container {
    height: 78px;
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.BIZL-logo img {
    /* width: 180px;
    height: auto; 
    display: block;*/
    width: 155px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Desktop Nav */
.BIZL-nav > ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.BIZL-nav > ul > li {
    position: relative;
}

.BIZL-nav > ul > li > a {
    text-decoration: none;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.BIZL-nav > ul > li > a:hover {
    color: #f7941d;
}
 /* DESKTOP DROPDOWN FIX */
.desktop-dropdown {
    position: relative;
}

.desktop-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    background: #ffffff;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 18px 45px rgba(0,0,0,.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .3s ease;
    z-index: 9999;
}

.desktop-dropdown:hover .desktop-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-dropdown-menu li {
    display: block;
}

.desktop-dropdown-menu li a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    color: var(--brand-text);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.desktop-dropdown-menu li a:hover {
    background: #fff3e6;
    color: var(--brand-orange);
    padding-left: 26px;
}
/* Button */
.BIZL-btn {
    background: #f7941d;
    color: #ffffff;
    padding: 13px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s ease;
}

.BIZL-btn:hover {
    background: #0057b8;
    color: #ffffff;
}

/* Mobile Open Button */
.menu-open-btn {
    display: none;
    border: none;
    background: #f7941d;
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    font-size: 24px;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu - left to right */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 1001;
    padding: 22px;
    transition: 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.mobile-menu-header img {
    width: 120px;
}

.mobile-menu-header button {
    border: none;
    background: #f7941d;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #eeeeee;
}

.mobile-nav li a,
.mobile-dropdown-btn {
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111827;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border: none;
    background: transparent;
}

.mobile-nav li a:hover,
.mobile-dropdown-btn.active {
    color: #f7941d;
}

.mobile-dropdown {
    display: none;
    list-style: none;
    padding: 0 0 10px 15px;
    margin: 0;
}

.mobile-dropdown.show {
    display: block;
}

.mobile-dropdown li {
    border-bottom: none;
}

.mobile-dropdown li a {
    padding: 9px 0;
    font-size: 14px;
    color: #555;
}

.mobile-touch-btn {
    margin-top: 25px;
    display: block;
    background: #f7941d;
    color: #ffffff;
    text-align: center;
    padding: 14px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}

/* iPad Responsive */
@media (max-width: 1199px) {
    .BIZL-header-container {
        padding: 0 35px;
    }

    .BIZL-nav ul {
        gap: 18px;
    }

    .BIZL-nav ul li a {
        font-size: 13px;
    }

    .BIZL-btn {
        padding: 11px 18px;
    }
}

/* Tablet and Mobile */
@media (max-width: 991px) {
    .BIZL-header-container {
        height: 72px;
        padding: 0 25px;
    }

    .BIZL-nav,
    .BIZL-btn {
        display: none;
    }

    .menu-open-btn {
        display: block;
    }

    .BIZL-logo img {
        width: 115px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .BIZL-header-container {
        padding: 0 16px;
    }

    .mobile-menu {
        width: 280px;
        left: -300px;
    }

    .BIZL-logo img {
        width: 105px;
    }
}

/* ================= FOOTER CTA ================= */

.footer-cta {
    background: linear-gradient(90deg, #0054bd, #003b91);
    color: #ffffff;
    overflow: hidden;
}

.footer-cta-inner {
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.cta-content {
    max-width: 620px;
    position: relative;
    z-index: 3;
}

.cta-content h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 12px;
}

.cta-content h2 span {
    color: #ff9f1c;
}

.cta-content p {
    color: #dce9ff;
    font-size: 16px;
    margin-bottom: 24px;
}

.cta-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #003b91;
    padding: 13px 25px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-content a:hover {
    background: #ff9f1c;
    color: #ffffff;
}

.cta-image {
    position: absolute;
    right: 70px;
    bottom: 0;
    width: 320px;
    height: 210px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cta-image::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: 20px;
    bottom: -55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
}

.cta-image img {
    width: 245px;
    max-height: 245px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    right: 30px;
}

/* ================= FOOTER MAIN ================= */

.BIZL-footer {
    background: #06264d;
    color: #ffffff;
    padding: 64px 0 22px;
}

.footer-main-row {
    align-items: flex-start;
}

.footer-brand {
    max-width: 360px;
}

.footer-brand img {
    width: 150px;
    background: #ffffff;
    padding: 8px 10px;
    border-radius: 2px;
    margin-bottom: 24px;
}

.footer-brand p {
    color: #c8d6ea;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #ff9f1c;
    transform: translateY(-3px);
}

.footer-links,
.footer-contact {
    padding-top: 8px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a,
.footer-contact a,
.footer-contact span {
    color: #c8d6ea;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact a:hover {
    color: #ff9f1c;
    padding-left: 4px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.footer-contact i {
    color: #ff9f1c;
    font-size: 17px;
    margin-top: 4px;
    min-width: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 52px;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-bottom p {
    margin: 0;
    color: #c8d6ea;
    font-size: 14px;
}

.footer-bottom a {
    color: #1e90ff;
    margin-left: 5px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ff9f1c;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .footer-cta-inner {
        min-height: 230px;
    }

    .cta-content {
        max-width: 470px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-image {
        right: 10px;
        width: 260px;
    }

    .cta-image img {
        width: 210px;
    }

    .BIZL-footer {
        padding-top: 52px;
    }
}

@media (max-width: 767px) {
    .footer-cta-inner {
        min-height: auto;
        padding: 45px 0 0;
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-image {
        position: relative;
        right: auto;
        width: 100%;
        height: auto;
        margin-top: 26px;
    }

    .cta-image::before {
        right: 50%;
        transform: translateX(50%);
    }

    .cta-image img {
        width: 190px;
    }

    .BIZL-footer {
        padding: 48px 0 22px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 575px) {
    .footer-cta {
        padding: 0 10px;
    }

    .cta-content h2 {
        font-size: 25px;
    }

    .cta-content a {
        width: 100%;
        justify-content: center;
    }

    .footer-brand img {
        width: 135px;
    }

    .footer-links h4,
    .footer-contact h4 {
        margin-bottom: 16px;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }
}

/* Hero */
.BIZL-hero {
    position: relative;
    min-height: 620px;
    padding: 110px 0 90px;
    background:
        linear-gradient(rgba(4, 35, 82, 0.93), rgba(3, 38, 86, 0.95)),
        url("../image/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 12px;
    margin-bottom: 22px;
}

.BIZL-hero h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 22px;
}

.BIZL-hero h1 span {
    color: #ff9f1c;
}

.BIZL-hero p {
    max-width: 540px;
    font-size: 15px;
    line-height: 1.8;
    color: #dce8f7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 28px;
}

.btn-orange {
    display: inline-block;
    background: #ff9416;
    color: #ffffff;
    padding: 13px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
}

.btn-orange:hover {
    background: #005ecb;
    color: #ffffff;
}

.btn-outline {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    padding: 13px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
}

.btn-outline:hover {
    background: #fff;
    color: #005ecb;
}

/* Hero Ring */
.hero-ring-area {
    position: relative;
    width: 500px;
    height: 430px;
    margin-left: auto;
}

.center-logo {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 125px;
    height: 125px;

    transform: translate(-50%, -50%);
    border-radius: 50%;

    background: #ffffff;

    border: 7px solid rgba(255, 255, 255, .35);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;

    overflow: hidden;
}

.center-logo img {

    width: 77px;

    height: auto;

    object-fit: contain;

    transform: scale(1.5);

    display: block;
}

.circle-line {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(46, 196, 255, 0.35);
}

.circle-one {
    width: 310px;
    height: 310px;
    left: 95px;
    top: 55px;
}

.circle-two {
    width: 390px;
    height: 220px;
    left: 45px;
    top: 125px;
    transform: rotate(-15deg);
}

.brand-bubble {
    position: absolute;
    width: 145px;
    height: 145px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    z-index: 4;
}

.brand-bubble img {
    width: 95px;
}

/* TOP BUBBLE */
.bubble-top {
    top: -28px;
    left: 178px;
    border: 7px solid #e8f3ff;
    animation: float-top 6s ease-in-out infinite;
}

/* LEFT BUBBLE */
.bubble-left {
    left: 45px;
    bottom: 65px;
    border: 7px solid #f3d9ff;
    animation: float-left 7s ease-in-out infinite;
}

/* RIGHT BUBBLE */
.bubble-right {
    right: 35px;
    bottom: 70px;
    border: 7px solid #cef7df;
    animation: float-right 5.5s ease-in-out infinite;
}

/* Floating Contact */
.floating-contact {
    position: fixed;
    right: 22px;
    top: 270px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-contact a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.floating-contact a:nth-child(1) {
    background: #24d366;
}

.floating-contact a:nth-child(2) {
    background: #1d7df2;
}

.floating-contact a:nth-child(3) {
    background: #ff9416;
}

/* iPad */
@media (max-width: 991px) {
    .floating-contact {
        right: 16px;
        top: 220px;
        gap: 10px;
    }

    .floating-contact a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .floating-contact {
        right: 14px;
        top: auto;
        bottom: 85px;
        gap: 9px;
    }

    .floating-contact a {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}

/* Stats */
.stats-wrapper {
    margin-top: -55px;
    position: relative;
    z-index: 5;
}

.stats-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.13);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #eef6ff;
    color: #005ecb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-item h3 {
    font-size: 28px;
    font-weight: 500;
    margin: 0;
}

.stat-item p {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
}

/* Common */
.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title span,
.small-label {
    color: #005ecb;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 500;
    margin-top: 8px;
}

.section-title h2 b {
    color: #ff9416;
}

.section-title p {
    color: #6b7280;
    font-size: 15px;
}

/* Divisions */
.division-section {
    padding: 90px 0;
}

.division-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.09);
    height: 100%;
}

.division-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.division-img img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    padding: 30px;
}

.division-content {
    padding: 25px;
}

.division-content img {
    width: 125px;
    margin-bottom: 15px;
}

.division-content p {
    color: #445064;
    font-size: 14px;
    line-height: 1.7;
}

.division-content ul {
    list-style: none;
    margin: 18px 0;
    padding: 0;
}

.division-content ul li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #27364f;
}

.division-content ul li {
    list-style: none;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.division-content ul li::before {
    content: "✓";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    /* Makes it round */

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-right: 10px;
    font-size: 12px;
    font-weight: 500;

    flex-shrink: 0;
}

/* Blue Card */
.division-card.blue li::before {
    color: #005ecb;
    background: rgba(0, 94, 203, 0.15);
}

/* Purple Card */
.division-card.purple li::before {
    color: #7c2cff;
    background: rgba(124, 44, 255, 0.15);
}

/* Green Card */
.division-card.green li::before {
    color: #05a660;
    background: rgba(5, 166, 96, 0.15);
}

.division-content a {
    display: inline-block;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
}

.blue .division-content a {
    background: #005ecb;
}

.purple .division-content a {
    background: #7c2cff;
}

.green .division-content a {
    background: #05a660;
}

/* Values */
.values-section {
    padding: 70px 0;
    background: #fbfdff;
}

.value-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.value-card i {
    width: 52px;
    height: 52px;
    background: #eef6ff;
    color: #005ecb;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.value-card h4 {
    font-size: 17px;
    font-weight: 500;
}

.value-card p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

/* About */
.about-section {
    padding: 90px 0;
}

.about-section h2 {
    font-size: 38px;
    font-weight: 500;
    margin: 10px 0 18px;
}

.about-section h2 b {
    color: #ff9416;
}

.about-section p {
    /* color: #5f6b7a; */
    line-height: 1.8;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.about-list li::before {
    content: "✓";
    color: #ff9416;
    font-weight: 500;
    margin-right: 8px;
}

.about-img-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 40px;
    margin-top: 0;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 40px;
}

/* Experience Box */
.experience-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.experience-box h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
}

.experience-box p {
    margin: 5px 0 0;
    font-size: 14px;
}

/* Tablet */
@media(max-width:991px) {

    .col-lg-7 {
        margin-top: 40px;
    }

    .about-img-box {
        border-radius: 30px;
    }

    .about-img-box img {
        border-radius: 30px;
    }

    .experience-box {
        bottom: 15px;
        left: 15px;
        padding: 12px 16px;
    }

    .experience-box h3 {
        font-size: 24px;
    }
}

/* Mobile */
@media(max-width:576px) {
    .about-img-box img {
        height: auto;
        min-height: unset;
        object-fit: contain;
    }

    .about-img-box {
        border-radius: 20px;
    }

    .about-img-box img {
        border-radius: 20px;
    }
}

.experience-box {
    bottom: 10px;
    left: 10px;
    right: 10px;
    width: auto;
    text-align: center;
    padding: 12px;
}

.experience-box h3 {
    font-size: 20px;
}

.experience-box p {
    font-size: 13px;
}

/* Achievement */
.achievement-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #002d68, #004ca8);
    color: #ffffff;
}

.section-title.light span,
.section-title.light h2 {
    color: #ffffff;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.achievement-grid h3 {
    color: #ff9416;
    font-size: 32px;
    font-weight: 500;
}

.achievement-grid p {
    color: #d7e7ff;
}

/* Testimonials */
.testimonial-section {
    padding: 90px 0;
    background: #f8fbff;
}

.testimonial-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
}

.client {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 20px;
}

.client img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.client h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.client span {
    font-size: 12px;
    color: #6b7280;
}

/* iPad */
@media (max-width: 991px) {
    .BIZL-hero {
        padding: 90px 0 80px;
        text-align: center;
    }

    .BIZL-hero h1 {
        font-size: 44px;
    }

    .BIZL-hero p {
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-ring-area {
        width: 430px;
        height: 390px;
        margin: 40px auto 0;
    }

    .brand-bubble {
        width: 120px;
        height: 120px;
    }

    .brand-bubble img {
        width: 82px;
    }

    .center-logo {
        width: 150px;
        height: 150px;
    }

    .circle-one {
        width: 270px;
        height: 270px;
        left: 80px;
    }

    .circle-two {
        width: 330px;
        height: 190px;
    }

    .stats-card,
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        text-align: center;
    }

    .about-list {
        display: inline-block;
        text-align: left;
    }

    .experience-box {
        right: 20px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .BIZL-hero {
        padding: 70px 0 65px;
    }

    .BIZL-hero h1 {
        font-size: 34px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-ring-area {
        width: 300px;
        height: 310px;
    }

    .center-logo {
        width: 115px;
        height: 115px;
    }

    .center-logo img {
        width: 66px;
    }

    .circle-one {
        width: 210px;
        height: 210px;
        left: 45px;
        top: 50px;
    }

    .circle-two {
        width: 250px;
        height: 150px;
        left: 25px;
        top: 110px;
    }

    .brand-bubble {
        width: 88px;
        height: 88px;
    }

    .brand-bubble img {
        width: 62px;
    }

    .bubble-top {
        left: 105px;
    }

    .bubble-left {
        left: 12px;
        bottom: 55px;
    }

    .bubble-right {
        right: 8px;
        bottom: 58px;
    }

    .stats-card,
    .achievement-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        justify-content: center;
        text-align: left;
    }

    .section-title h2,
    .about-section h2 {
        font-size: 28px;
    }

    .division-section,
    .about-section,
    .testimonial-section {
        padding: 60px 0;
    }

    /* .floating-contact {
        display: none;
    } */
}

.division-card,
.value-card,
.testimonial-card {

    transition: .35s;

}

.division-card:hover,
.value-card:hover,
.testimonial-card:hover {

    transform: translateY(-8px);

}

/* ── Center logo pulse ── */
.center-logo {
    animation: pulse-logo 3s ease-in-out infinite, fadeIn .6s ease both;
}

@keyframes pulse-logo {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0.35);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(var(--brand-rgb), 0);
    }
}

/* ── Rotating rings ── */
.circle-one {
    animation: spin-cw 18s linear infinite, fadeIn .6s ease .2s both;
}

.circle-two {
    animation: spin-ccw 28s linear infinite, fadeIn .6s ease .35s both;
    border-style: dashed;
    /* optional — makes the outer ring feel lighter */
}

@keyframes spin-cw {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-ccw {
    to {
        transform: rotate(-360deg);
    }
}

/* ── Floating bubbles ── */
.bubble-top {
    animation: float-top 6.0s ease-in-out infinite, fadeIn .6s ease .50s both;
}

.bubble-left {
    animation: float-left 7.0s ease-in-out infinite, fadeIn .6s ease .65s both;
}

.bubble-right {
    animation: float-right 5.5s ease-in-out infinite, fadeIn .6s ease .80s both;
}

/* FIXED FLOAT ANIMATION */
@keyframes float-top {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes float-left {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-8px);
    }
}

@keyframes float-right {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(8px);
    }
}

/* ── Staggered fade-in on load ── */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
    }
}

/* ── Bubble hover ── */
.brand-bubble {
    transition: transform .25s ease, box-shadow .25s ease;
}

.brand-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 0 18px rgba(var(--brand-rgb), 0.3);
}

/* About Page */
.about-hero {
    background:
        linear-gradient(135deg, rgba(0, 43, 105, 0.97), rgba(0, 86, 190, 0.94)),
        url("../image/about-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 95px 0 80px;
    color: #ffffff;
    overflow: hidden;
}

.breadcrumb-text {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
    font-size: 14px;
}

.breadcrumb-text a {
    color: #ffffff;
    text-decoration: none;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 8px;
}

.about-hero h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 28px;
}

.about-hero h3 span {
    color: #ff9416;
    font-weight: 500;
}

.about-hero p {
    max-width: 610px;
    color: #e9f2ff;
    line-height: 1.8;
    font-size: 16px;
}

.about-hero-img {
    position: relative;
    max-width: 560px;
    margin-left: auto;
}

.about-hero-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 24px;
}

.hero-exp-box {
    position: absolute;
    right: -55px;
    top: 42%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ff9416);
    color: #ffffff;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-exp-box h2 {
    font-size: 48px;
    font-weight: 500;
    margin: 0;
}

.hero-exp-box p {
    margin: 0;
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
}

/* Mission Vision */
.mission-vision {
    padding: 70px 0 45px;
}

.section-chip {
    display: table;
    margin: 0 auto 22px;
    background: #eaf3ff;
    color: #005ecb;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
}

.mv-card {
    position: relative;
    min-height: 185px;
    border-radius: 14px;
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 28px;
    overflow: hidden;
}

.mission-card {
    border: 1px solid #b8d5ff;
    background: #f8fbff;
}

.vision-card {
    border: 1px solid #ffd8af;
    background: #fff8f1;
}

.mv-icon {
    min-width: 72px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
}

.mv-icon.blue {
    background: #005ecb;
    color: #ffffff;
}

.mv-icon.orange {
    background: #ff9416;
    color: #ffffff;
}

.mv-card h3 {
    font-size: 24px;
    font-weight: 500;
    color: #071d49;
    margin-bottom: 12px;
}

.mv-card p {
    color: #243957;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    max-width: 380px;
}

/* .mv-bg-icon {
  position: absolute;
  right: 28px;
  bottom: -20px;
  font-size: 130px;
  opacity: 0.12;
} */

.mission-card .mv-bg-icon {
    color: #005ecb;
}

.vision-card .mv-bg-icon {
    color: #ff9416;
}

/* Values */
.about-values {
    padding: 45px 0 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 500;
    color: #071d49;
}

.section-title h2 span {
    color: #ff9416;
}

.section-title p {
    color: #31435f;
    font-size: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.core-card {
    background: #ffffff;
    border-radius: 12px;
    min-height: 145px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
}

.core-card:hover {
    transform: translateY(-6px);
}

.core-card i {
    font-size: 42px;
    margin-bottom: 15px;
    display: inline-block;
}

.core-card h4 {
    font-size: 15px;
    font-weight: 500;
    color: #071d49;
    margin-bottom: 14px;
}

.core-card .line {
    width: 42px;
    height: 3px;
    display: block;
    margin: auto;
    border-radius: 10px;
}

.blue {
    color: #005ecb;
}

.orange {
    color: #ff9416;
}

.purple {
    color: #7c2cff;
}

.green {
    color: #05a660;
}

.blue-bg {
    background: #005ecb;
}

.orange-bg {
    background: #ff9416;
}

.purple-bg {
    background: #7c2cff;
}

.green-bg {
    background: #05a660;
}

/* Journey */
.journey-section {
    padding: 60px 0 100px;
}

.journey-section h2 {
    font-size: 38px;
    font-weight: 500;
    color: #071d49;
    margin-bottom: 22px;
    position: relative;
}

.journey-section h2 span {
    color: #ff9416;
}

.journey-section h2::after {
    content: "";
    width: 36px;
    height: 3px;
    background: #005ecb;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.journey-section p {
    color: #243957;
    line-height: 1.8;
    font-size: 15px;
}

.journey-img-box {
    position: relative;
    padding-bottom: 80px;
}

.journey-img-box>img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 14px;
}

.journey-stats {
    position: absolute;
    left: -25px;
    right: -25px;
    bottom: 0;
    background: #ffffff;
    border-radius: 12px;
    padding: 22px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.journey-stats div {
    text-align: center;
    padding: 0 14px;
    border-right: 1px solid #e6edf7;
}

.journey-stats div:last-child {
    border-right: none;
}

.journey-stats i {
    font-size: 30px;
    color: #005ecb;
    margin-bottom: 10px;
    display: inline-block;
}

.journey-stats div:nth-child(2) i {
    color: #ff9416;
}

.journey-stats div:nth-child(3) i {
    color: #7c2cff;
}

.journey-stats div:nth-child(4) i {
    color: #05a660;
}

.journey-stats h5 {
    font-size: 13px;
    font-weight: 500;
    color: #071d49;
    line-height: 1.4;
    margin: 0;
}

/* iPad */
@media (max-width: 991px) {
    .about-hero {
        padding: 75px 0 70px;
        text-align: center;
    }

    .breadcrumb-text {
        justify-content: center;
    }

    .about-hero h1 {
        font-size: 46px;
    }

    .about-hero h3 {
        font-size: 24px;
    }

    .about-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-img {
        margin: 35px auto 0;
    }

    .hero-exp-box {
        right: 20px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .journey-section {
        text-align: center;
    }

    .journey-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .journey-stats {
        left: 0;
        right: 0;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .about-hero {
        padding: 60px 0;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .about-hero h3 {
        font-size: 20px;
    }

    .about-hero p {
        font-size: 14px;
        text-align: justify;
    }

    .about-hero-img img {
        height: 260px;
        border-radius: 18px;
    }

    .hero-exp-box {
        width: 115px;
        height: 115px;
        right: 12px;
        top: auto;
        bottom: -35px;
        transform: none;
    }

    .hero-exp-box h2 {
        font-size: 34px;
    }

    .hero-exp-box p {
        font-size: 12px;
    }

    .mission-vision {
        padding-top: 80px;
    }

    .mv-card {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }

    .mv-card p {
        max-width: 100%;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h2 {
        font-size: 27px;
    }

    .journey-img-box>img {
        height: 250px;
    }

    .journey-img-box {
        padding-bottom: 0;
    }

    .journey-stats {
        position: relative;
        margin-top: 18px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .journey-stats div {
        border-right: none;
        border-bottom: 1px solid #e6edf7;
        padding-bottom: 14px;
    }

    .journey-stats div:last-child {
        border-bottom: none;
    }
}

/* Careers Page */
.career-hero {
    background:
        linear-gradient(135deg, rgba(0, 37, 91, 0.98), rgba(0, 86, 190, 0.92)),
        url("../image/career-bg.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    /* padding: 85px 0 0; */
    overflow: hidden;
}

.career-breadcrumb {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
    font-size: 14px;
}

.career-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.career-hero h1 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 24px;
}

.career-hero h1 span {
    color: #ff9416;
}

.career-hero p {
    max-width: 520px;
    font-size: 17px;
    color: #eaf3ff;
    line-height: 1.8;
    margin-bottom: 35px;
}

.career-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 560px;
}

.career-icons div {
    text-align: center;
}

.career-icons i {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(0, 94, 203, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
}

.career-icons h5 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.career-hero-img {
    position: relative;
    text-align: center;
}

.career-hero-img img {
    /* max-width: 590px;
    width: 85%;
    display: block;
    margin-left: auto;
    border-radius: 231px;
    height: 515px; */
    max-width: 590px;
    width: 85%;
    height: auto;
    display: block;
    margin-left: auto;
    object-fit: contain;
}

.float-icon {
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #ffffff;
    color: #005ecb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* .icon-one {
  left: 30px;
  top: 140px;
  background: #005ecb;
  color: #ffffff;
}

.icon-two {
  right: 30px;
  top: 260px;
}

.icon-three {
  right: 65px;
  top: 70px;
} */

/* Main Section */
.career-main {
    padding: 70px 0 40px;
}

.career-title h2 {
    font-size: 34px;
    font-weight: 500;
    color: #071d49;
    margin-bottom: 12px;
}

.career-title h2 span {
    color: #ff9416;
}

.career-title h5 {
    font-size: 15px;
    font-weight: 500;
    color: #071d49;
    margin-bottom: 15px;
}

.career-title p {
    color: #243957;
    line-height: 1.8;
    font-size: 15px;
    max-width: 560px;
}

.job-list {
    margin-top: 30px;
    display: grid;
    gap: 16px;
}

.job-card {
    background: #ffffff;
    border: 1px solid #dde7f5;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 22px;
    text-decoration: none;
    color: #071d49;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.job-card:hover {
    transform: translateX(6px);
}

.job-icon {
    min-width: 64px;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.job-card h4 {
    flex: 1;
    margin: 0;
    font-size: 17px;
    font-weight: 500;
}

.job-card h4 span {
    font-weight: 500;
}

.job-card>i {
    font-size: 20px;
}

.job-card.blue .job-icon {
    background: #005ecb;
}

.job-card.purple .job-icon {
    background: #7c2cff;
}

.job-card.green .job-icon {
    background: #05a660;
}

.job-card.orange .job-icon {
    background: #ff9416;
}

.job-card.blue>i {
    color: #005ecb;
}

.job-card.purple>i {
    color: #7c2cff;
}

.job-card.green>i {
    color: #05a660;
}

.job-card.orange>i {
    color: #ff9416;
}

.review-note {
    margin-top: 25px;
    max-width: 520px;
    display: flex;
    gap: 18px;
    align-items: center;
    background: #eef6ff;
    border: 1px solid #d8e8ff;
    border-radius: 10px;
    padding: 18px 22px;
}

.review-note i {
    color: #005ecb;
    font-size: 28px;
}

.review-note p {
    margin: 0;
    color: #071d49;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
}

/* Apply Form */
.apply-box {
    background: linear-gradient(135deg, #eef6ff, #ffffff);
    border: 1px solid #c9dcf6;
    border-radius: 14px;
    padding: 76px;
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.06);
}

.apply-box h2 {
    color: #071d49;
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 28px;
    position: relative;
}

.apply-box h2::after {
    content: "";
    width: 42px;
    height: 3px;
    /* background: #005ecb; */
    position: absolute;
    left: 0;
    bottom: -10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #071d49;
    margin-bottom: 9px;
    display: block;
}

.form-group label span {
    color: #ff3b3b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #c9d8ea;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: #071d49;
    outline: none;
    background: #ffffff;
}

.form-group textarea {
    height: 105px;
    resize: none;
}

.apply-box button {
    width: 100%;
    border: none;
    background: linear-gradient(90deg, #005ecb, #003e9b);
    color: #ffffff;
    padding: 15px;
    border-radius: 7px;
    font-weight: 500;
}

/* Consultation */
.career-consult {
    padding: 25px 0 45px;
}

.consult-box {
    background:
        linear-gradient(135deg, rgba(0, 43, 105, 0.98), rgba(0, 86, 190, 0.95)),
        url("../image/consult-bg.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    min-height: 215px;
    padding: 38px 75px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.consult-box h2 {
    font-size: 32px;
    font-weight: 500;
}

.consult-box h2 span {
    color: #ff9416;
}

.consult-box h4 {
    font-size: 22px;
    font-weight: 500;
}

.consult-box p {
    color: #eaf3ff;
}

.consult-phone {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 22px;
}

.consult-phone i {
    width: 55px;
    height: 55px;
    background: #ffffff;
    color: #005ecb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.consult-phone strong {
    font-size: 28px;
}

.consult-box img {
    position: absolute;
    right: 120px;
    bottom: 0;
    max-width: 380px;
}

/* Internship */
.internship-section {
    padding: 35px 0 80px;
}

.intern-note {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: #005ecb;
    margin-top: 22px;
}

.intern-note i {
    font-size: 24px;
}

.intern-note strong {
    font-size: 15px;
    line-height: 1.7;
}

.intern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.intern-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    min-height: 210px;
}

.intern-card i {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.intern-card h4 {
    font-size: 16px;
    font-weight: 500;
    color: #071d49;
}

.intern-card p {
    color: #243957;
    font-size: 13px;
    line-height: 1.7;
}

.intern-card.blue i {
    background: #005ecb;
}

.intern-card.purple i {
    background: #7c2cff;
}

.intern-card.green i {
    background: #05a660;
}

.intern-card.orange i {
    background: #ff9416;
}

/* iPad */
@media (max-width: 991px) {
    .career-hero {
        text-align: center;
        padding-top: 75px;
    }

    .career-breadcrumb {
        justify-content: center;
    }

    .career-hero h1 {
        font-size: 46px;
    }

    .career-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .career-icons {
        margin: auto;
    }

    /* .career-hero-img img {
        margin: 35px auto 0;
        max-width: 480px;
    } */
     .career-hero-img img {
    margin: 35px auto 0;
    max-width: 480px;
    width: 90%;
    height: auto;
}

    .career-main {
        padding-top: 60px;
    }

    .career-title {
        text-align: center;
    }

    .career-title p {
        margin-left: auto;
        margin-right: auto;
    }

    .review-note {
        margin-left: auto;
        margin-right: auto;
    }

    .consult-box {
        padding: 35px;
    }

    .consult-box img {
        right: 30px;
        max-width: 300px;
    }

    .intern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .career-hero {
    padding: 50px 0 35px;
}

.career-hero-img {
    margin-top: 25px;
    text-align: center;
}

.career-hero-img img {
    width: 92%;
    max-width: 330px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 16px;
}
    .career-hero h1 {
        font-size: 36px;
    }

    .career-hero p {
        font-size: 15px;
    }

    .career-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .career-icons i {
        width: 50px;
        height: 50px;
        font-size: 21px;
    }

    .float-icon {
        display: none;
    }

    .career-title h2 {
        font-size: 29px;
    }

    .job-card {
        padding: 14px;
        gap: 14px;
    }

    .job-icon {
        min-width: 52px;
        width: 52px;
        height: 52px;
    }

    .job-card h4 {
        font-size: 14px;
    }

    .job-card h4 span {
        display: block;
        margin-top: 4px;
    }

    .apply-box {
        padding: 26px 20px;
    }

    .apply-box h2 {
        font-size: 28px;
    }

    .review-note {
        align-items: flex-start;
    }

    .consult-box {
        padding: 30px 22px 0;
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .consult-box h2 {
        font-size: 27px;
    }

    .consult-phone strong {
        font-size: 22px;
    }

    .consult-box img {
        position: relative;
        right: auto;
        max-width: 270px;
        margin: 25px auto 0;
    }

    .intern-grid {
        grid-template-columns: 1fr;
    }

    .internship-section {
        padding-bottom: 60px;
    }
}

/* CONTACT PAGE */
.contact-hero{
  background:
    linear-gradient(90deg,rgba(0,37,91,.98),rgba(0,70,160,.92)),
    url("../image/contact-bg.jpg");
  background-size:cover;
  background-position:center;
  color:#fff;
  padding:20px 0 40px;
  overflow:hidden;
}

.breadcrumb-text{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:25px;
  font-size:15px;
}

.breadcrumb-text a{
  color:#fff;
}

.contact-hero h1{
  font-size:58px;
  font-weight:500;
  line-height:1.15;
}

.contact-hero h1 span{
  color:#ff9800;
}

.title-line{
  width:42px;
  height:3px;
  background:#ff9800;
  margin:25px 0;
}

.contact-hero p{
  font-size:20px;
  line-height:1.7;
  max-width:420px;
}

.hero-people{
  position:relative;
  text-align:center;
  min-height:360px;
}

.hero-people img{
  border-radius: 60px;
  max-width:78%;
  height:auto;
  position:relative;
  z-index:2;
}

.float-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:#fff;
  color:#0046b8;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  position:absolute;
  z-index:3;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.icon-mail{
  left:16%;
  top:70px;
}

.icon-phone{
  right:4%;
  top:45px;
}

.icon-location{
  right:3%;
  bottom:90px;
}

/* CONTACT CARDS */
.contact-info-section{
  margin-top:-45px;
  position:relative;
  z-index:5;
}

.contact-card{
  background:#fff;
  border-radius:10px;
  min-height:280px;
  padding:17px 25px;
  text-align:center;
  box-shadow:0 10px 35px rgba(0,0,0,.08);
  border:1px solid #edf1f8;
}

.contact-icon{
  width:72px;
  height:72px;
  background:linear-gradient(135deg,#004ed0,#00359d);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 24px;
  font-size:34px;
}

.contact-card h3{
  font-size:25px;
  font-weight:500;
  color:#071b5f;
  margin-bottom:18px;
}

.contact-card p{
  color:#071b5f;
  font-size:17px;
  line-height:1.6;
}

/* LOVE SECTION */
.love-section{
  padding:40px 0 35px;
}

.love-box{
  background:linear-gradient(120deg,#f5faff,#eaf4ff);
  border:1px solid #dcecff;
  border-radius:10px;
  padding:42px 55px;
}

.love-box h2{
  color:#071b5f;
  font-size:31px;
  font-weight:500;
}

.love-box h2 span{
  color:#ff7a00;
}

.love-box > .text-center p{
  max-width:600px;
  margin:12px auto 0;
  color:#071b5f;
  font-size:16px;
}

.feature-box{
  display:flex;
  gap:22px;
  align-items:flex-start;
}

.feature-icon{
  min-width:72px;
  height:72px;
  border-radius:12px;
  background:linear-gradient(135deg,#004ed0,#00359d);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:35px;
}

.feature-box h4{
  font-size:18px;
  color:#071b5f;
  font-weight:500;
}

.feature-box p{
  margin:0;
  color:#071b5f;
  font-size:15px;
  line-height:1.5;
}

.border-lg{
  border-left:1px solid #cfdced;
  border-right:1px solid #cfdced;
}

/* MAP */
.map-section{
  padding:0 0 30px;
}

.map-box{
  height:250px;
  border-radius:10px;
  overflow:hidden;
  position:relative;
}

.map-box iframe{
  width:100%;
  height:100%;
  border:0;
}

.map-card{
  position:absolute;
  left:70px;
  top:32px;
  background:#fff;
  padding:26px 34px;
  border-radius:10px;
  max-width:270px;
  box-shadow:0 12px 32px rgba(0,0,0,.15);
}

.map-pin{
  width:48px;
  height:48px;
  border-radius:50%;
  background:#0046b8;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:25px;
  margin-bottom:12px;
}

.map-card h4{
  font-size:18px;
  color:#071b5f;
  font-weight:500;
}

.map-card p{
  color:#071b5f;
  font-size:14px;
}

.map-card a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#0046b8;
  color:#fff;
  padding:12px 28px;
  border-radius:5px;
  font-weight:600;
}

/* ASSISTANCE */
.assistance-section{
  padding:0 0 60px;
}

.assist-box{
  background:#021f59;
  border-radius:8px;
  padding:28px 55px;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}

.assist-left{
  display:flex;
  align-items:center;
  gap:25px;
}

.assist-left > i{
  font-size:55px;
  color:#ff9800;
}

.assist-left h3{
  font-size:25px;
  font-weight:500;
}

.assist-left h3 span{
  color:#ff9800;
}

.assist-left p{
  margin:0;
  color:#fff;
}

.assist-actions{
  display:flex;
  gap:25px;
}

.call-btn,
.email-btn{
  min-width:220px;
  padding:17px 26px;
  border-radius:7px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:500;
}

.call-btn{
  background:#fff;
  color:#071b5f;
}

.email-btn{
  background:#ff8500;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:991px){
  .contact-hero{
    text-align:center;
    padding:65px 0 80px;
  }

  .contact-hero h1{
    font-size:44px;
  }

  .contact-hero p{
    margin:auto;
  }

  .title-line{
    margin:20px auto;
  }

  .breadcrumb-text{
    justify-content:center;
  }

  .hero-people{
    margin-top:30px;
    min-height:300px;
  }

  .hero-people img{
    max-width:70%;
  }

  .contact-info-section{
    margin-top:-50px;
  }

  .contact-card{
    min-height:auto;
  }

  .love-box{
    padding:35px 25px;
  }

  .border-lg{
    border:0;
  }

  .assist-box{
    flex-direction:column;
    text-align:center;
  }

  .assist-left{
    justify-content:center;
  }

  .assist-actions{
    flex-wrap:wrap;
    justify-content:center;
  }
}

@media(max-width:575px){
  .contact-hero h1{
    font-size:36px;
  }

  .contact-hero p{
    font-size:16px;
  }

  .hero-people img{
    max-width:88%;
  }

  .float-icon{
    width:52px;
    height:52px;
    font-size:25px;
  }

  .icon-mail{
    left:5%;
    top:45px;
  }

  .icon-phone{
    right:2%;
    top:35px;
  }

  .icon-location{
    right:2%;
    bottom:85px;
  }

  .contact-card{
    padding:32px 20px;
  }

  .love-box h2{
    font-size:25px;
  }

  .feature-box{
    flex-direction:column;
    text-align:center;
    align-items:center;
  }

  .map-box{
    height:420px;
  }

  .map-card{
    left:15px;
    right:15px;
    top:25px;
    max-width:none;
  }

  .assist-box{
    padding:28px 18px;
  }

  .assist-left{
    flex-direction:column;
  }

  .call-btn,
  .email-btn{
    width:100%;
    min-width:auto;
  }
}
/* MOBILE MENU FIX */
body.menu-open {
    overflow: hidden;
}

.mobile-dropdown-btn i {
    transition: 0.3s ease;
}

.mobile-dropdown-btn.active i {
    transform: rotate(180deg);
}

.mobile-dropdown {
    display: none;
    list-style: none;
    padding: 0 0 12px 16px;
    margin: 0;
}

.mobile-dropdown.show {
    display: block;
}

.mobile-dropdown li {
    border-bottom: none;
}

.mobile-dropdown li a {
    padding: 10px 0;
    font-size: 14px;
    color: #555;
}
/* FLOATING CONTACT MOBILE FIX */
@media (max-width:575px) {
    .floating-contact {
        display: flex !important;
        right: 14px;
        top: auto;
        bottom: 80px;
        z-index: 999;
    }

    .floating-contact a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}
/* Career FAQ Professional Design */
.career-faq-box{
    background:linear-gradient(135deg,#ffffff,#f3f8ff);
    border:1px solid #dbe8f8;
    border-radius:18px;
    padding:36px;
    box-shadow:0 18px 45px rgba(0,43,105,.10);
    position:relative;
    overflow:hidden;
}

.career-faq-box::before{
    content:"";
    position:absolute;
    width:160px;
    height:160px;
    border-radius:50%;
    background:rgba(0,74,171,.08);
    right:-55px;
    top:-60px;
}

.career-faq-box::after{
    content:"";
    position:absolute;
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(255,122,0,.10);
    left:-30px;
    bottom:-35px;
}

.faq-label{
    display:inline-block;
    background:#eaf3ff;
    color:var(--brand-blue-light);
    padding:7px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:.6px;
    margin-bottom:14px;
    position:relative;
    z-index:2;
}

.career-faq-box h2{
    color:var(--brand-text);
    font-size:32px;
    font-weight:800;
    margin-bottom:10px;
    position:relative;
    z-index:2;
}

.career-faq-box h2 span{
    color:var(--brand-orange);
}

.faq-subtitle{
    color:#52647c;
    font-size:15px;
    line-height:1.7;
    margin-bottom:26px;
    position:relative;
    z-index:2;
}

.career-faq-accordion{
    position:relative;
    z-index:2;
}

.career-faq-accordion .accordion-item{
    border:0;
    background:#ffffff;
    border-radius:14px;
    margin-bottom:14px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.07);
}

.career-faq-accordion .accordion-button{
    background:#ffffff;
    color:var(--brand-text);
    font-size:15px;
    font-weight:500;
    padding:18px 20px;
    box-shadow:none;
    gap:12px;
}

.career-faq-accordion .accordion-button::after{
    width:34px;
    height:34px;
    border-radius:50%;
    background-color:#eef6ff;
    background-position:center;
    background-size:14px;
    margin-left:auto;
}

.career-faq-accordion .accordion-button:not(.collapsed){
    background:linear-gradient(135deg,var(--brand-blue-dark),var(--brand-blue));
    color:#ffffff;
}

.career-faq-accordion .accordion-button:not(.collapsed)::after{
    background-color:rgba(255,255,255,.18);
    filter:brightness(0) invert(1);
}

.faq-icon{
    min-width:38px;
    width:38px;
    height:38px;
    border-radius:50%;
    background:#eef6ff;
    color:var(--brand-blue-light);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
}

.career-faq-accordion .accordion-button:not(.collapsed) .faq-icon{
    background:rgba(255,255,255,.18);
    color:#ffffff;
}

.career-faq-accordion .accordion-body{
    color:#52647c;
    font-size:15px;
    line-height:1.8;
    padding:0 22px 22px 70px;
    background:#ffffff;
}

.faq-contact-strip{
    margin-top:22px;
    background:var(--brand-blue-dark);
    color:#ffffff;
    border-radius:14px;
    padding:18px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    position:relative;
    z-index:2;
}

.faq-contact-strip div{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:15px;
    font-weight:500;
}

.faq-contact-strip i{
    color:var(--brand-orange);
    font-size:22px;
}

.faq-contact-strip a{
    background:var(--brand-orange);
    color:#ffffff;
    padding:11px 18px;
    border-radius:8px;
    font-size:14px;
    font-weight:500;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
    transition:.3s ease;
}

.faq-contact-strip a:hover{
    background:#ffffff;
    color:var(--brand-blue-dark);
}

@media(max-width:575px){
    .career-faq-box{
        padding:26px 18px;
    }

    .career-faq-box h2{
        font-size:26px;
    }

    .career-faq-accordion .accordion-button{
        font-size:14px;
        padding:15px;
    }

    .faq-icon{
        min-width:34px;
        width:34px;
        height:34px;
    }

    .career-faq-accordion .accordion-body{
        padding:0 16px 18px 63px;
        font-size:14px;
    }

    .faq-contact-strip{
        flex-direction:column;
        align-items:flex-start;
    }

    .faq-contact-strip a{
        width:100%;
        justify-content:center;
    }
}