/* Basic Reset & Typography */
:root {
    --primary-color: #0056b3;
    --secondary-color: #28a745;
    --accent-color: #007bff;
    --text-color: #333;
    --bg-light: #f8f9fa;
    --bg-dark: #e9ecef;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden; /* Prevent horizontal scroll from minor layout issues */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* World Map Background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/world-map.png); /* Placeholder World Map */
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* Subtle transparency */
    z-index: -1; /* Send it to the back */
    filter: grayscale(50%); /* Desaturate for subtlety */
}

/* Navbar */
.navbar {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- LOGO IMAGE FIXES --- */
.logo img { /* Target the image inside the .logo link */
    max-width: 150px; /* Adjust as per your desired desktop logo size */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below image */
}
/* --- END LOGO IMAGE FIXES --- */

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6666;
}

.hamburger-menu {
    display: none; /* Hidden on desktop */
    font-size: 1.8em;
    cursor: pointer;
    color: var(--primary-color);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transform: translateX(100%); /* Start off-screen */
    transition: transform 0.4s ease-in-out;
}

.mobile-menu-overlay.open {
    transform: translateX(0);
}

.mobile-menu-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3em;
    color: var(--text-color);
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 25px 0;
}

.mobile-nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.8em;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #3399cc 0%, #3399cc 50%, rgba(0, 86, 179, 0) 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
}

.hero-section p {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #3333cc; /* Darker green */
    transform: translateY(-3px);
}

/* Main Content & Country Selection */
.main-content {
    padding: 60px 0;
}

.country-selection-section {
    text-align: center;
    margin-bottom: 50px;
}

.country-selection-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.country-selection-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.country-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Larger minimum size for flags */
    gap: 30px;
    max-width: 1000px; /* Adjust max-width as needed */
    margin: 0 auto;
    padding: 20px;
}

.country-button {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px; /* More rounded corners */
    padding: 25px 15px; /* More padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 20px var(--shadow-light); /* More pronounced shadow */
    position: relative;
    overflow: hidden; /* For animations if needed */
}

.country-button:hover {
    transform: translateY(-8px); /* More pronounced lift */
    box-shadow: 0 12px 30px var(--shadow-medium); /* Stronger shadow */
    background-color: var(--bg-dark); /* Subtle background change */
}

.country-flag {
    width: 100px; /* Larger flags */
    height: 70px; /* Adjust height for flag aspect ratios */
    object-fit: cover;
    border: 2px solid #eee; /* Slightly thicker border */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.country-name {
    font-weight: 600;
    font-size: 1.2em; /* Larger font size */
    color: var(--primary-color);
}

/* Persistent Contact Buttons (FABs) */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fab {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.8em;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.whatsapp-fab {
    background-color: #25D366; /* WhatsApp green */
}

.call-fab {
    background-color: #007bff; /* Bright blue for call */
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

#flying-plane {
  position: fixed;
  top: 100px; /* Adjust as per your preference: center-ish height */
  left: -200px; /* Start from offscreen */
  width: 150px;
  height: auto;
  z-index: 9999;
  animation: flyAcross 20s linear infinite;
  pointer-events: none;
}

/* Animation for horizontal flight */
@keyframes flyAcross {
  0% {
    left: -200px;
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-2deg);
  }
  100% {
    left: 100vw; /* Fly across full viewport width */
    transform: translateY(0px) rotate(0deg);
  }
}

/* Mobile View Adjustments */
@media only screen and (max-width: 768px) {
  #flying-plane {
    top: 60px;
    width: 100px;
    animation-duration: 15s;
  }
}





 
    
    

