#xb-loadding {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    /* white background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#xb-loadding img {
    width: 200px;
    /* adjust size */
    height: auto;
}

.plane-img {
    filter: grayscale(100%);
}

/* Professional Stats Section - #606060 Theme */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 40px;
    background: #f8f9fa;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
    margin: 40px 0;
    /* border-top: 4px solid #606060; */
    /* border-bottom: 4px solid #606060; */
}

.stats-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(128, 128, 128, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #606060;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stats-card:hover::before {
    transform: scaleX(1);
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(128, 128, 128, 0.15);
}

.stats-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    flex-shrink: 0;
    margin-bottom: 20px;
    background: #606060;
    box-shadow: 0 4px 15px rgba(128, 128, 128, 0.2);
}

.stats-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: #606060;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
}

.stats-label {
    font-size: 1rem;
    color: #606060;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Professional Visa Category Section - #606060 Theme */
.visa-category {
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 20px;
    background: #f8f9fa;
}

.visa-heading {
    text-align: center;
    margin-bottom: 60px;
}

.visa-heading .subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #606060;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.visa-heading .title {
    font-size: 42px;
    font-weight: 700;
    color: #606060;
    margin-bottom: 0;
    line-height: 1.2;
}

.visa-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.visa-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.visa-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(128, 128, 128, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.visa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #606060;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.visa-card:hover::before {
    transform: scaleX(1);
}

.visa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(128, 128, 128, 0.15);
}

.visa-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #606060;
    color: #ffffff;
    font-weight: bold;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(128, 128, 128, 0.2);
    align-self: flex-start;
    z-index: 99;
}

.visa-content-new h3 {
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: 600;
    color: #606060;
    line-height: 1.3;
}

.visa-content-new p {
    margin: 0;
    font-size: 15px;
    color: #606060;
    line-height: 1.6;
}

.visa-right {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Simple Responsive Image CSS for Visa Category */
.visa-right img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    min-height: 500px;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .visa-right img {
        max-width: 100%;
        height: auto;
        min-height: 450px;
    }
}

