/* Main color palette */
/* ========= Typography Base Tokens ========= */
:root {
  --font-body: "Open Sans", Helvetica, Arial, sans-serif;
  --font-lato: Lato, sans-serif;
  --font-raleway: Raleway, Helvetica, Arial, sans-serif;

  --fs-14: 14px;
  /* body, p, ul, li */
  --fs-16: 16px;
  /* h3 (computed) */
  --fs-24: 24px;
  /* h4 (computed) */
  --fs-32: 32px;
  /* h2 (computed) */
  --fs-35: 35px;
  /* h1 (computed) */

  --lh-body: 1.7;
  /* 23.8 / 14 ≈ 1.7 */
  --lh-tight: 1;
  /* headings (h1/h2/h4 computed) */
  --lh-snug: 1.1;
  /* h3 (17.6 / 16 ≈ 1.1) */

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi: 600;
}

/* ========= Base ========= */
html {
  font-size: 100%;
}

/* keep default scaling */
body {
  font-family: var(--font-body);
  font-size: var(--fs-14);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  margin: 0;
  /* color: #111;  // optional */
}

a {
  color: #03c4eb;
}

/* Reset common element margins so spacing consistent rahe */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0 0 0.3em;
}

/* ========= Headings (exact from your computed table) ========= */
h1 {
  font-family: var(--font-lato);
  font-size: var(--fs-35);
  font-weight: var(--fw-semi);
  /* 600 */
  line-height: var(--lh-tight);
}

h2 {
  font-family: var(--font-lato);
  font-size: var(--fs-32);
  font-weight: var(--fw-semi);
  /* 500 */
  line-height: var(--lh-tight);
}

h3 {
  font-family: var(--font-raleway);
  font-size: var(--fs-25, 25px);
  font-weight: var(--fw-regular);
  /* 400 */
  line-height: var(--lh-snug);
}

h4 {
  font-family: var(--font-lato);
  font-size: var(--fs-24);
  font-weight: var(--fw-semi);
  /* 600 */
  line-height: var(--lh-tight);
}

/* ========= h5/h6 not found → sensible defaults ========= */
/* Agar aap chaho to inhe theme ke hisaab se tweak kar sakte ho */
h5 {
  font-family: var(--font-lato);
  font-size: 18px;
  font-weight: var(--fw-semi);
  line-height: 1.2;
}

h6 {
  font-family: var(--font-lato);
  font-size: 14px;
  font-weight: var(--fw-semi);
  line-height: 1.2;
  letter-spacing: 0.02em;
  /* optional readability */
}

/* ========= Paragraphs & Lists ========= */
p {
  font-family: var(--font-body);
  font-size: var(--fs-14);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  text-align: justify;
}

ul,
li {
  font-family: var(--font-body);
  font-size: var(--fs-20, 16px);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
}

ul {
  padding-left: 1.25rem;
  /* bullets ka left indent */
}

li {
  margin-bottom: 0.35em;
}

/* dense lists ke liye thoda gap */

/* ========= Optional: Responsive fine-tuning ========= */
/* Mobile pe thoda shrink so headers wrap sundar lagen */
@media (max-width: 576px) {
  h1 {
    font-size: 28px;
  }

      h2 {
        font-size: 24px;
        line-height: 1.4;
    }

  h3 {
    font-size: 15px;
  }

  h4 {
    font-size: 20px;
  }
  .mobile-view {
    flex-direction: column-reverse;
}
.display-5 {
   
    font-weight: 600;
    line-height: 1.2;
    font-size: 28px;
    text-align: center;
}
.hero h3 {
    font-size: 22px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 22px !important;
    top: 40px !important;
    height: 100%;
    border-left: 2px dotted #04122b;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto !important;
    padding: 24px 0px !important;
}
}



:root {
  --primary: #04122b;
  /* deep navy */
  --accent: #18a0d9;
  /* cyan highlight */
  --background: #f8f9fa;
  --text: #222f3e;
  --white: #ffffff;
  --topbar-border: #8b0000;
  /* dark red */
}

