/* Add here all your CSS customizations */
 .custom_li{
  
border-radius: 20px;
display: inline-block;
word-break:break-all; /* wrap extended text*/
border: solid 2px gray;
display: inline-block;
background: #000000;
color: #fff;
margin-bottom: 10px; 
width: 250px; 
text-align: center; 
color:#ff6600;
padding-left:10px;
padding-right:10px;
margin-right: 23px;
font-size: 13px;
}

@media (max-width: 768px){
    
     .custom_li{
  
display: block;
width: 100%; 

}
    
}

.section.facts {
	padding-bottom: 80px;
	padding-top: 80px;
}

.title {
	color: #1992d1;
	text-align: center;
}

.facts-wrapper {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 25px;
}

.facts__item {
	display: grid;
	justify-items: center;
	align-items: start;
	align-content: start;
	color: #fff;
	background: #1f4b6e;
	border-radius: 10px;
	text-align: center;
	line-height: 1.2;
	transition: all .4s;
	font-family: Bahnschrift-SemiLight;
}

.facts__item-number {
	font-size: 3.3333333333em;
}

/*@media (min-width:1200px) {*/
	

/*	.facts__item:nth-child(2), .facts__item:nth-child(3) {*/
/*		position: relative;*/
/*	}*/

/*	.facts__item:nth-child(2):before, .facts__item:nth-child(3):before {*/
/*		content: "";*/
/*		position: absolute;*/
/*		left: 50%;*/
/*		top: 0;*/
/*		height: 61px;*/
/*		width: 2px;*/
/*		transform: translate(-50%,-100%);*/
/*		background: #1992d1;*/
/*	}*/
/*}*/

@media (max-width:1600px) {

	.facts__item {
		padding: clamp(20px,11.2px + 2.75vw,64px) clamp(10px,5px + 1.5625vw,35px) clamp(20px,12.8px + 2.25vw,56px);
		gap: clamp(5px,3px + .625vw,15px);
	}

	.facts-wrapper {
		gap: 10px;
	}

	.facts__item {
		font-size: clamp(20px,19.25px + .234375vw,23px);
	}

	.facts__item-number {
		font-size: 2.5em;
	}
}

@media (max-width:1199px) {
	.facts__title {
		margin-bottom: 35px;
	}

	.facts-wrapper {
		grid-template-columns: 1fr 1fr;
	}

	.facts__item-number {
		font-size: 3.3em;
	}
}

@media (any-hover:hover) {
	.facts__item:hover {
		transform: scale(1.02);
	}
}

.products-section {
  background: #fff;
}

/* CARD */
.product-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 15px;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* TITLE */
.product-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

/* IMAGE + TEXT SIDE BY SIDE */
.product-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.product-img{
    width:50%;
}
.product-info{
    width:50%;
}

/* IMAGE */
.product-img img {
  /*width: 752px;*/
  /*  height: 237px;*/
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 400px;  
}

/* TEXT */
.product-info p {
  color: #666;
  margin-bottom: 10px;
}

/* BUTTON */
.btn-ocean {
  background: #7e4143;
  color: #fff;
  border-radius: 25px;
  padding: 8px 16px;
  border: none;
}

.btn-ocean:hover {
  background: #085a8c;
}

.contact-icons {
justify-content:center;
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.contact-icon {
  font-size: 20px;
  background: #0a6fae;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}


.country-accordion-section {
    padding: 10px;
}

/* CARD STYLE */
.country-card {
    border: none;
    border-radius: 14px;
    margin-bottom: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.country-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.country-btn {
    width: 100%;
    text-align: left;
    padding: 10px 5px;
    background: #e8f3fa;
    border: none !important;
    box-shadow: none !important;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* UNDERLINE */
.country-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: #e0e0e0;
    transition: all 0.3s ease;
}

/* ACTIVE UNDERLINE COLOR */
.country-btn:not(.collapsed)::before {
    background: #7B241C;
    height: 3px;
}

/* TEXT COLOR ACTIVE */
.country-btn:not(.collapsed) {
    color: #003366;
}

/* REMOVE BOOTSTRAP FOCUS BORDER */
.country-btn:focus {
    outline: none;
    box-shadow: none;
}

/* ICON */
.country-btn::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s ease;
    color: #999;
}

/* ROTATE ICON WHEN OPEN */
.country-btn:not(.collapsed)::after {
    transform: rotate(180deg);
    color: #003366;
}

/* BODY */
.card-body {
    background: #f8f9fb;
    padding: 18px 20px;
    border-top: 1px solid #eee;
}

/* TEXT */
.card-body p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.card-body strong {
    color: #003366;
}

/* LEFT BORDER INDICATOR */
.country-card {
    border-left: 4px solid transparent;
}

/*.country-btn:not(.collapsed) {*/
/*    border-left: 4px solid #00b4d8;*/
/*}*/

/* SMOOTH ANIMATION */
.collapse {
    transition: all 0.3s ease;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #global-map {
        margin-bottom: 20px;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #003366;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title h2::after {
    content: "";
    width: 60%;
    height: 3px;
    background: #7B241C;
    position: absolute;
    left: 20%;
    bottom: -8px;
    border-radius: 5px;
}

.footer {
    background: #050505;
    color: #fff;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

/* LOGO */
.logo {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 0;
}

.sub {
    color: #aaa;
    margin-bottom: 10px;
}

.tagline {
    margin-bottom: 15px;
}

.desc {
    color: #0d1f33 ;
    line-height: 1.6;
}

/* TITLES */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    color: #0d1f33;
    cursor: pointer;
    transition: 0.3s;
}

.footer-links li span {
    color: #7B241C;
    margin-right: 8px;
}

.footer-links li:hover {
    color: #fff;
}

/* CONTACT */
.address {
    color: #0d1f33;
    margin-bottom: 15px;
    line-height: 1.6;
}

.phone {
    color: #7B241C;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.email {
    margin-top: 10px;
    color: #0d1f33;
    border-bottom: 2px solid #7B241C;
    display: inline-block;
    padding-bottom: 2px;
}

/* SOCIAL */
.social-icons {
    color:#0d1f33;
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border: 2px solid #7B241C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff1e1e;
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .logo {
        font-size: 32px;
    }
}

/* BANNER SECTION */
.service-banner {
    position: relative;
    height: 70vh; /* change to 50vh or 75vh as needed */
   
}

/* DARK OVERLAY */
.service-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(255, 255, 255, 0.2),
        rgba(0, 51, 102, 0.3)
    );
}

/* CONTENT */
.service-banner .content {
    position: relative;
    z-index: 2;
}

/* TITLE */
.service-banner h1 {
    font-size: 48px;
    letter-spacing: 1px;
}

/* SUBTEXT */
.service-banner p {
    font-size: 16px;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-banner {
        height: 40vh;
    }

    .service-banner h1 {
        font-size: 32px;
    }
}

.map-container {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;

  /* Safari fix */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}



