@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --clr-one: #ffffff;
  --clr-two: #f0f4f8;
  --clr-font: #004080;
  --clr-accent: #e63946;
  --clr-text: #333333;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}
.mob-btn{
  display: none;
}
button {
  cursor: pointer;
}

i {
  cursor: pointer;
}


/* ================= Top Header Bar =================== */
.top-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0.3rem 1rem;
  background-color: var(--clr-one);
  color: var(--clr-font);
  font-size: 0.9rem;
  border-bottom: 1px solid #ccc;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  margin: 0;
}

.top-header .header-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-header .header-item i {
  color: var(--clr-font);
}

.top-header a {
  text-decoration: none;
  color: var(--clr-font);
}

/* ================= Navigation Bar =================== */


.nav__bar {
        box-shadow: 0 4px 8px rgba(128, 128, 128, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;

  height: 6.5rem;
  background: var(--clr-one);
  padding: 2.5rem 1rem;
  height: 6rem;
  position: fixed;
  top: 2rem;
  z-index: 999;
}

.nav__bar .logo {
  margin-left: 3rem;
  display: flex;
  align-items: center;
  height: 100%;
}


.nav__bar .logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0;
  padding: 0;
}


.nav__bar ul {
  margin-top: 0;
  display: flex;
  list-style: none;
  gap: 2rem;
}

ul li a {
  color: var(--clr-font);
  text-decoration: none;
}

hr {
  display: none;

}

body {
  padding-top: calc(2.8rem + 4.2rem);
}



.nav__bar ul li a {
  color: var(--clr-font);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav__bar ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--clr-accent);
  transition: width 0.3s ease-in-out;
}

.nav__bar ul li a:hover::after {
  width: 100%;
}

.nav__bar ul li a:hover {
  color: var(--clr-accent);
}

.logo {
  text-decoration: none;
  color: inherit;
}

.logo h2 {
  margin: 0;
  font-size: 1.8rem;
}

.logo__rafiqa {
  color: #000;
}

.logo__medical {
  color: #000;
}

.logo__center {
  color: #000;
}

.logo h2 span {
  margin-right: 5px;
  font-weight: 700;
}



/* -------------------------------------- */
.home {
  background: var(--clr-two);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 2rem 8rem;
}

.appointment-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--clr-font);
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 9999;
  position: relative;
  
}

.appointment-btn i {
  font-size: 1.1rem;
}

