:root {
    --primary-color: #1a4f7c;
    --secondary-color: #f0f8ff;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

/* 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.5rem;
}

.logo {
    height: 38px;
}

nav {
    margin-left: 3rem;
    display: flex;
    gap: 2rem;
    flex-grow: 1;
    font-family: 'Segoe UI', system-ui, -apple-system, 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%;
}

.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;
    }
  }
  
  /* 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;
}

  
/* Parent container to align the map and contact info side by side */
.layout-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 1rem;
    width: 100%;
    height: auto;
    overflow: hidden; /* Prevent horizontal scrolling */
}
  
  /* Map container to hold the SVG map */
  .map-container {
    flex: 2; /* Map takes more space */
    max-width: 80%; /* Prevent it from shrinking too much */
    min-height: 500px; /* Maintain proper height for the map */
    padding: 0.5rem;
    overflow: visible;
  }
  
  /* SVG inside the map container */
  .map-container svg {
    width: 100%; /* Scale the SVG map to the container width */
    height: auto; /* Maintain aspect ratio */
    overflow: visible;
    margin-right: -10%; /* This helps show the cut-off part */
    transform: scale(0.9); /* Slightly scale down the map to fit */
    transform-origin: center center;
  }
  
  /* Contact Information container */
  .contact-info {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.contact-info.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.contact-header {
    padding: 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.contact-header h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0;
    padding-left: 1rem;
}

.contact-details {
    padding: 1.5rem;
}

.info-item {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
}

.info-label strong {
    font-weight: 600;
}

.info-item span {
    display: block;
    padding-left: 2rem;
    color: #1e293b;
}

@media (max-width: 768px) {
    .contact-info {
        margin-top: 1rem;
    }
}
  

/* Modern Footer */
.modern-footer {
    background: #1a1a1a;
    color: var(--white);
    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: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.social-icon:hover {
    color: var(--accent-color);
}

.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;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-section {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 600px;
    }
}

/*hero*/
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #1a4f7c 0%, #2c3e50 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    overflow: hidden;
    margin-top: 70px;
    padding-top: calc(4rem + 70px);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23ffffff10" d="M0 0h200v200H0z"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 2rem auto;
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Enhanced animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-item {
        width: 100%;
    }
}

/*global presence*/
.global-presence-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
}

.presence-header {
    text-align: left;
    margin-bottom: 2rem;
}

.network-title {
    font-size: 2rem;
    color: #1a4f7c;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.network-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #1a4f7c, #66B2FF);
    border-radius: 2px;
    margin: 1rem 0;
}

.network-subtitle {
    color: #64748b;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.location-card {
    position: relative;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 4px solid var(--card-color);
    overflow: hidden;
    animation: slideIn 0.5s ease-out forwards;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--card-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.location-card:hover::before {
    opacity: 0.1;
}

.location-details {
    position: relative;
    z-index: 1;
}

.location-details h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.office-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(var(--card-color), 0.1);
    border-radius: 12px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animations */
.location-card:nth-child(1) { animation-delay: 0.1s; }
.location-card:nth-child(2) { animation-delay: 0.2s; }
.location-card:nth-child(3) { animation-delay: 0.3s; }
.location-card:nth-child(4) { animation-delay: 0.4s; }
.location-card:nth-child(5) { animation-delay: 0.5s; }

/* Responsive design */
@media (max-width: 768px) {
    .global-presence-card {
        padding: 1.5rem;
    }

    .network-title {
        font-size: 1.75rem;
    }

    .locations-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}


/* 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;
    }
}

/* Mobile responsiveness improvements */
@media (max-width: 992px) {
  .layout-container {
    flex-direction: column;
  }
  
  .map-container {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
  }
  
  .contact-info {
    width: 100%;
    max-width: 100%;
    position: relative;
    left: 0;
    transform: none;
    margin-top: 30px;
  }

  .hero-section {
    min-height: 60vh;
  }
}

@media (max-width: 768px) {
  .global-presence-card {
    padding: 1.5rem;
  }

  .network-title {
    font-size: 1.75rem;
  }

  .locations-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .stats-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat-item {
    width: 45%;
    margin-bottom: 15px;
  }
  
  .location-card {
    padding: 1rem;
  }
  
  .location-details h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .header-container {
    padding: 0.5rem 1rem;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .divider {
    margin: 1rem auto;
    width: 80px;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    padding: 0 15px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .network-title {
    font-size: 1.5rem;
  }
  
  .network-subtitle {
    font-size: 1rem;
  }
}

/* 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 {
    display: none;
    width: 100%;
    position: absolute;
    top: 75px;
    left: 0;
    background-color: #f8f8f8; /* Light background instead of blue */
    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;
  }
  
  /* Navigation links in mobile view */
  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    color: #333 !important; /* Dark text color instead of white */
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  
  .nav-link:hover {
    background-color: #f0f0f0; /* Light hover background */
  }
  
  /* 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;
  }
}

/* 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;
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
        color: #1a4f7c;
        order: 3; /* Place hamburger icon at the end */
        position: relative;
        z-index: 1100;
    }
    
    /* Navigation menu on mobile */
    nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 75px;
        left: 0;
        background-color: #f8f8f8; /* Light background instead of blue */
        z-index: 1000;
        margin-left: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    /* Contact actions positioning */
    .contact-actions {
        order: 2; /* Place contact icons after logo */
        margin-left: 1rem;
        margin-right: auto;
    }
    
    /* Header elements arrangement */
    .logo { order: 1; }
    .enquiry-button { order: 4; }
    .map-dropdown { order: 5; }
    
    /* Update layout for map and contact info on mobile */
    .layout-container {
        flex-direction: column;
        padding: 0.5rem;
        margin-top: 80px;
    }
    
    .map-container {
        display: none; /* Hide map on mobile as requested */
    }
    
    .contact-info {
        width: 100%;
        max-width: 100%;
        visibility: visible;
        opacity: 1;
        transform: none;
    }
}

/* Contact Info Section - Make it look clickable */
.contact-info:not(:has(.global-presence-card)) {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.contact-info:not(:has(.global-presence-card)):hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.contact-info:not(:has(.global-presence-card)) .contact-header {
    position: relative;
}

/* Remove the hover text since we have the X button now */
.contact-info:not(:has(.global-presence-card)) .contact-header::after {
    content: ""; /* Remove the text */
    opacity: 0;
}

.contact-info:not(:has(.global-presence-card)):hover .contact-header::after {
    opacity: 0; /* Keep it hidden even on hover */
}

/* Style for the close button in contact info */
.close-country-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-country-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #1a4f7c;
}
/* Toast notification styling */
.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;
}

.toast.error {
  background-color: #dc2626;
}
/* Improved form styling */
.error-input {
  border-color: #dc2626 !important;
  background-color: rgba(220, 38, 38, 0.05);
}

.error-message {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}

/* Improved submit button */
.submit-button {
  position: relative;
  overflow: hidden;
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.submit-button:disabled::after {
  content: '';
  position: absolute;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, white, transparent);
  animation: loading 1.5s infinite;
  bottom: 0;
}

@keyframes loading {
  from {
    left: -100%;
  }
  to {
    left: 100%;
  }
}