/* Design System Colors */
:root {
  /* Medical Green Primary */
  --primary: hsl(160, 84%, 39%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-light: hsl(160, 84%, 95%);
  --primary-dark: hsl(160, 84%, 25%);

  /* Professional Grey Secondary */
  --secondary: hsl(215, 20%, 43%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --secondary-light: hsl(215, 20%, 95%);

  --background: hsl(0, 0%, 100%);
  --foreground: hsl(215, 25%, 27%);

  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 25%, 27%);

  --muted: hsl(215, 20%, 95%);
  --muted-foreground: hsl(215, 16%, 47%);

  --accent: hsl(160, 84%, 95%);
  --accent-foreground: hsl(160, 84%, 25%);

  --border: hsl(215, 20%, 89%);
  --input: hsl(215, 20%, 89%);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(160, 84%, 39%), hsl(160, 84%, 45%));
  --gradient-hero: linear-gradient(135deg, hsl(160, 84%, 39%), hsl(195, 91%, 45%));
  --gradient-subtle: linear-gradient(180deg, hsl(0, 0%, 100%), hsl(160, 84%, 98%));

  /* Shadows */
  --shadow-medical: 0 10px 30px -12px hsl(160, 84%, 39%, 0.25);
  --shadow-card: 0 4px 16px -4px hsl(215, 20%, 47%, 0.1);
  --shadow-hover: 0 8px 25px -8px hsl(160, 84%, 39%, 0.3);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Header Styles */
.nav-bar-container {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: linear-gradient(90deg, #ffffff 0%, #007506 190%); 
  z-index: 1000;
}

#companyLogo {
  max-height: 70px;
}

/* Phone and Burger */
.menu-and-phone {
  display: flex;
  align-items: center;
  gap: 30px;
}

.phone-contact {
  display: none;
}

.phone-icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger-menu .bar {
  width: 25px;
  height: 6px;
  background-color: rgb(0, 0, 0);
  margin: 3px 0;
  transition: 0.3s;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 1px;
  margin-right: 18px;
  padding: 0;
}

.nav-links ul li a {
  text-decoration: none;
  color:rgb(0, 0, 0);
  transition: 0.3s;
}

.nav-links ul li a:hover,
.nav-links ul li a.active {
  background-color:green;
  color: white;
  padding: 6px 15px;
  border-radius: 5px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  padding: 10px;
  flex-direction: column;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown-content a {
  padding: 8px 12px;
  color: black;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Hide burger icon on big screens */
@media (min-width: 768px) {
  .close-button {
    display: none;
  }
}


/* Responsive - Mobile */
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .phone-contact {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    height: 100%;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    z-index: 999;
  }
  .nav-links ul li a {
  text-decoration: none;
  color:rgb(255, 255, 255);
  transition: 0.3s;
}

  .nav-links.active {
    right: 0;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 20px;
  }

  .navigation-btn {
    margin-top: 20px;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: none;
    padding: 0;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .mobile-dropdown .mobile-dropdown-content {
    display: none;
  }

  .close-button {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    z-index: 1001;
    text-align: center;
  }

}



/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height:10%;
  background: hsl(0, 0%, 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: auto;
  justify-content: space-between;
  padding: 1% 0;
}
    #content {
        position: relative;
    }
    #content img {
        position: absolute;
        top: 0px;
        right: 0px;
        width: auto;
        height: 60px;
      margin-top: 10px;
      margin-right: 2%;
    }

    
.logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 30px;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-primary);
  border-radius: 0.5rem;
  position: absolute;
  range: 1px; 
  top: 0px;
  right: 0px;
  display: flex;
 
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: bold;
  font-size: 1.25rem;
}


.logo-text h1 {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--foreground);
  margin: 0;
}

.logo-text p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

.desktop-nav {
 display: flex;
  gap: 10rem;
  align-content: auto;
  position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 25px 5%;
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            
}

.nav-links {
        display: flex;
        list-style: none;
        align-items: center;
            margin: 0;
            padding: 0;
    }
    
    .nav-links li {
        margin-left: 100px;
        position: relative;
        
    }


    .dropdown {
        position: relative;
    }
    
    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #000000;
        min-width: 160px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        z-index: 1001;
        border-radius: 4px;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    
    .dropdown-content a {
        color: #ffffff !important;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        transition: background-color 0.3s;
    }
    
    .dropdown-content a:hover {
        background-color: #433b3b;
    }
    
    .dropdown > a:after {
        content: '\f078';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-left: 8px;
        font-size: 12px;
    }
    
    /* Mobile dropdown styles */
    @media (max-width: 768px) {
        .dropdown-content {
            position: static;
            box-shadow: none;
            display: none;
            opacity: 1;
            transform: none;
            background-color: transparent;
        }
        
        .dropdown.active .dropdown-content {
            display: block;
        }
        
        .dropdown > a:after {
            content: '\f078';
            transition: transform 0.3s;
        }
        
        .dropdown.active > a:after {
            transform: rotate(180deg);
        }
    }

