:root {
  /* Font sizes using clamp(min, preferred, max) */

  --fs-h1: clamp(28px, 5vw, 52px);
  --fs-h2: clamp(24px, 4vw, 42px);
  --fs-h3: clamp(20px, 3vw, 28px);
  --fs-h4: clamp(18px, 2.5vw, 22px);
  --fs-p: clamp(14px, 2vw, 20px);
  --primary-color: #ffffff;
  --secondry-color: #000000;
  --gray-color: rgb(93, 106, 133);
  --dark-blue: rgb(22, 33, 91);
  --blue-dark: #005fa3;
  --blue-mid: #0082c8;
  --blue-light: #e6f4fb;
  --blue-accent: #00b4d8;
  --teal: #17a2b8;
  --text-dark: #1a2940;
  --text-mid: #4a5568;
  --text-light: #718096;
  --white: #ffffff;
  --divider: #d6eaf8;
  --radius: 18px;
  --shadow: 0 8px 40px rgba(0, 95, 163, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

/* Apply styles */

h1 {
  font-size: var(--fs-h1);
  line-height: 1.2;
  font-weight: 600;
  color: var(--primary-color);
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.25;
  font-weight: 600;
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.3;
  font-weight: 600;
}

h4 {
  font-size: var(--fs-h4);
  line-height: 1.35;
  font-weight: 500;
}

p {
  font-size: var(--fs-p);
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: rgb(246, 250, 255);
}

.mb {
  margin-bottom: 150px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

/* Header */

/* ================================================================
   TOP BAR
================================================================ */
.topbar {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}
.topbar a:hover {
  color: #fff;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
	font-size: 15px
}
.topbar-item svg {
  width: 16px;
  height: 16px;
  fill: transparent;
  stroke: #ffffff;
  flex-shrink: 0;
}
.topbar-social {
  display: flex;
  gap: 10px;
}
.topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.topbar-social a:hover {
  background: var(--teal);
}
.topbar-social svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 24px rgba(0, 72, 188, 0.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 0;
  padding-bottom: 0;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: 120px;
}
.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-mid), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -1px;
  box-shadow: 0 4px 16px rgba(0, 114, 188, 0.3);
}
.nav-logo-text {
  line-height: 1.1;
}
.nav-logo-text strong {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--blue-dark);
  display: block;
}
.nav-logo-text span {
  font-size: 0.67rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-mid);
  background: var(--blue-light);
}

.clickable_items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  background-color: var(--blue-mid);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: var(--fs-h5);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.btn:hover {
  background-color: var(--blue-accent);
}

.btn a {
    text-align: center;
    width: 100%;
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 4px;
  transition: var(--transition);
}

/* ===== MOBILE MENU (SLIDE IN) ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);

    transform: translateX(-100%);
    transition: transform 0.4s ease;

    z-index: 9999;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* CONTENT */
.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.mobile-menu-content a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    font-weight: 500;
}

/* CLOSE BUTTON */
.close-menu {
    position: absolute;
    top: 58px;
    right: 25px;
    font-size: 45px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10000;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
}

/* ===== ANIMATION (TO CROSS) ===== */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE */
/* @media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
} */

/* Hero Section */
.hero_section {
  position: relative;
  height: calc(100vh - 134px);
}

.hero_section_overlay_bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero_section_overlay_bg_color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    45deg,
    rgba(0, 146, 201, 0.999),
    rgba(0, 146, 201, 0.9) 30%,
    rgba(0, 146, 201, 0.5) 60%
  );
}

.hero_section_container {
  position: relative;
  z-index: 1;
  height: 100%;
}

.hero_section_main_container {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.hero_section_main_container.about_page_hero {
  justify-content: center;
}

.hero_section_main_content_container {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  /* gap: 30px; */
  justify-content: center;
}

.hero_section_main_container.about_page_hero
  .hero_section_main_content_container {
  flex-basis: 70%;
  width: 100%;
  align-items: center;
  text-align: center;
}

.hero_section_sub_head {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: var(--fs-h4);
}

.hero_section_sub_head span {
  font-weight: 600;
}

.hero_section_main_content_para {
  margin: 30px 0;
  color: var(--primary-color);
}

.hero_section_main_content_btn {
  width: fit-content;
  display: inline-block;
  padding: 14px 32px;
  /* background-color: #00a2c9; */
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 4px;
  font-weight: 500;
  /* margin-bottom: 20px; */
  transition: background-color 0.3s ease;
}

.fill-btn:hover {
  background-color: var(--primary-color);
  color: var(--dark-blue);
}

.hero_section_image_container {
  flex-basis: 50%;
  height: 100%;
  overflow: hidden;
}

.hero_section_image_container img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

/* Our Certificate */

.our_certificate_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 50px;
  max-width: 900px;
  margin-inline: auto;
  /* background-color: red; */
}

