:root {
    --primary-color: #0B4F6C;
    --secondary-color: #145C9E;
    --accent-color: #FF7F50;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header Styling */
.modern-header {
    background-color: whitesmoke;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.7rem;
}

.logo {
    height: 38px;
}

nav {
    margin-left: 3rem;
    display: flex;
    gap: 2rem;
    flex-grow: 1;
    font-family: 'Inter', 'Manrope', sans-serif;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #0b0101 !important;
    font-weight: bold !important;
    font-size: 0.95rem;
    position: relative;
    padding: 0.75rem 1rem;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #007bff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #007bff;
}

.nav-link:hover::after {
    width: 100%;
}


.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.enquiry-button {
    background: rgb(30, 126, 158);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: none;
    cursor: pointer;
}

.enquiry-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
    }

    nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 1rem;
    }
}
/* Modal Styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .modal.active {
    display: flex;
  }
  
  .modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    position: relative;
    margin: 20px;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
  }
  
  .form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
  }
  
  /* Ensure modal title is centered and styled properly */
  .modal-content h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 0.5rem;
  }
  
  .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    flex: 1;
    margin-bottom: 1.5rem;
  }
  
  label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a365d;
    font-weight: 500;
  }
  
  .required {
    color: #dc2626;
  }
  
  input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
  }
  
  input:focus, textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }
  
  textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  input::placeholder, textarea::placeholder {
    color: #9ca3af;
  }
  
  .submit-button {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .submit-button:hover {
    background: #1d4ed8;
  }
  
  /* Responsive Design */
  @media (max-width: 640px) {
    .form-row {
      flex-direction: column;
      gap: 0;
    }
    
    .modal-content {
      padding: 1.5rem;
    }
  }
  /* Required field asterisk */
.required {
  color: #DC2626;
  margin-left: 2px;
}
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem; /* Add some spacing above the checkbox group */
}

.checkbox-group input[type="checkbox"] {
  margin: 0;
  width: 20px;
  height: 20px;
}

.checkbox-group label {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

  /* Show Modal */
  .modal.active {
    display: flex;
  }
/*phone styling*/
.phone-dropdown {
  position: relative;
  cursor: pointer;
  
  
}

.dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 5px;
  padding: 1rem;
  z-index: 1001;
  margin-top: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}
.phone-icon {
  font-size: 20px;
  color: #1a4f7c;
  transition: transform 0.3s ease;
}
.phone-icon:hover {
  transform: scale(1.1);
}
.phone-dropdown.active .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.whatsapp-icon {
  font-size: 26px;
  color: #25D366;
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.phone-dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 5px;
  padding: 1rem;
  z-index: 1001;
  margin-top: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}

.phone-dropdown.active .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-item {
  padding: 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-item h3 {
  color: black;
  font-size: 1rem;
  margin: 0;
  font-weight: bolder;
  font-family: 'Times New Roman', Times, serif;
}

.contact-item p {
  color: rgb(52, 51, 51);
  font-size: 0.875rem;
  margin: 0.25rem 0 0;
  font-weight: 500;
  font-family: 'Times New Roman', Times, serif;
}

@media (max-width: 768px) {
  .dropdown-content {
      right: 50%;
      transform: translateX(50%);
  }
}

/*country*/
.map-dropdown {
    position: relative;
    cursor: pointer;
}

.country-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0.5rem;
    z-index: 1001;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
}

.map-dropdown.active .country-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.country-item {
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
    text-decoration: none;
    color: inherit;
}

.country-item:hover {
    background-color: #f5f5f5;
}

.country-item img {
    width: 30px;
    height: 20px;
    object-fit: cover;
}


.hero-section {
    background: var(--gradient);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/api/placeholder/1920/400') center/cover;
    opacity: 0.1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    padding: 10px 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-section {
    padding: 80px 0;
    background: #F8FAFC;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-image {
    height: 250px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-content {
    padding: 30px;
    position: relative;
}

.sector-tag {
    position: absolute;
    top: -20px;
    left: 30px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-text {
    margin: 20px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.testimonial-author {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
}

.stats-section {
    padding: 100px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card {
    padding: 40px;
    background: #F8FAFC;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .modal.active {
    display: flex;
  }
  
  .modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    position: relative;
    margin: 20px;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
  }
  
  .form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
  }
  
  /* Ensure modal title is centered and styled properly */
  .modal-content h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 0.5rem;
  }
  
  .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    flex: 1;
    margin-bottom: 1.5rem;
  }
  
  label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a365d;
    font-weight: 500;
  }
  
  .required {
    color: #dc2626;
  }
  
  input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
  }
  
  input:focus, textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }
  
  textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  input::placeholder, textarea::placeholder {
    color: #9ca3af;
  }
  
  .submit-button {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .submit-button:hover {
    background: #1d4ed8;
  }
  
  /* Responsive Design */
  @media (max-width: 640px) {
    .form-row {
      flex-direction: column;
      gap: 0;
    }
    
    .modal-content {
      padding: 1.5rem;
    }
  }
  
  /* Show Modal */
  .modal.active {
    display: flex;
  }
  
  /* Required field asterisk */
  .required {
    color: #DC2626;
    margin-left: 2px;
  }
  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem; /* Add some spacing above the checkbox group */
  }
  
  .checkbox-group input[type="checkbox"] {
    margin: 0;
    width: 20px;
    height: 20px;
  }
  
  .checkbox-group label {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
  }
  