.appointment-btn:hover {
  background-color: var(--clr-accent);
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.home .home__first {
  padding-top: 2rem;
  height: 10rem;
  margin: 1rem;
}

.home .home__first h2 {
  color: var(--clr-font);
  font-size: 2.2em;
}

.home .home__first button {
  margin-top: 1rem;
  padding: 0.3rem 0.9rem;
  background: transparent;
  margin: 2rem 0;
}

.home .home__first button:hover {
  transform: scale(1.05);
  ;
  background: var(--clr-font);
  color: var(--clr-one);
}

.home .home__second img {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.home-video {
  width: 100%;
  max-width: 600px auto;
  height: auto;
  margin: auto;
  display: block;
  object-fit: cover;
  border-radius: 1rem;
}

/* --------------------------------------- */
.service__title {
  text-align: center;
  margin-top: 2rem;
}

.service__title h2 {
  font-size: 2.5rem;
  color: var(--clr-font);
}

.service__title span {
  color: var(--clr-text);
}

.service {
  background: var(--clr-one);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 6rem 3rem;
  text-align: center;
  gap: 2rem;
}

.service__item {
  text-decoration: none;
  border: 2px solid var(--clr-font);
  border-radius: 0.5rem;
  padding: 2rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

.service__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service__item i {
  font-size: 3em;
  color: var(--clr-font);
  margin-bottom: 1rem;
}

.service__item h2 {
  font-size: 1.3em;
  color: var(--clr-text);
}

/* ------------------------------------- */
.about__page {
  background: var(--clr-two);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 8rem;
  text-align: left;
  gap: 1rem;
}

.about__page .about__one,
.about__page .about__two,
.about__page .about__three,
.about__page .about__four,
.about__page .about__five,
.about__page .about__six {
  border: 2px solid var(--clr-font);
  padding-left: 2rem;
  border-radius: 0.3rem;
}

.about__page .about__one i,
.about__page .about__two i,
.about__page .about__three i,
.about__page .about__four i,
.about__page .about__five i,
.about__page .about__six i {
  color: var(--clr-font);
  font-size: 3em;
  padding: 2rem 2rem 1rem 2rem;
}

.about__page .about__one h2,
.about__page .about__two h2,
.about__page .about__three h2,
.about__page .about__four h2,
.about__page .about__five h2,
.about__page .about__six h2 {
  padding-bottom: 1rem;
}

.about__page .about__one p,
.about__page .about__two p,
.about__page .about__three p,
.about__page .about__four p,
.about__page .about__five p,
.about__page .about__six p {
  color: var(--clr-text);
}

.about__page .about__one button,
.about__page .about__two button,
.about__page .about__three button,
.about__page .about__four button,
.about__page .about__five button,
.about__page .about__six button {
  padding: 0.6rem 1.9rem;
  border: 2px solid var(--clr-font);
  border-radius: 0.5rem;
  background: var(--clr-font);
  margin: 1rem 0;
  color: var(--clr-one);
}

/* ------------------------------------------ */
.about__top {
  background-color: var(--clr-one);
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.about__second h2 {
  font-size: 2.5em;
  color: var(--clr-font);
  margin-bottom: 1.5rem;
}

.about__second h2 span {
  color: var(--clr-font);
}


.about {
  display: flex;
  flex-wrap: wrap;
  padding: 5rem 8rem;
  gap: 2rem;
  background-color: var(--clr-one);
  align-items: center;
  justify-content: center;
}

.about__first {
  flex: 1 1 40%;
  text-align: center;
}

.about__first img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about__second {
  flex: 1 1 50%;
  padding: 1rem;
}

.about__second h2 {
  color: var(--clr-font);
  font-size: 2em;
  margin-bottom: 1rem;
}

.about__second p {
  color: var(--clr-text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about__second i {
  margin-right: 0.5rem;
  color: var(--clr-font);
}

.learn-more-btn {
  display: inline-block;
  padding: 0.6rem 1.9rem;
  background-color: var(--clr-font);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
  margin-top: 1.5rem;
}

.learn-more-btn:hover {
  background-color: var(--clr-accent);
}


/*---------------------------------------------- */

.doctor {
  background: var(--clr-two);
  padding: 2rem 5vw;
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: stretch;
}

.doctor__title h2 {
  background: var(--clr-two);
  text-align: center;
  font-size: 2.8em;
  padding: 1rem 0;
  margin: 0;
  border: none;
  outline: none;
  box-shadow: none;
  line-height: 1.2;
}



.doctor__title h2 span {
  color: var(--clr-font);
}

.doctor>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
}


.doctor>div:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.doctor img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--clr-font);
  margin-bottom: 1rem;
}

.doctor h2 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: var(--clr-font);
  text-align: center;
}

.doctor p {
  font-size: 0.95rem;
  color: var(--clr-text);
  margin: 0.3rem 0;
  text-align: center;
}

.doctor__schedule {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  width: 100%;
  color: var(--clr-font);
}

.doctor__schedule i {
  font-size: 1.3rem;
  padding: 0.5rem;
  border: 2px solid var(--clr-font);
  border-radius: 0.5rem;
  margin-top: 0.3rem;
}

.schedule__text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--clr-text);
  text-align: left;
}

.view-profile-btn {
  margin-top: auto;
  background-color: var(--clr-font);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}


.view-profile-btn:hover {
  background-color: var(--clr-accent);
}

/* -------------------------------------------- */
.book {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem 8rem;
}

.book__title h2 {
  text-align: center;
  font-size: 3em;
  padding: 3rem 0 6rem 0;
}

.book__title span {
  color: var(--clr-font);
}

.book .book__first img {
  width: 300px;
  height: 300px;
}

.book .book__second {
  border: 2px solid var(--clr-font);
}

.book .book__second h2 {
  text-align: center;
  font-size: 2em;
  padding: 2rem 0;
}

.book .book__second input {
  display: block;
  border: 2px solid var(--clr-font);
  color: var(--clr-font);
  padding: 0.8rem 1rem;
  margin: 0.4rem 1rem;
  width: 94%;
}

.book .book__second button {
  padding: 0.6rem 1.9rem;
  border: 2px solid var(--clr-font);
  border-radius: 0.5rem;
  background: transparent;
  margin: 1rem 0;
  margin: 1rem 13rem;
}

.book .book__second button a {
  color: var(--clr-font);
  text-decoration: none;
}

.book .book__second button:hover {
  background: var(--clr-font);
  color: var(--clr-one);
}

