@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

:root {
  --pak-green: #04431b;
  --bright-green: #0cf50c;
  --olive-light-green: #eef2ef;
  --green: #7de697;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', 'Sofia Pro';
}

/* Top Bar Start*/
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--olive-light-green);
  color: var(--darkgrey-textcolor);
  padding: 10px 15px;
  font-size: 16px;
  z-index: 99;
}

/* Contact Information Section */
.contact-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--pak-green);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-item i {
  color: var(--pak-green);
}

/* Social Media Section */
.social-icons {
  display: flex;
  margin-right: 60px;
  gap: 45px;
  justify-content: center;
}

.social-icon {
  color: var(--pak-green);
  font-size: 20px;
  text-decoration: none;
}

.social-icon:hover {
  color: var(--bright-green);
}

/* Media Queries for Small Devices (max-width: 600px) */
@media screen and (max-width: 600px) {
  /* Top Bar Layout */
  .top-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }

  /* Contact Info Layout */
  .contact-info {
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
  }

  /* Social Icons Layout */
  .social-icons {
    justify-content: center;
    gap: 20px;
  }
}

.top-bar .contact-info a {
     color: var(--pak-green);
}
/* Top Bar End*/





/* Navbar Start */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(85deg,  #01a601, #08642a);
  color: white;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  font-style: 'sans-serif';

}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  position: relative;
  padding: 10px 15px;
  text-decoration: none;
  color: white; /* Default text color */
  transition: all 0.3s ease;
  font-weight: 510;
}
.nav-links li a:hover {
  color:var(--bright-green); /* Hover color */
  border: 2px solid var(--bright-green); /* Box border on hover */
  padding: 8px 13px; /* Slightly reduce padding for a boxed effect */
  border-radius: 5px; /* Optional: rounded corners */
  box-shadow: #e3e7e4; /* Box shadow on hover */
}



/* Hamburger Menu for Small Screens */
.hamburger-menu {
  display: none;
  cursor: pointer;
  
}

.hamburger-menu i {
  font-size: 18px;
  margin-right: 10px;
  color: white;

}

/* Small Devices (max-width: 600px) */
@media screen and (max-width: 600px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
  }

  .navbar-brand{
    font-size: 12px;
  }

  .hamburger-menu {
    order: 1;
    display: block;
  }

  .navbar-brand {
    order: 2;
    margin: 0 auto;
    flex-grow: 1;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: linear-gradient(85deg,  #01a601, #08642a);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    padding: 10px 15px; /* Consistent padding for the links in mobile */
    color: white;
    transition: all 0.3s ease;
  }

  .nav-links li a:hover {
    color: var(--bright-green); /* Hover color */
    border: 2px solid var(--bright-green); /* Box border on hover */
    padding: 8px 13px; /* Slightly reduce padding for a boxed effect */
    border-radius: 5px; /* Optional: rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Box shadow on hover */
  }
}

/* For Samsung Galaxy S8 (max-width: 360px) */
@media screen and (max-width: 360px) {
  .navbar {
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px;
  }

  /* Hamburger icon on the left */
  .hamburger-menu {
    display: block;
    order: 1; /* Hamburger icon comes first */
  }

  /* Brand logo and text after the hamburger icon */
  .navbar-brand {
    order: 2;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .brand-logo {
    width: 15px; /* Adjust brand logo size */
    height: 15px;
  }

  /* Hide navigation links by default */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: var(--pak-green);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  /* Show nav-links when toggled */
  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    padding: 10px 15px;
    color: white;
    transition: all 0.3s ease;
  }

  .nav-links li a:hover {
    color: var(--bright-green);
    border: 2px solid var(--bright-green);
    padding: 8px 13px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
}





/* For screens between 768px and 1024px (iPad Mini in Portrait Mode and Small Tablets) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: var(--pak-green); /* Background color */
  }

  /* Hamburger icon is hidden on larger screens, will show on smaller ones */
  .hamburger-menu {
    display: none; /* Hide hamburger menu on iPad Air */
  }

  /* Navbar Brand */
  .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px; /* Reduced font size */
    font-weight: 600;
  }

  .brand-logo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }

  /* Navigation links */
  .nav-links {
    display: flex;
    gap: 20px; /* Spacing between links */
    list-style: none;
  }

  .nav-links li a {
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    font-size: 10px; /* Reduced font size */
    transition: all 0.3s ease;
  }

  .nav-links li a:hover {
    color: var(--bright-green);
    border: 2px solid var(--bright-green);
    padding: 8px 13px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
 }

 /* Navbar End */

 