.our_certificates_text_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.our_certificates_para {
  font-size: var(--fs-p);
  color: var(--gray-color);
}

.our_certificates_heading {
  font-size: var(--fs-h2);
  color: var(--dark-blue);
}



.our_certificates_logos_container {
  display: flex;
  gap: 10px;
}

.our_certificates_logos_container img {
  width: 21%;
  /* height: 100px; */
  /* aspect-ratio: 1/2; */
  object-fit: contain;
}

/* Navjoie About */
.navjoie_about_section {
  margin-top: 40px;
}

.navjoie_about_container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  height: 100%;
  padding: clamp(20px, 5vw, 40px);
  border-radius: clamp(20px, 5vw, 40px);
  background-image: linear-gradient(
    45deg,
    rgba(0, 146, 201, 1),
    rgba(0, 146, 201, 1) 30%,
    rgba(0, 146, 201, 0.7) 60%
  );
}

.navjoie_about_container_left {
  flex-basis: 300px;
  flex-grow: 1;
  width: 49%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--primary-color);
}

.navjoie_about_container_left span {
  font-weight: 500;
  margin-bottom: 10px;
}

.navjoie_about_container_left h2 {
  margin-bottom: 20px;
}

.navjoie_about_container_left > p {
  margin-bottom: 30px;
}

.navjoie_about_container_left_footer {
  display: flex;
  height: fit-content;
  align-items: center;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  /* justify-content: space-between; */
  gap: 25px;
  background-color: var(--primary-color);
  color: var(--secondry-color);
  border-radius: clamp(20px, 10vw, 100px);
  padding: 10px 30px;
}

.navjoie_about_container_left_footer.about_founder_page_footer {
  justify-content: space-around;
  display: none;
}

.navjoie_about_container_left_footer.about_founder_page_footer
  .navjoie_about_container_left_footer_founders {
  border: none;
  border-left: 1px solid #0000004b;
  width: 50%;
  display: flex;
  justify-content: space-evenly;
  /* background-color: purple; */
}

.navjoie_about_container_left_footer > a > img {
  width: 120px;
  object-fit: cover;
}

.navjoie_about_container_left_footer_founders {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  /* padding-right: 7px; */
  /* border-right: 1px solid #0000001f; */
  flex-basis: 200px;
}

.navjoie_about_container_left_footer_founder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-transform: capitalize;
}

.navjoie_about_container_left_footer_founder h3 {
  font-size: var(--fs-p);
  font-weight: 700;
}

.navjoie_about_container_left_footer_founder p {
  font-size: 15px;
  font-weight: 500;
}

.navjoie_about_container_left_footer button {
  padding: 10px 25px;
  background-color: rgba(0, 146, 201, 0.999);
  color: var(--primary-color);
  border: none;
  text-transform: capitalize;
  font-size: var(--fs-p);
  border-radius: 100px;
  font-weight: 500;
  display: flex;
    /* flex-basis: 152px; */
    width: 100%;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.navjoie_about_container_right {
  flex-basis: 300px;
  flex-grow: 1;
  width: 49%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navjoie_about_container_right img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
}

/* who we are */
.who_we_are_container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.who_we_are_container_top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.who_we_are_heading {
  font-size: var(--fs-h2);
  color: var(--dark-blue);
}

.who_we_are_para {
  font-size: var(--fs-p);
  color: var(--gray-color);
}

.who_we_are_container_mid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.who_we_are_container_mid > img {
  width: 100%;
  max-height: 450px;
  border-radius: 20px;
  border: 5px solid rgba(254, 237, 206, 0.5);
  object-fit: cover;
}

.who_we_are_container_top_bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.who_we_are_our_card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  border-radius: 20px;
  background-color: var(--primary-color);
}

.who_we_are_our_card_top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.who_we_are_our_card_top > img {
  width: 60px;
  height: 60px;
}

.who_we_are_our_card_top > h3 {
  color: var(--dark-blue);
  font-weight: 600;
}

.who_we_are_our_card_para {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-color);
}

/* Our Expertise */
.our_expertise_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.our_expertise_sup_heading {
  color: var(--blue-mid);
  font-weight: 500;
}

