@media (max-width: 768px) {
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .alert {
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
  }

  .alert-success {
    background-color: #4CAF50; /* Green */
  }

  .alert-error {
    background-color: #f44336; /* Red */
  }

  .alert-warning {
    background-color: #ff9800; /* Orange */
  }

  .alert-info {
    background-color: #2196F3; /* Blue */
  }

  /* Close button */
  .alert .closebtn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
  }

  .alert .closebtn:hover {
    color: black;
  }
  
  /* Header */
  .header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  .nav-list li {
    position: relative;
  }
  
  .nav-list a {
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    display: block;
  }
  
  .nav-list a:hover {
    color: #597a33;
  }
  
  .member-login-btn {
    background: #597a33;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .member-login-btn:hover {
    background: #3a6249;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* bigger container height */
    display: flex;
    align-items: center; /* vertically center content */
    justify-content: center; /* horizontally center content if needed */
    padding: 0; /* remove padding if centering with flexbox */
  }

  
  
  
  .hero_physicians {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 300px; /* bigger container height */
    display: flex;
    align-items: center; /* vertically center content */
    justify-content: center; /* horizontally center content if needed */
    padding: 0; /* remove padding if centering with flexbox */
  }
  
  .hero_coord {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* bigger container height */
    display: flex;
    align-items: center; /* vertically center content */
    justify-content: center; /* horizontally center content if needed */
    padding: 0; /* remove padding if centering with flexbox */
  }
  
  .hero_dentalprov {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 300px; /* bigger container height */
    display: flex;
    align-items: center; /* vertically center content */
    justify-content: center; /* horizontally center content if needed */
    padding: 0; /* remove padding if centering with flexbox */
  }
  
  .hero_providers {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 300px; /* bigger container height */
    display: flex;
    align-items: center; /* vertically center content */
    justify-content: center; /* horizontally center content if needed */
    padding: 0; /* remove padding if centering with flexbox */
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/header.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }

  
  
  .hero2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/whyheader.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  .hero_physicians::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/AccPhys.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  .hero_coord::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/MedicalCoord.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  .hero_dentalprov::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/DentalProv.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  .hero_providers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/AccProv.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-section {
    padding: 150px 0 80px;
    background: white;
  }
  
  .hero-content {
    display: grid;
    gap: 60px;
    align-items: center;
  }
  
  .hero-text h1 {
    font-size: 48px;
    color: #597a33;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
  }
  
  .hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    color: #597a33;
    margin-bottom: 30px;
    line-height: 1.2;
  }
  
  .highlight {
    font-style: italic;
    font-weight: 400;
  }
  


.hero {
  margin-top: 60px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/header.png') no-repeat center center;
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
  z-index: -1;
}

/* Fallback for background image */
.hero {
  background-color: #597a33;
  background-image: url('assets/header.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Ensure hero background works on all screen sizes */
@media (min-width: 768px) {
  .hero {
    background-size: cover;
    background-position: center center;
  }
}

@media (min-width: 1024px) {
  .hero {
    background-size: cover;
    background-position: center center;
  }
}
x

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}

.hero-content {
  text-align: center;
  padding: 40px 20px;
  width: 100%;
  max-width: 100%;
}

.hero-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1rem;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  margin: 0;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}


  /* Services Section */

 @media (max-width: 767px) {

  .alert {
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
  }

  .alert-success {
    background-color: #4CAF50; /* Green */
  }

  .alert-error {
    background-color: #f44336; /* Red */
  }

  .alert-warning {
    background-color: #ff9800; /* Orange */
  }

  .alert-info {
    background-color: #2196F3; /* Blue */
  }

  /* Close button */
  .alert .closebtn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
  }

  .alert .closebtn:hover {
    color: black;
  }

  .container {
    max-width: 750px;
    padding: 0 20px;
  }

  .header .container {
    padding: 15px 20px;
    min-height: 70px;
  }

  .logo img {
    height: 45px;
  }

  .mobile-menu-toggle {
    display: none !important;
  }

  .nav {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    background: transparent !important;
    display: block !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
  }

  .nav-list {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
  }

  .nav-list li {
    border-bottom: none !important;
    display: inline-block !important;
    width: auto !important;
  }

  .nav-list a {
    padding: 8px 12px;
    font-size: 0.9rem;
    display: inline-block !important;
    width: auto !important;
  }

  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    padding: 10px 0;
    display: none;
    z-index: 1000;
  }

  .has-submenu {
    position: relative;
  }

  .has-submenu:hover .submenu {
    display: block;
  }

  .submenu li {
    display: block !important;
    width: 100% !important;
    border-bottom: none !important;
  }

  .submenu a {
    display: block !important;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #666;
    width: 100% !important;
    box-sizing: border-box;
  }

  .submenu a:hover {
    background: #f8f9fa;
    color: #597a33;
  }

  .member-login-btn {
    display: block !important;
    background: #597a33;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
  }

  .member-login-btn:hover {
    background: #3a6249;
  }

  .header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.header .container {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  min-height: 60px;
  width: 100%;
  position: relative;
  flex-wrap: nowrap;
  flex-direction: row;
}

  .services {
  padding: 40px 0;
  background: #f8f9fa;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: #597a33;
}

.healthcaresection-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: #597a33;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 20px 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  object-fit: contain;
  background-color: transparent;
}

