:root {
  --primary-blue: #004080;
  --accent-teal: #009999;
  --light-gray: #f5f5f5;
  --charcoal: #333333;
  --highlight-green: #28a745;
  --sky-blue: #00bfff;
}

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

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

.navbar {
  background-color: var(--deep-blue);
}

.navbar-brand,
.navbar-nav .nav-link {
  color: white !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.dropdown:hover > .nav-link {
  color: var(--teal) !important;
}

/* Dropdown */
.dropdown-menu {
  background-color: white;
  border-color: var(--deep-blue);
  top: 35px;
  left: 9px;
}

.dropdown-item {
  color: var(--deep-blue);
}
.dropdown-item.dropdown-toggle::after {
  content: none !important;
}

.dropdown-item:hover {
  background-color: var(--teal);
  color: white;
}

/* Submenu */
.dropdown-submenu {
  position: relative;
  min-width: 250px;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}

/* Hover logic for desktop */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}

/* CTA Button */
.btn-emerald {
  background-color: var(--emerald);
  color: white;
}

.btn-emerald:hover {
  background-color: #218838;
  color: white;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(90deg, var(--primary-blue) 0%, #003366 100%);
  padding: 0.8rem 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: white !important;
  text-decoration: none;
  padding: 0.5rem 0;
  /* Added padding to brand */
  margin-right: 1rem;
  /* Space between brand and toggle */
}

.navbar-toggler {
  padding: 0.5rem 0.75rem;
  /* Better padding for toggle button */
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Optional border */
  border-radius: 4px;
  /* Ro
    unded corners */
}

.navbar-toggler-icon {
  width: 1.25em;
  height: 1.25em;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-teal) !important;
  transform: translateY(-2px);
}

/* .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-teal);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        } */

/* .navbar-nav .nav-link:hover::after {
            width: 100%;
        } */
.navbar-collapse.show {
  background: rgba(0, 64, 128, 0.98);
  /* Slightly different background when expanded */
  padding: 1rem;
  margin-top: 0.5rem;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
      135deg,
      rgba(0, 64, 128, 0.9),
      rgba(0, 153, 153, 0.8)
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="molecules" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="30" r="2.5" fill="rgba(255,255,255,0.06)"/><line x1="20" y1="20" x2="50" y2="50" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><line x1="50" y1="50" x2="80" y2="30" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23molecules)"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.btn-hero {
  background: linear-gradient(45deg, var(--highlight-green), #20c997);
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  background: linear-gradient(45deg, #20c997, var(--highlight-green));
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-teal), var(--sky-blue));
  transform: translateX(-50%);
  border-radius: 2px;
}

/* About Section */
.about-section {
  background: var(--light-gray);
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-teal);
  display: block;
}

.stat-text {
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 500;
}