.our_expertise_top_container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.our_expertise_heading {
  flex-basis: 300px;
  flex-grow: 1;
  width: 78%;
  font-size: var(--fs-h2);
  color: var(--dark-blue);
}

.our_expertise_para {
  flex-basis: 300px;
  width: 20%;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-color);
}

.our_expertise_cards_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.our_expertise_card {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  background-color: var(--primary-color);
}

.our_expertise_cards_container h3 {
  font-size: 16px;
  font-weight: 600;
  width: 75%;
}

.our_expertise_cards_container img {
  width: 65px;
  height: 60px;
  float: right;
  align-self: flex-end;
}

.our_expertise_banner {
  margin-top: 50px;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  position: relative;
  /* display: flex; */
}

.our_expertise_banner_container {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.our_expertise_banner_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.our_expertise_banner_content {
  position: relative;
  max-width: 600px;
  height: 100%;
  background-color: rgba(0, 146, 201, 0.8);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  float: right;
  color: #ffffff;
  gap: 40px;
}

.our_expertise_banner_content_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  list-style: none;
}

.our_expertise_banner_content_list_item {
  font-size: clamp(15px, 2vw, 20px);
}

/* Facilities */

.facilities_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.facilities_container_top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 850px;
}

.facilities_sub_head {
  color: var(--blue-mid);
  font-weight: 500;
}

.facilities_container_top_heading {
  font-size: var(--fs-h2);
  color: var(--dark-blue);
}

.facilities_container_top_para {
  font-size: var(--fs-p);
  color: var(--gray-color);
}


.facilities_container_cards {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.facilities_container_card {
  background-color: rgba(0, 146, 201, 1);
  border-radius: 30px;
  padding: 30px;
  display: flex;
  gap: 30px;
  align-items: center;
}

.facilities_container_card:nth-child(even) {
  flex-direction: row-reverse;
}

.facilities_container_card_left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--primary-color);
  width: 38%;
}

.facilities_container_card_left_heading {
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 500;
}

.facilities_container_card_left_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}

.facilities_container_card_item {
  font-size: clamp(15px, 2vw, 20px);
}

.facilities_container_card_right {
  width: 59%;
  height: 300px;
}

.facilities_container_card_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* Featured */

.featured_container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.featured_container_top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured_sub_head {
  color: var(--blue-mid);
  font-weight: 600;
}

.featured_container_top_heading {
  font-size: var(--fs-h2);
  color: var(--dark-blue);
}

.featured_container_top_para {
  font-size: var(--fs-p);
  color: var(--gray-color);
}

.featured_container_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.featured_container_card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured_container_card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}

.featured_container_card_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.featured_container_card_bottom h3 {
  font-size: 18px;
  font-weight: 600;
}

.featured_card_button {
  padding: 8px 15px;
  background-color: rgba(0, 146, 201, 1);
  color: var(--primary-color);
  border: none;
  border-radius: 100px;
  font-size: var(--fs-p);
  font-weight: 500;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

/* Why Choose Us */
.why_choose_us_container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.why_choose_us_container_left {
  flex-basis: 450px;
  flex-grow: 1;
  width: 49%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why_choose_use_container_img_wrapper {
  width: 100%;
  max-height: 600px;
  border-radius: 20px;
  overflow: hidden;
}

.why_choose_us_container_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why_choose_us_container_right {
  flex-basis: 450px;
  flex-grow: 1;
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 30px;
}

.why_choose_us_container_right h2 {
  font-size: var(--fs-h1);
  color: var(--dark-blue);
}

.why_choose_us_container_right > p {
  font-size: var(--fs-p);
  color: var(--gray-color);
}

.why_choose_us_container_right_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}

.why_choose_us_container_right_list_item {
  font-size: clamp(15px, 2vw, 16px);
  font-weight: 500;
}

.why_choose_us_container_right_list_item>i {
  color: var(--teal);
}

/* Call to Action Banner */
.call_to_action_banner_container {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px;
  border-radius: 30px;
  height: 300px;
  background-color: rgba(0, 146, 201, 1);
  background-image: var(--call-to-action-bg);
  background-position: 98% center;
  background-repeat: no-repeat;
  background-size: 350px;
}

.call_to_action_banner_container_left {
  flex-basis: 400px;
  flex-grow: 1;
  width: 65%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--primary-color);
  /* background-color: yellow; */
}

.call_to_action_banner_para {
  max-width: 600px;
}