/* --------------------------------------------- */
.bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 5rem 8rem;
  background: var(--clr-two);
}

.bottom .bottom__one h2,
.bottom .bottom__two h2,
.bottom .bottom__three h2,
.bottom .bottom__four h2 {
  padding-bottom: 1rem;
}

.bottom .bottom__one ul,
.bottom .bottom__two ul,
.bottom .bottom__three ul,
.bottom .bottom__four ul {
  list-style: none;
}

.bottom .bottom__one ul li a span,
.bottom .bottom__two ul li a span,
.bottom .bottom__three ul li a span,
.bottom .bottom__four ul li a span {
  color: var(--clr-text);
  padding-left: 1rem;
}

footer p {
  text-align: center;
  background: var(--clr-two);
}

/* ----------------------------------------------- */
#menu__btn {
  color: var(--clr-font);
  font-size: 1.7em;
  cursor: pointer;
  display: none;
}


@media (max-width: 830px) {
  body {
    overflow-x: hidden;
  }

  #menu__btn {
    display: initial;
  }

  .nav__bar .navbar {
    position: absolute;
    top: 100%;
    right: 0rem;
    border-radius: 0.5rem;
    width: 30rem;
    background: var(--clr-one);
    display: inline;
    text-align: center;
    padding-top: 2rem;
    border: 2px solid var(--clr-font);
    transform: scale(0);
    opacity: 0;
    transition: none;
    transform-origin: top right;

  }

  .nav__bar .navbar.active {
    transform: scale(1);
    opacity: 1;
    transform-origin: 0.2s ease-out;
    width: 175px;
  }

  .nav__bar ul li {
    padding-bottom: 1.5rem;
  }

  .nav__bar ul {
    display: none;
  }

  .home .home__first {
    padding-top: 0;
  }

  .home .home__first h2 {
    font-size: 1.5em;
  }

  .home .home__first p {
    font-size: 1em;
  }

  .home .home__second img {
    width: 300px;
    height: 300px;
  }

  .about .about__second h2 {
    font-size: 1.4em;
  }

  .about__page .about__one h2,
  .about__page .about__two h2,
  .about__page .about__three h2,
  .about__page .about__four h2,
  .about__page .about__five h2,
  .about__page .about__six h2 {
    font-size: 1em;
  }

  .about .about__first img {
    width: 300px;
    height: 300px;
  }

  .book {
    padding: 1rem 4rem;
  }

  .bottom .bottom__one h2,
  .bottom .bottom__two h2,
  .bottom .bottom__three h2,
  .bottom .bottom__four h2 {
    font-size: 1em;
  }

  .bottom {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
}


@media (max-width: 750px) {
  .about__page {
    grid-template-columns: repeat(2, 1fr);
  }

  .doctor {
    grid-template-columns: repeat(2, 1fr);
  }

  .book {
    grid-template-columns: repeat(1, 1fr);
  }

  .book .book__first img {
    margin-left: 8rem;
  }

  .about {
    grid-template-columns: repeat(1, 1fr);
  }



  .service {
    grid-template-columns: repeat(2, 1fr);
  }

  .home {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 580px) {
  body {
    overflow-x: hidden;
  }

  .home {
    padding: 4rem 2rem;
  }

  .home .home__first p,
  .about .about__second p {
    width: 94%;
  }

  .service {
    grid-template-columns: repeat(1, 1fr);
    padding: 4rem 2rem;
  }

  .about__page,
  .about,
  .doctor,
  .book,
  .bottom {
    padding: 4rem 0rem;
  }

  .book .book__first img {
    margin-left: 0;
  }

  .about__page {
    grid-template-columns: repeat(1, 1fr);
  }

  .doctor {
    grid-template-columns: repeat(1, 1fr);
  }

  .book .book__second button {
    margin: 1rem 10rem;
  }
}


.whatsapp-contact {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 999;
  text-decoration: none;
}

.whatsapp-contact:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-contact i {
  font-size: 1.4rem;
}

/* ----------------------------------------------- */
/* about page inside  */
/* About Section */
#Aboutpage {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.about__toppage h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #222;
}

.about__toppage h2 span {
  color: #007bff;
}

.about__contentpage {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about__imagepage {
  flex: 1 1 40%;
  text-align: center;
}

.about__imagepage img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about__textpage {
  flex: 1 1 55%;
}

.about__textpage h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.about__textpage p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}

.about__textpage ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.about__textpage ul li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .about__content {
    flex-direction: column;
    text-align: center;
  }

  .about__textpage {
    padding: 0 1rem;
  }
}