/* Product Cards */
.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
  height: 200px;
  background: linear-gradient(135deg, var(--accent-teal), var(--sky-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.product-content {
  padding: 2rem;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.product-description {
  color: #666;
  margin-bottom: 1.5rem;
}

.btn-outline-primary {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  border-radius: 25px;
  padding: 8px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Why Choose Us */
.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-teal), var(--sky-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-card {
  text-align: center;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Certifications */
.cert-logo {
  width: 120px;
  height: 80px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary-blue);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin: 1rem;
}

.cert-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, var(--primary-blue), #003366);
  color: white;
}

.btn-contact {
  background: linear-gradient(45deg, var(--highlight-green), #20c997);
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 60px 0 30px;
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  display: block;
  padding: 0.3rem 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-teal);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
}
.footer ul {
  list-style-type: none;
}
.footer .social-links_home {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer .social-links_home a {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer .social-links_home a:hover {
  background: #fff;
  color: var(--accent-teal);
  transform: translateY(-3px);
  text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  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;
  }

  .section-title {
    font-size: 2rem;
  }

  .navbar {
    padding: 0.6rem 1rem;
    /* Tighter padding on mobile */
  }

  .navbar-brand {
    font-size: 1.5rem;
    padding: 0.4rem 0;
    /* Adjusted mobile padding */
  }

  .navbar-toggler {
    padding: 0.4rem 0.6rem;
    /* Smaller toggle on mobile */
  }

  .hero-section {
    padding: 80px 0;
  }

  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .btn-hero {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

.hero-section {
  background: linear-gradient(
      135deg,
      rgba(0, 64, 128, 0.8),
      rgba(0, 153, 153, 0.7)
    ),
    url("your-image.jpg") no-repeat center center;
  background-size: cover;
}

/* Service */
.admed-services-page {
  font-family: "Inter", "Roboto", "Lato", sans-serif;
  background-color: #f5f5f5;
  color: #333333;
  min-height: 100vh;
  padding-bottom: 4rem;
  padding-top: 4rem;
}

/* Hero Section */
.admed-services-hero {
  background-color: #004080;
  color: white;
  padding: 5rem 1rem 3rem;
  text-align: center;
}
.admed-services-hero h1 {
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1.5px;
}
.admed-services-hero p {
  font-size: 1.25rem;
  color: #00bfff;
  font-weight: 600;
  margin-bottom: 0;
}

.admed-cards-container {
  max-width: 1140px;
  margin: 2rem auto 0;
  padding: 0 1rem;
}

.admed-card {
  background: white;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  box-shadow: 0 6px 15px rgb(0 0 0 / 0.05);
  padding: 2rem 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.admed-card:hover,
.admed-card:focus {
  border-color: #28a745; 
  box-shadow: 0 10px 20px rgb(0 0 0 / 0.1);
  transform: translateY(-6px);
  outline: none;
}

.admed-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #009999; 
  flex-shrink: 0;
}

.admed-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #004080;
  margin-bottom: 0.75rem;
}

.admed-card-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .admed-card {
    min-height: 260px;
  }
}

/* globle presence */

.gwp-hero {
  background: linear-gradient(rgba(0, 64, 128, 0.7), rgba(0, 64, 128, 0.7)),
    url("../img/gp.jpg")
      no-repeat center center/cover;
  color: #fff;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 15px 0 15px;
}

.gwp-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.gwp-hero p {
  font-size: 1.25rem;
  margin-top: 15px;
}

.gwp-stats {
  background-color: white;
  padding: 60px 0;
}

.gwp-stat {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004080;
}

.gwp-stat-label {
  text-transform: uppercase;
  color: #009999;
  letter-spacing: 1px;
  font-size: 1rem;
}

.gwp-map-section {
  padding: 60px 15px;
  background-color: #fff;
}

.gwp-map-title {
  color: #004080;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.gwp-map-section .gwp-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gwp-map-section .gwp-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gwp-map-section .gwp-card img {
  transition: transform 0.3s ease;
}

.gwp-map-section .gwp-card:hover img {
  transform: scale(1.1);
}

.gwp-cta {
  background-color: #004080;
  color: white;
  padding: 60px 15px;
  text-align: center;
}

.gwp-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.gwp-cta p {
  font-size: 1.25rem;
  margin-bottom: 25px;
}

.gwp-cta .btn {
  font-weight: 700;
  font-size: 1.2rem;
  padding: 15px 35px;
  background-color: #28a745;
  border: none;
}

.gwp-cta .btn:hover {
  background-color: #009999;
}

@media (max-width: 768px) {
  .gwp-hero h1 {
    font-size: 2rem;
  }
  .gwp-stat {
    font-size: 2rem;
  }
}
/* 
#contactModal .modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 4px 20px rgba(42, 123, 123, 0.1);
}

#contactModal .modal-header {
  padding: 1.5rem 1.5rem 0.5rem;
  border: none;
}

#contactModal .modal-title {
  color: #2A7B7B;
  font-weight: 600;
  font-size: 1.5rem;
}

#contactModal .modal-body {
  padding: 1.5rem;
}

#contactModal .close {
  color: #2A7B7B;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

#contactModal .close:hover {
  opacity: 1;
}


#contactModal .btn-quote {
  background-color: #2A7B7B;
  color: white;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

#contactModal .btn-quote:hover {
  background-color: #1a4b4b;
  transform: translateY(-1px);
}

@media (max-width: 576px) {
  #contactModal .modal-dialog {
      margin: 0.5rem;
  }
  
  #contactModal .modal-body {
      padding: 1rem;
  }
} */