.call_to_action_banner_btn {
  width: fit-content;
  display: inline-block;
  padding: 18px 32px;
  background-color: var(--primary-color);
  color: var(--dark-blue);
  border-radius: 100px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}


/* Products Section */
.products_section_container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.products_section_top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.products_section_top > h2 {
  font-size: var(--fs-h2);
  color: var(--dark-blue);
  text-transform: uppercase;
}

.products_section_top > p {
  font-size: var(--fs-p);
  color: var(--gray-color);
}

.faq-question-text.product_image {
  display: flex;
  align-items: center;
  gap: 30px;
}

.faq-question-text.product_image img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  transition:
    width 0.3s,
    height 0.3s;
}

.faq-item.open .faq-question-text.product_image img {
  width: 200px;
  height: 120px;
  /* transition: transform 0.3s; */
}

/* Tables Design */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 10px;
  border: 1px solid #ddd;
}

/* 🔥 Mobile Card Layout */
@media (max-width: 768px) {
  table thead {
    display: none;
  }

  table, tbody, tr, td {
    display: block;
    width: 100%;
  }

  tr {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
    background: #fff;
  }

  td {
    border: none;
    padding: 8px 10px;
    padding-left: 50%;
    position: relative;
    font-size: 14px;
  }

  td::before {
    position: absolute;
    left: 10px;
    top: 8px;
    width: 45%;
    font-weight: bold;
  }

  td:nth-child(1)::before { content: "S.No"; }
  td:nth-child(2)::before { content: "Composition"; }
  td:nth-child(3)::before { content: "Packing"; }
  td:nth-child(4)::before { content: "Indications"; }
  td:nth-child(5)::before { content: "Dosage"; }
}

th {
  background: #cfd8dc;
  text-align: left;
}

tr:nth-child(even) {
  background: #fafafa;
}

.pagination {
  margin-top: 20px;
  text-align: center;
}

.pagination button {
  padding: 6px 10px;
  margin: 3px;
  border: none;
  background: #607d8b;
  color: #fff;
  cursor: pointer;
}

.pagination button.active {
  background: #263238;
}

.pagination button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* About Section */

.about_certificate_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about_certificate_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  width: 100%;
  place-items: center;
}

.about_certificate_container_top h2 {
  font-size: var(--fs-h2);
  color: var(--dark-blue);
}

.about_certificate_container_top p {
  font-size: var(--fs-p);
  color: var(--gray-color);
}

.about_certificate_list img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* FAQ */
.faq-section {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}

.faq-section.products-faq {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

/* ── Header ── */
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header .label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-mid);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.faq-header h2 {
  /* font-family: 'Nunito', sans-serif; */
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.faq-header h2 span {
  color: var(--blue-mid);
}

.faq-header p {
  font-size: 0.97rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Search ── */
.faq-search-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto 48px;
}

.faq-search-wrap input {
  width: 100%;
  padding: 16px 52px 16px 22px;
  border: 2px solid var(--divider);
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  box-shadow: var(--shadow);
}

.faq-search-wrap input:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(0, 130, 200, 0.12);
}

.faq-search-wrap input::placeholder {
  color: #aac4d8;
}

.faq-search-wrap .search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue-mid);
  pointer-events: none;
}

/* ── Tabs ── */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.faq-tab {
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid var(--divider);
  background: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}

.faq-tab:hover {
  border-color: var(--blue-mid);
  color: var(--blue-mid);
}

.faq-tab.active {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0, 130, 200, 0.28);
}

/* ── List ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Item ── */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--divider);
  overflow: hidden;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.faq-item.open {
  border-color: var(--blue-mid);
  box-shadow: 0 10px 48px rgba(0, 95, 163, 0.14);
}

.faq-item.hidden {
  display: none;
}

/* ── Question button ── */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  /* font-family: 'Poppins', sans-serif; */
}

.faq-question-text {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  transition: color 0.2s;
}

.faq-item.open .faq-question-text {
  color: var(--blue-mid);
}

/* icon */
.faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    transform 0.35s;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue-mid);
  stroke-width: 2.5;
  fill: none;
  transition: stroke 0.2s;
}