/* Modern Footer */
/* Modern Footer */
.modern-footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 4rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: #ffffff;
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-icon:hover {
  color: #0d6efd;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul a {
  color: #999;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  text-align: center;
  color: #666;
}

.stats-section {
  padding: 100px 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-card {
  padding: 40px;
  background: #F8FAFC;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 500;
}


/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
    }
    
    nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Enhanced mobile responsiveness */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .hero-section {
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 1.2rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
  
  .stats-grid {
    gap: 20px;
  }
  
  .stat-card {
    padding: 30px;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .stat-label {
    font-size: 1.1rem;
  }
  
  .modal-content {
    padding: 1.5rem;
    margin: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 50vh;
  }
  
  .hero-section::before {
    opacity: 0.7;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .testimonials-section {
    padding: 40px 15px;
  }
  
  .stats-section {
    padding: 60px 15px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-card {
    padding: 25px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .sector-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
  
  .testimonial-author {
    font-size: 0.9rem;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
  }
}



/* Updated Mobile Navigation Styles */

/* Desktop vs Mobile Contact Actions */
.desktop-contact-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.right-contact-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mobile Menu Toggle Button - Fixed Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1a4f7c;
    padding: 0.5rem;
    margin-left: auto;
    z-index: 1100;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: #007bff;
}

/* Desktop vs Mobile Layout */
@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    nav {
        display: flex;
        margin-left: 3rem;
        gap: 2rem;
        flex-grow: 1;
    }
}

/* Tablet & Mobile Layout */
@media (max-width: 992px) {
    .header-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }
    
    /* Mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
        order: 3; /* Place hamburger icon at the end */
    }
    
    /* Navigation menu on mobile */
    nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 75px;
        left: 0;
        background-color: #f8f8f8; /* Light background */
        z-index: 1000;
        margin-left: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    /* Show navigation when active */
    nav.active {
        display: block;
    }
    
    /* Style nav links */
    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px;
        color: #333 !important;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    /* Header elements arrangement */
    .logo { order: 1; }
    .contact-actions { order: 2; margin-left: 1rem; margin-right: auto; }
    .mobile-menu-toggle { order: 3; }
    .enquiry-button { order: 4; }
    .map-dropdown { order: 5; }
}

/* Small Devices */
@media (max-width: 768px) {
  .logo {
    height: 32px;
  }
  
  .right-contact-actions {
    gap: 1rem;
  }
  
  .enquiry-button {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
  }
}

/* Extra Small Devices */
@media (max-width: 576px) {
  .modern-header {
    height: 65px;
  }
  
  .header-container {
    padding: 0.5rem 1rem;
    height: 65px;
  }
  
  .logo {
    height: 30px;
  }
  
  .right-contact-actions {
    gap: 0.75rem;
  }
  
  .dropdown-content, 
  .country-content {
    right: -50px;
  }
  
  /* Ensure hero section content is visible */
  .hero__content {
    padding-top: 90px;
  }
  
  /* Ensure enquiry button is visible and properly sized */
  .enquiry-button {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
  }
  
  /* Better alignment for navigation dropdown */
  nav.active {
    top: 65px;
  }
}

/* Mobile Navigation Improvements */
@media (max-width: 992px) {
  /* Mobile menu button */
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a4f7c;
  }
  
  /* Navigation container in mobile view */
  nav {
    width: 100%;
    display: none; /* Hide by default on mobile */
    flex-direction: column;
    background-color: whitesmoke;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  /* Show navigation when active */
  nav.active {
    display: flex;
    padding: 0.5rem 0;
  }
  
  /* Navigation links in mobile view */
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
  
  /* Logo and header actions alignment */
  .header-container {
    justify-content: space-between;
    padding: 0.75rem 1rem;
  }
  
  /* Ensure logo is visible */
  .logo {
    height: 32px;
  }

  /* Position the hamburger menu button */
  .mobile-menu-btn {
    display: block;
    order: 3;
    background: none;
    border: none;
    font-size: 1.5rem;
    margin-left: auto;
  }
}

@media (max-width: 576px) {
  /* Smaller devices adjustments */
  .header-container {
    padding: 0.5rem 1rem;
  }
  
  .logo {
    height: 28px;
  }
  
  /* Adjust enquiry button size */
  .enquiry-button {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
  }
  
  .enquiry-icon {
    width: 14px;
    height: 14px;
  }
  
  /* Better spacing for dropdown content */
  .dropdown-content, 
  .country-content {
    min-width: 180px;
    padding: 0.75rem;
  }
}
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1a4f7c;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  font-family: Arial, sans-serif;
  font-size: 14px;
  z-index: 2000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.hidden {
  display: none;
}