.service-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}
}



  .services {
    padding: 50px 0;
    text-align: center;
  }
  
  .section-title {
    font-size: 1.8rem;
    color: #597a33;
    font-weight: bold;
    margin-bottom: 50px;
  }

  .healthcaresection-title {
    font-size: 1.8rem;
    color: #597a33;
    font-weight: bold;
    margin-bottom: 50px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(2, auto);   /* 2 rows */
  }
  
  .service-card {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #9bb27d; /* vertical divider */
    border-bottom: 1px solid #9bb27d; /* horizontal divider */
  }
  
  .services-section {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .services-section h2 {
    text-align: center;
    font-size: 48px;
    color: #597a33;
    margin-bottom: 50px;
    font-weight: 600;
  }
  
  .services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .services-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
  }
  
  .services-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
    margin-top: 40px;
  }
  
  .service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  /* Remove right border from last column */
  .service-card:nth-child(3n) {
    border-right: none;
  }
  
  /* Remove bottom border from last row */
  .service-card:nth-last-child(-n+3) {
    border-bottom: none;
  }
  
  .service-icon svg {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .service-card h3 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
  }
  
  /* Medical Access Section */
  .medical-access {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .access-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #666;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .stat-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #597a33;
    margin-bottom: 20px;
  }
  
  .stat-label {
    color: #333;
  }
  
  .stat-list {
    list-style: none;
    margin-top: 15px;
  }
  
  .stat-list li {
    color: #666;
    margin: 5px 0;
  }
  
  .stat-list li::before {
    content: '• ';
    color: #333;
    font-weight: bold;
  }
  
  /* App Features Section */
  .app-features {
    padding: 80px 0;
    background: white;
  }
  
  .features-content {
    display: grid;
    gap: 60px;
    align-items: center;
  }
  
  .phone-mockup img {
    width: 100%;
    max-width: 100%;
  }
  
  .features-text h2 {
    font-size: 2.1rem;
    color: #597a33;
    margin-bottom: 40px;
    line-height: 1.3;
  }
  
  .features-text .highlight {
    color: #597a33;
    font-weight: 600;
  }
  
  .feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
  }
  
  .feature-icon {
    color: #597a33;
    flex-shrink: 0;
    margin-top: 5px;
  }
  
  .feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
  }
  
  .feature-item p {
    color: #666;
    line-height: 1.6;
  }
  
  /* Affiliates Section */
  .affiliates {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .affiliates-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
  }
  
  .carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .carousel-track {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
  }
  
  .affiliate-logo {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .affiliate-logo:hover {
    transform: scale(1.05);
  }
  
  .affiliate-logo img {
    height: 60px;
    width: auto;
  }
  
  .carousel-btn {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: absolute;
    color: #666;
  }
  
  .carousel-btn:hover {
    border-color: #597a33;
    color: #597a33;
  }
  
  .carousel-btn.prev {
    left: -60px;
  }
  
  .carousel-btn.next {
    right: -60px;
  }
  
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .dot.active {
    background: #597a33;
  }
  
  .view-all-btn {
    display: block;
    margin: 0 auto;
    background: transparent;
    border: 2px solid #597a33;
    color: #597a33;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .view-all-btn:hover {
    background: #597a33;
    color: white;
  }

  /* Modal Styles */
.modal {
  display: none; 
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  font-family: 'Inter', sans-serif;
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 25px;
  border-radius: 10px;
  width: 500px;
  max-width: 90%;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  color: #777777; 
}

.modal-content h2 {
  margin-top: 0;
  color: #777777; 
}

.modal-content ul li {
  margin: 5px 0;
}

.modal-content a {
  color: #597a33;
  text-decoration: none;
}

.modal-content a:hover {
  text-decoration: underline;
}

.close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

.modal-button {
  background-color: #597a33;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.modal-button:hover {
  background-color: #4a6528; 
}

.modal-affiliate {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content-affiliate {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.close-affiliate {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-affiliate:hover,
.close-affiliate:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Affiliate Logos Grid */
.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Responsive grid */
    gap: 10px; /* Space between images */
    justify-items: center; /* Center items in each grid cell */
}

.affiliate-logomodal {
    width: 100%; /* Make images responsive */
}

.affiliate-logomodal img {
    width: 100%; /* Make images responsive */
    height: auto;
}

  
  /* Latest Section */
  .latest {
    padding: 80px 0;
    background: white;
  }
  
  .latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .latest-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .latest-card:hover {
    transform: translateY(-5px);
  }
  
  .card-content {
    padding: 30px;
    text-align: center;
  }
  
  .card-logo img,
  .card-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  .latest-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
  }
  
  
  /* Core Service Section */
  .core-service-section {
    padding: 80px 0;
    background: white;
  }
  
  .core-service-content {
    display: grid;
    gap: 60px;
    align-items: center;
  }
  
  .core-service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
  }
  
  .core-service-text h2 {
    font-size: 48px;
    color: #597a33;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .core-service-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
  }
  
  /* Dental Partners */
  
  .dental-service-text h3 {
    font-size: 48px;
    color: #597a33;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
  }
  
  .dental-service-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
  }
  
  .dental-service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .containerdental {
    background-color: rgba(89, 122, 51, 0.8); /* black with 60% opacity */
    padding: 20px; 
    border-radius: 10px; /* optional for rounded corners */
    color: white; /* makes text readable */
  }
  
  
  /* Footer */
  .footer {
    background: #597A33;
    color: white;
    padding: 40px 0 20px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .footer-address p {
    font-size: 0.9rem;
    color: white;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .social-link {
    color: white;
    transition: color 0.3s;
  }
  
  .social-link:hover {
    color: black;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid white;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
    color: white;
  }
  
  
  /* Submenu hidden by default */
  .submenu {
    list-style: none;
    position: absolute;
    top: 100%; /* directly under parent */
    left: 0;
    background: white;
    min-width: 180px;
    border: 1px solid #ddd;
    padding: 10px 0;
    display: none;
    z-index: 1000;
  }
  
  .submenu li a {
    padding: 8px 16px;
    white-space: nowrap;
  }
  
  /* Show submenu on hover */
  .has-submenu:hover .submenu {
    display: block;
  }
  
  /* Optional: hover styles */
  .nav-list a:hover {
    background: #f0f0f0;
  }
  
  
  /* Responsive Design */
  @media (max-width: 768px) {

    .alert {
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
  }

  .alert-success {
    background-color: #4CAF50; /* Green */
  }

  .alert-error {
    background-color: #f44336; /* Red */
  }

  .alert-warning {
    background-color: #ff9800; /* Orange */
  }

  .alert-info {
    background-color: #2196F3; /* Blue */
  }

  /* Close button */
  .alert .closebtn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
  }

  .alert .closebtn:hover {
    color: black;
  }

.mobile-menu-toggle {
  display: flex !important;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
  order: 3;
  position: relative;
}

.mobile-menu-toggle:hover {
  background-color: rgba(0,0,0,0.05);
  border-radius: 4px;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}



  .nav {
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    z-index: 999 !important;
    display: block !important;
    width: 100% !important;
  }

  .nav.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-list {
    display: block !important;
    flex-direction: column !important;
    padding: 20px 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  
  .nav-list li {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid #eee !important;
  }
  
  .nav-list li:last-child {
    border-bottom: none !important;
  }
  
  .nav-list a {
    display: block !important;
    padding: 15px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .submenu {
    display: none !important;
    background: #f8f9fa !important;
    padding-left: 20px !important;
    width: 100% !important;
    position: static !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    min-width: auto !important;
    padding: 0 !important;
  }

  .has-submenu:hover .submenu,
  .has-submenu.active .submenu {
    display: block !important;
  }

  .submenu li {
    border-bottom: none !important;
    width: 100% !important;
  }

  .submenu a {
    padding: 10px 20px !important;
    font-size: 14px !important;
    color: #666 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .member-login-btn {
    display: none !important;
  }

 
  
  .nav-list {
      list-style: none;
      display: flex;
      gap: 20px;
      margin: 0;
      padding: 0;
    }
  
  .hero-title {
      font-size: 2.5rem;
    }
  
  .section-title {
      font-size: 2rem;
    }

   .healthcaresection-title {
      font-size: 2rem;
    }
  
  .services-grid {
      grid-template-columns: 3, 1fr;
    }
  
  }
  
  @media (max-width: 430px) {

    .alert {
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
  }

  .alert-success {
    background-color: #4CAF50; /* Green */
  }

  .alert-error {
    background-color: #f44336; /* Red */
  }

  .alert-warning {
    background-color: #ff9800; /* Orange */
  }

  .alert-info {
    background-color: #2196F3; /* Blue */
  }

  /* Close button */
  .alert .closebtn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
  }

  .alert .closebtn:hover {
    color: black;
  }

    .mobile-menu-toggle {
  display: flex !important;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
  order: 3;
  position: relative;
}

.mobile-menu-toggle:hover {
  background-color: rgba(0,0,0,0.05);
  border-radius: 4px;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-toggle {
    display: flex !important;
  }

  .nav {
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    z-index: 999 !important;
    display: block !important;
    width: 100% !important;
  }

  .nav.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-list {
    display: block !important;
    flex-direction: column !important;
    padding: 20px 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  
  .nav-list li {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid #eee !important;
  }
  
  .nav-list li:last-child {
    border-bottom: none !important;
  }
  
  .nav-list a {
    display: block !important;
    padding: 15px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .submenu {
    display: none !important;
    background: #f8f9fa !important;
    padding-left: 20px !important;
    width: 100% !important;
    position: static !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    min-width: auto !important;
    padding: 0 !important;
  }

  .has-submenu:hover .submenu,
  .has-submenu.active .submenu {
    display: block !important;
  }

  .submenu li {
    border-bottom: none !important;
    width: 100% !important;
  }

  .submenu a {
    padding: 10px 20px !important;
    font-size: 14px !important;
    color: #666 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .member-login-btn {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }
  
  .nav-list {
      list-style: none;
      display: flex;
      gap: 20px;
      margin: 0;
      padding: 0;
    }
  
  .hero-title {
      font-size: 2.5rem;
    }
  
  .section-title {
      font-size: 2rem;
    }

  .healthcaresection-title {
      font-size: 2rem;
    }
  
  .services-grid {
      grid-template-columns: 1fr;
    }
  }
  
  
  /* Impact Section */
  .impact-section {
    padding: 150px 0;
    background: #fff;
  }
  
  .content-grid {
    display: grid;
    gap: 60px;
    align-items: start;
  }
  
  

  .content-left h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
  }
  
  .feature-block {
    margin-bottom: 40px;
  }
  
  .feature-block h3 {
    color: #597a33;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .feature-block p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
  }
  
  .feature-block ol {
    color: #666;
    padding-left: 20px;
    line-height: 1.8;
  }
  
  .feature-block ol li {
    margin-bottom: 8px;
  }
  
  .content-right {
    position: relative;
  }
  
  .handshake-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .branding-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
  }
  
  .branding-section h3 {
    color: #597a33;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .branding-section ol {
    color: #666;
    padding-left: 20px;
    line-height: 1.8;
  }
  
  .branding-section ol li {
    margin-bottom: 12px;
  }
  
  
  * Healthcare Section */
  .healthcare-section {
    padding: 80px 0;
    background: #f8faf5;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    color: #597a33;
    margin-bottom: 30px;
    margin-top: 50px;
    font-weight: 600;
  }

  .healthcaresection-title {
    text-align: center;
    font-size: 2rem;
    color: #597a33;
    margin-bottom: 60px;
    font-weight: 600;
  }
  
  .healthcare-grid {
    display: grid;
    gap: 60px;
    align-items: center;
  }
  
  .healthcare-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .healthcare-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .healthcare-content ol {
    color: #666;
    padding-left: 20px;
    line-height: 1.8;
    margin-bottom: 80px;
  }
  
  .healthcare-content ol li {
    margin-bottom: 15px;
  }
  
  /* News and Articles */
  
  
  .main {
    padding: 120px 0 0 50px;
  }
  
  .news-grid {
    display: grid;
    gap: 20px;
  }
  
  .news-card {
    display: grid;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid #ddd; 
  }
  
  .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .news-image {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  .doctor-anywhere-logo {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  .logo-text {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .logo-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
  }
  
  .ai-assistant-image {
    background: linear-gradient(135deg, #689F38, #5a8a32);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .assistant-character {
    font-size: 4rem;
  }
  
  .video-thumbnail {
    background: linear-gradient(135deg, #689F38, #4caf50);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .video-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
  }
  
  .video-text {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.2;
  }
  
  .video-character {
    font-size: 3rem;
  }
  
  .news-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .news-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
  }
  
  .news-date {
    color: #666;
    font-style: italic;
    font-size: 1rem;
  }
  
  .news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
  }
  
  .read-more-btn,
  .watch-btn {
    background: #597a33;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .read-more-btn:hover,
  .watch-btn:hover {
    background: #5a8a32;
    transform: translateY(-2px);
  }
  
  
  /* Accredited Physicians */
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .corediv img{
    width: 100%;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header Styles */
  
  
  .logo img {
    height: 50px;
  }
  
  
  .dropdown-arrow {
    font-size: 12px;
  }
  
  
  
  .search-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .search-box input {
    border: none;
    padding: 8px 15px;
    outline: none;
    width: 200px;
  }
  
  .search-box button {
    border: none;
    background: #597a33;
    color: white;
    padding: 8px 12px;
    cursor: pointer;
  }
  
  .member-login {
    background-color: #597a33;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
  }
  
  .member-login:hover {
    background-color: #597a33;
  }
  
  /* Main Content */
  .main {
    padding: 40px 0;
  }
  
  
  .main-privacy {
    padding: 100px 50px;
  }
  
  .hero {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    color: #597a33;
    margin-bottom: 10px;
    font-weight: 300;
  }
  
  .note {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
  }
  
  /* Search Section */
  .search-section {
    position: relative;
    margin-bottom: 100px;
    margin-top: -250px;
  }
  
  .search-card {
    background: white;
    padding: 80px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .search-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 1.5rem;
  }
  
  .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .form-input,
  .form-select {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
  }
  
  .form-select2 {
    flex: 0.58;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
  }
  
  .form-input:focus,
  .form-select:focus,
  .form.select2:focus {
    border-color: #597a33;
  }
  
  .form-input::placeholder {
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
  }
  
  .clear-filters {
    display: block;
    margin: 0px auto 0;
    background-color: #597a33;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .clear-filters2 {
    display: block;
    margin: 0px 0 0;
    background-color: #597a33;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .clear-filters:hover {
    background-color: #597a33;
  }
  
  /* Results Section */
  .download-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
    padding: 15px 0;
  }
  
  .download-section2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0; /* add some breathing room */
  }
  
  .download-section2 input.form-input {
    flex: 1;             /* take available width */
    width: 300px;    /* optional: limit maximum width */
    padding: 8px 12px;   /* make it comfortable */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  .download-buttons {
    display: flex;
    gap: 10px;
  }
  
  .download-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
  }
  
  .download-btn:hover {
    background-color: #f5f5f5;
  }
  
  .excel-btn {
    color: #597a33;
  }
  
  .csv-btn {
    color: #666;
  }
  
  /* Table Styles */
  .table-container {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
  }
  
  .physicians-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .physicians-table th {
    background-color: #597a33;
    color: white;
    padding: 15px 10px;
    text-align: left;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
  }
  
  .physicians-table th:hover {
    background-color: #597a33;
  }
  
  .sort-arrow {
    float: right;
    opacity: 0.7;
  }
  
  .physicians-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
  }
  
  .physicians-table tbody tr:hover {
    background-color: #f9f9f9;
  }
  
  .physicians-table tbody tr:nth-child(even) {
    background-color: #fafafa;
  }
  
  /* Pagination */
  .pagination-info {
    text-align: left;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
  }
  
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 40px;
  }
  
  .pagination-btn {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
    min-width: 35px;
  }
  
  .pagination-btn:hover {
    background-color: #f5f5f5;
  }
  
  .pagination-btn.active {
    background-color: #597a33;
    color: white;
    border-color: #597a33;
  }
  
  .pagination-dots {
    padding: 8px 5px;
    color: #666;
  }
  
  /* Footer */
  .footer {
    background-color: #a8c373;
    color: white;
    padding: 20px 0;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
  }
  
  .location-icon {
    font-size: 16px;
  }
  
  .footer-right {
    display: flex;
    gap: 10px;
  }
  
  .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-weight: bold;
  }
  
  .social-link:hover {
    background-color: rgba(255,255,255,0.3);
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    
  
    .alert {
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
  }

  .alert-success {
    background-color: #4CAF50; /* Green */
  }

  .alert-error {
    background-color: #f44336; /* Red */
  }

  .alert-warning {
    background-color: #ff9800; /* Orange */
  }

  .alert-info {
    background-color: #2196F3; /* Blue */
  }

  /* Close button */
  .alert .closebtn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
  }

  .alert .closebtn:hover {
    color: black;
  }
    
    .form-row {
      flex-direction: column;
    }
  
    .download-section {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  
    .download-section2 {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  
    .physicians-table {
      font-size: 12px;
    }
  
    .physicians-table th,
    .physicians-table td {
      padding: 8px 5px;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {

    .alert {
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
  }

  .alert-success {
    background-color: #4CAF50; /* Green */
  }

  .alert-error {
    background-color: #f44336; /* Red */
  }

  .alert-warning {
    background-color: #ff9800; /* Orange */
  }

  .alert-info {
    background-color: #2196F3; /* Blue */
  }

  /* Close button */
  .alert .closebtn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
  }

  .alert .closebtn:hover {
    color: black;
  }

    .hero h1 {
      font-size: 2rem;
    }
  
    .search-card {
      padding: 20px;
    }
  
    .pagination {
      flex-wrap: wrap;
    }
  }
  
  
  /* Testimonials */
  
  .testi-section {
    text-align: center;
    padding: 40px 20px;
  }
  
  .testi-section h1 {
    color: #597a33;
    margin-bottom: 20px;
  }
  
  .testi-intro {
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
  }
  
  .testi-section h2 {
    margin-top: 40px;
    font-size: 22px;
    font-weight: bold;
  }
  
  .testi-sub-intro {
    margin-bottom: 30px;
    color: #777;
  }
  
  /* Cards */
  .testi-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
  }
  
  .testi-card {
    border: 2px solid #cddfbd;
    border-radius: 15px;
    padding: 20px;
    background: #fff;
    text-align: center;
    transition: transform 0.2s ease-in-out;
  }
  
  .testi-card:hover {
    transform: translateY(-5px);
  }
  
  .testi-card p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #3a3a3a;
  }
  
  .testi-card img {
    max-width: 120px;
    margin: 10px auto;
    display: block;
  }
  
  .testi-card a {
    display: inline-block;
    margin-top: 10px;
    color: #597a33;
    font-weight: bold;
    text-decoration: none;
  }
  
  .contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 1px solid #eee;
  }
  
  .contact-header img {
    height: 40px;
  }
  
  .contact-btn-login {
    background: #607D3B;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
  }
  
  /* CONTACT SECTION */
  .contact-section {
    text-align: center;
    padding: 50px 20px;
  }
  
  .contact-section h1 {
    color: #597a33;
    margin-bottom: 30px;
  }
  
  /* Tabs */
  .contact-toggle-buttons {
    display: flex;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto 30px;
  }
  
  .contact-toggle-buttons button {
    flex: 1;
    padding: 10px;
    border: 1px solid #597a33;
    background: #fff;
    color: #597a33;
    cursor: pointer;
  }
  
  .contact-toggle-buttons button.active {
    background: #597a33;
    color: #fff;
  }
  
  /* Forms */
  .contact-form-container {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .contact-tab-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .contact-tab-content.active {
    display: grid;
  }
  
  .contact-tab-content input,
  .contact-tab-content select,
  .contact-tab-content textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
  }
  
  .contact-tab-content textarea {
    grid-column: 1 / 3;
    min-height: 120px;
    resize: none;
  }
  
  .contact-submit-btn {
    grid-column: 1 / 3;
    padding: 12px;
    background: #597a33;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* CONTACT INFO */
  .contact-info {
    background: #f8f8f8;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .contact-info div {
    text-align: center;
  }
  
  /* CAREER */

  .hidden {
            display: none;
        }
  
  .career-header {
    text-align: center;
    margin-top: 40px;
  }
  
  .career-title {
    color: #5c753d;
    font-size: 28px;
    font-weight: bold;
  }
  
  .career-subtitle {
    margin-top: 5px;
    font-size: 16px;
    color: #666;
  }
  
  .career-list {
    width: 80%;
    margin: 40px auto;
  }
  
  .career-item {
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .career-job-title {
    font-size: 18px;
    color: #444;
    margin: 0;
  }
  
  .career-job-title span {
    font-weight: bold;
    color: #5c753d;
  }
  
  .career-functions {
    font-size: 14px;
    color: #5c753d;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .career-ul {
    margin-left: 20px;
    margin-bottom: 15px;
  }
  
  .career-ul li {
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .career-btn {
    background-color: #5c753d;
    color: white;
    border: none;
    padding: 8px 8px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
  }
  
  .career-btn:hover {
    background-color: #48602e;
  }
  
  .career-link {
    display: block;
    margin-top: 10px;
    color: #5c753d;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
  }
  
  .career-link:hover {
    text-decoration: underline;
  }
  
  .career-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .career-open-btn {
  background: #597a33;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
}

.career-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.career-modal {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.career-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.career-close-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 18px;
}

.career-drop-area {
  border: 2px dashed #555;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.career-drop-area.dragover {
  border-color: #597a33;
}

.career-file-info {
  margin-top: 16px;
  text-align: left;
  font-size: 14px;
}

.career-progress {
  height: 8px;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 8px;
}

.career-progress > i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #597a33, #06b6d4);
}

.career-upload-btn {
  margin-top: 16px;
  background: #597a33;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  width: 100%;
}
  
  /* FOOTER */
  .contact-footer {
    background: #e8e8e8;
    text-align: center;
    padding: 15px;
    font-size: 13px;
  }
  
  .contact-footer a {
    text-decoration: none;
    color: #597a33;
  }
  
  /* CERT */
  
  /* Navbar */
  .cert-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #fff;
    border-bottom: 1px solid #ddd;
  }
  
  .cert-nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .cert-nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  .cert-login {
    background: #597a33;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  /* Intro */
  .cert-intro {
    text-align: center;
    padding: 40px 20px;
  }
  
  .cert-intro h1 {
    color: #597a33;
    font-size: 28px;
  }
  
  .cert-intro p {
    max-width: 700px;
    margin: 10px auto;
    line-height: 1.6;
  }
  
  /* Recognitions */
  .cert-recognitions {
    padding: 40px 20px;
    text-align: center;
  }
  
  .cert-awards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .cert-award {
    max-width: 250px;
  }
  
  .cert-award img {
    width: 200px;
    margin-bottom: 10px;
  }
  
  .privacy-cert img {
    width: 450px;
    margin-bottom: 10px;
  }
  
  .privacy-seal img {
    width: 200px;
    margin-bottom: 10px;
  }
  
  .cert-award h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  /* Credit Standing */
  .cert-credit {
    padding: 40px 20px;
    text-align: center;
  }
  
  .cert-credit div{
    padding: 40px 80px;
    text-align: center;
  }
  
  .cert-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
  }
  
  .cert-partners img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
  }
  
  /* Footer */
  .cert-footer {
    background: #e6eedb;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    margin-top: 40px;
  }
  
  .cert-socials {
    margin-top: 10px;
  }
  
  .cert-socials img {
    width: 25px;
    margin: 0 5px;
  }
  
  
  /* OUTLINE MISSION VISION CORE VALUES */
  
  .vision-mission {
        display: flex;
        flex-wrap: wrap;
      }
  
      .vision.outline, .mission.outline {
        flex: 1;
        min-width: 300px;
        padding: 60px 40px;
        background-size: cover;
        background-position: center;
        color: #fff;
        text-align: center;
        position: relative;
      }
  
      .vision.outline {
        background: url('https://source.unsplash.com/600x400/?healthcare') no-repeat center;
      }
  
      .mission.outline {
        background: url('https://source.unsplash.com/600x400/?medical') no-repeat center;
      }
  
      .overlay.outline {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
      }
  
      .content.outline {
        position: relative;
        z-index: 1;
      }
  
      .vision.outline h2, .mission.outline h2 {
        color: #597a33;
        margin-bottom: 15px;
      }
  
      .vision.outline p, .mission.outline p {
        color: #333;
        margin-bottom: 15px;
      }
  
      /* Core Values Section */
      .values-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        max-width: 1000px;
        margin: auto;
      }
  
      .value-card {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
  
      .icon.outline {
        width: 100px;
        height: 100px;
        border: 3px solid #597a33;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        font-size: 40px;
        color: #597a33;
      }
  
      .value-card p {
        font-style: italic;
        font-size: 16px;
        margin: 0;
      }
  
      .services-sectionoutline {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .services-sectionoutline h2 {
    text-align: center;
    font-size: 48px;
    color: #597a33;
    margin-bottom: 50px;
    font-weight: 600;
  }
  
      /* Example icons using emojis (replace with SVG/images if needed) */
      .integrity::before { content: "⚖️"; }
      .creative::before { content: "💡"; }
      .altruism::before { content: "🤝"; }
      .humility::before { content: "👐"; }
      .transparency::before { content: "🔍"; }
}

@media (min-width: 769px) and (max-width: 1024px) {

  .alert {
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
  }

  .alert-success {
    background-color: #4CAF50; /* Green */
  }

  .alert-error {
    background-color: #f44336; /* Red */
  }

  .alert-warning {
    background-color: #ff9800; /* Orange */
  }

  .alert-info {
    background-color: #2196F3; /* Blue */
  }

  /* Close button */
  .alert .closebtn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
  }

  .alert .closebtn:hover {
    color: black;
  }

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header */
  .header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  .nav-list li {
    position: relative;
  }
  
  .nav-list a {
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    display: block;
  }
  
  .nav-list a:hover {
    color: #597a33;
  }
  
  .member-login-btn {
    background: #597a33;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .member-login-btn:hover {
    background: #3a6249;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* bigger container height */
    display: flex;
    align-items: center; /* vertically center content */
    justify-content: center; /* horizontally center content if needed */
    padding: 0; /* remove padding if centering with flexbox */
  }
  
  .hero_physicians {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* bigger container height */
    display: flex;
    align-items: center; /* vertically center content */
    justify-content: center; /* horizontally center content if needed */
    padding: 0; /* remove padding if centering with flexbox */
  }
  
  .hero_coord {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* bigger container height */
    display: flex;
    align-items: center; /* vertically center content */
    justify-content: center; /* horizontally center content if needed */
    padding: 0; /* remove padding if centering with flexbox */
  }
  
  .hero_dentalprov {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* bigger container height */
    display: flex;
    align-items: center; /* vertically center content */
    justify-content: center; /* horizontally center content if needed */
    padding: 0; /* remove padding if centering with flexbox */
  }
  
  .hero_providers {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* bigger container height */
    display: flex;
    align-items: center; /* vertically center content */
    justify-content: center; /* horizontally center content if needed */
    padding: 0; /* remove padding if centering with flexbox */
  }

 
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/header.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  .hero2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/whyheader.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  .hero_physicians::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/AccPhys.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  .hero_coord::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/MedicalCoord.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  .hero_dentalprov::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/DentalProv.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  .hero_providers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/AccProv.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }

  
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-section {
    padding: 150px 0 80px;
    background: white;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .hero-text h1 {
    font-size: 48px;
    color: #597a33;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
  }
  
  .hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    color: #597a33;
    margin-bottom: 30px;
    line-height: 1.2;
  }
  
  .highlight {
    font-style: italic;
    font-weight: 400;
  }
  
  /* Services Section */
  .services {
    padding: 50px 0;
    text-align: center;
  }
  
  .section-title {
    font-size: 1.8rem;
    color: #597a33;
    font-weight: bold;
    margin-bottom: 50px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(2, auto);   /* 2 rows */
  }
  
  .service-card {
    padding: 30px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #9bb27d; /* vertical divider */
    border-bottom: 1px solid #9bb27d; /* horizontal divider */
  }
  
  .services-section {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .services-section h2 {
    text-align: center;
    font-size: 48px;
    color: #597a33;
    margin-bottom: 50px;
    font-weight: 600;
  }
  
  .services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .services-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
  }
  
  .services-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
    margin-top: 40px;
  }
  
  .service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  
  /* Remove right border from last column */
  .service-card:nth-child(3n) {
    border-right: none;
  }
  
  /* Remove bottom border from last row */
  .service-card:nth-last-child(-n+3) {
    border-bottom: none;
  }
  
  .service-icon svg {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .service-card h3 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
  }
  
  /* Medical Access Section */
  .medical-access {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .access-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #666;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .stat-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #597a33;
    margin-bottom: 20px;
  }
  
  .stat-label {
    color: #333;
  }
  
  .stat-list {
    list-style: none;
    margin-top: 15px;
  }
  
  .stat-list li {
    color: #666;
    margin: 5px 0;
  }
  
  .stat-list li::before {
    content: '• ';
    color: #333;
    font-weight: bold;
  }
  
  /* App Features Section */
  .app-features {
    padding: 80px 0;
    background: white;
  }
  
  .features-content {
    display: grid;
    gap: 60px;
    align-items: center;
  }
  
  .phone-mockup img {
    width: 100%;
    max-width: 100%;
  }
  
  .features-text h2 {
    font-size: 2.1rem;
    color: #597a33;
    margin-bottom: 40px;
    line-height: 1.3;
  }
  
  .features-text .highlight {
    color: #597a33;
    font-weight: 600;
  }
  
  .feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
  }
  
  .feature-icon {
    color: #597a33;
    flex-shrink: 0;
    margin-top: 5px;
    width: 0%;
  }
  
  .feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
  }
  
  .feature-item p {
    color: #666;
    line-height: 1.6;
  }
  
  /* Affiliates Section */
  .affiliates {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .affiliates-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
  }
  
  .carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .carousel-track {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
  }
  
  .affiliate-logo {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    margin: 0px auto;
  }
  
  .affiliate-logo:hover {
    transform: scale(1.05);
  }
  
  .affiliate-logo img {
    height: 60px;
    width: auto;
  }
  
  .carousel-btn {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: absolute;
    color: #666;
  }
  
  .carousel-btn:hover {
    border-color: #597a33;
    color: #597a33;
  }
  
  .carousel-btn.prev {
    left: -60px;
  }
  
  .carousel-btn.next {
    right: -60px;
  }
  
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .dot.active {
    background: #597a33;
  }
  
  .view-all-btn {
    display: block;
    margin: 0 auto;
    background: transparent;
    border: 2px solid #597a33;
    color: #597a33;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .view-all-btn:hover {
    background: #597a33;
    color: white;
  }

  /* Modal Styles */