/* Reset / container */
* {
  box-sizing: border-box;
}



.text-para {
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  font-family: "Lato", Sans-serif;
  text-align: justify;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero h3 {
  font-size: 24px;
  font-weight: 600;
}

/* Topbar */
.topbar {
  background: var(--white);
  /* border-top: 6px solid var(--topbar-border); */
  font-size: 14px;
  padding: 6px 0;
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-left .icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-right a {
  display: inline-block;
}

.topbar-right .social {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    padding: 6px;
    color: #f1f1f1;
    text-decoration: none;
    font-size: 12px;
}

.topbar-right .social img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

/* Navbar */
.navbar {
  background: var(--primary);
  color: var(--white);
}

.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-area {
  position: relative;
}

.logo-img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;

}

nav {
  z-index: 2;
}

.navbar-nav {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0 0 0 127px;
  padding: 0;
  align-items: center;
}

.navbar-nav .nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.6px;
  padding: 8px 0;
}

.navbar-nav .nav-link:hover {
  color: var(--accent);
}

.navbar-nav .nav-link.active {
  color: var(--accent);
}

.navbar-nav .arrow {
  margin-left: 6px;
  font-size: 0.7em;
}

/* Bootstrap navbar overrides */
.navbar {
  padding: 0;
}

.navbar-toggler {
  border: none;
  color: var(--white);
  z-index: 99;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .fa {
  color: #61ce70;
  font-size: 20px;
}

.navbar .navbar-nav .nav-link {
  color: var(--white);
}

.navbar .navbar-nav .nav-link.active {
  color: var(--accent);
}
@media (min-width: 992px){
  .navbar .dropdown:hover .dropdown-menu{
    display: block;      /* show on hover */
    margin-top: 0;       /* align flush like your screenshot */
  }
}

/* Smaller logo on mobile inside navbar */
.navbar-brand .logo-img {
  width: 68px;
  height: 68px;
  padding: 4px;
}

.banner-btn a {
  color: #f1f1f1;
  background: #1485CD;
  height: 50px;
  width: 50%;
  text-align: center;
  align-items: center;
  padding-top: 11px;
}

.banner-btn a:hover {
  color: #1485CD;
  border: 1px solid #1485CD;
  background: #f1f1f1;
}


@media (max-width: 980px) {
  .nav-container {
    height: auto;
    padding: 12px 0;
  }

  .logo-area {
    position: relative;
    left: 0;
    transform: none;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
  }

  .navbar-nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-img {
    width: 72px;
    height: 72px;
  }

  .topbar-content {
    flex-direction: column;
  }
}

/* Large screen adjustments: keep logo absolute and centered vertically */
@media (min-width: 992px) {
  .nav-container {
    height: 110px;
  }

  .logo-area {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Ensure collapsed navbar stacks links vertically on small screens */
@media (max-width: 991.98px) {
  .navbar-collapse {
    text-align: center;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0;
  }

  .navbar-nav .nav-link {
    padding: 0.65rem 1rem;
  }
}

/* Hero + other sections (kept concise) */
.hero {
  background: #04122b;
  color: var(--white);
  padding: 3rem 0 2rem;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.hero-text {
  flex: 1 1 350px;
  margin-top:60px;
}

.hero-image img {
  width: 260px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: var(--white);
}

/* Forms and cards */

/* General Section Padding */
.appointment-section,
.blog-section,
.expertise-section {
  /*padding: 2.5rem 0;*/
  /* Uniform padding for top and bottom */
}

/* Appointment Section Styling */
.appointment-section {
  background-color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  border: 2px solid #0c4664;
}

.appointment-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Form Styling */
.appointment-section form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


.appointment-section .form-control,
.appointment-section .form-select {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 1rem;
  width: 100%;
}


.appointment-section .form-control::placeholder,
.appointment-section .form-select {
  color: #aaa;
}


.appointment-section .col-md-4,
.appointment-section .col-md-3 {
  width: 100%;
}

.appointment-section .col-md-4 {
  max-width: 300px;
}

.appointment-section .col-md-3 {
  max-width: 250px;
}

.appointment-section .form-control,
.appointment-section .form-select {
  width: 100%;
  box-sizing: border-box;
}


.appointment-section .btn-primary {
  background-color: #0069d9;
  border: none;
  border-radius: 8px;
  color: #fff;
  padding: 12px;
  font-size: 1.1rem;
  width: 100%;
  max-width: 250px;
  margin-top: 20px;
  transition: background-color 0.3s ease-in-out;
}

.appointment-section .btn-primary:hover {
  background-color: #0056b3;
  cursor: pointer;
}

/* Counter Widget Styles */
.counter-widget {
  text-align: center;
  padding: 0px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.counter-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.counter-number-wrapper {
  font-size: 3rem;
  font-weight: bold;
  color: #1485CD;
}

.counter-number-prefix,
.counter-number-suffix {
  font-size: 3.5rem;
  font-weight: bold;
}

.counter-number-suffix {
  font-weight: normal;
}

.counter-number {
  display: inline-block;
  font-size: 3.5rem;
  color: #1485CD;
}

/* timeling */


.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  /*padding: 40px;*/
}

.timeline-item {
  display: flex;
  margin-bottom: 20px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 20px;
  height: 100%;
  border-left: 2px dotted #04122b;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-icon {
  position: relative;
  width: 76px;
  height: 70px;
  border-radius: 5px;
  background-color: #04122b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  z-index: 2;
}

.timeline-icon img {
  width: 100%;
  height: 35px;
}

.timeline-content {
  margin-left: 80px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: bold;
  color: #1e3d58;
}

.timeline-content p {
  font-size: 14px;
  color: #333;
}

/*  EXPERTISE */
/* Ensure all service cards have the same height */
.service-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service-col {
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Stretch the card content vertically */
}

.custom-col-width {
  flex: 0 0 20%;
  /* This will increase the width of the cards */
  max-width: 20%;
  /* Prevents the card from exceeding 20% width */
}

.service-card {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  flex-grow: 1;
}

.service-card img {
  background: #000;
  padding: 10px;
  border-radius: 10px;
  width: 80px;
  height: 70px;
  margin: 0 auto;
}

.service-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  color: #04122b;
}

/*.service-container {*/
/*  margin-top: 40px;*/
/*}*/

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #ffff;
  margin-bottom: 30px;
}

.service-card:hover {
  background-color: #0058E6;
}

/*.blue-bg {*/
/*  padding: 40px 0;*/
/*}*/

/* Custom responsiveness */
@media (max-width: 576px) {
     .service-card {
        margin: 10px 0;
        height: 10px;
    }
}

@media (min-width: 576px) {
  .service-card {
    margin: 10px;
  }
}

@media (min-width: 768px) {
  .service-card {
    margin: 10px;
  }
}

@media (min-width: 992px) {
  .service-card {
    margin: 10px;
  }
}

@media (min-width: 1200px) {
  .service-card {
    margin: 10px;
  }
}


/* Testimonial */
.testimonial-container {
  text-align: center;
  padding: 20px 0;

}

/* Swiper v11 container class */
.swiper {
  width: 100%;
  padding: 20px;
  position: relative;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  margin-top: 43px;

}

.profile {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #d3d3d3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  margin-right: 20px;
  flex-shrink: 0;
  overflow: hidden;
  top: -32px;
  right: 90px;
}

.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-initial {
  font-weight: bold;
}

.testimonial-text {
  max-width: 300px;
}

.testimonial-text h3 {
  font-size: 1.2em;
  margin: 12px 0 6px;
}

.testimonial-text p {
  font-size: 1em;
  margin: 0 0 10px;
}

.rating {
  color: #ffcc00;
}

.swiper-pagination {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
}

/* YouTube video */
.video-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.video {
  text-align: center;
}

iframe {
  border-radius: 8px;
  width: 100%;
  height: 315px;
}

@media (max-width: 768px) {
  .video-container {
    flex-direction: column;
  }
}


/* Latest blog */
/* Custom card design with box-shadow */
.custom-card {
  border: none;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  /* Adding subtle shadow */
}

/* Hover effect to lift the card */
.custom-card:hover {
  transform: translateY(-10px);
  /* Lift effect on hover */
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.2);
  /* More prominent shadow */
}

.custom-card-img {
  width: 100%;
  height: 179px;
  object-fit: cover;
}

.custom-card-body {
  padding: 20px;
}

.custom-card-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #333;
  margin-top: 16px;
}