.faq-item.open .faq-icon {
  background: var(--blue-mid);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon svg {
  stroke: var(--white);
}

/* ── Answer ── */
.faq-answer-wrap {
  display: none;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer-wrap {
  display: grid;
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer {
  padding: 0 26px 22px;
  font-size: 0.91rem;
  line-height: 1.8;
  color: var(--text-mid);
  border-top: 1px solid var(--blue-light);
  padding-top: 18px;
}

/* ── No results ── */
.faq-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--text-light);
  font-size: 0.93rem;
  display: none;
}

.faq-empty svg {
  display: block;
  margin: 0 auto 16px;
  opacity: 0.35;
}

@media (max-width: 600px) {
  .faq-section {
    padding: 50px 16px 70px;
  }
  .faq-question {
    padding: 18px 18px;
  }
  .faq-answer {
    padding: 0 18px 18px;
    padding-top: 14px;
  }
}

/* Appointment */

.contact-section {
  /* padding: 96px 0; */
  /* background: #fff; */
}
.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
}
.contact-info .section-sub {
  margin-bottom: 36px;
  font-size: var(--fs-p);
}

.section-label {
  display: inline-block;
  color: var(--blue-mid);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title {
  font-size: var(--fs-h2);
  color: var(--dark-blue);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-mid);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-row-label {
  font-size: 0.76rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-row-val {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
}
/* Form */
.contact-form-card {
  /* background: #fff; */
  border-radius: 25px;
  padding: 40px;
  box-shadow: var(--shadow);
  background-image: linear-gradient(45deg, var(--dark-blue), var(--blue-mid));
  color: var(--primary-color);
  position: relative;
}
.contact-form-title {
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  /* color: var(--text-dark); */
}
.contact-form-sub {
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 19px;
  border: 1.5px solid var(--divider);
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: #f9fbff;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(0, 114, 188, 0.1);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aec3d4;
}
.form-group textarea {
  resize: none;
  min-height: 150px;
}
.form-submit {
  width: 100%;
  border-radius: 5px;
  padding: 15px;
  bottom: -20px;
  background: var(--blue-mid);
  color: #fff;
  font-size: 0.93rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0, 114, 188, 0.3);
}
/* .form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,114,188,0.42); } */


/* Contact Page Map */
.contact_section_map {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact_section_map iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* Footer */
.footer_section {
  background-color: rgba(0, 146, 201, 1);
  padding: 40px;
}

.footer_container {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
}

.footer_container_left {
  flex-basis: 300px;
  flex-grow: 1;
  width: 14%;
  display: flex;
  flex-direction: column;
  color: var(--primary-color);
}

.footer_container_mid {
  flex-basis: 500px;
  flex-grow: 1;
  width: 64%;
  display: flex;
  flex-wrap: wrap;
  color: #ffffff;
  gap: 30px;
  justify-content: space-between;
}

.footer_container_right {
  flex-basis: 300px;
  flex-grow: 1;
  width: 14%;
  display: flex;
  flex-direction: column;
  color: var(--primary-color);
}

.footer_container_left > img {
  width: 250px;
  height: 100%;
  object-fit: cover;
}

.footer_container_left > p {
  font-size: 15px;
}

.footer_nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-basis: 100px;
}

.footer_nav_head {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer_nav_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_nav_list_item {
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-color);
}

.footer_connect {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer_connect_heading {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer_connect_head {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer_connect_info > p {
  padding-left: 20px;
  font-size: 16px;
}

/* Responsive */

@media screen and (max-width: 900px) {
  .contact-section .container {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .hero_section {
    height: calc(100% - 80px);
  }
  .hero_section_main_container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero_section_main_content_container {
    flex-basis: 100%;
    align-items: center;
    padding-top: 60px;
  }

  .hero_section_image_container {
    flex-basis: 100%;
    margin-top: 20px;
    display: flex;
  }

  .facilities_container_card {
    flex-direction: column;
  }

  .facilities_container_card:nth-child(even) {
    flex-direction: column;
  }

  .facilities_container_card_left,
  .facilities_container_card_right {
    width: 100%;
  }

  .topbar-left {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .topbar-right {
    display: none;
  }

  /* .call_to_action_banner_container {
        flex-direction: column;
        text-align: center;
        background-position: center;
    }

     .call_to_action_banner_container_left {
        width: 100%;
    } */
}

@media  screen and (max-width: 480px) {
    .btn-primary {
        display: none;
    }

    .call_to_action_banner_container {
        height: 100%;
    }

    .navjoie_about_container_left_footer {
      flex-wrap: wrap;
      justify-content: center;
      gap: 0;
    }

    .topbar-item {
      font-size: 11px;
    }

    .about_certificate_list img {
      width: 75%;
    }

    .faq-item.open .faq-question-text.product_image img {
      width: 110px;
      height: 70px;
    }


}