/* Information Section Start */
.info-section {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 5%;
  position: relative;
  top: -50px; /* Overlapping Header */
}

/* Styling for Each Box */
.info-box {
  flex: 1;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #004400, #008000);
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Overlapping Effect */
.info-box:first-child {
  margin-left: -20px;
}
.info-box:last-child {
  margin-right: -20px;
}

/* Hover Effect */
.info-box:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 255, 0, 0.4);
}

/* Icon Styling */
.icon {
  font-size: 35px;
  color: #ffcc00;
  margin-right: 15px;
}

/* Content Layout */
.info-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Heading & Text */
h3 {
  font-size: 20px;
  margin: 0;
}

/* Call Number */
.call-number {
  font-size: 18px;
  color: #ffcc00;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 5px;
}
.call-number:hover {
  color: var(--bright-green);
  
  text-decoration: underline;
}

/* View Timetable Button */
.view-timetable {
  font-size: 16px;
  background: #ffcc00;
  color: var(--pak-green);
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 5px;
  transition: background 0.3s ease;
}
.view-timetable:hover {
  background: var(--bright-green);
  color: var(--pak-green);
}

/* Opening Hours Styling */
.hours p {
  margin: 3px 0;
}
.hours span {
  font-weight: bold;
  color: #ffcc00;
}

/* Responsive */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    align-items: center;
    top: -30px;
  }

  .info-box {
    width: 90%;
    margin: 10px 0;
  }

  .info-box:first-child,
  .info-box:last-child {
    margin: 0;
  }
}


* Call Number */
.call-number {
  font-size: 18px;
  color: #ffcc00;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 5px;
}
.call-number:hover {
  color: var(--bright-green);
  
  text-decoration: underline;
}

/* Call Number */
.email {
  font-size: 18px;
  color: #ffcc00;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 5px;
}
.email:hover {
  color: var(--bright-green);
  
  text-decoration: underline;
}


 /* Information Section End */






/* Breadcrumb Background */
.bg-breadcrumb {
  background: url('images/about\ header.webp') no-repeat center center/cover;
  padding: 60px 0;
  position: relative;
}

/* Dark overlay effect */
.bg-breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 52, 1, 0.7); /* Green overlay with transparency */
}

/* Breadcrumb Container */
.bg-breadcrumb .container {
  position: relative;
  z-index: 2; /* Ensures content appears above overlay */
}

/* Header Title */
.bg-breadcrumb h4 {
  font-weight: 700;
  color: #fff;
  font-size: 36px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  opacity: 0; /* Initially hidden */
  transform: translateY(30px); /* Start from slightly below */
  animation: fadeInUp 2s ease-out forwards; /* Animation applied */
}

/* Keyframes for the fade-in and slide-up effect */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px); /* Start from below */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* End at the normal position */
  }
}


/* Breadcrumb Navigation */
.breadcrumb {
  background: transparent;
  padding: 10px 15px;
  display: inline-flex;
  border-radius: 5px;
}

.breadcrumb-item {
  font-size: 16px;
  font-weight: 500;
  color: #f8f9fa;
}
.breadcrumb-item a {
  color: var(--bright-green); /* Goldish color */
  transition: 0.3s;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--olive-light-green); /* Lighter gold on hover */
}

/* Active Breadcrumb */
.breadcrumb-item.active.text-primary {
  color: yellow !important; /* Replace with your preferred color */
}

/* Responsive Design */
@media (max-width: 768px) {
  .bg-breadcrumb {
      padding: 40px 0;
  }

  .bg-breadcrumb h4 {
      font-size: 28px;
  }

  .breadcrumb-item {
      font-size: 14px;
  }
}

