@font-face {
  font-family: dm sans1;
  src: url(/font/DMSans-VariableFont_opsz\wght.ttf);
}

@font-face {
  font-family: fontthree;
  src: url(/font/SmoochSans-VariableFont_wght.ttf);
}

@font-face {
  font-family: figtree;
  src: url(/font/Figtree-VariableFont_wght.ttf);
}

@font-face {
  font-family: figtree1;
  src: url(/font/DMSans-Italic-VariableFont_opsz\wght.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  scroll-behavior: smooth;
  /* background-color: #ffffff; */
}

.main {
  width: 100%;
  height: 100%;
  /* background-color: #000000; */
}

nav {
  position: sticky;
  top: 0;
  height: 13vh;
  width: 100%;
  /* padding: 0rem 5rem; */
  background-color: #07342f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 0.1px solid #f7a58236;
  z-index: 1000;
}

nav img {
  height: 10vh;
  max-width: 100%;
  object-fit: cover;
  /* margin-right: 6px; */
  /* background-color: #ffffff; */
}

.nav_div {
  background-color: #07342f;
  height: 10vh;
  max-width: 1300px; /* Keeps it centered and responsive */
  width: 100%;
  display: flex;
  justify-content: space-between; /* Spread logo, menu, and button */
  align-items: center;
  padding: 0 0rem; /* Add horizontal spacing inside the nav */
}

.manu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1rem;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: center; /* Keep menu centered between logo and button */
}

.manu a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-family: figtree;
  font-weight: 500;
}

.manu a:hover {
  color: #f7a582;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.icons {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.icons button {
  width: 12.5rem;
  height: 5vh;
  padding: 10px 0px 10px 0px;
  font-family: figtree;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 0.5rem; */
  color: #f7a582;
  border: none;
  border-radius: 3.25rem;
  border: 2px solid #f7a582;
  background-color: #07342f;
  /* margin-left: 100px; */
}