/*--------------------------------------------------- */
#Location {
  padding: 4rem 2rem;
  background-color: #eef5f9;
  text-align: center;
}

.map__header h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.map__header h2 span {
  color: #007bff;
}

.map__header p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.map__container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow: hidden;
}

/* Responsive Map */
@media screen and (max-width: 768px) {
  .map__container iframe {
    height: 300px;
  }
}


/* ---------------------- RESPONSIVE STYLING ---------------------- */

/* Tablet */
@media (max-width: 992px) {
  .navbar ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .home,
  .about,
  .service,
  .doctor,
  .contact {
    flex-direction: column;
    gap: 2rem;
  }
 

  .service__one,
  .doctor__one {
    width: 100%;
    text-align: center;
  }

  .doctor__one img {
    width: 60%;
    height: auto;
  }

  .doctor__one button {
    width: 70%;
    margin-top: 1rem;
  }

  .contact__second form {
    gap: 1rem;
  }

  .contact__second input,
  .contact__second textarea {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .navbar ul {
    flex-direction: column;
    padding-left: 0;
    gap: 1rem;
  }

  .home h2,
  .about__second h2,
  .doctor__title h2,
  .service__top h2,
  .contact__top h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .home p,
  .about__second p,
  .doctor__one p {
    font-size: 1rem;
    text-align: center;
  }

  .home__first,
  .about__first,
  .contact__first {
    width: 100%;
    text-align: center;
  }

  .about img,
  .service__one img,
  .doctor__one img {
    width: 70%;
    height: auto;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__left,
  .footer__right {
    width: 100%;
  }

  .contact__first iframe {
    width: 100%;
    height: 250px;
  }

  .doctor {
    gap: 2rem;
  }

  .doctor__one {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}






/* --------------------------viewdoctorone.html------------------- */
/* Doctor Profile Styles */
.doctor-profile {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.profile-card {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 2rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 2rem;
  flex-wrap: wrap;
}

.profile-image {
  flex: 1 1 300px;
  text-align: center;
}

.profile-image img {
  max-width: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

.profile-details {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-details h2 {
  font-size: 2rem;
  color: var(--clr-font, #333);
  margin-bottom: 0.5rem;
}

.profile-details .qualifications {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
}

.profile-details .bio {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.5rem;
}

.profile-details .timing {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #333;
}

.doctor-timetable {
  margin-top: 1rem;
}

.doctor-timetable h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1b9c85;
}

.doctor-timetable table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fefefe;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  overflow: hidden;
}

.doctor-timetable th,
.doctor-timetable td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: #333;
}

.doctor-timetable th {
  background-color: #e1f0da;
  font-weight: 600;
  color: #1b9c85;
}

.doctor-timetable tbody tr:last-child td {
  border-bottom: none;
}

.doctor-timetable td em {
  color: #999;
  font-style: italic;
}





/* Responsive */
@media (max-width: 768px) {
  .profile-card {
    flex-direction: column;
    padding: 1.5rem;
  }

  .profile-details h2 {
    font-size: 1.5rem;
  }

  .profile-details .bio,
  .profile-details .qualifications,
  .profile-details .timing {
    font-size: 0.95rem;
  }
}









/* --------------------------medicalsp.html------------------- */
/* Medical Specialists Section */
#MedicalSpecialists {
  padding: 60px 10%;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.specialist__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.specialist__image {
  flex: 1;
  min-width: 300px;
}

.specialist__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.specialist__content {
  flex: 2;
  min-width: 300px;
}

.specialist__content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;

}

.specialist__content h2 span {
  color: #0077cc;

}

.specialist__content h3 {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #444;
  border-left: 4px solid #0077cc;
  padding-left: 10px;
}

.specialist__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.specialist__content ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #444;
}

.specialist__content ul li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .specialist__container {
    flex-direction: column;
    gap: 30px;
  }

  .specialist__content h2 {
    font-size: 1.8rem;
  }
}


/* --------------------------childsp.html------------------- */
/* Child Specialists Section */
#ChildSpecialists {
  padding: 60px 10%;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.child__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.child__image {
  flex: 1;
  min-width: 300px;
}

.child__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.child__content {
  flex: 2;
  min-width: 300px;
}

.child__content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
}

.child__content h2 span {
  color: #e36f0c;
}


.child__content h3 {
  margin-top: 25px;
  font-size: 1.4rem;
  color: #444;
  border-left: 4px solid #e36f0c;
  padding-left: 10px;
}