@media (max-width: 576px) {
  .bg-breadcrumb {
      padding: 30px 0;
  }

  .bg-breadcrumb h4 {
      font-size: 24px;
  }

  .breadcrumb-item {
      font-size: 13px;
  }
}


/* Our Mission, Vision, and Values Section */
.mission-values {
  margin-top: 50px;
  display: flex;
  justify-content: space-between; /* Align boxes side by side */
  flex-wrap: wrap;
}

.mission-box {
  background: linear-gradient(135deg, #004400, #008000);
  padding: 40px;
  border-radius: 10px;
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  
  /* Add pulsing animation */
  animation: pulseUpDown 2s ease-in-out infinite; /* Infinite pulsing effect */
}

/* Pulsing animation - Up and Down Movement */
@keyframes pulseUpDown {
  0% {
      transform: translateY(0); /* Start at the normal position */
  }
  50% {
      transform: translateY(-10px); /* Move up */
  }
  100% {
      transform: translateY(0); /* Return to normal position */
  }
}

/* Hover effect */
.mission-box:hover {
  transform: translateY(-5px); /* Move up on hover */
  box-shadow: 0 12px 30px rgba(0, 255, 0, 0.4); /* Add shadow on hover */
}

.mission-box i {
  font-size: 42px;
  color: #ffcc00;
  margin-bottom: 20px;
}

.mission-box .content h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.mission-box .content p {
  color: #ffcc00;
  margin-top: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .mission-box {
      padding: 30px;
  }

  .mission-box i {
      font-size: 36px;
  }

  .mission-box .content h3 {
      font-size: 16px;
  }
}

@media (max-width: 576px) {
  .mission-box {
      padding: 20px;
  }

  .mission-box i {
      font-size: 30px;
  }

  .mission-box .content h3 {
      font-size: 14px;
  }
}

/* Default Styles for Larger Screens */
.mission-values {
  margin-top: 50px;
}

.mission-box {
  background: linear-gradient(135deg, #004400, #008000);
  padding: 40px;
  border-radius: 10px;
  position: relative;
  transition: background 0.3s ease-out, transform 0.3s ease-out, box-shadow 0.3s ease-out;
  text-align: center;
  margin-bottom: 20px;
}

.mission-box:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 255, 0, 0.4);
}

.mission-box i {
  font-size: 42px;
  color: #ffcc00;
  margin-bottom: 20px;
}

.mission-box .content h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.mission-box .content p {
  color: #ffcc00;
  margin-top: 5px;
}

/* Media Query for iPad Air and iPad Mini */
@media (max-width: 820px) {
  .mission-box {
      padding: 20px;
  }

  .mission-box i {
      font-size: 36px;
  }

  .mission-box .content h3 {
      font-size: 14px;
  }

  .mission-box .content p {
      font-size: 14px;
  }
}

/* Media Query for smaller screens (e.g., iPad Mini) */
@media (max-width: 768px) {
  .mission-box {
      padding: 25px;
  }

  .mission-box i {
      font-size: 30px;
  }

  .mission-box .content h3 {
      font-size: 14px;
  }

  .mission-box .content p {
      font-size: 12px;
  }
}

@media (max-width: 576px) {
  .mission-box {
      padding: 20px;
  }

  .mission-box i {
      font-size: 30px;
  }

  .mission-box .content h3 {
      font-size: 14px;
  }

  .mission-box .content p {
      font-size: 12px;
  }
}


/* About Start */
#about-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  /* Centered Heading */
  #about-section .about-heading {
    text-align: center;
    margin-bottom: 30px;
  }
  
#about-section .about-heading h1 {
  font-size: 36px;
  font-weight: bold;
  color: var(--pak-green);
  margin-bottom: 10px;
  opacity: 0; /* Start with opacity 0 */
  animation: bounceIn 1.5s ease-out, pulse 2s ease-in 1.5s infinite; /* Combine bounce and pulse */
}

#about-section.visible .about-heading h1 {
  opacity: 1; /* Fade in by changing opacity to 1 */
}

/* Bounce animation keyframes */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(30px); /* Start below */
  }
  50% {
    opacity: 1;
    transform: translateY(-10px); /* Slightly bounce up */
  }
  70% {
    opacity: 1;
    transform: translateY(5px); /* Bounce down */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Final position */
  }
}

