body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.date-bar {
    background-color: #b68934;
    color: white;
    padding: 8px 15px;
    text-align: left;
    font-size: 14px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.kuwait-logo {
    width: 100px;
    margin-bottom: 10px;
}

.manpower-logo {
    height: 100px;
    margin-bottom: 10px;
}

.page-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
    text-align: center;
    width: 100%;
    order: 3;
}

.nav-menu {
    background-color: #b68934;
    padding: 10px 0;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.nav-menu li {
    margin: 5px 15px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.main-content {
    padding: 20px;
    background-color: white;
}

.info-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.icon-circle {
    background-color: #b68934;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-text {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
}

.info-text a {
    color: blue;
    text-decoration: none;
    word-break: break-all;
}

.footer {
    background-color: #b68934;
    color: white;
    padding: 20px;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-decoration: underline; 
    text-decoration-thickness: 2px; 
    text-decoration-color: white; 
}


.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icons a {
    color: white;
    /* background-color: #333; */
    width: 30px;
    height: 30px;
    /* border-radius: 50%; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.btn-email {
    background-color: white;
    color: #333;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    margin-top: 10px;
}

.btn-email i {
    margin-left: 8px;
}

/* Mobile responsive styles */
@media (max-width: 767px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .page-title {
        font-size: 20px;
        margin: 10px 0;
        order: 1;
    }

    .kuwait-logo {
        order: 2;
        margin: 0 auto;
    }

    .manpower-logo {
        order: 3;
        margin: 10px auto 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu li {
        margin: 5px 0;
        text-align: center;
        width: 100%;
    }

    .info-item {
        flex-direction: column;
    }

    .icon-circle {
        margin-bottom: 10px;
    }

    .info-text {
        width: 100%;
    }

    .footer-section {
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .page-title {
        font-size: 22px;
        flex: 1;
        text-align: center;
        order: 2;
    }

    .kuwait-logo {
        order: 1;
    }

    .manpower-logo {
        order: 3;
    }

    .nav-menu ul {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .header {
        padding: 10px;
    }

    .kuwait-logo,
    .manpower-logo {
        max-height: 50px;
    }

    h1 {
        font-size: 1.2rem;
        margin: 8px 0;
    }

    .nav-menu li {
        margin-bottom: 5px;
    }

    .nav-menu li a {
        padding: 8px 0;
    }
}

/* Medium screens */
@media (min-width: 768px) and (max-width: 991.98px) {
    h1 {
        font-size: 1.5rem;
    }
}

.nav-link {
    position: relative;
    padding: 8px 12px;
    transition: color 0.3s ease-in-out;
    display: inline-block;
    /* টেক্সটের নিচেই সীমাবদ্ধ রাখবে */
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.nav-link:hover {
    color: #ffcc00;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.footer-hr {
    border: none;
    height: 3px;
    background: linear-gradient(to right, #fffffe, #fdfdfd);
    margin: 20px auto;
    border-radius: 5px;
}

/*test data*/

/*.title-container {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    padding: 20px 30px;*/
/*    height: 180px;*/
/*}*/

/*.title-container img {*/
/*    height: 150px;*/
/*    width: auto;*/
/*    margin: 0 15px;*/
/*}*/

/*.title-section {*/
/*    flex-shrink: 0;*/
    /*font-size: 3.5rem;*/
/*    font-size: clamp(1.2rem, 5vw, 3.5rem);*/
/*    font-weight: bold;*/
/*    color: #333;*/
/*    text-align: center;*/
/*}*/



.container p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.navbar {
    background: #b68a35;
}

.navbar-nav {
    margin: auto;
    gap: 50px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 3px;
    display: inline-block;
}

.navbar-nav .nav-link.active::after {
    content: "";
    display: block;
    width: 85%;
    height: 2px;
    background: white;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .header .date {
        display: flex;
        align-items: center;
        padding-left: 0;
    }

    .navbar-toggler {
        margin-left: auto;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding-right: 20px;
    }

    /*.title-container {*/
    /*    height: 80px;*/
    /*    padding: 5px;*/
    /*    overflow-x: auto;*/
    /*    white-space: nowrap;*/
    /*    display: flex;*/
    /*    justify-content: start;*/
    /*}*/

    /*.title-container img {*/
    /*    height: 60px;*/
    /*    margin: 0 5px;*/
    /*}*/

    /*.title-section {*/
    /*    font-size: 2rem;*/
    /*    white-space: nowrap;*/
    /*}*/
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.social-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Timeline styles */
.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.timeline-icon {
    width: 39px;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-1 {
    width: 138px;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-2 {
    width: 9%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-3 {
    width: 7%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-4 {
    width: 4%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-5 {
    width: 4.2%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-6 {
    width: 6.2%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-7 {
    width: 2.6%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-8 {
    width: 2.6%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-9 {
    width: 2.6%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-10 {
    width: 2.6%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-11 {
    width: 2.6%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-12 {
    width: 3%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-13 {
    width: 2.6%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-14 {
    width: 2.6%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-15 {
    width: 4%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-16 {
    width: 3.7%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-17 {
    width: 3.7%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-18 {
    width: 2.7%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-19 {
    width: 5%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}

.timeline-icon-20 {
    width: 4.7%;
    height: 30px;
    border: 4px solid #b58329;
    border-radius: 50%;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: 1%;
}




/* small gold dot at the top center inside the icon */
.timeline-circle {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background-color: #b58329;
    border-radius: 50%;
    z-index: 2;
}

/* optional white line behind dot */
.linein-circle {
    position: absolute;
    width: 4px;
    height: 180%;
    background-color: white;
    /* top: -60px; */
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    z-index: 0;
    top: -40%;
}

/* connecting gold line */
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #b58329;
    top: 30px;
    left: 15px;
    transform: translateX(-50%);
    z-index: 0;
    height: calc(100% - 5px);
}

.timeline-item-1 {
    height: 0;
    margin-bottom: 7%;
}

/* Responsive Design */

@media (min-width:280px) and (max-width: 320px) {
    .timeline {
        padding-left: 20px;
    }

    .timeline-icon {
        width: 70%;
        /* height: 25px; */
        left: -5px;
    }

    .timeline-icon-1 {
        width: 293%;
        left: -5px;
    }

    .timeline-icon-2 {
        width: 237%;
        left: -1.4%;
    }

    .timeline-icon-3 {
        width: 80%;
        left: -1.4%;
    }

    .timeline-icon-4 {
        width: 36.5%;
        left: -1.4%;
    }

    .timeline-icon-5 {
        width: 103%;
        left: -1.4%;
    }

    .timeline-icon-6 {
        width: 167%;
        left: -1.4%;
    }

    .timeline-icon-7 {
        width: 55%;
        left: -1.4%;
    }

    .timeline-icon-8 {
        width: 40%;
        left: -1.4%;
    }

    .timeline-icon-9 {
        width: 43%;
        left: -1.4%;
    }

    .timeline-icon-10 {
        width: 40%;
        left: -1.4%;
    }

    .timeline-icon-11 {
        width: 42%;
        left: -1.4%;
    }

    .timeline-icon-12 {
        width: 60%;
        left: -1.4%;
    }

    .timeline-icon-13 {
        width: 44%;
        left: -1.4%;
    }

    .timeline-icon-14 {
        width: 35%;
        left: -1.4%;
    }

    .timeline-icon-15 {
        width: 205%;
        left: -1.4%;
    }

    .timeline-item-1 {
        height: 0;
        margin-bottom: 70%;
    }

    .timeline-item:not(:last-child)::after {
        left: 10px;
    }

    .timeline-content {
        margin-left: 5px;
        max-width: 100%;
    }
}

@media (min-width:350px) and (max-width: 399px) {
    .timeline {
        padding-left: 20px;
    }

    .timeline-icon {
        width: 50%;
        /* height: 25px; */
        left: -5px;
    }

    .timeline-icon-1 {
        width: 190%;
        left: -5px;
    }

    .timeline-icon-2 {
        width: 143%;
        left: -1.4%;
    }

    .timeline-icon-3 {
        width: 119%;
        left: -1.4%;
    }

    .timeline-icon-4 {
        width: 64.5%;
        left: -1.4%;
    }

    .timeline-icon-5 {
        width: 70%;
        left: -1.4%;
    }

    .timeline-icon-6 {
        width: 110%;
        left: -1.4%;
    }

    .timeline-icon-7 {
        width: 40%;
        left: -1.4%;
    }

    .timeline-icon-8 {
        width: 30%;
        left: -1.4%;
    }

    .timeline-icon-9 {
        width: 33%;
        left: -1.4%;
    }

    .timeline-icon-10 {
        width: 30%;
        left: -1.4%;
    }

    .timeline-icon-11 {
        width: 32%;
        left: -1.4%;
    }

    .timeline-icon-12 {
        width: 40%;
        left: -1.4%;
    }

    .timeline-icon-13 {
        width: 34%;
        left: -1.4%;
    }

    .timeline-icon-14 {
        width: 25%;
        left: -1.4%;
    }

    .timeline-icon-15 {
        width: 66%;
        left: -1.4%;
    }
.timeline-icon-16 {
        width: 54.7%;
        left: -1.4%;
    }
.timeline-icon-17 {
        width: 53.7%;
        left: -1.4%;
    }
.timeline-icon-18 {
        width: 42.7%;
        left: -1.4%;
    }
.timeline-icon-19 {
        width: 80%;
        left: -1.4%;
    }
.timeline-icon-20 {
        width: 77.7%;
        left: -1.4%;
    }

    .timeline-item-1 {
        height: 0;
        margin-bottom: 115%;
    }

    .timeline-item:not(:last-child)::after {
        left: 10px;
    }

    .timeline-content {
        margin-left: 5px;
        max-width: 100%;
    }
}

@media (min-width:400px) and (max-width: 430px) {
    .timeline {
        padding-left: 20px;
    }

    .timeline-icon {
        width: 50%;
        /* height: 25px; */
        left: -5px;
    }

    .timeline-icon-1 {
        width: 190%;
        left: -5px;
    }

    .timeline-icon-2 {
        width: 143%;
        left: -1.4%;
    }

    .timeline-icon-3 {
        width: 70%;
        left: -1.4%;
    }

    .timeline-icon-4 {
        width: 40.5%;
        left: -1.4%;
    }

    .timeline-icon-5 {
        width: 70%;
        left: -1.4%;
    }

    .timeline-icon-6 {
        width: 110%;
        left: -1.4%;
    }

    .timeline-icon-7 {
        width: 30%;
        left: -1.4%;
    }

    .timeline-icon-8 {
        width: 20%;
        left: -1.4%;
    }

    .timeline-icon-9 {
        width: 23%;
        left: -1.4%;
    }

    .timeline-icon-10 {
        width: 20%;
        left: -1.4%;
    }

    .timeline-icon-11 {
        width: 22%;
        left: -1.4%;
    }

    .timeline-icon-12 {
        width: 30%;
        left: -1.4%;
    }

    .timeline-icon-13 {
        width: 24%;
        left: -1.4%;
    }

    .timeline-icon-14 {
        width: 15%;
        left: -1.4%;
    }

    .timeline-icon-15 {
        width: 39%;
        left: -1.4%;
    }
    
    .timeline-icon-16 {
        width: 39%;
        left: -1.4%;
    }
    
    .timeline-icon-17 {
        width: 39%;
        left: -1.4%;
    }
    
    .timeline-icon-18 {
        width: 28%;
        left: -1.4%;
    }
    
    .timeline-icon-19 {
        width: 55%;
        left: -1.4%;
    }
    
    .timeline-icon-20 {
        width: 50%;
        left: -1.4%;
    }
    

    .timeline-item-1 {
        height: 0;
        margin-bottom: 75%;
    }

    .timeline-item:not(:last-child)::after {
        left: 10px;
    }

    .timeline-content {
        margin-left: 5px;
        max-width: 100%;
    }
}

@media (min-width: 750px) and (max-width: 800px) {
    .timeline {
        padding-left: 20px;
    }

    .timeline-icon {
        width: 9%;
        /* height: 25px; */
        left: -5px;
    }

    .timeline-icon-1 {
        width: 33%;
        left: -5px;
    }

    .timeline-icon-2 {
        width: 25%;
        left: -0.6%;
    }

    .timeline-icon-3 {
        width: 10%;
        left: -0.7%;
    }

    .timeline-icon-15 {
        width: 26%;
        left: -0.5%;
    }

    .timeline-icon-4 {
        width: 5.5%;
        left: -1%;
    }

    .timeline-icon-5 {
        width: 15%;
        left: -1.4%;
    }

    .timeline-icon-6 {
        width: 23%;
        left: -1.4%;
    }

    .timeline-icon-7 {
        width: 7%;
        left: -0.6%;
    }

    .timeline-icon-8 {
        width: 5.4%;
        left: -0.6%;
    }

    .timeline-icon-9 {
        width: 5.5%;
        left: -0.6%;
    }

    .timeline-icon-10 {
        width: 4.5%;
        left: -0.6%;
    }

    .timeline-icon-11 {
        width: 5.5%;
        left: -0.6%;
    }

    .timeline-icon-12 {
        width: 7.5%;
        left: -0.6%;
    }

    .timeline-icon-13 {
        width: 5.5%;
        left: -0.6%;
    }

    .timeline-icon-14 {
        width: 4.5%;
        left: -0.6%;
    }



    .timeline-item-1 {
        height: 0;
        margin-bottom: 10%;
    }

    .timeline-item:not(:last-child)::after {
        left: 10px;
    }

    .timeline-content {
        margin-left: 5px;
        max-width: 100%;
    }
}

@media (max-width: 900px) and (min-width: 801px) {
    .timeline {
        padding-left: 20px;
    }

    .timeline-icon {
        width: 1%;
        /* height: 25px; */
        left: -5px;
    }

    .timeline-icon-1 {
        width: 17%;
        left: -5px;
    }

    .timeline-icon-2 {
        width: 13%;
        left: -0.5%;
    }

    .timeline-icon-3 {
        width: 60%;
        left: -1.4%;
    }

    .timeline-icon-4 {
        width: 25.5%;
        left: -1.4%;
    }

    .timeline-icon-5 {
        width: 70%;
        left: -1.4%;
    }

    .timeline-icon-6 {
        width: 110%;
        left: -1.4%;
    }

    .timeline-icon-7 {
        width: 4%;
        left: -1.4%;
    }

    .timeline-icon-8 {
        width: 3.4%;
        left: -1.4%;
    }

    .timeline-icon-9 {
        width: 3.5%;
        left: -1.4%;
    }

    .timeline-icon-10 {
        width: 3.5%;
        left: -1.4%;
    }

    .timeline-icon-11 {
        width: 3.5%;
        left: -1.4%;
    }

    .timeline-icon-12 {
        width: 3.5%;
        left: -1.4%;
    }

    .timeline-icon-13 {
        width: 3.5%;
        left: -1.4%;
    }

    .timeline-icon-14 {
        width: 3.5%;
        left: -1.4%;
    }

    .timeline-icon-15 {
        width: 13%;
        left: -0.5%;
    }

    .timeline-item-1 {
        height: 0;
        margin-bottom: 50%;
    }

    .timeline-item:not(:last-child)::after {
        left: 10px;
    }

    .timeline-content {
        margin-left: 5px;
        max-width: 100%;
    }
}

@media (max-width: 1100px) and (min-width: 900px) {
    .timeline {
        padding-left: 20px;
    }

    .timeline-icon {
        width: 5%;
        /* height: 25px; */
        left: -5px;
    }

    .timeline-icon-1 {
        width: 17%;
        left: -5px;
    }

    .timeline-icon-2 {
        width: 13%;
        left: -0.5%;
    }

    .timeline-icon-3 {
        width: 11%;
        left: -0.6%;
    }

    .timeline-icon-4 {
        width: 6.5%;
        left: -0.6%;
    }

    .timeline-icon-5 {
        width: 7%;
        left: -0.6%;
    }

    .timeline-icon-6 {
        width: 10%;
        left: -0.6%;
    }

    .timeline-icon-7 {
        width: 4%;
        left: -0.4%;
    }

    .timeline-icon-8 {
        width: 3.4%;
        left: -0.4%;
    }

    .timeline-icon-9 {
        width: 3.5%;
        left: -0.4%;
    }

    .timeline-icon-10 {
        width: 3.5%;
        left: -0.4%;
    }

    .timeline-icon-11 {
        width: 3.5%;
        left: -0.4%;
    }

    .timeline-icon-12 {
        width: 4.5%;
        left: -0.4%;
    }

    .timeline-icon-13 {
        width: 3.5%;
        left: -0.4%;
    }

    .timeline-icon-14 {
        width: 3.5%;
        left: -0.4%;
    }

    .timeline-icon-15 {
        width: 6%;
        left: -0.5%;
    }

.timeline-icon-16 {
        width: 5.7%;
        left: -0.5%;
    }

.timeline-icon-17 {
        width: 5.7%;
        left: -0.5%;
    }

.timeline-icon-18 {
        width: 4%;
        left: -0.5%;
    }

.timeline-icon-19 {
        width: 8%;
        left: -0.5%;
    }

.timeline-icon-20 {
        width: 6.7%;
        left: -0.5%;
    }


    .timeline-item-1 {
        height: 0;
        margin-bottom: 10%;
    }

    .timeline-item:not(:last-child)::after {
        left: 10px;
    }

    .timeline-content {
        margin-left: 5px;
        max-width: 100%;
    }
}


@media (max-width: 768px) {
    .visa-verification-card {
        display: flow;
        place-items: center;
    }

    .visa-verification-cards {
        width: 100%;
        height: auto;
    }

    /*.title-section {*/
    /*    text-wrap-mode: wrap;*/
    /*}*/

    /*.title-container {*/
        /*width: 100%;*/
        /*height: auto;*/
        /*flex-direction: column;*/
        
    /*    width: 100%;*/
    /*    height: auto;*/
    /*    overflow-x: clip;*/
    /*}*/
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    height: 180px;
    flex-wrap: nowrap; /* prevent line break */
    overflow-x: auto;   /* allow scroll on small screens */
    gap: 15px;          /* optional: add spacing between items */
}

/*.title-container img {*/
/*    height: 150px;*/
/*    width: auto;*/
/*    flex-shrink: 0;*/
/*}*/

.title-section {
    font-size: clamp(1.2rem, 5vw, 3.5rem);
    font-weight: bold;
    color: #333;
    text-align: center;
    flex-shrink: 0;
    white-space: nowrap; /* prevent wrapping */
}

@media(min-width:320px) and (max-width: 380px) {
    .title-section {
        font-size: 44%;
    }
}

@media (max-width: 768px) {
    .title-container {
        height: auto;
        padding: 10px;
        flex-wrap: wrap-reverse;
        justify-content: start;
    }

    /*.title-container img {*/
    /*    height: 60px;*/
    /*    margin: 0 5px;*/
    /*}*/

    .title-section {
        white-space: nowrap;
    }
}

.responsive-iframe-container {
                    position: relative;
                    width: 100%;
                    padding-bottom: 120%; 
                    height: 0;
                    overflow: hidden;
                }
            
                .responsive-iframe-container iframe {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    border: none;
                }
            
                @media (max-width: 768px) {
        .responsive-iframe-container {
            padding-bottom: 75%; /* Taller for tablets */
        }
    }

    @media (max-width: 480px) {
        .responsive-iframe-container {
            padding-bottom: 100%; /* Even taller for phones */
            min-height: 300px; /* Ensures visibility */
        }
    }