/* ==========================================
   JAK TRANSPORT HERO SLIDER
========================================== */

.hero-section{
    position:relative;
    width:100%;
    overflow:hidden;
    margin-top:-10px;
}

/* ===============================
   Sliderqa
================================ */

#heroSlider{
    width:100%;
}

.carousel-item{
    position:relative;
    height:90vh;
    min-height:650px;
}

.carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* ===============================
   Overlay
================================ */

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        to right,
        rgba(4,19,39,.82),
        rgba(4,19,39,.45),
        rgba(4,19,39,.20)
    );
    z-index:1;
}

/* ===============================
   Hero Content
================================ */

.hero-content{
    position:absolute;
    top:50%;
    left:0;
    right:0;
    transform:translateY(-50%);
    z-index:10;
}

.hero-text{
    max-width:650px;
    color:#fff;
}

.hero-subtitle{

    display:inline-block;

    background:#f6b400;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;

}

.hero-text h1{

    font-size:68px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:25px;

}

.hero-text h1 span{

    color:#f6b400;

}

.hero-text p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:35px;

    color:#f5f5f5;

}

/* ===============================
   Buttons
================================ */

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary-custom{

    background:#f6b400;

    color:#fff;

    padding:16px 35px;

    border-radius:6px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-primary-custom:hover{

    background:#d89900;

    color:#fff;

    transform:translateY(-3px);

}

.btn-secondary-custom{

    background:#fff;

    color:#082b58;

    padding:16px 35px;

    border-radius:6px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-secondary-custom:hover{

    background:#f2f2f2;

    color:#082b58;

    transform:translateY(-3px);

}

/* ===============================
   Slider Arrows
================================ */

.carousel-control-prev,
.carousel-control-next{

    width:70px;

    opacity:1;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background-color:rgba(255,255,255,.25);

    backdrop-filter:blur(6px);

    background-size:20px;

    transition:.3s;

}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover{

    background-color:#f6b400;

}

/* ===============================
   Indicators
================================ */

.carousel-indicators{

    bottom:30px;

}

.carousel-indicators button{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#fff;

    margin:0 6px;

    opacity:.8;

}

.carousel-indicators .active{

    background:#f6b400;

}

/* ===============================
   Animation
================================ */

.carousel-item.active .hero-text{

    animation:fadeUp 1s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ===============================
   Tablet
================================ */

@media(max-width:991px){

.carousel-item{

    height:650px;

}

.hero-text{

    max-width:100%;

}

.hero-text h1{

    font-size:48px;

}

.hero-text p{

    font-size:18px;

}

.carousel-control-prev,
.carousel-control-next{

    width:50px;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    width:40px;

    height:40px;

}

}

/* ===============================
   Mobile
================================ */

@media(max-width:768px){

.hero-section{

    margin-top:-32px;

}

.carousel-item{

    height:520px;

    min-height:520px;

}

.hero-content{

    padding:0 20px;

}

.hero-subtitle{

    font-size:12px;

    padding:6px 14px;

}

.hero-text h1{

    font-size:32px;

    line-height:1.2;

}

.hero-text p{

    font-size:14px;

    line-height:1.6;

    margin-bottom:20px;

}

.hero-buttons{

    flex-direction:column;

}

.btn-primary-custom,
.btn-secondary-custom{

    width:200px;

    text-align:center;

    padding:12px 20px;

    font-size:14px;

}

.carousel-control-prev{

    left:5px;

}

.carousel-control-next{

    right:5px;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    width:30px;

    height:30px;

    background-size:12px;

}

.carousel-indicators{

    bottom:15px;

}

.carousel-indicators button{

    width:8px;

    height:8px;

}

}




/* =========================================================
   JAK TRANSPORT PAGE LOADER
========================================================= */

#jak-page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

#jak-page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.jak-loader-content {
    text-align: center;
}

.jak-loader-logo {
    display: block;
    width: 170px;
    max-width: 70vw;
    height: auto;

    margin: 0 auto 25px;
}

/* Spinner */

.jak-spinner {
    width: 48px;
    height: 48px;

    margin: 0 auto 18px;

    border: 4px solid rgba(27, 64, 101, 0.15);
    border-top-color: #f5a900;
    border-right-color: #1b4065;

    border-radius: 50%;

    animation: jakLoaderSpin 0.8s linear infinite;
}

.jak-loader-content p {
    margin: 0;

    color: #1b4065;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1px;
}

@keyframes jakLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile */

@media (max-width: 575px) {

    .jak-loader-logo {
        width: 140px;
        margin-bottom: 20px;
    }

    .jak-spinner {
        width: 40px;
        height: 40px;

        border-width: 3px;
    }

    .jak-loader-content p {
        font-size: 11px;
    }
}

/* ===========================
   Nav_bar_Css
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    padding-top:85px;
}

/* ==========================
   Feature Boxes
========================== */

.icon-boxes-container{
    position:relative;
    margin-top:-90px;
    margin-bottom:70px;
    z-index:20;
}

.icon-box{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.icon-box:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,.18);
}

.icon-circle{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:#F6B400;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:34px;
    margin-bottom:20px;
}

.icon-box h4{
    font-size:24px;
    font-weight:700;
    color:#082B58;
    margin-bottom:15px;
}

.icon-box p{
    color:#666;
    line-height:1.7;
}
/* Mobile */

@media (max-width:991px){

.icon-boxes-container{
    margin-top:40px;
}

.icon-box{
    margin-bottom:20px;
}

}


.main-nav .menu li a{
    color:#0A1F44;
    text-decoration:none;
    font-size:16px;
    font-weight:700;   /* Bold */
    text-transform:uppercase;
    letter-spacing:0.5px;
    transition:0.3s ease;
}










/* =========================================================
   JAK TRANSPORT
   PROFESSIONAL RESPONSIVE NAVBAR
========================================================= */


/* =========================================================
   HEADER
========================================================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: auto;

    background: #ffffff;

    box-shadow:
        0 3px 15px rgba(0, 0, 0, 0.08);

    z-index: 9999;

}


/* =========================================================
   CONTAINER
========================================================= */

.header .navbar-container {

    max-width: 1320px;

    width: 100%;

    height: 85px;

    margin: 0 auto;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}


.logo a {

    display: flex;

    align-items: center;

    text-decoration: none;

}


.logo img {

    display: block;

    width: 170px;

    height: auto;

    max-width: 100%;

}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-nav {

    margin-left: auto;

    margin-right: auto;

}


.menu {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 40px;

    margin: 0;

    padding: 0;

    list-style: none;

}


.menu li {

    margin: 0;

    padding: 0;

    position: relative;

}


.menu li a {

    display: block;

    position: relative;

    padding: 8px 0;

    color: #082B58;

    background: transparent;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        color 0.3s ease;

}


/* =========================================================
   NAV UNDERLINE
========================================================= */

.menu li a::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 0;

    height: 2px;

    background: #F5A300;

    transform: translateX(-50%);

    transition:
        width 0.3s ease;

}


.menu li a:hover {

    color: #F5A300;

}


.menu li a:hover::after {

    width: 100%;

}


/* =========================================================
   ACTIVE PAGE
========================================================= */

.menu li.active a {

    color: #F5A300;

}


.menu li.active a::after {

    width: 100%;

}


/* =========================================================
   RIGHT SIDE
========================================================= */

.navbar-actions {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 12px;

    flex-shrink: 0;

}


/* =========================================================
   GET A QUOTE
========================================================= */

.quote-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 23px;

    min-height: 46px;

    color: #ffffff;

    background: #F5A300;

    border: 2px solid #F5A300;

    border-radius: 6px;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        all 0.3s ease;

}