/* Pulse animation keyframes */
@keyframes pulse {
  0% {
    transform: scale(1); /* Initial size */
  }
  50% {
    transform: scale(1.1); /* Slightly grow */
  }
  100% {
    transform: scale(1); /* Return to original size */
  }
}
  
  #about-section .underline-image {
    display: block;
    margin: 0 auto;
    width: 150px; /* Adjust size as needed */
  }
  
  /* Image Styling (No Overlay) */
  #about-section .image-section {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
/* About Section Main Image */
#about-section .main-image {
  width: 100%;
  max-width: 500px;
  height: 350px;
  border-radius: 10px;
  display: block;
  opacity: 0; /* Initially hidden */
  transform: translateX(-50px); /* Initially moved to the left */
  transition: opacity 1s ease-out, transform 1s ease-out; /* Smooth transition */
}

/* Add 'visible' class to show the image */
#about-section .main-image.visible {
  opacity: 1; /* Make visible */
  transform: translateX(0); /* Return to normal position */
}

/* Hover Effect */
#about-section .main-image:hover {
  transform: scale(1.05); /* Slight zoom effect */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adding shadow on hover */
}

  
  /* Text Content */
  #about-section .text-content {
    text-align: left;
  }
 /* Initial state for the paragraph */
#about-section .text-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  opacity: 0; /* Initially hidden */
  visibility: hidden; /* Initially hidden */
  transition: opacity 1s ease-out, visibility 1s ease-out; /* Smooth transition */
}

/* Visible state with fade-in effect for the paragraph */
#about-section .text-content p.visible {
  opacity: 1; /* Make it visible */
  visibility: visible; /* Make it visible */
  animation: fadeIn 2s ease-out forwards; /* Fade-in animation */
}

/* Initial state for the checklist items */
#about-section .check-list p {
  display: flex;
  align-items: left;
  font-size: 16px;
  color: #555;
  opacity: 0; /* Initially hidden */
  visibility: hidden; /* Initially hidden */
  transition: opacity 1s ease-out, visibility 1s ease-out; /* Smooth transition */
}

/* Visible state with fade-in effect for checklist items */
#about-section .check-list p.visible {
  opacity: 1; /* Make it visible */
  visibility: visible; /* Make it visible */
  animation: fadeIn 2s ease-out forwards; /* Fade-in animation */
}

/* Fade-in animation keyframes */
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden; /* Initially hidden */
  }
  100% {
    opacity: 1;
    visibility: visible; /* Make visible when fully in view */
  }
}

/* Icon styling for checklist items */
#about-section .check-list i {
  color: var(--bright-green);
  margin-right: 10px;
  font-size: 18px;
}



/* Checklist container styling */
#about-section .check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

  
  /* Read More Button */
  #about-section .btn-primary {
    background-color: var(--bright-green);
    border-color: var(--pak-green);
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 16px;
    transition: 0.3s;
    display: inline-block;
    margin-top: 15px;
  }
  
  #about-section .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: scale(1.05);
  }
  
  /* Responsive Media Queries */
  @media (max-width: 992px) {
    #about-section .main-image {
        max-width: 450px;
    }
  
    #about-section .main-image:hover {
      transform: scale(1.05); /* Slight zoom effect */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adding shadow on hover */
    }
  
    #about-section .text-content {
        text-align: left;
        margin-top: 10px;
  
    }
  
    #about-section .check-list {
        align-items: left;
    }
  
    #about-section .check-list p {
        display: flex;
        align-items: left;
        justify-content: left;
    }
  
    #about-section .check-list i {
        margin-right: 8px;
    }
  }
  
  @media (max-width: 768px) {
    #about-section .about-heading h1 {
        font-size: 28px;
    }
  
    #about-section .underline-image {
        width: 120px;
    }
  
    #about-section .main-image {
        max-width: 400px;
    }
  
    #about-section .text-content p {
      margin-top: 10px;
        font-size: 15px;
        align-items: left;
    }
  
    #about-section .check-list p {
        font-size: 14px;
        display: flex;
        align-items: left;
        justify-content: left;
    }
  
    #about-section .check-list i {
        margin-right: 8px;
    }
  
    #about-section .main-image:hover {
      transform: scale(1.05); /* Slight zoom effect */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adding shadow on hover */
    }
  }
  
  @media (max-width: 576px) {
    #about-section .about-heading h1 {
        font-size: 24px;
    }
  
    #about-section .underline-image {
        width: 100px;
    }
  
    #about-section .main-image {
        max-width: 100%;
    }
  
    #about-section .text-content {
      margin-top: 10px;
        text-align: left;
    }
  
    #about-section .check-list p {
        font-size: 13px;
        display: flex;
        align-items: left;
        justify-content: left;
    }
  
    #about-section .check-list i {
        margin-right: 8px;
    }
  
    #about-section .btn-primary {
        font-size: 14px;
        padding: 10px 20px;
    }
  
    #about-section .main-image:hover {
      transform: scale(1.05); /* Slight zoom effect */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adding shadow on hover */
    }
  }




  