.custom-card-text {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}

.custom-category-tag {
  background-color: #00d8d8;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.custom-read-more {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}


/* Podcast video */
.news-card {
  border-radius: 15px;
  overflow: hidden;
  background: #f1f1f1;
  color: #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  /* Smaller card */
  margin: 0 auto;
  position: relative;
}

.news-card img {
  width: 100%;
  height: 283px;
  object-fit: cover;
}

.video-wrapper {
  display: none;
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.play-icon {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.card-content {
  padding: 15px;
}

.card-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.card-content p {
  font-size: 14px;
}

/* FAQ */
.faq-section {
  /*margin-top: 50px;*/
  /*padding: 20px;*/
}

.btn-link {
  text-decoration: none;
}

.faq-header {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.faq-body {
  font-size: 1rem;
  color: #555;
}

.card-header {
  background-color: #1485CD;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.btn-link {
  color: #f1f1f1;
  font-size: 17px;
  font-weight: 700;
}

.btn-link:hover {
  color: #f1f1f1;

}

.card-header .icon {
  font-size: 1.5rem;
  margin-right: 10px;
  /* Space between icon and question */
  transition: transform 0.3s ease;
}

.collapsed .icon {
  transform: rotate(90deg);
  /* Rotate the icon when collapsed */
}

/* Container and section title styles */
/*.latest-blogs-wrapper {*/
/*  background-color: #f9f9f9;*/
/*  padding: 60px 0;*/
/*}*/

.latest-blogs-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 600;
  color: #222;
}

/* Responsive adjustments */
@media (max-width: 980px) {
  .nav-container {
    height: auto;
    padding: 14px 0;
  }

  .logo-area {
    position: relative;
    left: 0;
    transform: none;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
  }

  nav ul {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.footer {
  background-color: #001439;
  color: white;
  padding: 20px;
}

.footer-links li {
  font-size: 16px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-title {
  position: relative;
  display: inline-block;
  color: #fff;
  margin-bottom: 20px;
}

.footer-title::after {
  content: "";
  display: block;
  width: 115px;
  height: 3px;
  background-color: #10A0BD;
  margin: 6px 1px;
  border-radius: 2px;
}

.footer-title-clinic {
  position: relative;
  display: inline-block;
  color: #fff;
  margin-bottom: 20px;
}

.footer-title-clinic::after {
  content: "";
  display: block;
  width: 145px;
  height: 3px;
  background-color: #10A0BD;
  margin: 6px 1px;
  border-radius: 2px;
}

.social-links .social-icon {
    width: 21px;
    height: 21px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    padding: 10px;
    color: #f1f1f1;
    text-decoration: none;
    display: inline-flex;
    font-size: 10px;
}


.footer-logo {
    width: 28%;
    height: 77px;
    object-fit: contain;
    border-radius: 50%;
}

.social-links {
  margin-top: 10px;
}

.social-icon {
  color: white;
  text-decoration: none;
  margin-right: 6px;
  font-size: 16px;
}

.footer-links h3 {
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li a {
  text-decoration: none;
  color: #f1f1f1;
  font-size: 17px;
  font-weight: 500;
}

.footer-center ul li,
.footer-right ul li {
  margin-bottom: 8px;
}

.call-us {
  display: block;
  margin-top: 10px;
  color: #00aaff;
  text-decoration: none;
}

.map iframe {
  width: 100%;
  height: 200px;
}

.lead {
  font-size: 1.1rem;
  font-weight: 300;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
}

.footer p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
}

.footer-bottom {
  position: relative;
  display: inline;
}

.footer-bottom::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #10A0BD;
  margin: 6px 1px;
  border-radius: 1px;
}


/* About Us Page */

/* banner section */
.about-banner {
  background-image: url('../../assests/image/banner/about-banner.jpg');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-banner h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.about-banner p {
  font-size: 1.2rem;
}

.fa-regular,
.far {
  font-weight: 400;
  color: #18a0d9;
}



@media (max-width: 768px) {
  .about-banner h1 {
    font-size: 2.5rem;
  }

  .about-banner p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .about-banner {
    height: 250px;
  }

  .about-banner h1 {
    font-size: 2rem;
  }

  .about-banner p {
    font-size: 0.9rem;
  }
  .custom-col-width {
    flex: 0 0 100%;
    max-width: 50%;
}
}

.card-img-top {
  height: 400px;
  object-fit: cover;
}

/* Optional: subtle hover effect */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
  transition: .3s ease-in-out;
}

/* Expertise page */
.expertise-list {
  background-color: #1e3c72;

  padding: 20px;
  border-radius: 10px;
}

.expertise-list a {
  color: #f1f1f1;
  font-weight: 400;
  text-decoration: none;
}

.expertise-list h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f1f1f1;
  text-align: center;
}

.expertise-list ul {
  list-style-type: none;
  padding-left: 0;
}

.expertise-list ul li {
  padding: 8px 0;
  border-bottom: 1px solid #fff;
}

.expertise-list ul li:last-child {
  border-bottom: none;
}

.service-img {
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
  border-radius: 10px;
}

.blog-post {
  border: 1px solid #007BFF;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.blog-post img {
  width: 100%;
  height: auto;
}

.blog-post .card-body {
  padding: 20px;
}

.blog-post .read-more {
  color: #f1f1f1;
}

.blog-post h3 {
  text-align: center;
  padding: 0px 5px;
}

/* Reasearch */
:root {
  --brand-blue: #0D86D6;
  --grid: #000;
  --zebra: #f7fafc;
  --hover: #eef6ff;
  --text: #1f2937;
  --radius: 12px;
}

/* Card shell to add rounded corners + shadow */
.table-card {
  border-radius: var(--radius);
  overflow: hidden;
  /* keep the rounded clip */
  box-shadow:
    0 24px 48px rgba(0, 0, 0, .18),
    0 12px 24px rgba(0, 0, 0, .12),
    0 2px 6px rgba(0, 0, 0, .10);

  background: #fff;
}

/* Base table look */
.pub-table {
  width: 100%;
  border: 1px solid var(--grid);
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  color: var(--text);
}

/* Sticky header (optional, remove if not needed) */
.pub-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}

/* Header cells */
.pub-table thead th {
  background: var(--brand-blue);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
  font-size: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--grid);
  text-align: left;
  white-space: nowrap;
}

.pub-table thead th:not(:last-child) {
  border-right: 1px solid var(--grid);
}

.pub-table thead th.text-center {
  text-align: center;
}

/* Body cells */
.pub-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--grid);
  vertical-align: top;
  background: #fff;
}