.nav-link:hover {
  color: rgba(255, 255, 255, 0.9);
  
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted-foreground);
}


/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-subtle);
  padding-top: 5rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.gradient-text {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 40rem;
}

.key-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
 
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-light);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.feature-content h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}

.feature-content p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  
}

.company-info {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.company-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 500;
  object-fit: cover;
  border-radius: 1rem;
  
}

.stat-card {
  position: absolute;
  background: var(--card);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-hover);
  text-align: center;
}

.stat-left {
  bottom: -1.5rem;
  left: -1.5rem;
}

.stat-right {
  top: -1.5rem;
  right: -1.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  background: none;
}

.btn-primary {
  background: var(--gradient-hero);
  color: var(--primary);
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: var(--shadow-medical);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
 
}

.btn-outline {
  border: 1px solid var(--primary);
  background: var(--background);
  color: var(--primary);
   
}

.btn-outline:hover {
  background: var(--primary-light);
  
}

.btn-full {
  width: 100%;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color:green;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

/* About Section */
.about-img{
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  height: 200px;
}

.about {
  padding: 2rem 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1rem;
  color: #302d2de5;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text h3,
.about-text h4 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  color: #222;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.about-text img {
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: 8px;
}

/* Toggle sections */
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  border: 1px solid #444;
  background: none;
  cursor: pointer;
  border-radius: 5px;
}
.values-section {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  color: #333;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.value-card {
  background-color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile responsiveness */
@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
  }

  .about-text {
    flex: 1;
  }
}


/* Services Section */
.services {
  background: var(--background);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: var(--card);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-light);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--foreground);
  margin: 0;
}

.service-content p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: left;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 11px;
  color: var(--muted-foreground);
}

.service-features li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
}

.services-cta {
  background: var(--gradient-subtle);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.services-cta h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.services-cta p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Footprint Section */
.footprint {
  background: var(--background);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--card);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
}

.stat-item .stat-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-light);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.5rem;
}

.stat-item .stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.countries-section {
  margin-bottom: 4rem;
}

.countries-section h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.country-item {
  padding: 0.75rem;
  background: var(--accent);
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.country-item:hover {
  background: var(--primary-light);
  transform: scale(1.05);
}

.partner-section {
  text-align: center;
  padding: 20px;
}

.partner-section h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: green;
}

.partner-card {
  max-width: 32rem;
  margin: 0 auto;
  padding: 2rem;
  background: var(--gradient-subtle);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

.partner-images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.partner-images img {
  max-width: 100%;
  height: auto;
  flex: 1 1 45%;
}

.partner-card h4 {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.partner-card p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.partner-card ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.partner-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.partner-card li::before {
  content: "•";
  color: var(--primary);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .partner-card {
    padding: 1rem;
  }

  .partner-section h3 {
    font-size: 1.25rem;
  }

  .partner-card h4 {
    font-size: 1rem;
  }

  .partner-card p {
    font-size: 0.875rem;
  }

  .partner-images {
    flex-direction: column;
    gap: 1rem;
  }

  .partner-images img {
    flex: 1 1 100%;
  }
}


/* Contact Section */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 1rem;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  justify-content: space-between;
}

.contact-box {
  flex: 1 1 300px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.contact-box:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.contact-box-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--primary, #007bff);
}

.contact-box h3 {
  margin: 0;
  font-size: 10px;

  color: #333;
}

.contact-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.contact-list li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #302d2de5;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
  }
}


.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Form inputs full width */
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* Submit button full width */
.btn-full {
  width: 30%;
  padding: 0.75rem;
  font-size: 1rem;
  justify-content: center;
}

/* Disclaimer styling */
.form-disclaimer {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 1rem;
}