.child__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.child__content ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #444;
  font-size: 1rem;
}

.child__content ul li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .child__container {
    flex-direction: column;
    gap: 30px;
  }

  .child__content h2 {
    font-size: 1.8rem;
  }

  .child__content h3 {
    font-size: 1.2rem;
  }
}



/* --------------------------neonatology and nursery ------------------- */
/* Neonatology Section */
#Neonatology {
  padding: 60px 10%;
  background-color: #fefefe;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 1px solid #eeeeee;
}

.neonatology__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.neonatology__image {
  flex: 1;
  min-width: 300px;
}

.neonatology__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.neonatology__content {
  flex: 2;
  min-width: 300px;
}

.neonatology__content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
}

.neonatology__content h2 span {
  color: #b35bc7;
}

.neonatology__content h3 {
  margin-top: 25px;
  font-size: 1.4rem;
  color: #444;
  border-left: 4px solid #b35bc7;
  padding-left: 10px;
}

.neonatology__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.neonatology__content ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #444;
  font-size: 1rem;
}

.neonatology__content ul li {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .neonatology__container {
    flex-direction: column;
    gap: 30px;
  }

  .neonatology__content h2 {
    font-size: 1.8rem;
  }

  .neonatology__content h3 {
    font-size: 1.2rem;
  }
}



/* --------------------------laparoscopic and general surgery------------------- */
/* Laparoscopic and General Surgery Section */
#Surgery {
  padding: 60px 10%;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 1px solid #eeeeee;
}

.surgery__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.surgery__image {
  flex: 1;
  min-width: 300px;
}

.surgery__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.surgery__content {
  flex: 2;
  min-width: 300px;
}

.surgery__content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
}

.surgery__content h2 span {
  color: #1f9b85;
}

.surgery__content h3 {
  margin-top: 25px;
  font-size: 1.4rem;
  color: #444;
  border-left: 4px solid #1f9b85;
  padding-left: 10px;
}

.surgery__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.surgery__content ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #444;
  font-size: 1rem;
}

.surgery__content ul li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .surgery__container {
    flex-direction: column;
    gap: 30px;
  }

  .surgery__content h2 {
    font-size: 1.8rem;
  }

  .surgery__content h3 {
    font-size: 1.2rem;
  }
}

.surgery__image img+.secondary-image {
  margin-top: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: auto;
}




/* --------------------------gynae&obstetrics------------------- */
/* Gynecology & Obstetrics Section */
#Gynecology {
  padding: 60px 10%;
  background-color: #fefefe;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 1px solid #eeeeee;
}

.gyne__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.gyne__image {
  flex: 1;
  min-width: 300px;
}

.gyne__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.gyne__content {
  flex: 2;
  min-width: 300px;
}

.gyne__content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
}

.gyne__content h2 span {
  color: #c85187;
}

.gyne__content h3 {
  margin-top: 25px;
  font-size: 1.4rem;
  color: #444;
  border-left: 4px solid #c85187;
  padding-left: 10px;
}

.gyne__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.gyne__content ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #444;
  font-size: 1rem;
}

.gyne__content ul li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .gyne__container {
    flex-direction: column;
    gap: 30px;
  }

  .gyne__content h2 {
    font-size: 1.8rem;
  }

  .gyne__content h3 {
    font-size: 1.2rem;
  }
}

/* ----------------------------- Radiology ----------------------------- */
#Radiology {
  padding: 60px 10%;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 1px solid #eeeeee;
}

.radiology__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.radiology__image {
  flex: 1;
  min-width: 300px;
}

.radiology__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.radiology__content {
  flex: 2;
  min-width: 300px;
}

.radiology__content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
}

.radiology__content h2 span {
  color: #1f9b85;
}

.radiology__content h3 {
  margin-top: 25px;
  font-size: 1.4rem;
  color: #444;
  border-left: 4px solid #1f9b85;
  padding-left: 10px;
}

.radiology__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.radiology__content ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #444;
  font-size: 1rem;
}

.radiology__content ul li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .radiology__container {
    flex-direction: column;
    gap: 30px;
  }

  .radiology__content h2 {
    font-size: 1.8rem;
  }

  .radiology__content h3 {
    font-size: 1.2rem;
  }
}



/* --------------------------pharmacy------------------- */
/* ----------------------------- Pharmacy ----------------------------- */
#Pharmacy {
  padding: 60px 10%;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 1px solid #eeeeee;
}