.pub-table tbody td:not(:last-child) {
  border-right: 1px solid var(--grid);
}

/* Zebra rows (pure CSS) */
.pub-table tbody tr:nth-child(even) td {
  background: var(--zebra);
}

/* Row hover */
.pub-table tbody tr:hover td {
  background: var(--hover);
}

/* Title block separation inside first cell */
.pub-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;

  margin-bottom: 10px;

}

.pub-title a {
  text-decoration: none;
  color: var(--brand-blue);
}

/* Meta lines */
.pub-meta {
  line-height: 1.5;
  color: var(--text);
  font-size: 14px;
}

/* Centered cells */
.text-center {
  text-align: center;
}

/* Cited badge → pill look that matches grid aesthetic */
.pub-badge {
  display: inline-block;
  min-width: 44px;
  padding: 6px 10px;
  border: 1px solid var(--grid);
  border-radius: 999px;
  font-weight: 700;
}

/* PDF button/link */
.pub-pdf {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--brand-blue);
  border-radius: 8px;
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

/* Year text */
.pub-year {
  font-weight: 700;
}

/* Container width if Bootstrap absent */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.w-75 {
  width: 75%;
}

:root {
  --title-color: #333;
  --muted: #6c757d;
  --chip: #f1f3f5;
  --chip-text: #0b7285;
  --chip-border: #dbe4ff;
  --btn-blue: #0d6efd;
}