@media (max-width: 1024px) {
    .visa-right img {
        max-width: 100%;
        height: auto;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .visa-right img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .visa-right img {
        height: auto;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .visa-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .visa-left {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 40px 20px;
        margin: 20px 0;
    }

    .stats-card {
        padding: 25px 15px;
    }

    .stats-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .stats-number {
        font-size: 2.2rem;
    }

    .stats-label {
        font-size: 0.9rem;
    }

    .visa-category {
        padding: 60px 15px;
    }

    .visa-heading .title {
        font-size: 32px;
    }

    .visa-left {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .visa-card {
        padding: 25px 20px;
    }

    .visa-content-new h3 {
        font-size: 20px;
    }

    .visa-content-new p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px 15px;
    }

    .stats-card {
        padding: 20px 15px;
    }

    .stats-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .stats-number {
        font-size: 2rem;
    }

    .visa-card {
        padding: 30px 20px;
        text-align: center;
    }

    .visa-icon {
        align-self: center;
        margin-bottom: 20px;
    }

    .visa-content-new {
        text-align: center;
    }
}

/* Updated color variations - all using solid #606060 */
.visa-icon.green,
.visa-icon.blue,
.visa-icon.yellow,
.icon-visa,
.icon-success,
.icon-projects,
.icon-consultants {
    background: #606060 !important;
    box-shadow: 0 4px 15px rgba(128, 128, 128, 0.2) !important;
}

/* Professional hover effects with solid #606060 */
.stats-card:hover .stats-icon,
.visa-card:hover .visa-icon {
    background: #000000 !important;
    transform: scale(1.05);
}

/* Additional professional styling with #606060 accents */
.stats-section::before,
.visa-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    /* background: #606060; */
}

.stats-section {
    position: relative;
}

.visa-category {
    position: relative;
}

.arrow_gif {
    height: 200px;
    width: 370px;
}

/* Remove outline/border from navbar links on hover and focus */
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .dropdown-toggle:hover,
.navbar .dropdown-toggle:focus,
.navbar .nav-item:hover,
.navbar .nav-item:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove Bootstrap default button focus styles */
.navbar .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove any custom hover effects that might be adding borders */
.navbar .nav-link.hover-active,
.navbar .nav-item.hover-active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Ensure dropdown items don't have outlines */
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Contact Us Button in Topbar */
.topbar .contact-btn {
    display: inline-block;
    padding: 6px 16px;
    background-color: #fff;
    /* Primary brand color */
    color: #606060 !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    /* Rounded button */
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.topbar .contact-btn:hover {
    background-color: #606060;
    /* Hover effect */
    border-color: #fff;
    color: #fff !important;
    /* transform: translateY(-2px); */
    /* Small lift effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Social Icons Hover Effects - Header and Footer */
/* Make both header and footer social icons consistent */
.top-bar .social a,
.footer-section .social a {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.945) !important;
    color: #fff !important;
}

/* Header Social Icons Hover Effects */
.top-bar .social a:hover {
    background-color: #fff !important;
    color: #606060 !important;
    transform: scale(1.8);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.top-bar .social a:hover i {
    color: #606060 !important;
}

.top-bar .social a:hover img {
    filter: brightness(0) saturate(100%) invert(37%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(96%) contrast(89%);
}

/* Footer Social Icons Hover Effects */
.footer-section .social a:hover {
    background-color: #606060 !important;
    color: #fff !important;
    transform: scale(1.8);
    box-shadow: 0 4px 15px rgba(96, 96, 96, 0.3);
}

.footer-section .social a:hover i {
    color: #fff !important;
}

.footer-section .social a:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.wa__btn_popup:hover {
    transform: scale(1.2) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Contact Details Hover Effects */
.address-info ul li a {
    transition: all 0.3s ease;
}

.address-info ul li a:hover {
    font-size: 16px !important;
    font-weight: 700 !important;
    transform: scale(1.1);
    color: #fff !important;
}

/* Footer Contact Details Hover Effects */
.footer-section .cont-info a {
    transition: all 0.3s ease;
}

.footer-section .cont-info a:hover {
    font-size: 15px !important;
    font-weight: 700 !important;
    transform: scale(1.1);
    color: #fff !important;
}

/* Footer Menu Items Hover Effects */
.footer-col a {
    transition: all 0.3s ease;
}

.footer-col a:hover {
    font-size: 16px !important;
    font-weight: 700 !important;
    transform: scale(1.1);
    color: #fff !important;
}

/* Footer Study List Items Hover Effects */
.footer-section .studyList a {
    transition: all 0.3s ease;
}

.footer-section .studyList a:hover {
    font-size: 16px !important;
    font-weight: 700 !important;
    transform: scale(1.1);
    color: #fff !important;
}

/* Center Footer Content on Mobile Screens */
@media (max-width: 768px) {
    /* Center footer top-bar content */
    .looking-section {
        text-align: center !important;
    }
    
    .looking-section .row {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .looking-section .col-lg-8,
    .looking-section .col-lg-4 {
        text-align: center !important;
    }
    
    .looking-section .footer-topbar-text {
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    .looking-section .topbar {
        text-align: center !important;
        justify-content: center !important;
    }
    
    .looking-section .contact-btn {
        margin: 0 auto !important;
    }
    
    /* Center footer logo and branding */
    .footer-section .container-footer-logo {
        text-align: center !important;
        margin: 0 auto;
    }
    
    /* Center contact information */
    .footer-section .cont-info {
        text-align: center !important;
    }
    
    .footer-section .cont-info li {
        text-align: center !important;
        justify-content: center !important;
    }
    
    /* Center social media icons */
    .footer-section .social {
        text-align: center !important;
        justify-content: center !important;
    }
    
    .footer-section ul.item-flex {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Center footer menu columns */
    .footer-section .footer-col {
        text-align: center !important;
    }
    
    .footer-section .footer-col h4 {
        text-align: center !important;
    }
    
    .footer-section .footer-col ul {
        text-align: center !important;
    }
    
    .footer-section .footer-col li {
        text-align: center !important;
    }
    
    /* Center study list items */
    .footer-section .studyList {
        text-align: center !important;
    }
    
    .footer-section .studyList li {
        text-align: center !important;
    }
    
    /* Center footer bottom content */
    .footer-bottom {
        text-align: center !important;
    }
    
    .footer-bottom .row {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .footer-bottom .col-sm-12 {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    /* Additional mobile centering for smaller screens */
    .footer-section .container {
        text-align: center !important;
    }
    
    .footer-section .row {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .footer-section .col-sm-12,
    .footer-section .col-lg-3,
    .footer-section .col-lg-9 {
        text-align: center !important;
    }
    
    /* Additional footer top-bar centering for small mobile */
    .looking-section .container {
        text-align: center !important;
    }
    
    .looking-section .col-12 {
        text-align: center !important;
    }
    
    .looking-section .footer-topbar-text p {
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    .looking-section .topbar {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

/* 01-September-2025 */

@media(max-width:768px) {
    .form-section .query {
        margin-block-start: 30px;
        width: 100%;
    }


    .form-section .contact-form {
        margin-left: -3%;
        margin-right: 0%;
    }

}


@media(max-width:576px) {
    section.features-section {
        height: 280px;
        margin-top: -260px;
    }

    .arrow_gif {
        display: none;
    }

    img.about2-img {
        position: initial;
        width: 100%;
    }

    .why-choose-section {
        padding: 60px 0px;
    }


    .client-name {
        left: 0px;
    }

    .rating.text-end {
        text-align: right;
    }

    .testimonial-image-fix {
        margin-top: 0px;
    }

    .about-section2 img.aboutus2-img {
        width: 100%;
        position: inherit;
        margin-top: 10px;
    }


}

/* iPhone 12 specific media query - 6.1 inch display, 2532x1170 resolution, 460 ppi */
@media only screen 
  and (device-width: 390px) 
  and (device-height: 844px) 
  and (-webkit-device-pixel-ratio: 3) {
  
  /* Fix Why Choose Kairo Global right image stretching */
  .chooseImg {
    object-fit: contain !important;
    height: auto !important;
    max-height: 400px !important;
    width: 100% !important;
  }
  
  /* Fix FAQ left image stretching */
  .faq-section .chooseImg {
    object-fit: contain !important;
    height: auto !important;
    max-height: 350px !important;
    width: 100% !important;
  }
  
  /* Fix Contact image stretching */
  .contact .img-fluid {
    object-fit: contain !important;
    height: auto !important;
    max-height: 300px !important;
    width: 100% !important;
  }
}

/* Additional iPhone 12 Pro Max and similar devices */
@media only screen 
  and (device-width: 428px) 
  and (device-height: 926px) 
  and (-webkit-device-pixel-ratio: 3) {
  
  .chooseImg {
    object-fit: contain !important;
    height: auto !important;
    max-height: 400px !important;
    width: 100% !important;
  }
  
  .faq-section .chooseImg {
    object-fit: contain !important;
    height: auto !important;
    max-height: 350px !important;
    width: 100% !important;
  }
  
  .contact .img-fluid {
    object-fit: contain !important;
    height: auto !important;
    max-height: 300px !important;
    width: 100% !important;
  }
}

/* General mobile fix for similar aspect ratios */
@media only screen 
  and (max-width: 430px) 
  and (max-height: 950px) 
  and (orientation: portrait) {
  
  .chooseImg {
    object-fit: contain !important;
    height: auto !important;
    max-height: 400px !important;
    width: 100% !important;
  }
  
  .faq-section .chooseImg {
    object-fit: contain !important;
    height: auto !important;
    max-height: 350px !important;
    width: 100% !important;
  }
  
  .contact .img-fluid {
    object-fit: contain !important;
    height: auto !important;
    max-height: 300px !important;
    width: 100% !important;
  }
}