/* running flag */

.flag-marquee {
    width: 100%;
    overflow: hidden;
    background: #000;
    padding: 10px 0;
    white-space: nowrap;
    color: #fff;
}

.flag-track {
    display: flex;
    align-items: center;
    gap: 150px; /* SPACE BETWEEN repeated content */
}

.flag-set {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    font-weight: 550;
}

.country-singapore{
color:#ff0040;
}
.country-europe{
color: #007afd;
}
.country-indonesia{
color: #daa62e;
}
.country-india{
color:#0f8300
}



.phone-link {
    color: black;           /* Normal number color */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-link:hover {
    color: #FA0D2D;             /* Number color on hover */
}

.text-center {
    text-align: center;
}


/* contact number */

.menu-phone-item a {
    color: #000;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.menu-phone-item a i {
    color: #000;
    transition: color 0.3s ease;
}

.menu-phone-item a:hover {
    color: #FA0D2D;  /* Number + icon turn red when hovered */
}

.menu-phone-item a:hover i {
    color: #FA0D2D;
}

/* linkedin */

.linkedin-item a i {
    transition: 0.3s ease;
}

.linkedin-item a:hover i {
    color: #FA0D2D !important;  /* LinkedIn blue or any color you want */
}



/* header section start */
/* Make header stay above slider */
#xb-header-area,
.xb-header,
.main-menu,
.submenu {
    position: relative;
    z-index: 9999 !important;
}

/* Submenu dropdown styling */


.menu-item-has-children:hover .submenu {
    display: block;
}

.header-btn-item .btn {
    padding: 10px 30px;
    background-color: #FA0D2D;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;

    transition: background 0.3s ease;
}

.header-btn-item .btn:hover {
    background-color: #c1071f;
}



.original{
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.top-bar {
    background: #f5f5f5;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left i {
    margin-right: 6px;
    color: #007bff;
}

.top-center {
    text-align: center;
    font-weight: 600;
}

.top-right a {
    margin-left: 12px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}

.top-right a:hover {
    color: #007bff;
}
.social-media{
    color: white;
}

.topbar-flex {
    display: flex;
    gap: 40px;       /* spacing between 2 lists */
    align-items: center;
}
.flag-section {
    background: #FA0D2D;   /* change color you want */
    border-radius: 5px;   /* smooth corners */
    padding: 0px 10px;
  
}

.flag-section li {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-bg {
    display: inline-block;
    background-color: #f0f0f0; /* Change to your desired color */
    border-radius: 5%; /* Makes it circular, or use px for rounded corners */
    padding: 0px 3px 0px 3px; /* Space around the flag */
}
.flag-bg img {
    display: block;
}



.xb-right-content i {
    margin-right: 10px;
    font-size: 18px;
}

.blink-text {
    animation: blinkColor 2s infinite;
}

@keyframes blinkColor {
    0%   { color: #000000; }
    50%  { color: rgb(255, 255, 255); }
    100% { color: #000000; }
}


/*  header section end */

/* popup section */
/* Popup Overlay */
.quote-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.quote-popup {
  width: 750px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.quote-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffffff;
    color: #FA0D2D;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 22px;
    z-index: 100;
    justify-content: center;
}

.quote-popup-inner {
  display: flex;
}

/* Left Form Section */
.quote-form {
  width: 50%;
  padding: 25px;
}

.quote-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-group i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
}

.input-group input {
  width: 100%;
  height: 50px;
  padding: 12px 12px 12px 40px; /* space for icon */
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.quote-form textarea {
  width: 100%;
  height: 80px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Submit Button */

.quote-btn {
  width: 120px;
  padding: 10px;
  background: #ffffff;
  color: #FA0D2D;
  font-weight: 500;
  border: 1px #FA0D2D solid;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
   font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-style: normal !important;
}

/* Hover color change */
.quote-btn:hover {
  background: #FA0D2D;   /* Darker green */
  transform: translateY(-2px);
  color: white;
}

/* Right Side Info */
.quote-info {
  width: 50%;
  padding: 30px;
  background: #3f3f3f;
  color: white;
}

.quote-info h3
 {
  color: #ffffff;
  margin: 0px 0;
   font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-style: normal !important;
}

.quote-info h4
 {
  color: #ffffff;
  margin: 20px 0;
}

.quote-info p {
  color: #ffffff;
  margin: 20px 0;
}

.info-block {
  margin-bottom: 20px;
}

.info-block h4 {
  font-size: 16px;
  margin-bottom: 8px;
  /* text-transform: uppercase; */
}

.quote-info i {
  font-size: 18px;
  /* margin-right: 8px; */
  vertical-align: middle;
}

/* whats app */

.whatsapp-menu-item {
    display: flex;
    align-items: center;
}

.whatsapp-btn {
    background: #25D366;
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn i {
    font-size: 25px;
}




/* Social Icons */
.socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}

.social-icon.linkedin:hover { background: #FA0D2D; }
.social-icon.facebook:hover { background: #FA0D2D; }
.social-icon.instagram:hover { background: #FA0D2D; }
.social-icon.twitter:hover { background: #FA0D2D; }

/* Mobile */
@media (max-width: 768px) {
  .quote-popup {
    width: 90%;
  }

  .quote-popup-inner {
    flex-direction: column;
  }

  .quote-form,
  .quote-info {
    width: 100%;
  }
}


/* hero section start */

/* Wrap for safety */



.logo1 img{
    max-width: 110px !important;
    width: 110px !important;
}


.xb-hero_content {
  display: flex !important;
  justify-content: center !important;
  flex-direction: column !important;
  align-items: center !important;
}

.hero-section{
    text-align: center !important;
}

/* hero section end */

/* about us section start */

.xbfadeleft img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    margin-left: -75px;
    margin-bottom: 25px;
}
.Accreditation {
    text-align: center !important;
}

.Accreditation .about-logos {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 30px; /* spacing between logos */
    flex-wrap: wrap;
    margin-top: 0px;
}



.about-logos {
    display: flex;
    justify-content: flex-start;
    gap: 35px;
    margin-top: 30px;
}

.about-logos img {
    max-height: 150px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.about-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .about-logos {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .about-logos img {
        max-height: 70px;
    }
}




/* about us section end */

/* product section start */

.service-section{
   text-align: center;
   margin-bottom: 30px !important;
}

/* Equal width for 3 items */
.xb-service-inner {
    display: flex;
    justify-content: space-between;
    
}


/* Keep icons nice and even */
.xb-service-inner .xb-ser-item .img img {
    max-width: 45px;
}
.xb-ser-item .sub-item p{
    width: 370px !important;
}


    .learn-more-wrapper {
        text-align: center;
        margin-top: 40px;
    }

    .learn-more-btn {
        display: inline-block;
        padding: 12px 28px;
        background: #FA0D2D; /* primary button color */
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        border-radius: 6px;
        transition: 0.3s ease;
        text-decoration: none;
    }

    .learn-more-btn:hover {
        background: #000000; /* hover color change */
        color: #fff;
    }




/* product section end */


/* service section start */

.xb-item--title{
    margin: 0 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
  color: var(--color-heading) !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

.xb-item--icon img{
    max-width: 40px !important;
}

.boart-image{
    max-width: 60% !important;
    margin-left: 170px !important;
}
.boart-image img{
border-radius: 5px;
max-width: 105% !important;
}


.service-btn {
    margin-top: 400px;
    margin-left: 70px !important;
}

/* service section end */


/* logo slider section */
.brand-bg {
    background-color: #f3f4f6; /* change color */
    padding-top: 80px;           /* increase top space */
    padding-bottom: 80px;
}

.brand-1{
  padding-bottom: 30px !important;
padding-top: 30px !important;
}

.brand-2{
  padding-bottom: 30px !important;
padding-top: 30px !important;
}


/* contact us section */


.abt-2{
    margin-left: -70px !important;
}

.abt-3{
    margin-left: -50px !important;
}
.abt-4{
    margin-left: 120px !important;
}

.contact-list li {
    list-style: none !important;
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: white !important;
}

.contact-list li i {
    margin-right: 10px;
    font-size: 15px;
    line-height: 1.5;
    margin-top: 3px;
}

.xb-footer_widget {

margin-left: 0px !important;


}
a{
    color: rgb(255, 255, 255) ;
}

/* map section */
.footer-map {
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.xb-footer_widget li a{
color: #ffffff;
}

.contact-box p a{
    color: #ffffff;
}
.img-title-1  a{
    color: #ffffff;
}