/* ✅ MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .contact-form-card {
    padding: 1rem;
  }

  .contact-form-card h3 {
    font-size: 1.25rem;
  }

  .contact-form-card > p {
    font-size: 0.95rem;
  }

  .btn-full {
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .form-disclaimer {
    font-size: 0.8rem;
  }
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--input);
  border-radius: 0.375rem;
  background: var(--background);
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px hsla(160, 84%, 39%, 0.1);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  margin: 0;
}

.leadership-contact {
  margin-top: 4rem;
}

.leadership-card {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
}

.leader-avatar {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-foreground);
  font-weight: bold;
  font-size: 1.5rem;
}

.leadership-card h3 {
  font-size: 2.25rem;
  font-weight: bold;
  color:green;
  margin-bottom: 1rem;
}

.leader-credentials {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.leader-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
}
.footer {
  background: var(--foreground);
  color: var(--background);
  padding: 4rem 2rem 2rem;
  font-family: 'Inter', sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-icon {
  background: var(--gradient-primary);
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}

.footer-logo h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0;
}

.footer-logo p {
  font-size: 0.75rem;
  opacity: 0.8;
  margin: 0;
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.85;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--background);
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0.8;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.contact-item .icon {
  opacity: 0.7;
  font-size: 1rem;
  margin-top: 0.25rem;
  color: var(--primary);
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.75;
}

.footer-bottom-content p {
  margin: 0.5rem 0;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: left;
  }
}


/* Hide burger icon on big screens */
@media (min-width: 768px) {
  .burger-toggle {
    display: none;
  }
}


@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav,
  .contact-info {
    display: none;
    position: fixed;
            
  }


  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav.show {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .key-features {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .countries-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  animation: slideUp 0.6s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.scale-in {
  animation: scaleIn 0.6s ease-out;
}



        
        body {
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 30px 0;
        }
        
        h2 {
            font-size: 36px;
            margin-bottom: 30px;
            color: green;
            position: relative;
            display: inline-block;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: #0078d7;
        }
        
       
        
    
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            color: green;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: #000000;
            text-decoration: none;
            font-weight: 1000;
            transition: color 0.7s;
            position: relative;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #0078d7;
            transition: width 0.3s;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }
        .Banner-container {
         position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 50%;
          z-index: 1;
    /* Remove: margin-bottom: 20px */
}

.Banner-content {
    position: relative;
    z-index: 3;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    color: #fff;
    /* Remove: margin-bottom: 20px */
}


.Banner-hero, .about {
    margin: 0;
    padding: 0;
}

 .Banner-overlay {
            position: absolute;
     
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.733);
            z-index: 2;
        }
        /* Hero section with slideshow */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        
        .slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 2;
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 5%;
            color: #fff;
        }
        
        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            max-width: 600px;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: 18px;
            max-width: 600px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .stats {
            display: flex;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            margin-right: 50px;
            margin-bottom: 20px;
        }
        
        .stat-item h3 {
            font-size: 28px;
            margin-bottom: 5px;
            color: #fff;
        }
        
        .stat-item p {
            font-size: 16px;
            opacity: 0.8;
        }
        
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 35px;
            margin-right: 20px;
            margin-bottom: 15px;
            background-color:green;;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid green;
        }
        
        .cta-button:hover {
            background-color: #7b8288;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button.outline {
            background-color: transparent;
            border: 2px solid white;
        }
        
        .cta-button.outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
  /* Policy Section */

        .Company-policy  p {
        text-align: justify;
        margin-left: 20%;
        margin-right: 20%;
        padding: 0 0;
        display: flex;
        hyphens: auto;
         }

         @media screen and (max-width: 600px) {
      .Company-policy p {
        text-align: left;
        hyphens: none;}
      }

        /* About Section */
        .about {
            background-color: #f9f9f9;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
    
        
        .service-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: green;
        }
        
        /* Footprint Section */
        .footprint {
            background-color: #f0f7ff;
            text-align: center;
            padding: 50px;
        }
        
        .countries-stats {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 50px;
            margin: 50px 0;
        }
        
        .country-stat {
            text-align: center;
        }
        
        .country-stat h3 {
            font-size: 42px;
            color: green;
            margin-bottom: 10px;
        }
        
        .country-stat p {
            font-size: 18px;
            color: #302d2de5;
        }
        
        .map-container {
            margin-top: 50px;
            height: 500px;
            background-color: #ddd;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #eee;
            color: #777;
            font-size: 18px;
        }
        
        /* Contact Section */
        .contact-container {
            display: flex;
            gap: 50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: green;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            margin-right: 15px;
            color: #0078d7;
            font-size: 20px;
        }
        
        .contact-form {
            flex: 1;
            border-radius: 10px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0078d7;
            outline: none;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: #0078d7;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #0061b1;
        }

        /*News Room*/
        .news-section {
  padding: 60px 20px;

}