body {
  background: #fff;
}

.profile-card {
  border: 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  padding: 2rem 0;
  background: #fff;
}

.avatar {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #eef2f7;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--title-color);
}

.subtitle {
  color: #212529;
  font-size: 1rem;
}

.verified {
  color: #495057;
}

.chips {
  gap: .5rem;
}

.chip {
  background: var(--chip);
  color: var(--chip-text);
  border: 1px solid var(--chip-border);
  padding: .4rem .75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
}

.follow-btn {
  white-space: nowrap;
}

.mail-ico {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  margin-right: .35rem;
}

@media (max-width: 576px) {
  .name {
    font-size: 1.4rem
  }

  .topbar-left {
    display: block;
    margin-left: 63px;
  }

  .avatar {
    width: 112px;
    height: 112px
  }

  .chips {
    row-gap: .6rem
  }
}

:root {
  --pub-blue: #0d6efd;
  --pub-border: #d9d9d9;
  --pub-title: #0a6dc2;
}

.pub-table {
  background: #fff;
  border: 1px solid var(--pub-border);
  border-collapse: separate;
  /* keep rounded corners if you add later */
  border-top: 0;
}

.pub-table thead th {
  background: #1485CD;
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
  border-color: var(--pub-blue);
  vertical-align: middle;
}