.modal {
  display: none; 
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  font-family: 'Inter', sans-serif;
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 25px;
  border-radius: 10px;
  width: 500px;
  max-width: 90%;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  color: #777777; 
}

.modal-content h2 {
  margin-top: 0;
  color: #777777; 
}

.modal-content ul li {
  margin: 5px 0;
}

.modal-content a {
  color: #597a33;
  text-decoration: none;
}

.modal-content a:hover {
  text-decoration: underline;
}

.close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

.modal-button {
  background-color: #597a33;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.modal-button:hover {
  background-color: #4a6528; 
}

.modal-affiliate {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content-affiliate {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
}

.close-affiliate {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-affiliate:hover,
.close-affiliate:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Affiliate Logos Grid */
.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Responsive grid */
    gap: 10px; /* Space between images */
    justify-items: center; /* Center items in each grid cell */
}

.affiliate-logomodal {
    width: 100%; /* Make images responsive */
}

.affiliate-logomodal img {
    width: 100%; /* Make images responsive */
    height: auto;
}

  
  /* Latest Section */
  .latest {
    padding: 80px 0;
    background: white;
  }
  
  .latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .latest-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .latest-card:hover {
    transform: translateY(-5px);
  }
  
  .card-content {
    padding: 30px;
    text-align: center;
  }
  
  .card-logo img,
  .card-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  .latest-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
  }
  
  
  /* Core Service Section */
  .core-service-section {
    padding: 80px 0;
    background: white;
  }
  
  .core-service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .core-service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
  }
  
  .core-service-text h2 {
    font-size: 48px;
    color: #597a33;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .core-service-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
  }
  
  /* Dental Partners */
  
  .dental-service-text h3 {
    font-size: 48px;
    color: #597a33;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
  }
  
  .dental-service-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
  }
  
  .dental-service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .containerdental {
    background-color: rgba(89, 122, 51, 0.8); /* black with 60% opacity */
    padding: 20px; 
    border-radius: 10px; /* optional for rounded corners */
    color: white; /* makes text readable */
  }
  
  
  /* Footer */
  .footer {
    background: #597A33;
    color: white;
    padding: 40px 0 20px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .footer-address p {
    font-size: 0.9rem;
    color: white;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .social-link {
    color: white;
    transition: color 0.3s;
  }
  
  .social-link:hover {
    color: black;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid white;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
    color: white;
  }
  
  
  /* Submenu hidden by default */
  .submenu {
    list-style: none;
    position: absolute;
    top: 100%; /* directly under parent */
    left: 0;
    background: white;
    min-width: 180px;
    border: 1px solid #ddd;
    padding: 10px 0;
    display: none;
    z-index: 1000;
  }
  
  .submenu li a {
    padding: 8px 16px;
    white-space: nowrap;
  }
  
  /* Show submenu on hover */
  .has-submenu:hover .submenu {
    display: block;
  }
  
  /* Optional: hover styles */
  .nav-list a:hover {
    background: #f0f0f0;
  }
  
  .mobile-menu-toggle {
  display: none !important;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
  order: 3;
  position: relative;
}

  /* Responsive Design */
  @media (max-width: 768px) {

    .alert {
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
  }

  .alert-success {
    background-color: #4CAF50; /* Green */
  }

  .alert-error {
    background-color: #f44336; /* Red */
  }

  .alert-warning {
    background-color: #ff9800; /* Orange */
  }

  .alert-info {
    background-color: #2196F3; /* Blue */
  }

  /* Close button */
  .alert .closebtn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
  }

  .alert .closebtn:hover {
    color: black;
  }

    .header .container {
      flex-direction: column;
    }
  
    .nav-list {
      list-style: none;
      display: flex;
      gap: 20px;
      margin: 0;
      padding: 0;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .features-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .features-text h2 {
      font-size: 2rem;
    }
  
    .carousel-btn {
      display: none;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  
    .stats-grid {
      grid-template-columns: 1fr;
    }
  
    .latest-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 430px) {

.alert {
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
  }

  .alert-success {
    background-color: #4CAF50; /* Green */
  }

  .alert-error {
    background-color: #f44336; /* Red */
  }

  .alert-warning {
    background-color: #ff9800; /* Orange */
  }

  .alert-info {
    background-color: #2196F3; /* Blue */
  }

  /* Close button */
  .alert .closebtn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
  }

  .alert .closebtn:hover {
    color: black;
  }

    .hero-title {
      font-size: 2rem;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  
    .container {
      padding: 0 15px;
    }
  
    .service-card {
      padding: 30px 20px;
    }
  
    .stat-card {
      padding: 30px 20px;
    }
  
    .features-text h2 {
      font-size: 1.8rem;
    }
  }
  
  
  /* Impact Section */
  .impact-section {
    padding: 150px 0;
    background: #fff;
  }
  
  .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  
  .content-left h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
  }
  
  .feature-block {
    margin-bottom: 40px;
  }
  
  .feature-block h3 {
    color: #597a33;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .feature-block p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
  }
  
  .feature-block ol {
    color: #666;
    padding-left: 20px;
    line-height: 1.8;
  }
  
  .feature-block ol li {
    margin-bottom: 8px;
  }
  
  .content-right {
    position: relative;
  }
  
  .handshake-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .branding-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
  }
  
  .branding-section h3 {
    color: #597a33;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .branding-section ol {
    color: #666;
    padding-left: 20px;
    line-height: 1.8;
  }
  
  .branding-section ol li {
    margin-bottom: 12px;
  }
  
  
  * Healthcare Section */
  .healthcare-section {
    padding: 80px 0;
    background: #f8faf5;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #597a33;
    margin-bottom: 60px;
    font-weight: 600;
  }

  .healthcaresection-title {
    text-align: center;
    font-size: 2.5rem;
    color: #597a33;
    margin-bottom: 60px;
    font-weight: 600;
  }
  
  .healthcare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .healthcare-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .healthcare-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .healthcare-content ol {
    color: #666;
    padding-left: 20px;
    line-height: 1.8;
    margin-bottom: 80px;
  }
  
  .healthcare-content ol li {
    margin-bottom: 15px;
  }
  
  /* News and Articles */
  
  
  .main {
    padding: 120px 0 0 50px;
  }
  
  .news-grid {
    display: grid;
    gap: 20px;
  }
  
  .news-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid #ddd; 
  }
  
  .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .news-image {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  .doctor-anywhere-logo {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  .logo-text {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .logo-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
  }
  
  .ai-assistant-image {
    background: linear-gradient(135deg, #689F38, #5a8a32);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .assistant-character {
    font-size: 4rem;
  }
  
  .video-thumbnail {
    background: linear-gradient(135deg, #689F38, #4caf50);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .video-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
  }
  
  .video-text {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.2;
  }
  
  .video-character {
    font-size: 3rem;
  }
  
  .news-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .news-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
  }
  
  .news-date {
    color: #666;
    font-style: italic;
    font-size: 1rem;
  }
  
  .news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
  }
  
  .read-more-btn,
  .watch-btn {
    background: #597a33;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .read-more-btn:hover,
  .watch-btn:hover {
    background: #5a8a32;
    transform: translateY(-2px);
  }
  
  
  /* Accredited Physicians */
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header Styles */
  
  
  .logo img {
    height: 50px;
  }
  
  
  .dropdown-arrow {
    font-size: 12px;
  }
  
  
  
  .search-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .search-box input {
    border: none;
    padding: 8px 15px;
    outline: none;
    width: 200px;
  }
  
  .search-box button {
    border: none;
    background: #597a33;
    color: white;
    padding: 8px 12px;
    cursor: pointer;
  }
  
  .member-login {
    background-color: #597a33;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
  }
  
  .member-login:hover {
    background-color: #597a33;
  }
  
  /* Main Content */
  .main {
    padding: 40px 0;
  }
  
  
  .main-privacy {
    padding: 100px 50px;
  }
  
  .hero {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    color: #597a33;
    margin-bottom: 10px;
    font-weight: 300;
  }
  
  .note {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
  }
  
  /* Search Section */
  .search-section {
    position: relative;
    margin-bottom: 100px;
    margin-top: -250px;
  }
  
  .search-card {
    background: white;
    padding: 80px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .search-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 1.5rem;
  }
  
  .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .form-input,
  .form-select {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
  }
  
  .form-select2 {
    flex: 0.58;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
  }
  
  .form-input:focus,
  .form-select:focus,
  .form.select2:focus {
    border-color: #597a33;
  }
  
  .form-input::placeholder {
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
  }
  
  .clear-filters {
    display: block;
    margin: 0px auto 0;
    background-color: #597a33;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .clear-filters2 {
    display: block;
    margin: 0px 0 0;
    background-color: #597a33;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .clear-filters:hover {
    background-color: #597a33;
  }
  
  /* Results Section */
  .download-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
    padding: 15px 0;
  }
  
  .download-section2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0; /* add some breathing room */
  }
  
  .download-section2 input.form-input {
    flex: 1;             /* take available width */
    width: 300px;    /* optional: limit maximum width */
    padding: 8px 12px;   /* make it comfortable */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  .download-buttons {
    display: flex;
    gap: 10px;
  }
  
  .download-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
  }
  
  .download-btn:hover {
    background-color: #f5f5f5;
  }
  
  .excel-btn {
    color: #597a33;
  }
  
  .csv-btn {
    color: #666;
  }
  
  /* Table Styles */
  .table-container {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
  }
  
  .physicians-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .physicians-table th {
    background-color: #597a33;
    color: white;
    padding: 15px 10px;
    text-align: left;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
  }
  
  .physicians-table th:hover {
    background-color: #597a33;
  }
  
  .sort-arrow {
    float: right;
    opacity: 0.7;
  }
  
  .physicians-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
  }
  
  .physicians-table tbody tr:hover {
    background-color: #f9f9f9;
  }
  
  .physicians-table tbody tr:nth-child(even) {
    background-color: #fafafa;
  }
  
  /* Pagination */
  .pagination-info {
    text-align: left;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
  }
  
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 40px;
  }
  
  .pagination-btn {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
    min-width: 35px;
  }
  
  .pagination-btn:hover {
    background-color: #f5f5f5;
  }
  
  .pagination-btn.active {
    background-color: #597a33;
    color: white;
    border-color: #597a33;
  }
  
  .pagination-dots {
    padding: 8px 5px;
    color: #666;
  }
  
  /* Footer */
  .footer {
    background-color: #a8c373;
    color: white;
    padding: 20px 0;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
  }
  
  .location-icon {
    font-size: 16px;
  }
  
  .footer-right {
    display: flex;
    gap: 10px;
  }
  
  .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-weight: bold;
  }
  
  .social-link:hover {
    background-color: rgba(255,255,255,0.3);
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    
  
    
    .form-row {
      flex-direction: column;
    }
  
    .download-section {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  
    .download-section2 {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  
    .physicians-table {
      font-size: 12px;
    }
  
    .physicians-table th,
    .physicians-table td {
      padding: 8px 5px;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    .search-card {
      padding: 20px;
    }
  
    .pagination {
      flex-wrap: wrap;
    }
  }
  
  
  /* Testimonials */
  
  .testi-section {
    text-align: center;
    padding: 40px 20px;
  }
  
  .testi-section h1 {
    color: #597a33;
    margin-bottom: 20px;
  }
  
  .testi-intro {
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
  }
  
  .testi-section h2 {
    margin-top: 40px;
    font-size: 22px;
    font-weight: bold;
  }
  
  .testi-sub-intro {
    margin-bottom: 30px;
    color: #777;
  }
  
  /* Cards */
  .testi-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
  }
  
  .testi-card {
    border: 2px solid #cddfbd;
    border-radius: 15px;
    padding: 20px;
    background: #fff;
    text-align: center;
    transition: transform 0.2s ease-in-out;
  }
  
  .testi-card:hover {
    transform: translateY(-5px);
  }
  
  .testi-card p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #3a3a3a;
  }
  
  .testi-card img {
    max-width: 120px;
    margin: 10px auto;
    display: block;
  }
  
  .testi-card a {
    display: inline-block;
    margin-top: 10px;
    color: #597a33;
    font-weight: bold;
    text-decoration: none;
  }
  
  .contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 1px solid #eee;
  }
  
  .contact-header img {
    height: 40px;
  }
  
  .contact-btn-login {
    background: #607D3B;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
  }
  
  /* CONTACT SECTION */
  .contact-section {
    text-align: center;
    padding: 50px 20px;
  }
  
  .contact-section h1 {
    color: #597a33;
    margin-bottom: 30px;
  }
  
  /* Tabs */
  .contact-toggle-buttons {
    display: flex;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto 30px;
  }
  
  .contact-toggle-buttons button {
    flex: 1;
    padding: 10px;
    border: 1px solid #597a33;
    background: #fff;
    color: #597a33;
    cursor: pointer;
  }
  
  .contact-toggle-buttons button.active {
    background: #597a33;
    color: #fff;
  }
  
  /* Forms */
  .contact-form-container {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .contact-tab-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .contact-tab-content.active {
    display: grid;
  }
  
  .contact-tab-content input,
  .contact-tab-content select,
  .contact-tab-content textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
  }
  
  .contact-tab-content textarea {
    grid-column: 1 / 3;
    min-height: 120px;
    resize: none;
  }
  
  .contact-submit-btn {
    grid-column: 1 / 3;
    padding: 12px;
    background: #597a33;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* CONTACT INFO */
  .contact-info {
    background: #f8f8f8;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 100px;
  }
  
  .contact-info div {
    text-align: center;
  }
  
  /* CAREER */
  .hidden {
            display: none;
        }
  
  .career-header {
    text-align: center;
    margin-top: 40px;
  }
  
  .career-title {
    color: #5c753d;
    font-size: 28px;
    font-weight: bold;
  }
  
  .career-subtitle {
    margin-top: 5px;
    font-size: 16px;
    color: #666;
  }
  
  .career-list {
    width: 80%;
    margin: 40px auto;
  }
  
  .career-item {
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .career-job-title {
    font-size: 18px;
    color: #444;
    margin: 0;
  }
  
  .career-job-title span {
    font-weight: bold;
    color: #5c753d;
  }
  
  .career-functions {
    font-size: 14px;
    color: #5c753d;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .career-ul {
    margin-left: 20px;
    margin-bottom: 15px;
  }
  
  .career-ul li {
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .career-btn {
    background-color: #5c753d;
    color: white;
    border: none;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
  }
  
  .career-btn:hover {
    background-color: #48602e;
  }
  
  .career-link {
    display: block;
    margin-top: 10px;
    color: #5c753d;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
  }
  
  .career-link:hover {
    text-decoration: underline;
  }
  
  .career-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .career-open-btn {
  background: #597a33;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
}

.career-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.career-modal {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.career-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.career-close-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 18px;
}

.career-drop-area {
  border: 2px dashed #555;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.career-drop-area.dragover {
  border-color: #597a33;
}

.career-file-info {
  margin-top: 16px;
  text-align: left;
  font-size: 14px;
}

.career-progress {
  height: 8px;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 8px;
}

.career-progress > i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #597a33, #06b6d4);
}

.career-upload-btn {
  margin-top: 16px;
  background: #597a33;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  width: 100%;
}
  
  /* FOOTER */
  .contact-footer {
    background: #e8e8e8;
    text-align: center;
    padding: 15px;
    font-size: 13px;
  }
  
  .contact-footer a {
    text-decoration: none;
    color: #597a33;
  }
  
  /* CERT */
  
  /* Navbar */
  .cert-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #fff;
    border-bottom: 1px solid #ddd;
  }
  
  .cert-nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .cert-nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  .cert-login {
    background: #597a33;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  /* Intro */
  .cert-intro {
    text-align: center;
    padding: 40px 20px;
  }
  
  .cert-intro h1 {
    color: #597a33;
    font-size: 28px;
  }
  
  .cert-intro p {
    max-width: 700px;
    margin: 10px auto;
    line-height: 1.6;
  }
  
  /* Recognitions */
  .cert-recognitions {
    padding: 40px 20px;
    text-align: center;
  }
  
  .cert-awards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .cert-award {
    max-width: 250px;
  }
  
  .cert-award img {
    width: 200px;
    margin-bottom: 10px;
  }
  
  .privacy-cert img {
    width: 450px;
    margin-bottom: 10px;
  }
  
  .privacy-seal img {
    width: 200px;
    margin-bottom: 10px;
  }
  
  .cert-award h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  /* Credit Standing */
  .cert-credit {
    padding: 40px 20px;
    text-align: center;
  }
  
  .cert-credit div{
    padding: 40px 80px;
    text-align: center;
  }
  
  .cert-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
  }
  
  .cert-partners img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
  }
  
  /* Footer */
  .cert-footer {
    background: #e6eedb;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    margin-top: 40px;
  }
  
  .cert-socials {
    margin-top: 10px;
  }
  
  .cert-socials img {
    width: 25px;
    margin: 0 5px;
  }
  
  
  /* OUTLINE MISSION VISION CORE VALUES */
  
  .vision-mission {
        display: flex;
        flex-wrap: wrap;
      }
  
      .vision.outline, .mission.outline {
        flex: 1;
        min-width: 300px;
        padding: 60px 40px;
        background-size: cover;
        background-position: center;
        color: #fff;
        text-align: center;
        position: relative;
      }
  
      .vision.outline {
        background: url('https://source.unsplash.com/600x400/?healthcare') no-repeat center;
      }
  
      .mission.outline {
        background: url('https://source.unsplash.com/600x400/?medical') no-repeat center;
      }
  
      .overlay.outline {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
      }
  
      .content.outline {
        position: relative;
        z-index: 1;
      }
  
      .vision.outline h2, .mission.outline h2 {
        color: #597a33;
        margin-bottom: 15px;
      }
  
      .vision.outline p, .mission.outline p {
        color: #333;
        margin-bottom: 15px;
      }
  
      /* Core Values Section */
      .values-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        max-width: 1000px;
        margin: auto;
      }
  
      .value-card {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
  
      .icon.outline {
        width: 100px;
        height: 100px;
        border: 3px solid #597a33;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        font-size: 40px;
        color: #597a33;
      }
  
      .value-card p {
        font-style: italic;
        font-size: 16px;
        margin: 0;
      }
  
      .services-sectionoutline {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .services-sectionoutline h2 {
    text-align: center;
    font-size: 48px;
    color: #597a33;
    margin-bottom: 50px;
    font-weight: 600;
  }
  
      /* Example icons using emojis (replace with SVG/images if needed) */
      .integrity::before { content: "⚖️"; }
      .creative::before { content: "💡"; }
      .altruism::before { content: "🤝"; }
      .humility::before { content: "👐"; }
      .transparency::before { content: "🔍"; }
}

@media (min-width: 1025px) {

  .alert {
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
  }

  .alert-success {
    background-color: #4CAF50; /* Green */
  }

  .alert-error {
    background-color: #f44336; /* Red */
  }

  .alert-warning {
    background-color: #ff9800; /* Orange */
  }

  .alert-info {
    background-color: #2196F3; /* Blue */
  }

  /* Close button */
  .alert .closebtn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
  }

  .alert .closebtn:hover {
    color: black;
  }

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header */
  .header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  .nav-list li {
    position: relative;
  }
  
  .nav-list a {
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    display: block;
  }
  
  .nav-list a:hover {
    color: #597a33;
  }
  
  .member-login-btn {
    background: #597a33;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .member-login-btn:hover {
    background: #3a6249;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* bigger container height */
    display: flex;
    align-items: center; /* vertically center content */
    justify-content: center; /* horizontally center content if needed */
    padding: 0; /* remove padding if centering with flexbox */
  }
  
  .hero_physicians {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* bigger container height */
    display: flex;
    align-items: center; /* vertically center content */
    justify-content: center; /* horizontally center content if needed */
    padding: 0; /* remove padding if centering with flexbox */
  }
  
  .hero_coord {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* bigger container height */
    display: flex;
    align-items: center; /* vertically center content */
    justify-content: center; /* horizontally center content if needed */
    padding: 0; /* remove padding if centering with flexbox */
  }
  
  .hero_dentalprov {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* bigger container height */
    display: flex;
    align-items: center; /* vertically center content */
    justify-content: center; /* horizontally center content if needed */
    padding: 0; /* remove padding if centering with flexbox */
  }
  
  .hero_providers {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* bigger container height */
    display: flex;
    align-items: center; /* vertically center content */
    justify-content: center; /* horizontally center content if needed */
    padding: 0; /* remove padding if centering with flexbox */
  }

  
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/header.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  .hero2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/whyheader.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  .hero_physicians::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/AccPhys.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  .hero_coord::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/MedicalCoord.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  .hero_dentalprov::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/DentalProv.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  .hero_providers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/AccProv.png') no-repeat center center;
    background-size: contain; /* makes it scale */
  }
  
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-section {
    padding: 150px 0 80px;
    background: white;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .hero-text h1 {
    font-size: 48px;
    color: #597a33;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
  }
  
  .hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    color: #597a33;
    margin-bottom: 30px;
    line-height: 1.2;
  }
  
  .highlight {
    font-style: italic;
    font-weight: 400;
  }
  
  /* Services Section */
  .services {
    padding: 50px 0;
    text-align: center;
  }
  
  .section-title {
    font-size: 1.8rem;
    color: #597a33;
    font-weight: bold;
    margin-top: 80px;
    margin-bottom: 50px;
  }

  .healthcaresection-title {
    font-size: 1.8rem;
    color: #597a33;
    font-weight: bold;
    margin-top: 80px;
    margin-bottom: 50px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(2, auto);   /* 2 rows */
  }
  
  .service-card {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #9bb27d; /* vertical divider */
    border-bottom: 1px solid #9bb27d; /* horizontal divider */
  }
  
  .services-section {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .services-section h2 {
    text-align: center;
    font-size: 48px;
    color: #597a33;
    margin-bottom: 50px;
    font-weight: 600;
  }
  
  .services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .services-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
  }
  
  .services-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
    margin-top: 40px;
  }
  
  .service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  
  /* Remove right border from last column */
  .service-card:nth-child(3n) {
    border-right: none;
  }
  
  /* Remove bottom border from last row */
  .service-card:nth-last-child(-n+3) {
    border-bottom: none;
  }
  
  .service-icon svg {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .service-card h3 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
  }
  
  /* Medical Access Section */
  .medical-access {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .access-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #666;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .stat-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #597a33;
    margin-bottom: 20px;
  }
  
  .stat-label {
    color: #333;
  }
  
  .stat-list {
    list-style: none;
    margin-top: 15px;
  }
  
  .stat-list li {
    color: #666;
    margin: 5px 0;
  }
  
  .stat-list li::before {
    content: '• ';
    color: #333;
    font-weight: bold;
  }
  
  /* App Features Section */
  .app-features {
    padding: 80px 0;
    background: white;
  }
  
  .features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .phone-mockup img {
    width: 100%;
    max-width: 100%;
  }
  
  .features-text h2 {
    font-size: 2.1rem;
    color: #597a33;
    margin-bottom: 40px;
    line-height: 1.3;
  }
  
  .features-text .highlight {
    color: #597a33;
    font-weight: 600;
  }
  
  .feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
  }
  
  .feature-icon {
    color: #597a33;
    flex-shrink: 0;
    margin-top: 5px;
  }
  
  .feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
  }
  
  .feature-item p {
    color: #666;
    line-height: 1.6;
  }
  
  /* Affiliates Section */
  .affiliates {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .affiliates-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
  }
  
  .carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .carousel-track {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
  }
  
  .affiliate-logo {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .affiliate-logo:hover {
    transform: scale(1.05);
  }
  
  .affiliate-logo img {
    height: 60px;
    width: auto;
  }
  
  .carousel-btn {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: absolute;
    color: #666;
  }
  
  .carousel-btn:hover {
    border-color: #597a33;
    color: #597a33;
  }
  
  .carousel-btn.prev {
    left: -60px;
  }
  
  .carousel-btn.next {
    right: -60px;
  }
  
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .dot.active {
    background: #597a33;
  }
  
  .view-all-btn {
    display: block;
    margin: 0 auto;
    background: transparent;
    border: 2px solid #597a33;
    color: #597a33;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .view-all-btn:hover {
    background: #597a33;
    color: white;
  }

  /* Modal Styles */

  .modal {
  display: none; 
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  font-family: 'Inter', sans-serif;
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 25px;
  border-radius: 10px;
  width: 500px;
  max-width: 90%;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  color: #777777; 
}

.modal-content h2 {
  margin-top: 0;
  color: #777777; 
}

.modal-content ul li {
  margin: 5px 0;
}

.modal-content a {
  color: #597a33;
  text-decoration: none;
}

.modal-content a:hover {
  text-decoration: underline;
}

.close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

.modal-button {
  background-color: #597a33;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.modal-button:hover {
  background-color: #4a6528; 
}

.modal-affiliate {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content-affiliate {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 60%; /* Could be more or less, depending on screen size */
}

.close-affiliate {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-affiliate:hover,
.close-affiliate:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Affiliate Logos Grid */
.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Responsive grid */
    gap: 10px; /* Space between images */
    justify-items: center; /* Center items in each grid cell */
}

.affiliate-logomodal {
    width: 100%; /* Make images responsive */
}

.affiliate-logomodal img {
    width: 100%; /* Make images responsive */
    height: auto;
}

  
  /* Latest Section */
  .latest {
    padding: 80px 0;
    background: white;
  }
  
  .latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .latest-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .latest-card:hover {
    transform: translateY(-5px);
  }
  
  .card-content {
    padding: 30px;
    text-align: center;
  }
  
  .card-logo img,
  .card-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  .latest-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
  }
  
  
  /* Core Service Section */
  .core-service-section {
    padding: 80px 0;
    background: white;
  }
  
  .core-service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .core-service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
  }
  
  .core-service-text h2 {
    font-size: 48px;
    color: #597a33;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .core-service-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
  }
  
  /* Dental Partners */
  
  .dental-service-text h3 {
    font-size: 48px;
    color: #597a33;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
  }
  
  .dental-service-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
  }
  
  .dental-service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .containerdental {
    background-color: rgba(89, 122, 51, 0.8); /* black with 60% opacity */
    padding: 20px; 
    border-radius: 10px; /* optional for rounded corners */
    color: white; /* makes text readable */
  }
  
  
  /* Footer */
  .footer {
    background: #597A33;
    color: white;
    padding: 40px 0 20px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .footer-address p {
    font-size: 0.9rem;
    color: white;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .social-link {
    color: white;
    transition: color 0.3s;
  }
  
  .social-link:hover {
    color: black;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid white;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
    color: white;
  }
  
  
  /* Submenu hidden by default */
  .submenu {
    list-style: none;
    position: absolute;
    top: 100%; /* directly under parent */
    left: 0;
    background: white;
    min-width: 180px;
    border: 1px solid #ddd;
    padding: 10px 0;
    display: none;
    z-index: 1000;
  }
  
  .submenu li a {
    padding: 8px 16px;
    white-space: nowrap;
  }
  
  /* Show submenu on hover */
  .has-submenu:hover .submenu {
    display: block;
  }
  
  /* Optional: hover styles */
  .nav-list a:hover {
    background: #f0f0f0;
  }
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .header .container {
      flex-direction: column;
      gap: 20px;
    }
  
    .nav-list {
      list-style: none;
      display: flex;
      gap: 20px;
      margin: 0;
      padding: 0;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .section-title {
      font-size: 2rem;
    }

    .healthcaresection-title {
      font-size: 2rem;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .features-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .features-text h2 {
      font-size: 2rem;
    }
  
    .carousel-btn {
      display: none;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  
    .stats-grid {
      grid-template-columns: 1fr;
    }
  
    .latest-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {

    .alert {
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
  }

  .alert-success {
    background-color: #4CAF50; /* Green */
  }

  .alert-error {
    background-color: #f44336; /* Red */
  }

  .alert-warning {
    background-color: #ff9800; /* Orange */
  }

  .alert-info {
    background-color: #2196F3; /* Blue */
  }

  /* Close button */
  .alert .closebtn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
  }

  .alert .closebtn:hover {
    color: black;
  }

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

     .healthcaresection-title {
      font-size: 1.8rem;
    }
  
    .container {
      padding: 0 15px;
    }
  
    .service-card {
      padding: 30px 20px;
    }
  
    .stat-card {
      padding: 30px 20px;
    }
  
    .features-text h2 {
      font-size: 1.8rem;
    }
  }
  
  
  /* Impact Section */
  .impact-section {
    padding: 150px 0;
    background: #fff;
  }
  
  .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  
  .content-left h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
  }
  
  .feature-block {
    margin-bottom: 40px;
  }
  
  .feature-block h3 {
    color: #597a33;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .feature-block p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
  }
  
  .feature-block ol {
    color: #666;
    padding-left: 20px;
    line-height: 1.8;
  }
  
  .feature-block ol li {
    margin-bottom: 8px;
  }
  
  .content-right {
    position: relative;
  }
  
  .handshake-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .branding-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
  }
  
  .branding-section h3 {
    color: #597a33;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .branding-section ol {
    color: #666;
    padding-left: 20px;
    line-height: 1.8;
  }
  
  .branding-section ol li {
    margin-bottom: 12px;
  }
  
  
  * Healthcare Section */
  .healthcare-section {
    padding: 80px 0;
    background: #f8faf5;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #597a33;
    margin-bottom: 60px;
    font-weight: 600;
  }

  .healthcaresection-title {
    text-align: center;
    font-size: 2.5rem;
    color: #597a33;
    margin-bottom: 60px;
    font-weight: 600;
  }
  
  .healthcare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .healthcare-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .healthcare-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .healthcare-content ol {
    color: #666;
    padding-left: 20px;
    line-height: 1.8;
    margin-bottom: 80px;
  }
  
  .healthcare-content ol li {
    margin-bottom: 15px;
  }
  
  /* News and Articles */
  
  
  .main {
    padding: 120px 0 0 50px;
  }
  
  .news-grid {
    display: grid;
    gap: 20px;
  }
  
  .news-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid #ddd; 
  }
  
  .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .news-image {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  .doctor-anywhere-logo {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  .logo-text {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .logo-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
  }
  
  .ai-assistant-image {
    background: linear-gradient(135deg, #689F38, #5a8a32);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .assistant-character {
    font-size: 4rem;
  }
  
  .video-thumbnail {
    background: linear-gradient(135deg, #689F38, #4caf50);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .video-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
  }
  
  .video-text {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.2;
  }
  
  .video-character {
    font-size: 3rem;
  }
  
  .news-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .news-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
  }
  
  .news-date {
    color: #666;
    font-style: italic;
    font-size: 1rem;
  }
  
  .news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
  }
  
  .read-more-btn,
  .watch-btn {
    background: #597a33;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .read-more-btn:hover,
  .watch-btn:hover {
    background: #5a8a32;
    transform: translateY(-2px);
  }
  
  
  /* Accredited Physicians */
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
.mobile-menu-toggle {
  display: none !important;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
  order: 3;
  position: relative;
}

  /* Header Styles */
  
  
  .logo img {
    height: 50px;
  }
  
  
  .dropdown-arrow {
    font-size: 12px;
  }
  
  
  
  .search-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .search-box input {
    border: none;
    padding: 8px 15px;
    outline: none;
    width: 200px;
  }
  
  .search-box button {
    border: none;
    background: #597a33;
    color: white;
    padding: 8px 12px;
    cursor: pointer;
  }
  
  .member-login {
    background-color: #597a33;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
  }
  
  .member-login:hover {
    background-color: #597a33;
  }
  
  /* Main Content */
  .main {
    padding: 40px 0;
  }
  
  
  .main-privacy {
    padding: 100px 50px;
  }
  
  .hero {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    color: #597a33;
    margin-bottom: 10px;
    font-weight: 300;
  }
  
  .note {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
  }
  
  /* Search Section */
  .search-section {
    position: relative;
    margin-bottom: 100px;
    margin-top: -250px;
  }
  
  .search-card {
    background: white;
    padding: 80px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .search-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 1.5rem;
  }
  
  .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .form-input,
  .form-select {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
  }
  
  .form-select2 {
    flex: 0.58;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
  }
  
  .form-input:focus,
  .form-select:focus,
  .form.select2:focus {
    border-color: #597a33;
  }
  
  .form-input::placeholder {
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
  }
  
  .clear-filters {
    display: block;
    margin: 0px auto 0;
    background-color: #597a33;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .clear-filters2 {
    display: block;
    margin: 0px 0 0;
    background-color: #597a33;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .clear-filters:hover {
    background-color: #597a33;
  }
  
  /* Results Section */
  .download-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
    padding: 15px 0;
  }
  
  .download-section2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0; /* add some breathing room */
  }
  
  .download-section2 input.form-input {
    flex: 1;             /* take available width */
    width: 300px;    /* optional: limit maximum width */
    padding: 8px 12px;   /* make it comfortable */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  .download-buttons {
    display: flex;
    gap: 10px;
  }
  
  .download-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
  }
  
  .download-btn:hover {
    background-color: #f5f5f5;
  }
  
  .excel-btn {
    color: #597a33;
  }
  
  .csv-btn {
    color: #666;
  }
  
  /* Table Styles */
  .table-container {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
  }
  
  .physicians-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .physicians-table th {
    background-color: #597a33;
    color: white;
    padding: 15px 10px;
    text-align: left;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
  }
  
  .physicians-table th:hover {
    background-color: #597a33;
  }
  
  .sort-arrow {
    float: right;
    opacity: 0.7;
  }
  
  .physicians-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
  }
  
  .physicians-table tbody tr:hover {
    background-color: #f9f9f9;
  }
  
  .physicians-table tbody tr:nth-child(even) {
    background-color: #fafafa;
  }
  
  /* Pagination */
  .pagination-info {
    text-align: left;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
  }
  
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 40px;
  }
  
  .pagination-btn {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
    min-width: 35px;
  }
  
  .pagination-btn:hover {
    background-color: #f5f5f5;
  }
  
  .pagination-btn.active {
    background-color: #597a33;
    color: white;
    border-color: #597a33;
  }
  
  .pagination-dots {
    padding: 8px 5px;
    color: #666;
  }
  
  /* Footer */
  .footer {
    background-color: #a8c373;
    color: white;
    padding: 20px 0;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
  }
  
  .location-icon {
    font-size: 16px;
  }
  
  .footer-right {
    display: flex;
    gap: 10px;
  }
  
  .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-weight: bold;
  }
  
  .social-link:hover {
    background-color: rgba(255,255,255,0.3);
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    
  .alert {
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
  }

  .alert-success {
    background-color: #4CAF50; /* Green */
  }

  .alert-error {
    background-color: #f44336; /* Red */
  }

  .alert-warning {
    background-color: #ff9800; /* Orange */
  }

  .alert-info {
    background-color: #2196F3; /* Blue */
  }

  /* Close button */
  .alert .closebtn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
  }

  .alert .closebtn:hover {
    color: black;
  }
    
    .form-row {
      flex-direction: column;
    }
  
    .download-section {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  
    .download-section2 {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  
    .physicians-table {
      font-size: 12px;
    }
  
    .physicians-table th,
    .physicians-table td {
      padding: 8px 5px;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    .search-card {
      padding: 20px;
    }
  
    .pagination {
      flex-wrap: wrap;
    }
  }
  
  
  /* Testimonials */
  
  .testi-section {
    text-align: center;
    padding: 40px 20px;
  }
  
  .testi-section h1 {
    color: #597a33;
    margin-bottom: 20px;
  }
  
  .testi-intro {
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
  }
  
  .testi-section h2 {
    margin-top: 40px;
    font-size: 22px;
    font-weight: bold;
  }
  
  .testi-sub-intro {
    margin-bottom: 30px;
    color: #777;
  }
  
  /* Cards */
  .testi-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
  }
  
  .testi-card {
    border: 2px solid #cddfbd;
    border-radius: 15px;
    padding: 20px;
    background: #fff;
    text-align: center;
    transition: transform 0.2s ease-in-out;
  }
  
  .testi-card:hover {
    transform: translateY(-5px);
  }
  
  .testi-card p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #3a3a3a;
  }
  
  .testi-card img {
    max-width: 120px;
    margin: 10px auto;
    display: block;
  }
  
  .testi-card a {
    display: inline-block;
    margin-top: 10px;
    color: #597a33;
    font-weight: bold;
    text-decoration: none;
  }
  
  .contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 1px solid #eee;
  }
  
  .contact-header img {
    height: 40px;
  }
  
  .contact-btn-login {
    background: #607D3B;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
  }
  
  /* CONTACT SECTION */
  .contact-section {
    text-align: center;
    padding: 50px 20px;
  }
  
  .contact-section h1 {
    color: #597a33;
    margin-bottom: 30px;
  }
  
  /* Tabs */
  .contact-toggle-buttons {
    display: flex;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto 30px;
  }
  
  .contact-toggle-buttons button {
    flex: 1;
    padding: 10px;
    border: 1px solid #597a33;
    background: #fff;
    color: #597a33;
    cursor: pointer;
  }
  
  .contact-toggle-buttons button.active {
    background: #597a33;
    color: #fff;
  }
  
  /* Forms */
  .contact-form-container {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .contact-tab-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .contact-tab-content.active {
    display: grid;
  }
  
  .contact-tab-content input,
  .contact-tab-content select,
  .contact-tab-content textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
  }
  
  .contact-tab-content textarea {
    grid-column: 1 / 3;
    min-height: 120px;
    resize: none;
  }
  
  .contact-submit-btn {
    grid-column: 1 / 3;
    padding: 12px;
    background: #597a33;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* CONTACT INFO */
  .contact-info {
    background: #f8f8f8;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 100px;
  }
  
  .contact-info div {
    text-align: center;
  }
  
  /* CAREER */

  .hidden {
            display: none;
        }
  
  .career-header {
    text-align: center;
    margin-top: 40px;
  }
  
  .career-title {
    color: #5c753d;
    font-size: 28px;
    font-weight: bold;
  }
  
  .career-subtitle {
    margin-top: 5px;
    font-size: 16px;
    color: #666;
  }
  
  .career-list {
    width: 80%;
    margin: 40px auto;
  }
  
  .career-item {
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .career-job-title {
    font-size: 18px;
    color: #444;
    margin: 0;
  }
  
  .career-job-title span {
    font-weight: bold;
    color: #5c753d;
  }
  
  .career-functions {
    font-size: 14px;
    color: #5c753d;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .career-ul {
    margin-left: 20px;
    margin-bottom: 15px;
  }
  
  .career-ul li {
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .career-btn {
    background-color: #5c753d;
    color: white;
    border: none;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
  }
  
  .career-btn:hover {
    background-color: #48602e;
  }
  
  .career-link {
    display: block;
    margin-top: 10px;
    color: #5c753d;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
  }
  
  .career-link:hover {
    text-decoration: underline;
  }
  
  .career-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .career-open-btn {
  background: #597a33;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
}

.career-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.career-modal {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.career-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.career-close-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 18px;
}

.career-drop-area {
  border: 2px dashed #555;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.career-drop-area.dragover {
  border-color: #597a33;
}

.career-file-info {
  margin-top: 16px;
  text-align: left;
  font-size: 14px;
}

.career-progress {
  height: 8px;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 8px;
}

.career-progress > i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #597a33, #06b6d4);
}

.career-upload-btn {
  margin-top: 16px;
  background: #597a33;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  width: 100%;
}
  
  /* FOOTER */
  .contact-footer {
    background: #e8e8e8;
    text-align: center;
    padding: 15px;
    font-size: 13px;
  }
  
  .contact-footer a {
    text-decoration: none;
    color: #597a33;
  }
  
  /* CERT */
  
  /* Navbar */
  .cert-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #fff;
    border-bottom: 1px solid #ddd;
  }
  
  .cert-nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .cert-nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  .cert-login {
    background: #597a33;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  /* Intro */
  .cert-intro {
    text-align: center;
    padding: 40px 20px;
  }
  
  .cert-intro h1 {
    color: #597a33;
    font-size: 28px;
  }
  
  .cert-intro p {
    max-width: 700px;
    margin: 10px auto;
    line-height: 1.6;
  }
  
  /* Recognitions */
  .cert-recognitions {
    padding: 40px 20px;
    text-align: center;
  }
  
  .cert-awards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .cert-award {
    max-width: 250px;
  }
  
  .cert-award img {
    width: 200px;
    margin-bottom: 10px;
  }
  
  .privacy-cert img {
    width: 450px;
    margin-bottom: 10px;
  }
  
  .privacy-seal img {
    width: 200px;
    margin-bottom: 10px;
  }
  
  .cert-award h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  /* Credit Standing */
  .cert-credit {
    padding: 40px 20px;
    text-align: center;
  }
  
  .cert-credit div{
    padding: 40px 80px;
    text-align: center;
  }
  
  .cert-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
  }
  
  .cert-partners img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
  }
  
  /* Footer */
  .cert-footer {
    background: #e6eedb;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    margin-top: 40px;
  }
  
  .cert-socials {
    margin-top: 10px;
  }
  
  .cert-socials img {
    width: 25px;
    margin: 0 5px;
  }
  
  
  /* OUTLINE MISSION VISION CORE VALUES */
  
  .vision-mission {
        display: flex;
        flex-wrap: wrap;
      }
  
      .vision.outline, .mission.outline {
        flex: 1;
        min-width: 300px;
        padding: 60px 40px;
        background-size: cover;
        background-position: center;
        color: #fff;
        text-align: center;
        position: relative;
      }
  
      .vision.outline {
        background: url('https://source.unsplash.com/600x400/?healthcare') no-repeat center;
      }
  
      .mission.outline {
        background: url('https://source.unsplash.com/600x400/?medical') no-repeat center;
      }
  
      .overlay.outline {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
      }
  
      .content.outline {
        position: relative;
        z-index: 1;
      }
  
      .vision.outline h2, .mission.outline h2 {
        color: #597a33;
        margin-bottom: 15px;
      }
  
      .vision.outline p, .mission.outline p {
        color: #333;
        margin-bottom: 15px;
      }
  
      /* Core Values Section */
      .values-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        max-width: 1000px;
        margin: auto;
      }
  
      .value-card {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
  
      .icon.outline {
        width: 100px;
        height: 100px;
        border: 3px solid #597a33;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        font-size: 40px;
        color: #597a33;
      }
  
      .value-card p {
        font-style: italic;
        font-size: 16px;
        margin: 0;
      }
  
      .services-sectionoutline {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .services-sectionoutline h2 {
    text-align: center;
    font-size: 48px;
    color: #597a33;
    margin-bottom: 50px;
    font-weight: 600;
  }

  
 .corediv,
.hero_corediv,
.hero_core {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0px auto !important;
  padding: 0 !important;
}


.hero_core img {
  width: 80% !important;
  height: auto !important;
  max-width: 80% !important;
  display: block;
  margin: 0 auto;
}


.newsarticles-image {
  display: block;
  width: 30%;
  max-width: 300px;
  margin: 0px auto;
  border-radius: 10px;
}

.readMore {
  cursor: pointer;
}

.partners.cert-partners .logo {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.partners.cert-partners .logo:hover {
  transform: scale(1.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


      /* Example icons using emojis (replace with SVG/images if needed) */
      .integrity::before { content: "⚖️"; }
      .creative::before { content: "💡"; }
      .altruism::before { content: "🤝"; }
      .humility::before { content: "👐"; }
      .transparency::before { content: "🔍"; }
}


/* Good Credit Standing */

.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.popup-content {
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}


.see-more-btn {
            background: none;
            border: none;
            color: #597a33; /* Matches surrounding text color */
            cursor: text; /* Looks like plain text, no pointer cursor */
            font-size: inherit;
            font-family: inherit;
            padding: 0;
            margin: 0;
            text-decoration: none; /* No underline */
        }

        .alert {
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
  }

  .alert-success {
    background-color: #4CAF50; /* Green */
  }

  .alert-error {
    background-color: #f44336; /* Red */
  }

  .alert-warning {
    background-color: #ff9800; /* Orange */
  }

  .alert-info {
    background-color: #2196F3; /* Blue */
  }

  /* Close button */
  .alert .closebtn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
  }

  .alert .closebtn:hover {
    color: black;
  }

.newsarticles-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  line-height: 1.6;
  font-family: "Arial", sans-serif;
  background-color: #ffffff;
}

.newsarticles-image {
  display: block;
  width: 30%;
  max-width: 300px;
  margin: 0px auto;
  border-radius: 10px;
}

.newsarticles-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #597a33;
  margin-bottom: 20px;
  text-align: center;
}

.newsarticles-paragraph {
  text-align: justify;
  font-size: 1rem;
  color: #333333;
  margin-bottom: 15px;
}


.readMore {
  cursor: pointer; 
}

.partners.cert-partners .logo {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.partners.cert-partners .logo:hover {
  transform: scale(1.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}