@charset "UTF-8";
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background: #F8F9FA;
}
.navbar {
    background: #007BFF;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-brand img {
    height: 40px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler-icon:hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFD700' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
}
.navbar-nav .nav-link:hover {
    color: #FFD700;
}
@media (max-width: 991px) {
    .navbar-collapse {
        background: #007BFF;
        width: 80%;
        margin: 0 auto;
        border-radius: 5px;
        padding: 10px;
        position: absolute;
        top: 60px;
        left: 10%;
        z-index: 999;
    }
    .navbar-nav {
        text-align: center;
    }
    .navbar-nav .nav-link {
        padding: 10px;
    }
}
.hero {
    position: relative;
    height: 100vh;
}
.carousel-item img {
    height: 100vh;
    object-fit: cover;
}
.hero-box {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.hero-box h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}
.hero-box p {
    color: #333;
}
.hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.btn-explore {
    background: #FFD700;
    color: #007BFF;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}
.btn-explore:hover {
    background: #0056b3;
    color: white;
    transform: translateY(-2px);
}
.btn-contact {
    background: #007BFF;
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}
.btn-contact:hover {
    background: #FFD700;
    color: #007BFF;
    transform: translateY(-2px);
}
.section-padding {
    padding: 60px 0;
}
.stats {
    background: #f8f9fa;
}
.stats h3 {
    font-size: 2.5rem;
    color: #007BFF;
}
.service-card, .country-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover, .country-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.service-card img, .country-card img {
    height: 200px;
    object-fit: cover;
}
.contact-hero {
    position: relative;
    margin-bottom: 40px;
}
.contact-hero img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,123,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-success {
    background: #25D366;
    border: none;
}
.btn-success:hover {
    background: #1DA851;
}
footer {
    background: #007BFF;
    color: white;
    padding: 20px 0;
}
footer a {
    color: #FFD700;
}
[data-aos] {
    transition-duration: 1s;
}
@media (max-width: 768px) {
    .hero-box h1 {
        font-size: 1.8rem;
    }
    .hero-box {
        padding: 15px;
    }
    .carousel-item img {
        height: 80vh;
    }
}