.pub-table tbody td {
  border-top: 1px solid var(--pub-border) !important;
  vertical-align: top;
  padding: 1rem;
}

.pub-title a {
  color: var(--pub-title);
  text-decoration: none;
  font-weight: 700;
}

.pub-title a:hover {
  text-decoration: underline;
}

.pub-meta {
  color: #4b4b4b;
  font-size: .95rem;
}

.pub-badge {
  display: inline-block;
  font-weight: 700;
  background: #f1f5ff;
  border: 1px solid #cfe0ff;
  border-radius: .375rem;
  padding: .35rem .65rem;
  min-width: 3.25rem;
  text-align: center;
}

.pub-year {
  font-weight: 700;
}

.pub-pdf {
  font-weight: 700;
  color: var(--pub-blue);
  text-decoration: none;
}

.pub-pdf:hover {
  text-decoration: underline;
}

/* Mobile: convert to stacked cells */
@media (max-width: 767.98px) {
  .pub-table thead {
    display: none;
  }

  .pub-table,
  .pub-table tbody,
  .pub-table tr,
  .pub-table td {
    display: block;
    width: 100%;
  }

  .pub-table tr {
    border-top: 1px solid var(--pub-border);
    padding: .75rem 0;
  }

  .pub-table td {
    border: 0 !important;
    padding: .25rem 1rem;
  }

  .cell-label {
    display: block;
    font-size: .72rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: .04em;
  }
}


/* Gallery */
#gallery {
  position: relative;
  height: 100vh;
  padding: 0 !important;
  overflow-x: hidden;
  background: none;
  /* Removed background image */
}

#gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.75); */
  z-index: 0;
}

.gallery-section-headline,
.gallery-preview-container,
.gallery-btn,
.thumbnails-slider,
.thumbnails-container {
  position: relative;
  z-index: 1;
}

.gallery-section-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /*height: 15vh;*/
  font-size: 40px;
  color: white;
  text-transform: uppercase;
}