.icons button:hover {
  background-color: #ffffff;
  color: #07342f;
  border: none;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.icons button i {
  font-size: 1.5rem;
  margin: 10px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #115e55;
  top: 100%;
  left: 0;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  flex-direction: column;
}

.dropdown-content a {
  padding: 0.6rem 1rem;
  color: white;
  display: block;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #0d4c44;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Nested dropdown setup */
.dropdown-sub {
  position: relative;
}

.dropdown-sub-content {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #0e4e45;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 15;
}

.dropdown-sub-content a {
  padding: 0.6rem 1rem;
  color: white;
  display: block;
  white-space: nowrap;
}

.dropdown-sub-content a:hover {
  background-color: #0a3b35;
}

/* Show sub-dropdown on hover */
.dropdown-sub:hover .dropdown-sub-content {
  display: block;
}

/* Hide hamburger by default */
.menu-toggle {
  display: none;
  font-size: 2.5rem;
  color: #ffffff;
  cursor: pointer;
}


/* Responsive for tablets and mobile */
@media (max-width: 1242px) {
  .menu-toggle {
    display: block;
  }

  .manu {
    position: absolute;
    top: 13vh;
    left: 0;
    width: 100%;
    background-color: #07342f;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    display: none;
    z-index: 999;
  }

  .manu.active {
    display: flex;
  }

  .icons {
    display: none;
  }

  .nav_div {
    position: relative;
  }
}

.oralcancer_title {
  height: 25vh;
  width: 100%;
  background-image: url("../img/26358.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.servisec_menubar {
  width: 100%;
  max-width: 1300px;
  height: auto;
  color: #0b4f47;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  text-align: center;
}

.servisec_menubar h1 {
  font-size: 4rem;
  font-family: figtree;
}

.servisec_menubar p {
  font-family: figtree;
  font-size: 1rem;
}

.blog {
  width: 100%;
  background-color: #d8d5d4;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.blog_cont {
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
  box-sizing: border-box;
  justify-content: center;
}

.blog_item {
  background-color: #fff;
  width: calc(33.333% - 20px);
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: 0.3s ease;
}

.blog_item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog_item a {
  margin-top: 10px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  font-family: figtree, sans-serif;
}

.blog_item p {
  margin: 10px 0;
  color: #666;
  font-family: figtree, sans-serif;
}

.blog_item button {
  padding: 8px 12px;
  background-color: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: figtree, sans-serif;
}

.blog_item button:hover {
  color: #f0a784;
  background-color: #07342f;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* For tablets (2 items per row) */
@media screen and (max-width: 992px) {
  .blog_item {
    width: calc(50% - 20px);
  }
}

/* For mobile (1 item per row) */
@media screen and (max-width: 600px) {
  .blog_item {
    width: 100%;
  }

  .blog_cont {
    padding: 0 10px;
  }
}


.contectUS {
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(/img/hcg.hospital.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: "Figtree", sans-serif;
  /* padding: 40px 20px; */
}

.color_div {
  width: 100%;
  background-color: #07342fd9;
  display: flex;
  flex-wrap: wrap; /* Makes it responsive */
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
}

.why,
.form {
  border-radius: 15px;
  /* padding: 20px  ; */
  width: 100%;
  max-width: 640px;
}

.why {
  background-color: transparent;
  color: #f0a784;
}

.why h2 {
  font-size: 1.5rem;
  padding-bottom: 10px;
}

.why h1 {
  font-size: 2rem;
  padding-bottom: 10px;
}

.why p {
  padding-bottom: 20px;
}

.why_con {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.why_con i {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form {
  background-color: #d8d5d4;
  color: #07342f;
  /* padding: 20px; */
}

.form h2 {
  font-size: 2rem;
  padding-bottom: 10px;
  padding: 20px;
}

.form p {
  font-size: 1.1rem;
  padding-bottom: 20px;
  padding: 20px;
}

.form input,
.Message textarea {
  font-size: 1.1rem;
  width: 90%;
  padding: 15px;
  margin: 10px 0 20px 0;
  border-radius: 5px;
  border: none;
}

.form_input {
  width: 100%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  /* margin-left: 12px; */
}

form {
  padding: 20px;
}

.first_name,
.Last_name,
.form_rof,
.email,
.phone,
.Message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.Last_name input {
  width: 100%;
}
.first_name input {
  width: 100%;
}

/* 
.first_name label,
.Last_name label,
.form_rof label,
.email label,
.phone label,
.Message label{

} */

.Form_button {
  width: 100%;
  background-color: #07342f;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  flex-direction: column;
  border-radius: 5px;
}

.Form_button button {
  width: 100%;
  background-color: #0b4f47;
  padding: 15px;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  color: #f0a784;
  cursor: pointer;
}

.Form_button button:hover {
  color: #07342f;
  background-color: #f0a784;
  transition: all 0.3s ease-in-out;
}

/* ✅ Media Queries for Responsiveness */

@media (max-width: 768px) {
  .color_div {
    flex-direction: column;
    align-items: center;
  }

  .why,
  .form {
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .form_input {
    flex-direction: column;
  }

  .form input,
  .Form_button,
  .Message textarea {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .why h1 {
    font-size: 1.5rem;
  }

  .form h2 {
    font-size: 1.5rem;
  }

  .form p,
  .why p {
    font-size: 1rem;
  }

  .why_con {
    font-size: 1rem;
  }
}

.custom-marquee {
  background-color: #f0a784; /* Yellow background */
  font-size: 30px; /* Font size */
  font-weight: bold;
  font-style: Georgia; /* Font weight */
  color: #07342f; /* Text color */
  padding: 30px;
}

.footer {
  width: 100%;
  max-width: 1300px; /* Fixed max width */
  margin: 0 auto; /* Center it horizontally */
  background-color: #fef7f4;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap; /* Enable wrapping for responsiveness */
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 20px;
  font-family: "Figtree", sans-serif;
  gap: 20px;
}

.elem_div {
  flex: 1 1 220px;
  max-width: 270px;
  min-width: 220px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.elem_div h2 {
  color: #07342f;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.img-logo_div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-logo_div img {
  width: 100%;
  max-width: 230px;
  height: auto;
  object-fit: cover;
  border-color: #fef7f4;
  /* border: 10px solid #f0a784; */
  border-radius: 5px;
}

.p-footer {
  /* text-align: center; */
  font-size: 0.95rem;
  padding: 0 10px;
  color: #07342f;
  margin-left: 10px;
}

.icon-footer {
  display: flex;
  flex-direction: row;
  /* justify-content: center; */
  /* align-items: center; */
  gap: 15px;
  margin-top: 10px;
  margin-left: 15px;
}

.icon-footer a{
  text-decoration: none;
}

.icon-footer i {
  font-size: 24px;
  color: #f0a784;
  cursor: pointer;
  transition: color 0.3s;
}

.icon-footer i:hover {
  color: #07342f;
}

.arow_div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.arow_div span {
  display: flex;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #1cb1a047;
}

.arow_div i {
  font-family: "Figtree", sans-serif;
  color: #115e55;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ✅ Responsive Layout */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .elem_div {
    max-width: 100%;
    width: 100%;
    align-items: center;
  }

  .arow_div span {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 15px;
  }

  .elem_div h2 {
    font-size: 1.1rem;
  }

  .arow_div i {
    font-size: 0.95rem;
  }

  .icon-footer i {
    font-size: 22px;
  }
}

.copy {
  width: 100%;
  max-width: 1300px; /* Cap the width */
  margin: 0 auto; /* Center on page */
  padding: 20px 10px; /* Space on small screens */
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Figtree", sans-serif;
  font-size: 0.95rem;
  margin-top: 20px;
}

.copy p {
  margin: 0;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: rgba(20, 213, 191, 0.8);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: difference;
}