.pharmacy__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.pharmacy__image {
  flex: 1;
  min-width: 300px;
}

.pharmacy__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pharmacy__content {
  flex: 2;
  min-width: 300px;
}

.pharmacy__content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
}

.pharmacy__content h2 span {
  color: #1f9b85;
}

.pharmacy__content h3 {
  margin-top: 25px;
  font-size: 1.4rem;
  color: #444;
  border-left: 4px solid #1f9b85;
  padding-left: 10px;
}

.pharmacy__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.pharmacy__content ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #444;
  font-size: 1rem;
}

.pharmacy__content ul li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .pharmacy__container {
    flex-direction: column;
    gap: 30px;
  }

  .pharmacy__content h2 {
    font-size: 1.8rem;
  }

  .pharmacy__content h3 {
    font-size: 1.2rem;
  }
}


/* --------------------------laboratory------------------- */
/* ----------------------------- Laboratory ----------------------------- */
#Laboratory {
  padding: 60px 10%;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 1px solid #eeeeee;
}

.laboratory__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.laboratory__image {
  flex: 1;
  min-width: 300px;
}

.laboratory__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.laboratory__content {
  flex: 2;
  min-width: 300px;
}

.laboratory__content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
}

.laboratory__content h2 span {
  color: #1f9b85;
}

.laboratory__content h3 {
  margin-top: 25px;
  font-size: 1.4rem;
  color: #444;
  border-left: 4px solid #1f9b85;
  padding-left: 10px;
}

.laboratory__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.laboratory__content ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #444;
  font-size: 1rem;
}

.laboratory__content ul li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .laboratory__container {
    flex-direction: column;
    gap: 30px;
  }

  .laboratory__content h2 {
    font-size: 1.8rem;
  }

  .laboratory__content h3 {
    font-size: 1.2rem;
  }
}

/* --------------------------Medical Equipment Section------------------- */
/* ------------------ Modern Equipment Section ------------------ */
#Equipment {
  padding: 60px 8%;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.equipment__top h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #333;
}

.equipment__top h2 span {
  color: var(--clr-font);
}

.equipment__top p {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

/* Equipment Row Layout */
.equipment__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  text-align: left;
}

.equipment__row.reverse {
  flex-direction: row-reverse;
}

.equipment__image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.equipment__info {
  flex: 1;
}

.equipment__info h3 {
  font-size: 1.6rem;
  color: var(--clr-font);
  margin-bottom: 15px;
}

.equipment__info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {

  .equipment__row,
  .equipment__row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .equipment__image img {
    max-width: 100%;
  }

  .equipment__info {
    margin-top: 20px;
  }
}


/* --------------------------Bed Facility Section------------------- */
#BedFacility {
  padding: 60px 10%;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 1px solid #eeeeee;
}

.bed__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.bed__images {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bed__images img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.bed__content {
  flex: 2;
  min-width: 300px;
}

.bed__content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
}

.bed__content h2 span {
  color: #1f9b85;
}

.bed__content h3 {
  margin-top: 25px;
  font-size: 1.4rem;
  color: #444;
  border-left: 4px solid #1f9b85;
  padding-left: 10px;
}