.gallery-section-headline::after {
  content: "";
  width: 80px;
  height: 3px;
  /*background: orange;*/
  margin-top: 5px;
}

.gallery-btn {
  width: 64px;
  height: 64px;
  background: rgb(0, 0, 0, 0.5);
  border-radius: 0;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 2;
}

.gallery-btn:active {
  transform: translateY(-50%) scale(0.9);
}

.prev-btn {
  left: 10px;
  transform: translateY(-50%);
}

.next-btn {
  right: 10px;
  transform: translateY(-50%);
}

.gallery-preview-container {
  width: 100%;
  /* Set to full width */
  height: 75vh;
  /* Adjust height as needed */
  text-align: center;
  margin-bottom: 5vh;
  overflow: hidden;
}

.gallery-preview-image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  /* Set to full width */
  max-height: 100%;
  transition: 0.3s linear;
  object-fit: cover;
}

.thumbnails-container {
  position: absolute;
  width: 84%;
  height: 20vh;
  bottom: 5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.thumbnail-btn {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
}

.thumbnail-btn svg {
  fill: white;
}

.prev-thumbnail-btn {
  left: 10px;
}

.next-thumbnail-btn {
  right: 10px;
}

.thumbnails-slider {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  /* Ensure the thumbnails take up the full width */
}

/* Styling for Thumbnail */
.thumbnail {
  flex: 0 0 auto;
  width: 109px;
  height: 80px;
  cursor: pointer;
  transition: transform 0.2s, border 0.2s;
  border: 2px solid transparent;
}

.thumbnail:hover {
  transform: scale(1.05);
}

.thumbnail.active {
  border-color: orange;
  transition: border-color 0.2s ease;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  /* .gallery-section-headline {
    font-size: 30px;
  } */

  .gallery-preview-container {
    height: 50vh;
  }

  .thumbnails-container {
    height: 15vh;
  }

  .thumbnail {
    width: 80px;
    height: 60px;
  }
}

@media screen and (min-width: 1280px) {
  .thumbnails-slider {
    justify-content: center;
    align-items: center;
  }
}

/*.profile-section {*/
/*  background-color: #f8f9fa;*/
/*  padding: 50px 0;*/
/*}*/

.profile-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.profile-text {
  max-width: 60%;
}

.profile-img {
  max-width: 30%;
}

.profile-img img {
  width: 100%;
  border-radius: 8px;
}

.profile-text h2 {
  font-size: 2rem;
  font-weight: 700;
}

.profile-text p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact page */

:root {
  --brand: #1e3a8a;
  /* headings */
  --muted: #64748b;
  /* small labels */
  --card: #ffffff;
  --bg: #f6f7fb;
  --accent: #0ea5e9;
  /* little time dots */
}

body {
  background: var(--bg);
}

.page-wrap {
  padding-block: 48px;
}

.panel {
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
  overflow: hidden;
}

/* Left map */
.map-wrap {
  height: 100%;
}

.ratio>iframe {
  border: 0;
  border-radius: 16px;
}

/* Right content */
/*.section-title {*/
/*  color: var(--brand);*/
/*  font-weight: 800;*/
/*  letter-spacing: .3px;*/
/*  margin-bottom: .35rem;*/
/*}*/

.address {
  color: #0f172a;
  font-weight: 600;
  line-height: 1.4;
}

/* Hours list */
.hours {
  margin-top: 1.25rem;
  border-top: 1px dashed #e5e7eb;
  padding-top: 1.25rem;
}

.hours .row {
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px dashed #eef2f7;
}

.hours .row:last-child {
  border-bottom: none;
}

.hours .day {
  color: #0f172a;
  font-weight: 600;
}

.hours .time {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
  color: #111827;
}

.time .dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, .15);
  display: inline-block;
}

/* Contact cards */
.contact {
  margin-top: 1.25rem;
  border-top: 1px dashed #e5e7eb;
  padding-top: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #fff;
}