.quote-btn i {

    font-size: 12px;

    transition:
        transform 0.3s ease;

}


.quote-btn:hover {

    color: #ffffff;

    background: #D99000;

    border-color: #D99000;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(245, 163, 0, 0.25);

}


.quote-btn:hover i {

    transform: translateX(4px);

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-toggler {

    display: none;

    width: 45px;

    height: 45px;

    padding: 0;

    margin: 0;

    border: none;

    outline: none;

    border-radius: 6px;

    background: #F5A300;

    cursor: pointer;

    position: relative;

    z-index: 10001;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


.mobile-menu-toggler span {

    display: block;

    width: 23px;

    height: 3px;

    border-radius: 3px;

    background: #ffffff;

    transition:
        all 0.3s ease;

}


.mobile-menu-toggler:hover {

    background: #D99000;

}


/* =========================================================
   MOBILE BUTTON → X
========================================================= */

.mobile-menu-toggler.open span:nth-child(1) {

    transform:
        translateY(8px)
        rotate(45deg);

}


.mobile-menu-toggler.open span:nth-child(2) {

    opacity: 0;

    transform: scale(0);

}


.mobile-menu-toggler.open span:nth-child(3) {

    transform:
        translateY(-8px)
        rotate(-45deg);

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 991px) {


    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    .header .navbar-container {

        height: 70px;

        padding-left: 20px;

        padding-right: 20px;

    }


    /* -----------------------------------------------------
       LOGO
    ----------------------------------------------------- */

    .logo img {

        width: 140px;

    }


    /* -----------------------------------------------------
       RIGHT SIDE
    ----------------------------------------------------- */

    .navbar-actions {

        display: flex;

        align-items: center;

        justify-content: flex-end;

    }


    /* -----------------------------------------------------
       HIDE QUOTE BUTTON
    ----------------------------------------------------- */

    .quote-btn {

        display: none !important;

    }


    /* -----------------------------------------------------
       SHOW MOBILE BUTTON
    ----------------------------------------------------- */

    .mobile-menu-toggler {

        display: flex !important;

    }


    /* -----------------------------------------------------
       MOBILE NAV
    ----------------------------------------------------- */

    .main-nav {

        display: none !important;

        position: absolute;

        top: 70px;

        left: 0;

        width: 100%;

        margin: 0;

        padding: 0;

        background: #ffffff;

        border-top: 1px solid #eeeeee;

        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.12);

        z-index: 10000;

    }


    /* -----------------------------------------------------
       OPEN MOBILE NAV
    ----------------------------------------------------- */

    .main-nav.show {

        display: block !important;

    }


    /* -----------------------------------------------------
       MENU
    ----------------------------------------------------- */

    .menu {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        width: 100%;

        margin: 0;

        padding: 8px 0;

    }


    /* -----------------------------------------------------
       MENU ITEMS
    ----------------------------------------------------- */

    .menu li {

        display: block;

        width: 100%;

        border-bottom:
            1px solid #eeeeee;

    }


    .menu li:last-child {

        border-bottom: none;

    }


    /* -----------------------------------------------------
       MOBILE LINKS
    ----------------------------------------------------- */

    .menu li a {

        display: block;

        width: 100%;

        padding: 16px 22px;

        color: #082B58;

        background: #ffffff;

        font-size: 14px;

        font-weight: 700;

        text-transform: uppercase;

        transition:
            all 0.25s ease;

    }


    /* Remove desktop underline */

    .menu li a::after {

        display: none;

    }


    /* Hover */

    .menu li a:hover {

        padding-left: 30px;

        color: #ffffff;

        background: #082B58;

    }


    /* Active */

    .menu li.active a {

        color: #ffffff;

        background: #F5A300;

    }


}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {


    .header .navbar-container {

        height: 65px;

        padding-left: 15px;

        padding-right: 15px;

    }


    .logo img {

        width: 125px;

    }


    .mobile-menu-toggler {

        width: 43px;

        height: 43px;

    }


    .mobile-menu-toggler span {

        width: 21px;

        height: 2.5px;

    }


    .main-nav {

        top: 65px;

    }


    .menu li a {

        padding: 15px 20px;

        font-size: 13px;

    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 400px) {


    .header .navbar-container {

        padding-left: 12px;

        padding-right: 12px;

    }


    .logo img {

        width: 115px;

    }


    .mobile-menu-toggler {

        width: 41px;

        height: 41px;

    }


    .mobile-menu-toggler span {

        width: 20px;

    }

}


/* ===============================
   Contact.html
================================ */



.contact-section{
    padding:90px 0;
    background:#f8fafc;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#F7A600;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:42px;
    color:#0A2A5E;
    font-weight:800;
    margin-top:10px;
}

.section-title p{
    color:#666;
    max-width:650px;
    margin:15px auto 0;
}

.contact-info{
    background:#fff;
    border-radius:15px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;
}

.info-box{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.info-box i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#F7A600;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.info-box h5{
    color:#0A2A5E;
    font-weight:700;
}

.map-box{
    width:100%;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.map-box iframe{
    width:100%;
    height:450px;
    border:0;
    display:block;
}

@media (max-width:768px){

    .map-box iframe{
        height:300px;
    }

}



.contact-form{
    background:#fff;
    margin-top:50px;
    padding:40px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form .form-control{
    margin-bottom:20px;
    border-radius:8px;
    padding:15px;
    height:55px;
}

.contact-form textarea{
    height:180px !important;
}

.contact-btn{
    background:#F7A600;
    color:#fff;
    border:none;
    padding:16px 40px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.contact-btn:hover{
    background:#0A2A5E;
}

@media(max-width:991px){

.contact-info{
    margin-bottom:30px;
}

.section-title h2{
    font-size:32px;
}

.map-box iframe{
    min-height:320px;
}

.contact-form{
    padding:25px;
}

}



/* ===============================
  End  Contact.html
================================ */






/* ===============================
  End  About_us.html
================================ */





/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.jak-experience-badge {

    position: absolute;

    left: -30px;
    bottom: 45px;

    width: 150px;
    height: 150px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: #1b4065;

    color: #ffffff;

    border-radius: 50%;

    border: 8px solid #ffffff;

    box-shadow:
        0 15px 35px rgba(27, 64, 101, 0.25);

    animation: jakFloat 4s ease-in-out infinite;
}


.jak-experience-number {
    display: block;

    font-family: "Nunito", sans-serif;

    font-size: 38px;

    font-weight: 900;

    line-height: 1;

    color: #f5a900;
}


.jak-experience-text {
    margin-top: 7px;

    font-family: "Heebo", sans-serif;

    font-size: 12px;

    line-height: 1.35;

    text-transform: uppercase;

    letter-spacing: 1px;
}


@keyframes jakFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =========================================================
   LOCATION BADGE
========================================================= */

.jak-location-badge {

    position: absolute;

    right: -5px;
    bottom: -20px;

    padding: 12px 20px;

    background: #f5a900;

    color: #1b4065;

    font-size: 13px;

    font-weight: 700;

    border-radius: 30px;

    box-shadow:
        0 10px 25px rgba(245, 169, 0, 0.25);
}


.jak-location-badge i {
    margin-right: 7px;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.jak-about-content {
    position: relative;

    padding: 10px 0;
}


/* Section label */

.jak-section-label {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #f5a900;

    font-family: "Nunito", sans-serif;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.jak-section-label span {

    display: block;

    width: 45px;
    height: 3px;

    background: #f5a900;

    border-radius: 10px;
}


/* Main heading */

.jak-about-content h1 {

    margin: 0;

    color: #1b4065;

    font-family: "Nunito", sans-serif;

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 700;

    line-height: 1.1;
}


.jak-about-content h1 strong {

    display: block;

    color: #f5a900;

    font-weight: 900;
}


/* Gold line */

.jak-title-line {

    width: 70px;
    height: 4px;

    margin: 20px 0 25px;

    background: #f5a900;

    border-radius: 10px;
}


/* Paragraphs */

.jak-about-content p {

    margin: 0 0 18px;

    color: #64748b;

    font-family: "Heebo", sans-serif;

    font-size: 16px;

    line-height: 1.8;
}


.jak-about-content .jak-intro {

    color: #1b4065;

    font-size: 18px;

    font-weight: 500;

    line-height: 1.7;
}


.jak-about-content p strong {

    color: #1b4065;

    font-weight: 700;
}


/* =========================================================
   FEATURES
========================================================= */

.jak-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin: 30px 0;
}


.jak-feature {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px;

    background: #f8fafc;

    border: 1px solid #e7edf3;

    border-radius: 12px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.jak-feature:hover {

    transform: translateY(-5px);

    border-color: rgba(245, 169, 0, 0.5);

    box-shadow:
        0 12px 25px rgba(27, 64, 101, 0.10);
}


.jak-feature-icon {

    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #1b4065;

    color: #f5a900;

    border-radius: 10px;

    font-size: 19px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.jak-feature:hover .jak-feature-icon {

    background: #f5a900;

    color: #1b4065;

    transform: rotate(5deg) scale(1.08);
}


.jak-feature h3 {

    margin: 0 0 3px;

    color: #1b4065;

    font-family: "Nunito", sans-serif;

    font-size: 15px;

    font-weight: 800;
}


.jak-feature p {

    margin: 0;

    color: #7a8795;

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   BUTTON
========================================================= */

.jak-about-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 25px;

    background: #1b4065;

    color: #ffffff !important;

    text-decoration: none !important;

    font-family: "Nunito", sans-serif;

    font-size: 14px;

    font-weight: 800;

    border-radius: 8px;

    box-shadow:
        0 10px 25px rgba(27, 64, 101, 0.20);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.jak-about-btn:hover {

    background: #f5a900;

    color: #1b4065 !important;

    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(245, 169, 0, 0.25);
}


.jak-about-btn i {

    transition:
        transform 0.3s ease;
}


.jak-about-btn:hover i {

    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .jak-about-section {
        padding: 75px 0;
    }


    .jak-about-container {

        grid-template-columns: 1fr;

        gap: 60px;

        width: min(720px, 90%);
    }


    .jak-about-visual {

        max-width: 650px;

        width: 100%;

        margin: auto;
    }


    .jak-about-content {
        text-align: left;
    }


    .jak-about-content h1 {
        font-size: 46px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .jak-about-section {
        padding: 60px 0;
    }


    .jak-about-container {
        width: 90%;

        gap: 45px;
    }


    .jak-about-visual {
        padding: 12px;
    }


    .jak-image-frame {
        padding: 10px;
        left: 15px;
        

        border-radius: 18px;
    }


    .jak-experience-badge {

        width: 115px;
        height: 115px;

        left: -15px;

        bottom: 25px;

        border-width: 6px;
    }


    .jak-experience-number {
        font-size: 29px;
    }


    .jak-experience-text {
        font-size: 9px;
    }


    .jak-location-badge {

        right: -5px;

        bottom: -18px;

        font-size: 11px;

        padding: 10px 15px;
    }


    .jak-about-content h1 {
        font-size: 38px;
    }


    .jak-about-content .jak-intro {
        font-size: 16px;
    }


    .jak-about-content p {
        font-size: 14px;

        line-height: 1.7;
    }


    .jak-features {

        grid-template-columns: 1fr;

        gap: 10px;

        margin: 25px 0;
    }


    .jak-feature {
        padding: 13px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .jak-about-section {
        padding: 45px 0;
    }


    .jak-about-content h1 {
        font-size: 32px;
    }


    .jak-section-label {
        font-size: 12px;

        letter-spacing: 1.5px;
    }


    .jak-section-label span {
        width: 30px;
    }


    .jak-about-content .jak-intro {
        font-size: 15px;
    }


    .jak-experience-badge {
        width: 95px;
        height: 95px;

        left: -8px;
    }


    .jak-experience-number {
        font-size: 24px;
    }


    .jak-experience-text {
        font-size: 8px;
    }


    .jak-location-badge {
        position: relative;

        right: auto;
        bottom: auto;

        display: inline-block;

        margin-top: 15px;
    }


    .jak-about-btn {
        width: 100%;

        justify-content: center;
    }

}

        /* =========================
           STORY
        ========================== */

        .story-section {
            background: #f8fafc;
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .story-image {
            position: relative;
        }

        .story-image img {
            width: 100%;
            display: block;
            border-radius: 8px;
            box-shadow: 0 25px 60px rgba(20, 45, 70, .15);
        }

        .experience-badge {
            position: absolute;
            right: -30px;
            bottom: -30px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: #f2a51a;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            box-shadow: 0 15px 35px rgba(242,165,26,.35);
        }

        .experience-badge strong {
            font-size: 35px;
            font-weight: 800;
        }

        .experience-badge span {
            font-size: 11px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .story-content h2 {
            font-size: 38px;
            color: #173c61;
            margin-bottom: 20px;
        }

        .story-content h2 span {
            color: #f2a51a;
        }

        .story-content p {
            color: #6b7a8c;
            line-height: 1.9;
            margin-bottom: 18px;
        }

        .story-list {
            list-style: none;
            margin-top: 25px;
        }

        .story-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            color: #35485c;
            font-weight: 600;
        }

        .story-list i {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(242,165,26,.12);
            color: #f2a51a;
            font-size: 12px;
        }


        /* =========================
           MISSION VISION VALUES
        ========================== */

        .mvv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .mvv-card {
            position: relative;
            padding: 42px 32px;
            background: white;
            border: 1px solid #edf0f4;
            border-radius: 8px;
            transition: .4s ease;
            overflow: hidden;
        }

        .mvv-card::before {
            content: "";
            position: absolute;
            width: 4px;
            height: 0;
            left: 0;
            top: 0;
            background: #f2a51a;
            transition: .4s ease;
        }

        .mvv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(23,60,97,.12);
        }

        .mvv-card:hover::before {
            height: 100%;
        }

        .mvv-icon {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #edf4fa;
            color: #173c61;
            font-size: 25px;
            margin-bottom: 25px;
        }

        .mvv-card h3 {
            color: #173c61;
            font-size: 21px;
            margin-bottom: 14px;
        }

        .mvv-card p {
            color: #758397;
            line-height: 1.8;
            font-size: 14px;
        }


        /* =========================
           SERVICES
        ========================== */

        .services-section {
            background: #f8fafc;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .service-card {
            background: white;
            padding: 35px 30px;
            border-radius: 8px;
            border: 1px solid #edf0f4;
            transition: .4s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(23,60,97,.10);
        }

        .service-icon {
            color: #f2a51a;
            font-size: 35px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            color: #173c61;
            font-size: 19px;
            margin-bottom: 12px;
        }

        .service-card p {
            color: #788698;
            line-height: 1.8;
            font-size: 14px;
        }


        /* =========================
           CTA
        ========================== */

        .cta-section {
            padding: 80px 0;
            background:
                linear-gradient(120deg, #173c61, #0e2b48);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            border: 1px solid rgba(255,255,255,.08);
            transform: rotate(45deg);
            left: -200px;
            top: -220px;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .cta-content h2 {
            font-size: 38px;
            margin-bottom: 15px;
        }

        .cta-content h2 span {
            color: #f2a51a;
        }

        .cta-content p {
            color: rgba(255,255,255,.72);
            margin-bottom: 30px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background: #f2a51a;
            color: white;
            text-decoration: none;
            font-weight: 700;
            border-radius: 4px;
            transition: .3s;
        }

        .cta-btn:hover {
            background: white;
            color: #173c61;
            transform: translateY(-3px);
        }


        /* =========================
           ANIMATIONS
        ========================== */

        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes busMove {
            from {
                opacity: 0;
                transform: translateX(150px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }


        /* =========================
           RESPONSIVE
        ========================== */

        @media (max-width: 992px) {

            .about-hero {
                min-height: auto;
                padding-top: 60px;
            }

            .about-heading h1 {
                font-size: 45px;
            }

            .bus-area {
                min-height: 280px;
            }

            .bus-image {
                width: 85%;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-box:nth-child(2) {
                border-right: none;
            }

            .story-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .mvv-grid,
            .service-grid {
                grid-template-columns: 1fr 1fr;
            }
        }


        @media (max-width: 600px) {

            .section {
                padding: 65px 0;
            }

            .about-hero {
                padding: 50px 0 0;
            }

            .about-heading {
                margin-bottom: 35px;
            }

            .heading-line {
                width: 20px;
                height: 105px;
                margin-right: 12px;
            }

            .about-heading h1 {
                font-size: 38px;
            }

            .about-heading h1 span {
                font-size: 27px;
            }

            .welcome-title {
                font-size: 18px;
                line-height: 1.5;
            }

            .about-description {
                font-size: 14px;
                line-height: 1.8;
            }

            .bus-area {
                min-height: 210px;
                margin-top: 25px;
            }

            .bus-image {
                width: 110%;
                right: -10%;
                bottom: 0;
            }

            .road-shadow {
                width: 90%;
                right: 5%;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0;
            }

            .stat-box {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,.12);
                padding: 25px 10px;
            }

            .stat-number {
                font-size: 30px;
            }

            .story-content h2,
            .section-title h2,
            .cta-content h2 {
                font-size: 29px;
            }

            .mvv-grid,
            .service-grid {
                grid-template-columns: 1fr;
            }

            .experience-badge {
                width: 115px;
                height: 115px;
                right: 10px;
                bottom: -25px;
            }

            .experience-badge strong {
                font-size: 28px;
            }
        }




        /* ==========================================
   TGA COMPLIANCE / LICENSE CARD
========================================== */

.tga-compliance {
    display: flex;
    align-items: center;
    gap: 22px;

    margin-top: 30px;
    padding: 22px 24px;

    background: #f8fafc;

    border: 1px solid #e3e9f0;
    border-left: 4px solid #f5b400;

    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(7, 38, 77, 0.07);

    transition: all 0.3s ease;
}


.tga-compliance:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(7, 38, 77, 0.12);
}


/* ==========================================
   TGA LOGO
========================================== */

.tga-logo-box {
    width: 105px;
    min-width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #e8edf2;

    border-radius: 12px;

    padding: 12px;
}


.tga-logo {
    display: block;

    width: 100%;
    max-width: 80px;
    height: auto;

    object-fit: contain;
}


/* ==========================================
   TGA CONTENT
========================================== */

.tga-content {
    flex: 1;
}


.tga-status {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 6px;

    color: #168a4a;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .5px;
}


.tga-status i {
    font-size: 14px;
}


.tga-content h3 {
    margin: 0 0 8px;

    color: #07264d;

    font-size: 19px;
    font-weight: 700;

    line-height: 1.4;
}


.tga-content p {
    margin: 0;

    color: #667085;

    font-size: 13px;

    line-height: 1.7;
}


/* ==========================================
   TGA FEATURES
========================================== */

.tga-features {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-top: 14px;
}


.tga-feature {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #344054;

    font-size: 12px;
    font-weight: 600;
}


.tga-feature i {
    color: #f5b400;

    font-size: 14px;
}


/* ==========================================
   RTL / ARABIC
========================================== */

html[dir="rtl"] .tga-compliance {
    border-left: 1px solid #e3e9f0;
    border-right: 4px solid #f5b400;
}


html[dir="rtl"] .tga-status {
    justify-content: flex-start;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .tga-compliance {
        padding: 20px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .tga-compliance {
        flex-direction: column;

        text-align: center;

        padding: 24px 18px;

        border-left: none;
        border-right: none;

        border-top: 4px solid #f5b400;
    }


    html[dir="rtl"] .tga-compliance {
        border-left: none;
        border-right: none;

        border-top: 4px solid #f5b400;
    }


    .tga-logo-box {
        width: 95px;
        min-width: 95px;
        height: 95px;
    }


    .tga-content h3 {
        font-size: 17px;
    }


    .tga-content p {
        font-size: 13px;
    }


    .tga-status {
        justify-content: center;
    }


    .tga-features {
        justify-content: center;

        flex-direction: column;

        align-items: center;

        gap: 9px;
    }

}

        .story-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            color: #35485c;
            font-weight: 600;
        }

        .story-list i {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(242,165,26,.12);
            color: #f2a51a;
            font-size: 12px;
        }










/* ===============================
  End  About_us.html
================================ */



/* =========================================================
   JAK TRANSPORT - MODERN ABOUT SECTION
   ========================================================= */

.jak-about-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0 105px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    font-family: "Heebo", sans-serif;
}

.jak-about-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -220px;
    top: -170px;
    border: 1px solid rgba(27,64,101,.08);
    border-radius: 50%;
}

.jak-about-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -130px;
    bottom: -140px;
    border: 1px solid rgba(245,169,0,.12);
    transform: rotate(45deg);
}

.jak-about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 75px;
    align-items: center;
}

.jak-about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.jak-about-image-wrap {
    position: relative;
    width: 100%;
    max-width: 570px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(16,42,67,.14);
    border-radius: 4px;
}

.jak-about-image-wrap::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 35px;
    bottom: 35px;
    width: 7px;
    background: #f5a900;
}

.jak-about-image-wrap::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -18px;
    width: 115px;
    height: 115px;
    border-right: 3px solid #1b4065;
    border-bottom: 3px solid #1b4065;
    z-index: -1;
}

.jak-about-image {
    display: block;
    width: 100%;
    left: -28px;
    height: 430px;
    object-fit: cover;
    object-position: center;
    transition: transform .7s ease;
}

.jak-about-image-wrap:hover .jak-about-image {
    transform: scale(1.025);
}

.jak-about-badge {
    position: absolute;
    left: -28px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
    padding: 17px 20px;
    color: #fff;
    background: #1b4065;
    border-left: 5px solid #f5a900;
    box-shadow: 0 15px 35px rgba(16,42,67,.25);
    animation: jakBadgeFloat 4s ease-in-out infinite;
}

.jak-about-badge-number {
    color: #f5a900;
    font-family: "Nunito", sans-serif;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.jak-about-badge-text {
    font-size: 12px;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes jakBadgeFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.jak-about-content {
    max-width: 680px;
}

.jak-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #f5a900;
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.jak-section-label i {
    display: block;
    width: 42px;
    height: 2px;
    background: #f5a900;
}

.jak-section-label i:last-child {
    width: 25px;
    opacity: .55;
}

.jak-about-title {
    margin: 0 0 22px;
    color: #123654;
    font-family: "Nunito", sans-serif;
    font-size: clamp(38px,4vw,58px);
    font-weight: 800;
    line-height: 1.08;
}

.jak-about-title span {
    display: block;
    color: #f5a900;
}

.jak-about-lead {
    margin: 0 0 20px;
    color: #1b4065;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.65;
}

.jak-about-text {
    margin: 0 0 14px;
    color: #5b6b7c;
    font-size: 15.5px;
    line-height: 1.85;
}

.jak-about-text strong {
    color: #173c5e;
}

.jak-about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px 18px;
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid rgba(27,64,101,.12);
}

.jak-about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 10px 12px;
    border-radius: 5px;
    transition: .3s ease;
}

.jak-about-feature:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 10px 25px rgba(16,42,67,.07);
}

.jak-feature-icon {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #f5a900;
    background: rgba(245,169,0,.12);
}

.jak-about-feature strong {
    display: block;
    color: #173c5e;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
}

.jak-about-feature small {
    color: #788696;
    font-size: 12px;
}

.jak-about-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.jak-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 14px 23px;
    color: #fff;
    background: #1b4065;
    border: 2px solid #1b4065;
    font-family: "Nunito",sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

.jak-about-btn:hover {
    color: #1b4065;
    background: #f5a900;
    border-color: #f5a900;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(245,169,0,.22);
}

.jak-about-btn i {
    transition: transform .3s ease;
}

.jak-about-btn:hover i {
    transform: translateX(5px);
}

.jak-about-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #637386;
    font-size: 13px;
    font-weight: 600;
}

.jak-about-mini i {
    color: #f5a900;
}

/* Tablet */
@media (max-width:991px) {
    .jak-about-section { padding: 75px 0 85px; }

    .jak-about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .jak-about-content {
        max-width: 760px;
        margin: auto;
    }

    .jak-about-image-wrap {
        max-width: 650px;
        margin: auto;
    }
}

/* Mobile */
@media (max-width:767px) {
    .jak-about-section { padding: 60px 0 70px; }

    .jak-about-grid { gap: 42px; }

    .jak-about-image-wrap { padding: 14px; }

    .jak-about-image { height: 330px; }

    .jak-about-badge {
        left: -5px;
        bottom: 20px;
        min-width: 165px;
        padding: 13px 15px;
    }

    .jak-about-badge-number { font-size: 31px; }

    .jak-about-title { font-size: 39px; }

    .jak-about-lead { font-size: 17px; }

    .jak-about-text { font-size: 14.5px; }

    .jak-about-features { grid-template-columns: 1fr; }

    .jak-about-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }
}

/* Small phones */
@media (max-width:480px) {
    .jak-about-section { padding: 50px 0 60px; }

    .jak-about-title { font-size: 34px; }

    .jak-about-image { height: 260px; }

    .jak-about-badge {
        position: relative;
        left: auto;
        bottom: auto;
        width: fit-content;
        margin: -28px 0 0 15px;
        z-index: 3;
    }

    .jak-about-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   JAK TRANSPORT - STATISTICS SECTION
   ========================================================= */

.stats-section {
    position: relative;
    padding: 75px 0;
    background: #173f63;
    overflow: hidden;
}

/* Decorative background */
.stats-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -220px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    transform: rotate(45deg);
}

.stats-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -180px;
    bottom: -180px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: rotate(45deg);
}


/* =========================================================
   GRID
   ========================================================= */

.stats-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================================
   STAT BOX
   ========================================================= */

.stat-box {
    position: relative;

    min-height: 170px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 25px 20px;

    border-right: 1px solid rgba(255, 255, 255, 0.16);

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}


/* Remove border from last desktop item */

.stat-box:last-child {
    border-right: none;
}


/* Hover effect */

.stat-box:hover {
    transform: translateY(-8px);
}


/* =========================================================
   ICON
   ========================================================= */

.stat-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    color: #f5a900;

    font-size: 30px;

    transition:
        transform 0.4s ease,
        color 0.4s ease;
}


.stat-box:hover .stat-icon {
    transform: translateY(-5px) scale(1.12);

    color: #ffb82e;
}


/* =========================================================
   NUMBER
   ========================================================= */

.stat-number {
    color: #ffffff;

    font-family: "Nunito", sans-serif;

    font-size: 42px;

    font-weight: 800;

    line-height: 1;

    margin-bottom: 10px;

    letter-spacing: -1px;
}


/* Counter */

.stat-number .counter {
    display: inline-block;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================================
   LABEL
   ========================================================= */

.stat-text {
    color: rgba(255, 255, 255, 0.78);

    font-family: "Heebo", sans-serif;

    font-size: 13px;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}


/* =========================================================
   TABLET / MOBILE
   ONE CARD PER ROW
   ========================================================= */

@media (max-width: 991px) {

    .stats-section {
        padding: 55px 0;
    }


    /* One column */

    .stats-grid {
        display: grid;

        grid-template-columns: 1fr !important;

        width: 100%;
    }


    /* Card */

    .stat-box {
        width: 100%;

        min-height: 160px;

        padding: 28px 20px;

        border-right: none !important;

        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }


    /* Last card */

    .stat-box:last-child {
        border-bottom: none;

        border-right: none !important;
    }


    /* Icon */

    .stat-icon {
        width: 48px;
        height: 48px;

        font-size: 28px;

        margin-bottom: 12px;
    }


    /* Number */

    .stat-number {
        font-size: 38px;
    }


    /* Text */

    .stat-text {
        font-size: 12px;

        letter-spacing: 1px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .stats-section {
        padding: 45px 0;
    }


    .stats-grid {
        grid-template-columns: 1fr !important;

        width: 100%;
    }


    .stat-box {
        min-height: 145px;

        padding: 25px 15px;

        border-right: none !important;
    }


    .stat-box:hover {
        transform: translateY(-4px);
    }


    .stat-icon {
        width: 44px;
        height: 44px;

        font-size: 25px;

        margin-bottom: 10px;
    }


    .stat-number {
        font-size: 34px;
    }


    .stat-text {
        font-size: 11px;

        letter-spacing: 1px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    .stats-section {
        padding: 35px 0;
    }


    .stat-box {
        min-height: 135px;

        padding: 22px 12px;
    }


    .stat-icon {
        width: 40px;
        height: 40px;

        font-size: 23px;

        margin-bottom: 8px;
    }


    .stat-number {
        font-size: 32px;
    }


    .stat-text {
        font-size: 10px;

        letter-spacing: 0.8px;
    }

}


        /* =========================
           MISSION VISION VALUES
        ========================== */

        .mvv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .mvv-card {
            position: relative;
            padding: 42px 32px;
            background: white;
            border: 1px solid #edf0f4;
            border-radius: 8px;
            transition: .4s ease;
            overflow: hidden;
        }

        .mvv-card::before {
            content: "";
            position: absolute;
            width: 4px;
            height: 0;
            left: 0;
            top: 0;
            background: #f2a51a;
            transition: .4s ease;
        }

        .mvv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(23,60,97,.12);
        }

        .mvv-card:hover::before {
            height: 100%;
        }

        .mvv-icon {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #edf4fa;
            color: #173c61;
            font-size: 25px;
            margin-bottom: 25px;
        }

        .mvv-card h3 {
            color: #173c61;
            font-size: 21px;
            margin-bottom: 14px;
        }

        .mvv-card p {
            color: #758397;
            line-height: 1.8;
            font-size: 14px;
        }


        /* =========================
           SERVICES
        ========================== */

        .services-section {
            background: #f8fafc;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .service-card {
            background: white;
            padding: 35px 30px;
            border-radius: 8px;
            border: 1px solid #edf0f4;
            transition: .4s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(23,60,97,.10);
        }

        .service-icon {
            color: #f2a51a;
            font-size: 35px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            color: #173c61;
            font-size: 19px;
            margin-bottom: 12px;
        }

        .service-card p {
            color: #788698;
            line-height: 1.8;
            font-size: 14px;
        }


        /* =========================
           CTA
        ========================== */

        .cta-section {
            padding: 80px 0;
            background:
                linear-gradient(120deg, #173c61, #0e2b48);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            border: 1px solid rgba(255,255,255,.08);
            transform: rotate(45deg);
            left: -200px;
            top: -220px;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .cta-content h2 {
            font-size: 38px;
            margin-bottom: 15px;
        }

        .cta-content h2 span {
            color: #f2a51a;
        }

        .cta-content p {
            color: rgba(255,255,255,.72);
            margin-bottom: 30px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background: #f2a51a;
            color: white;
            text-decoration: none;
            font-weight: 700;
            border-radius: 4px;
            transition: .3s;
        }

        .cta-btn:hover {
            background: white;
            color: #173c61;
            transform: translateY(-3px);
        }


        /* =========================
           ANIMATIONS
        ========================== */

        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes busMove {
            from {
                opacity: 0;
                transform: translateX(150px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }


        /* =========================
           RESPONSIVE
        ========================== */

        @media (max-width: 992px) {

            .about-hero {
                min-height: auto;
                padding-top: 60px;
            }

            .about-heading h1 {
                font-size: 45px;
            }

            .bus-area {
                min-height: 280px;
            }

            .bus-image {
                width: 85%;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-box:nth-child(2) {
                border-right: none;
            }

            .story-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .mvv-grid,
            .service-grid {
                grid-template-columns: 1fr 1fr;
            }
        }


        @media (max-width: 600px) {

            .section {
                padding: 65px 0;
            }

            .about-hero {
                padding: 50px 0 0;
            }

            .about-heading {
                margin-bottom: 35px;
            }

            .heading-line {
                width: 20px;
                height: 105px;
                margin-right: 12px;
            }

            .about-heading h1 {
                font-size: 38px;
            }

            .about-heading h1 span {
                font-size: 27px;
            }

            .welcome-title {
                font-size: 18px;
                line-height: 1.5;
            }

            .about-description {
                font-size: 14px;
                line-height: 1.8;
            }

            .bus-area {
                min-height: 210px;
                margin-top: 25px;
            }

            .bus-image {
                width: 110%;
                right: -10%;
                bottom: 0;
            }

            .road-shadow {
                width: 90%;
                right: 5%;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0;
            }

            .stat-box {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,.12);
                padding: 25px 10px;
            }

            .stat-number {
                font-size: 30px;
            }

            .story-content h2,
            .section-title h2,
            .cta-content h2 {
                font-size: 29px;
            }

            .mvv-grid,
            .service-grid {
                grid-template-columns: 1fr;
            }

            .experience-badge {
                width: 115px;
                height: 115px;
                right: 10px;
                bottom: -25px;
            }

            .experience-badge strong {
                font-size: 28px;
            }
        }



/* =========================================================
   JAK TRANSPORT
   TEAM SECTION
========================================================= */

.jak-team-section {
    position: relative;
    padding: 100px 0;
    background: #f7f9fc;
    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.jak-team-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(245, 169, 0, 0.06);
    top: -180px;
    right: -150px;
}

.jak-team-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(10, 31, 68, 0.04);
    bottom: -150px;
    left: -100px;
}


/* =========================================================
   HEADING
========================================================= */

.team-heading {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-label {
    display: inline-block;
    color: #f5a900;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.team-heading h2 {
    margin: 0 0 15px;
    color: #0a1f44;
    font-family: "Nunito", sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
}

.team-heading h2 span {
    color: #f5a900;
}

.team-heading p {
    max-width: 650px;
    margin: auto;
    color: #68758a;
    font-family: "Heebo", sans-serif;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   TEAM GRID
========================================================= */

.team-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}


/* =========================================================
   TEAM CARD
========================================================= */

.team-card {
    position: relative;

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(10, 31, 68, 0.08);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.team-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 20px 45px rgba(10, 31, 68, 0.15);
}


/* =========================================================
   TEAM IMAGE
========================================================= */

.team-image {
    position: relative;

    height: 310px;

    overflow: hidden;

    background: #e9edf3;
}

.team-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.7s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.team-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;
    justify-content: center;

    padding-bottom: 25px;

    background:
        linear-gradient(
            to top,
            rgba(10, 31, 68, 0.85),
            rgba(10, 31, 68, 0.05) 65%,
            transparent
        );

    opacity: 0;

    transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.team-social {
    display: flex;
    gap: 9px;

    transform: translateY(20px);

    transition:
        transform 0.4s ease;
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f5a900;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.team-social a:hover {
    background: #ffffff;
    color: #0a1f44;

    transform: translateY(-4px);
}


/* =========================================================
   TEAM INFORMATION
========================================================= */

.team-info {
    padding: 25px 22px 28px;

    text-align: center;
}

.team-role {
    display: inline-block;

    margin-bottom: 7px;

    color: #f5a900;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.team-info h3 {
    margin: 0 0 10px;

    color: #0a1f44;

    font-family: "Nunito", sans-serif;

    font-size: 20px;

    font-weight: 800;
}

.team-info p {
    margin: 0;

    color: #788396;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-image {
        height: 330px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .jak-team-section {
        padding: 70px 0;
    }

    .team-heading {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .team-heading h2 {
        font-size: 34px;
    }

    .team-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 0 15px;
    }

    .team-image {
        height: 340px;
    }

    /* Always show a subtle social area on mobile */
    .team-overlay {
        opacity: 1;

        background:
            linear-gradient(
                to top,
                rgba(10, 31, 68, 0.72),
                transparent 55%
            );
    }

    .team-social {
        transform: translateY(0);
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .jak-team-section {
        padding: 55px 0;
    }

    .team-heading h2 {
        font-size: 29px;
    }

    .team-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .team-grid {
        padding: 0 12px;
    }

    .team-image {
        height: 300px;
    }

    .team-info {
        padding: 22px 18px 25px;
    }

    .team-info h3 {
        font-size: 19px;
    }

}





/* =========================================================
   JAK TRANSPORT
   OUR PARTNERS SECTION
========================================================= */

.jak-partners-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 105px;
    background: #f7fafc;
    font-family: "Heebo", sans-serif;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.partners-decoration {
    position: absolute;
    pointer-events: none;
}

.partners-decoration-left {
    width: 380px;
    height: 380px;

    left: -220px;
    top: 120px;

    border: 1px solid rgba(27, 64, 101, 0.07);
    border-radius: 50%;
}

.partners-decoration-right {
    width: 300px;
    height: 300px;

    right: -170px;
    bottom: -120px;

    border: 1px solid rgba(245, 169, 0, 0.13);

    transform: rotate(45deg);
}


/* =========================================================
   HEADING
========================================================= */

.jak-partners-heading {
    position: relative;
    z-index: 2;

    max-width: 780px;

    margin: 0 auto 55px;

    text-align: center;
}


.jak-partners-label {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 16px;

    color: #f5a900;

    font-family: "Nunito", sans-serif;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.jak-partners-label span {
    display: block;

    width: 38px;
    height: 2px;

    background: #f5a900;
}


.jak-partners-label span:last-child {
    opacity: .45;
}


.jak-partners-heading h2 {
    margin: 0 0 18px;

    color: #123654;

    font-family: "Nunito", sans-serif;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 800;

    line-height: 1.15;
}


.jak-partners-heading h2 span {
    color: #f5a900;
}


.jak-partners-heading p {
    max-width: 720px;

    margin: 0 auto 10px;

    color: #5d6d7d;

    font-size: 16px;

    line-height: 1.8;
}


.jak-partners-heading .partners-subtext {
    color: #1b4065;

    font-size: 15px;

    font-weight: 600;
}


/* =========================================================
   PARTNER GRID
========================================================= */

.jak-partners-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    max-width: 1050px;

    margin: 0 auto;
}


/* =========================================================
   PARTNER CARD
========================================================= */

.jak-partner-card {
    position: relative;

    overflow: hidden;

    min-height: 245px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 22px;

    background: #ffffff;

    border: 1px solid rgba(27, 64, 101, 0.10);

    border-radius: 8px;

    box-shadow: 0 8px 25px rgba(16, 42, 67, 0.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


/* Gold top line */

.jak-partner-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: #f5a900;

    transition: width .4s ease;
}


/* Navy corner */

.jak-partner-card::after {
    content: "";

    position: absolute;

    width: 75px;
    height: 75px;

    right: -42px;
    bottom: -42px;

    border-radius: 50%;

    background: rgba(27, 64, 101, 0.05);

    transition: .4s ease;
}


.jak-partner-card:hover {
    transform: translateY(-8px);

    border-color: rgba(245, 169, 0, 0.45);

    box-shadow:
        0 20px 45px rgba(16, 42, 67, 0.13);
}


.jak-partner-card:hover::before {
    width: 100%;
}


.jak-partner-card:hover::after {
    width: 120px;
    height: 120px;
}


/* =========================================================
   LOGO
========================================================= */

.partner-logo {
    width: 100%;
    height: 145px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 15px;

    background: #ffffff;
}


.partner-logo img {
    display: block;

    max-width: 100%;
    max-height: 115px;

    width: auto;
    height: auto;

    object-fit: contain;

    filter: grayscale(15%);

    transition:
        transform .4s ease,
        filter .4s ease;
}


.jak-partner-card:hover .partner-logo img {
    transform: scale(1.08);

    filter: grayscale(0%);
}


/* =========================================================
   PARTNER INFO
========================================================= */

.partner-info {
    position: relative;

    z-index: 2;

    width: 100%;

    padding-top: 12px;

    text-align: center;

    border-top: 1px solid rgba(27, 64, 101, 0.08);
}


.partner-info h3 {
    margin: 0 0 4px;

    color: #173c5e;

    font-family: "Nunito", sans-serif;

    font-size: 14px;

    font-weight: 800;
}


.partner-info span {
    color: #8492a0;

    font-size: 11px;

    letter-spacing: .7px;

    text-transform: uppercase;
}


/* =========================================================
   FOOTER MESSAGE
========================================================= */

.jak-partners-footer {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    gap: 25px;

    max-width: 1050px;

    margin: 60px auto 0;
}


.partners-footer-line {
    flex: 1;

    height: 1px;

    background: rgba(27, 64, 101, 0.15);
}


.partners-footer-content {
    display: flex;

    align-items: center;

    gap: 14px;

    color: #1b4065;
}


.partners-footer-content > i {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 45px;

    color: #f5a900;

    background: rgba(245, 169, 0, 0.12);

    border-radius: 50%;

    font-size: 18px;
}


.partners-footer-content strong {
    display: block;

    margin-bottom: 3px;

    color: #173c5e;

    font-family: "Nunito", sans-serif;

    font-size: 14px;
}


.partners-footer-content span {
    display: block;

    color: #788696;

    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .jak-partners-section {
        padding: 80px 0 85px;
    }


    .jak-partners-grid {
        grid-template-columns: repeat(2, 1fr);

        max-width: 760px;
    }


    .jak-partner-card {
        min-height: 230px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .jak-partners-section {
        padding: 65px 0 70px;
    }


    .jak-partners-heading {
        margin-bottom: 38px;

        padding: 0 15px;
    }


    .jak-partners-heading h2 {
        font-size: 34px;
    }


    .jak-partners-heading p {
        font-size: 14px;

        line-height: 1.75;
    }


    .jak-partners-label {
        font-size: 12px;

        letter-spacing: 1.5px;
    }


    .jak-partners-label span {
        width: 25px;
    }


    .jak-partners-grid {
        grid-template-columns: 1fr;

        gap: 18px;

        padding: 0 15px;
    }


    .jak-partner-card {
        min-height: 225px;

        padding: 20px;
    }


    .partner-logo {
        height: 135px;
    }


    .partner-logo img {
        max-height: 105px;
    }


    .jak-partners-footer {
        flex-direction: column;

        gap: 18px;

        margin-top: 45px;

        padding: 0 20px;

        text-align: center;
    }


    .partners-footer-line {
        width: 100%;

        flex: none;
    }


    .partners-footer-content {
        flex-direction: column;

        gap: 10px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .jak-partners-section {
        padding: 55px 0 60px;
    }


    .jak-partners-heading h2 {
        font-size: 30px;
    }


    .jak-partner-card {
        min-height: 210px;
    }


    .partner-logo {
        height: 125px;
    }


    .partner-logo img {
        max-height: 95px;
    }

}










/*==============================
        MODERN FOOTER.html
===============================*/

.footer{

    background:#07264d;

    color:#fff;

    padding:70px 0 0;

}

.footer .container{

    max-width:1200px;

}

.footer-logo{
    width:180px;
    height:auto;
    display:block;
    margin-bottom:20px;
}

.footer-text{

    color:#cfd8e3;

    line-height:1.8;

    font-size:20px;

    margin-bottom:25px;

}

.footer h4{

    color:#fff;

    font-size:22px;

    margin-bottom:25px;

    position:relative;

    font-weight:700;

}

.footer h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:45px;

    height:3px;

    background:#f6b400;

}

.footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer ul li{

    margin-bottom:14px;
        font-size:20px;

}

.footer ul li a{

    color:#d7dce3;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#f6b400;

    padding-left:8px;

}

.footer p{

    color:#d7dce3;

    margin-bottom:15px;

}

.footer p i{

    width:24px;

    color:#f6b400;

}

.social-links{

    display:flex;

    gap:12px;

}

.social-links a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#103868;

    color:#fff;

    border-radius:50%;

    transition:.3s;

    text-decoration:none;

}

.social-links a:hover{

    background:#f6b400;

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:60px;

    padding:22px 0;

    border-top:1px solid rgba(255,255,255,.1);

    text-align:center;

    color:#cfd8e3;

}

.footer-bottom .row{

    align-items:center;

}

.footer-bottom .col-md-6:last-child{

    text-align:right;

}

@media(max-width:991px){

.footer{

    text-align:center;

}

.footer h4::after{

    left:50%;

    transform:translateX(-50%);

}

.social-links{

    justify-content:center;

    margin-bottom:30px;

}

.footer-bottom .col-md-6:last-child{

    text-align:center;

    margin-top:10px;

}

}

@media(max-width:576px){

.footer-logo{

    width:140px;

}

.footer{

    padding-top:50px;

}

.footer h4{

    font-size:20px;

}


}



/* =========================================================
   FLOATING WHATSAPP BUTTON
========================================================= */

.jak-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    border-radius: 50%;

    font-size: 27px;
    text-decoration: none;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.20);

    z-index: 9998;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.jak-whatsapp:hover {
    color: #ffffff;
    transform: scale(1.10);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* Small pulse */

.jak-whatsapp::before {
    content: "";
    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;
    border: 2px solid #25D366;

    animation: jakWhatsappPulse 2s infinite;
}

@keyframes jakWhatsappPulse {

    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.35);
        opacity: 0;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* Mobile */

@media (max-width: 575px) {

    .jak-whatsapp {
        right: 15px;
        bottom: 18px;

        width: 45px;
        height: 45px;

        font-size: 23px;
    }
}




/* =========================================================
   JAK TRANSPORT - MODERN RESPONSIVE NAVBAR
   ========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(7, 38, 77, 0.10);
    z-index: 9999;
}

/* =========================================================
   NAVBAR CONTAINER
   ========================================================= */

.header .navbar-container {
    width: 100%;
    max-width: 1320px;
    height: 85px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
}

/* =========================================================
   LOGO
   ========================================================= */

.logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    display: block;
    width: 165px;
    height: auto;
    max-width: 100%;
}

/* =========================================================
   MAIN NAVIGATION - DESKTOP
   ========================================================= */

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 25px;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 32px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.menu li {
    position: relative;
    margin: 0;
    padding: 0;
}

.menu li a {
    position: relative;

    display: block;

    padding: 10px 0;

    color: #082b58;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
    white-space: nowrap;

    transition: color .3s ease;
}

/* Underline */

.menu li a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: #f5a900;

    transform: translateX(-50%);

    transition: width .3s ease;
}

.menu li a:hover {
    color: #f5a900;
}

.menu li a:hover::after {
    width: 100%;
}

/* Active */

.menu li.active a {
    color: #f5a900;
}

.menu li.active a::after {
    width: 100%;
}

/* =========================================================
   RIGHT SIDE
   ========================================================= */

.navbar-right {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 12px;
}

/* =========================================================
   LANGUAGE FORM
   ========================================================= */

.language-form {
    margin: 0;
    padding: 0;
}

/* Language button */

.language-toggle {
    width: 105px;
    height: 38px;

    padding: 4px 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    border: 1px solid #dfe5eb;
    border-radius: 25px;

    background: #ffffff;

    color: #173c61;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 3px 12px rgba(7, 38, 77, .08);

    transition: all .3s ease;
}

.language-toggle:hover {
    border-color: #f5a900;

    box-shadow:
        0 6px 18px rgba(245, 169, 0, .15);
}

/* Arabic / English text */

.language-toggle > span:first-child,
.language-toggle > span:last-child {
    white-space: nowrap;
}

/* =========================================================
   LANGUAGE SWITCH
   ========================================================= */

.toggle-switch {
    position: relative;

    width: 36px;
    height: 20px;

    flex: 0 0 36px;

    display: flex;
    align-items: center;

    padding: 2px;

    background: #cbd2d9;

    border-radius: 20px;

    transition: background .3s ease;
}

.toggle-switch.active {
    background: #f5a900;
}

.toggle-circle {
    width: 16px;
    height: 16px;

    display: block;

    background: #ffffff;

    border-radius: 50%;

    box-shadow: 0 2px 5px rgba(0,0,0,.20);

    transition: transform .3s ease;
}

.toggle-switch.active .toggle-circle {
    transform: translateX(16px);
}

/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-toggler {
    display: none;

    width: 43px;
    height: 43px;

    padding: 0;
    margin: 0;

    border: none;
    outline: none;

    border-radius: 8px;

    background: #f5a900;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    transition:
        background .3s ease,
        transform .3s ease;
}

.mobile-menu-toggler:hover {
    background: #d99000;
}

.mobile-menu-toggler span {
    display: block;

    width: 22px;
    height: 2.5px;

    border-radius: 3px;

    background: #ffffff;

    transition:
        transform .3s ease,
        opacity .3s ease;
}

/* Hamburger → X */

.mobile-menu-toggler.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-toggler.open span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggler.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .menu {
        gap: 22px;
    }

    .menu li a {
        font-size: 13px;
    }

    .main-nav {
        margin: 0 15px;
    }

}


/* =========================================================
   MOBILE / TABLET NAVIGATION
   ========================================================= */

@media (max-width: 991px) {

    .header {
        height: 70px;
    }

    .header .navbar-container {
        height: 70px;

        padding-left: 18px;
        padding-right: 18px;
    }

    /* Logo */

    .logo img {
        width: 140px;
    }

    /* Right side */

    .navbar-right {
        margin-left: auto;

        gap: 8px;
    }

    /* Language */

    .language-toggle {
        width: 95px;
        height: 36px;

        padding: 4px 6px;

        gap: 5px;

        font-size: 11px;
    }

    .toggle-switch {
        width: 32px;
        height: 18px;

        flex-basis: 32px;
    }

    .toggle-circle {
        width: 14px;
        height: 14px;
    }

    .toggle-switch.active .toggle-circle {
        transform: translateX(14px);
    }

    /* Hamburger */

    .mobile-menu-toggler {
        display: flex;
    }

    /* Main nav */

    .main-nav {
        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        display: none;

        margin: 0;

        background: #ffffff;

        border-top: 1px solid #edf0f4;

        box-shadow:
            0 15px 35px rgba(7, 38, 77, .15);
    }

    .main-nav.show {
        display: block;
    }

    /* Menu */

    .menu {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 8px 0;

        margin: 0;
    }

    .menu li {
        width: 100%;

        border-bottom: 1px solid #edf0f4;
    }

    .menu li:last-child {
        border-bottom: none;
    }

    .menu li a {
        width: 100%;

        padding: 15px 22px;

        font-size: 13px;

        color: #082b58;

        background: #ffffff;

        transition:
            background .25s ease,
            color .25s ease,
            padding-left .25s ease;
    }

    /* Remove desktop underline */

    .menu li a::after {
        display: none;
    }

    /* Hover */

    .menu li a:hover {
        padding-left: 30px;

        color: #ffffff;

        background: #082b58;
    }

    /* Active */

    .menu li.active a {
        color: #ffffff;

        background: #f5a900;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .header {
        height: 65px;
    }

    .header .navbar-container {
        height: 65px;

        padding-left: 14px;
        padding-right: 14px;
    }

    /* Logo */

    .logo img {
        width: 120px;
    }

    /* Right */

    .navbar-right {
        gap: 6px;
    }

    /* Language */

    .language-toggle {
        width: 88px;
        height: 33px;

        padding: 3px 5px;

        gap: 4px;

        font-size: 10px;

        border-radius: 20px;
    }

    .toggle-switch {
        width: 29px;
        height: 17px;

        flex-basis: 29px;

        padding: 2px;
    }

    .toggle-circle {
        width: 13px;
        height: 13px;
    }

    .toggle-switch.active .toggle-circle {
        transform: translateX(12px);
    }

    /* Hamburger */

    .mobile-menu-toggler {
        width: 40px;
        height: 40px;

        border-radius: 7px;
    }

    .mobile-menu-toggler span {
        width: 20px;
        height: 2px;
    }

    /* Mobile menu */

    .main-nav {
        top: 65px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    .header .navbar-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .logo img {
        width: 108px;
    }

    .navbar-right {
        gap: 5px;
    }

    .language-toggle {
        width: 82px;
        height: 31px;

        font-size: 9px;

        gap: 3px;
    }

    .toggle-switch {
        width: 27px;
        height: 16px;

        flex-basis: 27px;
    }

    .toggle-circle {
        width: 12px;
        height: 12px;
    }

    .toggle-switch.active .toggle-circle {
        transform: translateX(11px);
    }

    .mobile-menu-toggler {
        width: 38px;
        height: 38px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 350px) {

    .logo img {
        width: 95px;
    }

    .language-toggle {
        width: 75px;
        font-size: 8px;
    }

    .toggle-switch {
        width: 24px;
        flex-basis: 24px;
    }

    .toggle-circle {
        width: 11px;
        height: 11px;
    }

    .toggle-switch.active .toggle-circle {
        transform: translateX(9px);
    }

    .mobile-menu-toggler {
        width: 36px;
        height: 36px;
    }

}