.bed__content p,
.bed__content ul {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.bed__content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.bed__content ul li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .bed__container {
    flex-direction: column;
    gap: 30px;
  }

  .bed__images {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .bed__images img {
    flex: 1 1 calc(50% - 10px);
  }

  .bed__content h2 {
    font-size: 1.8rem;
  }

  .bed__content h3 {
    font-size: 1.2rem;
  }
}

html {
  scroll-behavior: smooth;
}







/* === Responsive Design for Mobile === */
@media (max-width: 768px) {

  /* Make sections stack vertically */
  .about,
  .service,
  .equipment__container,
  .doctor__card__container,
  .footer__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Images should scale */
  .about__first img,
  .equipment__image img,
  .doctor__card img {
    width: 90%;
    height: auto;
  }

  /* Equipment and doctor cards */
  .equipment__card,
  .doctor__card {
    width: 90%;
    margin: 1rem auto;
  }

  /* Navbar stack */
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .nav__bar {
    flex-direction: column;
    align-items: center;
  }

  .logo img {
    max-width: 120px;
  }

  /* Hero section */
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* Reduce font size in cards */
  .doctor__card h3 {
    font-size: 1.1rem;
  }

  .doctor__card p {
    font-size: 0.95rem;
  }

  /* Footer adjustments */
  .footer__content {
    gap: 2rem;
  }

  .footer__content div {
    width: 90%;
  }
}

@media (max-width: 480px) {

  /* Even smaller devices (phones) */
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p,
  .doctor__card p {
    font-size: 0.85rem;
  }

  .equipment__card h3 {
    font-size: 1rem;
  }

  .equipment__card p {
    font-size: 0.9rem;
  }
}




/* === MOBILE FIX PATCH === */
@media only screen and (max-width: 768px) {
  header h1 {
    font-size: 24px !important;
  }

  header h2 {
    font-size: 16px !important;
  }

  .appointment-button {
    padding: 10px 20px !important;
    font-size: 16px !important;
    display: block;
    margin: 15px auto !important;
  }

  .video-container {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    overflow: hidden !important;
  }

  .video-container video {
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  section,
  .about-section,
  .department-section,
  .services-section {
    padding: 15px !important;
  }

  .service-cards {
    flex-direction: column !important;
    align-items: center !important;
  }

  .service-card {
    width: 90% !important;
    margin-bottom: 20px !important;
  }

  img{
    max-width: 100% !important;
    height: auto !important;
  }

  video {
    max-width: 100% !important;
    height: auto !important;
    margin-top: 15rem !important;
    width: 100% !important;
    border-radius: 10px !important; 
    display: block !important;
  }



}

@media (max-width: 768px) {
  .video-container {
    flex-direction: column !important;
    align-items: center !important;
    padding: 20px 10px;
    gap: 20px;
  }

  .video-container video {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
  }

  .welcome-text {
    text-align: center !important;
    width: 100% !important;
  }

  .welcome-text h2 {
    font-size: 20px !important;
    margin-bottom: 10px;
  }

  .welcome-text p {
    font-size: 14px !important;
    padding: 0 10px;
    line-height: 1.5;
  }

  .appointment-button {
    font-size: 14px !important;
    padding: 10px 20px;
    margin: 10px auto;
    display: block;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {

  /* Fix video + text layout */
  .video-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    padding: 15px 10px !important;
  }

  .video-container video {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
  }

  .welcome-text {
    width: 100% !important;
    text-align: center !important;
  }

  .welcome-text h2 {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }

  .welcome-text p {
    font-size: 14px !important;
    padding: 0 10px !important;
    line-height: 1.5 !important;
  }

  .appointment-button {
    font-size: 14px !important;
    padding: 10px 20px !important;
    margin: 10px auto !important;
    display: block !important;
    text-align: center !important;
  }

  /* Navbar mobile fix */
  .nav__bar {
    flex-direction: column !important;
    align-items: center !important;
  }

  .navbar {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 1rem 0 !important;
  }

  .nav__bar .navbar ul {
    display: flex !important;
    flex-direction: column !important;
    padding-left: 0 !important;
    gap: 1rem !important;
  }

  .logo img {
    max-width: 120px !important;
  }
}

@media only screen and (max-width: 768px) {

  /* Header top spacing */
  .top-header {
    padding: 10px 15px !important;
    display: none !important;
    flex-direction: column !important;
    gap: 8px !important;
    align-items: center !important;
    font-size: 14px !important;
  }

  .top-header i {
    margin-right: 5px !important;
  }

  /* Appointment button full-width */
  .appointment-button {
    display: block !important;
    width: 90% !important;
    margin: 10px auto !important;
    font-size: 14px !important;
    padding: 12px !important;
    border-radius: 8px !important;
    text-align: center !important;
  }

  /* Welcome text layout */
  .video-container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 15px 10px !important;
  }

  .welcome-text {
    width: 100% !important;
    text-align: center !important;
    padding: 0 10px !important;
  }

  .welcome-text h2 {
    font-size: 22px !important;
    margin-bottom: 10px !important;
  }

  .welcome-text p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  /* Remove random icons (like hamburger if accidental) */
  .welcome-text i,
  .video-container i {
    display: none !important;
  }

  /* Image styling */
  .video-container video,
  .video-container img {
    width: 100% !important;
    height: auto !important;
    border-radius: 10px !important;
  }

  /* Services Section Title */
  h2,
  h3,
  .section-title {
    text-align: center !important;
    padding: 0 10px !important;
  }
}

@media only screen and (max-width: 768px) {

  /* Fix logo placement */
  .logo-container,
  .site-logo,
  .header-logo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    padding: 10px 0 !important;
  }

  .logo-container img,
  .site-logo img,
  .header-logo img {
    max-width: 150px !important;
    height: auto !important;
    margin: 0 auto 10px auto !important;
    display: block !important;
    position: static !important;
  }
}

@media only screen and (max-width: 768px) {

  /* Fix nav bar layout */
  .nav__bar {
    display: flex;
    box-shadow: none;
    flex-direction: column;
    padding: 10px 0;
    position: absolute;
    z-index: 10;
    height: 65px;
    padding-top: 0px;
  }

  .appointment-btn {
    display: none !important;
  }

  .mob-btn {
    margin-top: 1rem;
    display: block;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--clr-font);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }

  .mob-btn i {
    font-size: 1.1rem;
  }

  .mon-btn:hover {
    background-color: var(--clr-accent);
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }

  /* Center and resize logo */
  .nav__bar .logo img {
    margin-right: 22rem;
    max-height: 60px;
    height: auto;
    width: auto;
    margin-bottom: 10px;
    display: block;
  }

  /* Stack nav links vertically */
  .nav__bar .navbar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin: 10px 0;
    padding: 0;
  }

  /* Resize and center appointment button */
  .nav__bar .appointment-btn {
    display: inline-block;
    font-size: 14px;
    padding: 4px 8px;
    margin-bottom: 20rem;
    text-align: center;
    width: 15rem;
  }

  /* Position burger icon */
  #menu__btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
  }
}