.contact-item i {
  font-size: 1.35rem;
  color: #0ea5e9;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  background: rgba(14, 165, 233, .08);
  border-radius: 10px;
}

.contact-item a {
  text-decoration: none;
}

.muted {
  color: var(--muted);
  font-size: .925rem;
}

/* Small screen tweaks */
@media (max-width: 991.98px) {
  .panel {
    border-radius: 16px;
  }

  .ratio {
    --bs-aspect-ratio: 65%;
  }
}

 :root{
      --brand-primary:#117ac1; /* submit + accent */
      --ink:#0d2440;           /* headings */
      --muted:#6b7a90;         /* small text */
      --field-bg:#f1f1f3;      /* light grey inputs */
      --field-border:#e6e8ee;
      --card-shadow: 0 12px 30px rgba(16,24,40,.06);
      --radius-pill: 999px;
      --radius-xl: 20px;
    }

    body{
      background: #fbfcff;
      color: var(--ink);
    }

    .section-pad{ padding: 64px 0; }

    /* Card that holds the form */
    .contact-card{
      background: #fff;
      border: 1px solid #eef1f6;
      border-radius: 28px;
      box-shadow: var(--card-shadow);
      padding: 36px 32px;
    }

    /* Labels */
    .form-label{
      font-size: .8rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #1a2b4b;
      font-weight: 700;
      margin-bottom: .35rem;
    }
    .form-label .req{
      color:#e63946;
      margin-left: .15rem;
    }

    /* Inputs (pill style) */
    .form-control{
      background: var(--field-bg);
      border: 1px solid var(--field-border);
      border-radius: var(--radius-pill);
      height: 58px;
      padding: 0 22px;
      box-shadow: none !important;
    }
    .form-control:focus{
      border-color: rgba(17,122,193,.55);
      outline: 0;
      background: #fff;
    }

    /* Textarea same look but taller */
    textarea.form-control{
      border-radius: 28px;
      height: 83px;
      padding: 18px 22px;
      resize: vertical;
      background: var(--field-bg);
    }

    /* Submit button */
    .btn-submit{
      background: var(--brand-primary);
      border: none;
      border-radius: var(--radius-pill);
      padding: 14px 36px;
      font-weight: 700;
      letter-spacing: .02em;
    }
    .btn-submit:hover{ filter: brightness(0.95); }

    /* Right column headings */
    .eyebrow{
      color: var(--brand-primary);
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-size: .9rem;
      margin-bottom: .75rem;
    }
    .display-title{
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .muted{ color: var(--muted); }

    /* Contact items */
    .contact-item{
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 18px;
    }
    .ci-icon{
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: #eaf4fb;
      display: grid;
      place-items: center;
      flex: 0 0 44px;
      font-size: 1.25rem;
      color: var(--brand-primary);
    }
    .ci-title{
      margin: 0;
      font-weight: 800;
      color: #0e2c57;
    }

    /* Divider line like screenshot */
    .thin-divider{
      height: 1px;
      background: #e6edf5;
      margin: 24px 0 18px;
    }

    /* Social icons row */
    .soc-list{
      display: flex;
      gap: 14px;
      align-items: center;
    }
    .soc{
      width: 40px; height: 40px;
      border-radius: 999px;
      background: #eaf4fb;
      display: grid; place-items: center;
      font-size: 1rem;
      color: var(--brand-primary);
      transition: transform .15s ease, background .15s ease;
      text-decoration: none;
    }
    .soc:hover{ transform: translateY(-2px); background:#dcefff; }

    /* Spacing tweaks on smaller screens */
    @media (max-width: 991.98px){
      .contact-card{ margin-bottom: 28px; }
    }

.ratio {
  margin-top: 103px;
}


@media (min-width: 768px) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 90px;               
    height: fit-content; 
  }
}


.col-md-4 {
  overflow: visible;
}

.social-linkss .social-icon {
    width: 30px !important;
    height: 30px !important;
    font-size: 15px !important;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
}