.news-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .news-cards-container {
    grid-template-columns: 1fr;
  }
}
.news-card {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-thumb {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.news-card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #2c3e50;
}

.news-card p {
  font-size: 0.95em;
  color: #302d2de5;
  line-height: 1.5;
}

.read-more-btn {
  margin-top: 12px;
  background-color: #ff3333;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.read-more-btn:hover {
  background-color: #cc0000;
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  background: white;
  width: 90%;
  max-width: 1000px;
  margin: 5% auto;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
}

.modal-content iframe {
  width: 100%;
  height: 90vh;
  border: none;
}

.close {
  position: absolute;
  top: 50px; right: 20px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #ff0000;
}

        
        /* Footer */
        footer {
            background-color: #002a5a;
            color: #fff;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #0078d7;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #fff;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: #0078d7;
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 14px;
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .map-container {
                height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .stats {
                flex-direction: column;
            }
            
            .stat-item {
                margin-right: 0;
            }
            
            .map-container {
                height: 300px;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            h2 {
                font-size: 30px;
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .cta-button {
                margin-right: 0;
                width: 100%;
                text-align: center;
            }
        }


         /* Leadership Section Styles */
        .leadership {
            
            padding: 0 0;
            text-align: center;
        }
        
        .leadership h2 {
            font-size: 36px;
            color: green;
            margin-bottom: 20px;
        }
        
        .leadership p.section-intro {
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 18px;
            color: #302d2de5;
        }
        
        .leadership-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .leader-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            width: 350px;
            transition: transform 0.3s ease;
        }
        
        .leader-card:hover {
            transform: translateY(-10px);
        }
        
        .leader-image {
            height: 350px;
            overflow: hidden;
        }
        
        .leader-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .leader-card:hover .leader-image img {
            transform: scale(1.05);
        }
        
        .leader-info {
            padding: 25px;
            text-align: center;
        }
        
        .leader-info h3 {
            font-size: 22px;
            color: #404944;
            margin-bottom: 5px;
        }
        
        .leader-info .position {
            color: green;
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }
        
  
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .leader-card {
                width: 100%;
                max-width: 350px;
            }
        }

        /* Certifications Section Styles */
    .certifications {
        background-color: #f0f7ff;
        padding: 40px 0;
        text-align: center;
    }
    
    .certifications h2 {
        
        color: green;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 50px;
        color: #302d2de5;
        font-size: 18px;
    }
    
    .certificates-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .certificate-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }
    
    .certificate-card:hover {
        transform: translateY(-5px);
    }
    
    .certificate-image {
  position: relative;
  height: auto; /* Let image define height */
  overflow: hidden;
  padding: 1rem 0;
  text-align: center; /* Center the image horizontally */
}

.certificate-image img {
  width: 100%; /* Responsive full-width */
  max-width: 180px; /* Limit how wide the image can grow */
  height: auto; /* Preserve natural aspect ratio */
  object-fit: contain; /* Or cover, depending on your use case */
  border-bottom: 1px solid #eee;
  display: inline-block;
}

    
    .certificate-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 88, 179, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .certificate-card:hover .certificate-overlay {
        opacity: 1;
    }
    
    .view-btn {
        color: white;
        font-size: 24px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        transition: background 0.3s ease;
    }
    
    .view-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }
    
    .certificate-info {
        padding: 20px;
    }
    
    .certificate-info h3 {
        color: #414946;
        margin-bottom: 8px;
        font-size: 18px;
    }
    
    .certificate-info p {
        color: #302d2de5;
        margin-bottom: 10px;
        font-size: 15px;
    }
    
    .cert-date {
        color: #777;
        font-size: 14px;
        font-style: italic;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .certificates-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 480px) {
        .certificates-grid {
            grid-template-columns: 1fr;
        }
    }
    h2{
        color: green;
    }
  .services-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px; /* smaller horizontal padding for small screens */
  max-width: 1200px;
  margin: 0 auto;
}

.service1 {
  flex: 1 1 calc(50% - 20px); /* 2 per row by default */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f8f8f8;
  border: 1px solid #ddd;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 8px;
  max-width: 100%; /* Let it grow naturally */
  min-width: 260px;
}

.service1 p {
  text-align: left;
}

.service1 img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .service1 {
    flex: 1 1 100%; /* Stack all items in a single column */
  }
}

.service-head h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #2c3e50;
}

.service-content {
  flex-grow: 1;               /* Push content to fill height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-content p {
  font-size: 0.95rem;
  color: #302d2de5;
  margin-bottom: 10px;
}

.countries-section-modern {
  padding: 2rem 1rem;
 
  text-align: center;
}

.countries-section-modern h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.countries-and-map {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.countries-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 600px;
}

.Eddy{
  font-size: 12px;
  text-align: left;
}

.country-item {
  background-color: white;
  padding: 0.75rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-weight: 500;
  color: green;
}

/* Africa Map Styling */
.africa-map img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Tablet and up */
@media (min-width: 768px) {
  .countries-and-map {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .countries-grid-modern {
    max-width: 50%;
  }

  .africa-map {
    max-width: 45%;
  }
}