/* jobs  */

.job-section {
  padding: 4rem 1rem;
  background-color: var(--clr-two);
}

.job-container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.job-container h2 {
  text-align: center;
  color: var(--clr-font);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.job-container p {
  text-align: center;
  color: var(--clr-text);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.job-form .form-group {
  margin-bottom: 1.5rem;
}

.job-form label {
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 0.5rem;
}

.job-form input,
.job-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--clr-font);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: var(--clr-accent);
}

.form-status {
  margin-top: 1rem;
  text-align: center;
  font-weight: bold;
}

/* Responsive for Jobs section */
@media screen and (max-width: 600px) {
  .job-container {
    padding: 1.5rem;
  }

  .job-container h2 {
    font-size: 1.5rem;
  }

  .job-form input,
  .job-form select {
    font-size: 0.95rem;
    padding: 0.6rem 0.8rem;
  }

  .btn-submit {
    font-size: 0.95rem;
    padding: 0.65rem;
  }
}


/* We Are Looking For Section */
.job-info-section {
  padding: 3rem 1rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

.job-info-heading {
  font-size: 2rem;
  color: var(--clr-font);
  margin-bottom: 2rem;
}

.job-cards-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.job-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  width: 300px;
  text-align: left;
  transition: transform 0.3s;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-card h3 {
  margin-bottom: 1rem;
  color: var(--clr-font);
  font-size: 1.4rem;
  border-bottom: 2px solid var(--clr-accent);
  padding-bottom: 0.5rem;
}

.job-card ul {
  list-style-type: none;
  padding: 0;
  color: var(--clr-text);
}

.job-card li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

/* Responsive for Job Info Cards */
@media screen and (max-width: 650px) {
  .job-cards-container {
    flex-direction: column;
    align-items: center;
  }

  .job-card {
    width: 90%;
  }
}



/* skin specialist code */
/* --------------------------skinsp.html------------------- */
/* Skin Specialists Section */
#SkinSpecialists {
  padding: 60px 10%;
  background-color: #fdfdfd;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.skin__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.skin__image {
  flex: 1;
  min-width: 300px;
}

.skin__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.skin__content {
  flex: 2;
  min-width: 300px;
}

.skin__content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
}

.skin__content h2 span {
  color: #e36f0c;
}

.skin__content h3 {
  margin-top: 25px;
  font-size: 1.4rem;
  color: #444;
  border-left: 4px solid #e36f0c;
  padding-left: 10px;
}

.skin__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.skin__content ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #444;
  font-size: 1rem;
}

.skin__content ul li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .skin__container {
    flex-direction: column;
    gap: 30px;
  }

  .skin__content h2 {
    font-size: 1.8rem;
  }

  .skin__content h3 {
    font-size: 1.2rem;
  }
}




















/* Hiring Section */
.hiring-section {
  background-color: #e6f0fa;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #ccc;
}

.hiring-container h2 {
  font-size: 2rem;
  color: #004a99;
  margin-bottom: 10px;
}

.hiring-container p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.apply-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.apply-btn:hover {
  background-color: #0056b3;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .hiring-container h2 {
    font-size: 1.7rem;
  }

  .hiring-container p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .apply-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}



