/* Urgent Care Section */
.urgent-care {
  position: relative;
  width: 100%;
  height: 300px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.img-cover-container {
  width: 100%;
  height: 300px; /* or whatever height you want */
  overflow: hidden;
  position: relative;
}

.img-cover-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  transform: translate(-50%, -50%);
  
  /* Fallback if height doesn't cover the width */
  min-width: 100%;
  min-height: 100%;
}

/* Green Overlay */
.urgent-care .urgent-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(1, 52, 1, 0.7); /* Green overlay with transparency */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

/* Scrollable Icon Container */
.urgent-slider {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping */
  gap: 40px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
  animation: scrollLeft 30s linear infinite;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-width: max-content; /* Ensures it fits all child elements */
}



/* Hide scrollbar for Chrome, Safari */
.urgent-slider::-webkit-scrollbar {
  display: none;
}

/* Scrolling Animation */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-30%);
  }
}

/* Icon Box */
.urgent-box {
  flex: 0 0 auto;
  display: flex; /* Use flexbox */
  align-items: center; /* Align content vertically */
  padding: 15px;
  border-radius: 10px;
  min-width: 300px;
  height: 150px; /* Adjusted height for better layout */
  transition: 0.3s;
}


/* Icon Image (Now on Right Side) */
.urgent-box img {
  width: 150px;
  height: 150px;
  margin-left: 15px; /* Space between text and icon */
}

/* Icon Text (Now on Left Side) */
.urgent-box p {
  font-size: 36px;
  font-weight: bold;
  color: white;
  margin: 0;
  text-align: right; /* Align text to the right */
}

/* Responsive Design */
@media (max-width: 768px) {
  .urgent-care {
    height: auto;
    padding: 50px 20px;
  }

  .urgent-box {
    min-width: 200px;
    height: 80px;
  }

  .urgent-box img {
    width: 40px;
    height: 40px;
    margin-left: 10px;
  }

  .urgent-box p {
    font-size: 16px;
  }
}


.footer {
  background-color: var(--pak-green);
  color: white;
  padding: 30px 0;
}

.footer h5 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer p {
  font-size: 14px;
}

.footer .footer-links {
  list-style: none;
  padding-left: 0;
}


.footer h5{
  color: yellow;
  font-weight: 600;
}

.footer .footer-links li {
  margin: 10px 0;
}

.footer .footer-links li a {
  color: #ddd;
  text-decoration: none;
}

.footer .footer-links li a:hover {
  color: var(--bright-green);
}

.footer .social-icons {
  margin-top: 30px;
  list-style: none;
  padding-left: 0;
}

.footer .social-icons li {
  display: inline;
  margin-right: 15px;
}

.footer .social-icons li a {
  color: white;
  font-size: 20px;
}

.footer .social-icons li a:hover {
  color: var(--bright-green);
}

.footer .col-md-4 a {
  color: #fff; /* make them white */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .col-md-4 a:hover {
  color: var(--bright-green); /* hover effect */
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
}

.footer-bottom a {
  color: white; /* Makes the link white */
  text-decoration: none; /* Optional: removes underline */
}
