/* Countries Section Styles */
#searchResults{
    display:none;
    justify-content:center;
    margin:30px auto;
}
#searchResults .country-item{
    margin:0;
}
.countries-row.search-mode {
    width: 100% !important;
    justify-content: center !important;
}
.countries-section {
    padding: 4rem 0;
    background-color: #f8f5f2;
    overflow: hidden; /* Important: prevent scrollbars from animations */
}
.countries-search {
    display: flex;
    justify-content: center;
    max-width: 500px;
	margin: 0 auto 40px;
}
.country-search-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #c09057;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
}
.country-search-input:focus {
 
    border-color: #c09057 !important;
    box-shadow: 0 0 0 3px rgba(192, 144, 87, 0.2) !important;
}
.country-search-input:focus,
.country-search-input:active {
    outline: none !important;
    border: 2px solid #c09057 !important;
    box-shadow: 0 0 0 2px #f8f5f2 !important;
}
.country-search-btn {
    background: #c09057;
    color: #fff;
    border: 1px solid #c09057;
    border-radius: 0 8px 8px 0;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.country-search-btn:hover {
    background: #fff;
	color: #c09057;
	border: 2px solid #c09057;
}
.countries-slider-container {
    position: relative;
    margin: 2rem 0;
}
.countries-row-wrapper {
    position: relative;
    margin: 1rem 0;
    overflow: hidden;
}
.countries-row {
    display: flex;
    flex-wrap: nowrap;
    padding: 1rem 0;
    width: max-content; /* Ensure it can grow beyond container width */
}

.countries-row.scroll-right {
    animation: scroll-right 60s linear infinite;
}
.countries-row-wrapper:hover .countries-row {
    animation-play-state: paused;
}
@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
.country-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 0.5rem;
    min-width: 120px;
    flex-shrink: 0;
}
.country-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1; /* Ensure hovered item appears above others */
}
.country-flag {
    width: 80px;
    height: 60px;
    margin: 0.5rem auto 0.5rem;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    position: relative;
}
.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-flag::after {
    content: attr(data-country);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    color: #999;
    font-size: 10px;
    text-align: center;
    opacity: 0;
}
.country-flag img[src$="placeholder.jpg"],
.country-flag img[src^="data:image"] {
    opacity: 0.3;
}
.country-flag img[src$="placeholder.jpg"] + .country-flag::after,
.country-flag img[src^="data:image"] + .country-flag::after {
    opacity: 1;
}
.country-item h3 {
    font-size: 0.875rem;
    margin: 0;
    color: #25292a;
}
.countries-cta {
    text-align: center;
    margin-top: 3rem;
}
.countries-note {
    margin-bottom: 1rem;
    font-style: italic;
    color: #6b7280;
}
.countries-contact-btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #c09057, #deba91);
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.875rem;
}
.countries-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}
.countries-contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.countries-contact-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.countries-highlight {
    background: #ffffff, 0.1);
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .country-flag {
        width: 60px;
        height: 45px;
    }
    
    .country-item h3 {
        font-size: 0.75rem;
    }
    
    .countries-row-wrapper {
        margin: 0.5rem 0;
    }
    
    /* Faster animation on mobile */
    .countries-row.scroll-right,
    .countries-row.scroll-left {
        animation-duration: 40s;
    }
}
/* countries section styles */
/* Services Section */
.services-section_new {
	background: #f8f5f2;
}
.services-section1{
    padding:60px 0;
    background:#f8f5f2;
    text-align:center;
	width:100%;
    max-width:1200px;
    margin:auto;
}
.service-list {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
    justify-content: center;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}
.service-item{
    background:#fff;
    padding:30px 25px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    transition:.3s;
	text-align: center;
	max-width: 370px;
    margin: 0 auto;
}
.service-item h3{
    margin-bottom:12px;
    color:#25292a;
    font-size:1.25rem;
}

.service-item p{
    margin-bottom:20px;
    color:#6b7280;
    font-size:.95rem;
}
.service-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.service-item .read-more {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #c09057;
    border: 1px solid #c09057;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.service-item .read-more:hover {
    background-color: #c09057;
    color: #ffffff;
}
.service-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f8f5f2;
    color:#c09057;
    font-size:28px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .service-list {
        grid-template-columns: 1fr;
    }
    .service-item {
        max-width: 100%;
	}
	.services-section1{
        padding:40px 0;
    }
}
/* Services Section */
/* Common section styles */
.section-header1{
    text-align:center;
    margin:0 auto 40px;
}
.section-tag{
    display:block;
	width:fit-content;
    padding:6px 16px;
    margin:0 auto 16px;
    border-radius:999px;
    background:linear-gradient(135deg,#c09057,#deba91);
    color:#fff;
    font-size:20px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.section-title1{
    position:relative;
    display:inline-block;
    margin-bottom:20px;
    color:#25292a;
    font-size:clamp(2rem,4vw,3.2rem);
	padding-bottom: 1rem;
}
.section-title1::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-10px;
    transform:translateX(-50%);
    width:60px;
    height:3px;
    background:linear-gradient(135deg,#c09057,#deba91);
    border-radius:999px;
}
.section-subtitle1{
    color:#6b7280;
    font-size:1.1rem;
}
@media (max-width:768px){

    .section-title1{
        font-size:1.75rem;
    }

    .section-subtitle1{
        font-size:.95rem;
    }

    .service-item{
        padding:24px 20px;
    }
}
/* Common section styles */
