/* 
   Swami Prasad Homeopathy Clinic Pune - Stylesheet
   Designed to match the reference site with clean Open Sans typography, 
   herbal green headers, crimson red accents, and custom structured tables.
*/

/* Google Fonts - Open Sans */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --primary-color: #2b7a1a; /* Herbal Green */
  --primary-dark: #1b5e20; /* Deep Green */
  --accent-red: #c62828; /* Crimson Red */
  --accent-red-hover: #b71c1c; /* Dark Crimson */
  --navbar-brown: #8d6e63; /* Warm Brown */
  --navbar-brown-hover: #795548; /* Darker Brown */
  --text-dark: #333333; /* Charcoal Text */
  --text-muted: #666666; /* Muted Text */
  --bg-light: #fafafa; /* Clean White-Gray */
  --bg-yellow-lime: #f4f9eb; /* Lime/Yellow tint for homeopathy highlight box */
  --border-color: #e0e0e0;
  --white: #ffffff;
  --transition-smooth: all 0.25s ease-in-out;
}

/* Global Reset */
body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

p {
  font-size: 1rem;
  font-weight: 400;
}

/* Header & Top Branding */
.top-header-logo {
  display: flex;
  align-items: center;
}
.logo-title-first {
  color: var(--accent-red);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.logo-title-second {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.logo-subtext {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  font-style: italic;
  margin-top: 2px;
}
.header-contact-info {
  font-size: 25px;
  font-weight: 400;
  color: #771d1d;
}
.header-contact-info span {
  color: #771d1d;
  text-decoration: underline;
}

/* Top Green Strip */
.top-green-strip {
  background-color: #81d742;
  color: #ffffff;
  font-size: 0.85rem;
}
.top-green-strip .search-box-container .form-control {
  border-radius: 20px;
  font-size: 0.85rem;
  padding: 0.25rem 2rem 0.25rem 1rem;
  border: none;
  width: 200px;
}
.top-green-strip .search-box-container .btn {
  border-radius: 20px;
  background-color: transparent;
  color: #888888;
  padding: 0.25rem 0.75rem;
  font-size: 0.85rem;
}

/* Yellow Branding Bar */
.branding-bar {
  background-color: #ededa1;
}

/* Custom Navigation Bar */
.navbar-custom {
  background-color: transparent !important;
  padding: 0.35rem 0 !important;
  box-shadow: none !important;
}
.navbar-nav-wrapper {
  background-color: #969694;
  border-radius: 6px;
  padding: 0;
  display: inline-flex; /* Fit content size exactly */
  position: relative;
}
.navbar-custom .nav-item.dropdown {
  position: relative;
}
.navbar-custom .nav-link {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0.45rem 0.65rem !important; /* Compact gap sizing */
  transition: var(--transition-smooth);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
}
.navbar-custom .nav-item:last-child .nav-link {
  border-right: none;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  background-color: #cea465 !important;
  color: #ffffff !important;
}

@media (min-width: 992px) {
  .navbar-custom .navbar-nav {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
  }
  .navbar-custom .nav-item {
    display: flex;
  }
  .navbar-custom .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 0.45rem 0.65rem !important; /* Reduced gaps */
  }
  .navbar-custom .nav-item:first-child .nav-link {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  .navbar-custom .nav-item:last-child .nav-link {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav-wrapper {
    border-radius: 6px;
    display: flex;
    width: 100%;
  }
  .navbar-custom .navbar-nav {
    padding: 0.35rem 0;
    width: 100%;
  }
  .navbar-custom .nav-link {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.45rem 1rem !important;
  }
  .navbar-custom .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  .navbar-custom .nav-item:first-child .nav-link {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
  .navbar-custom .nav-item:last-child .nav-link {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }
}

/* Hero Section */
.hero-banner-container {
  width: 100%;
  overflow: hidden;
  border-bottom: 4px solid var(--primary-color);
}
.hero-banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 480px;
}

/* Homeopathy Highlights Box */
.intro-paragraph {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #777;
  text-align: justify;
}
.intro-blue-bold {
  color: #0076c0;
  font-weight: 700;
  text-decoration: none;
}
a.intro-blue-bold:hover {
  text-decoration: underline;
}
.section-column-title {
  color: #0076c0;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: left;
}
.intro-yellow-box {
  background-color: #ddda2c;
  border-radius: 12px;
  padding: 1.8rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #777;
  text-align: justify;
  box-shadow: none;
  height: 100%;
}
.intro-gray-box {
  background-color: #ddddc5;
  border-radius: 12px;
  padding: 1.8rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #777;
  text-align: justify;
}
.intro-gray-box p {
  margin-bottom: 1.2rem;
  font-size: 15px;
  font-weight: 400;
  color: #777;
  line-height: 1.7;
}
.intro-gray-box p:last-child {
  margin-bottom: 0;
}

/* Green Strip Header */
.green-strip-header {
  background-color: #81d742;
  color: #911435;
  font-weight: 400;
  font-size: 25px;
  padding: 0.2rem 1.2rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}

/* Red / Maroon Accent Title */
.red-accent-title {
  color: #911435;
  font-size: 30px;
  font-weight: 400;
  position: relative;
  margin-bottom: 2rem;
}
.red-accent-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-red);
  margin: 0.6rem auto 0 auto;
}

/* Guaranteed Treatment Cards */
.treatment-card-ref {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--white);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.treatment-card-ref:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.treatment-card-img-wrapper {
  height: 160px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  border-bottom: 1px solid var(--border-color);
}
.treatment-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.treatment-card-body {
  padding: 7px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.treatment-card-title {
  color: #8224e3;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0.8rem;
  height: 40px; /* Aligns title row */
  text-align: center;
}
.treatment-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  flex-grow: 1;
  text-align: justify;
}
.btn-card-readmore {
  background-color: #5bb343;
  color: var(--white);
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  align-self: center;
  transition: var(--transition-smooth);
}
.btn-card-readmore:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Standardized Tables styling */
.table-treatment-list {
  border: 1px solid var(--border-color);
  margin-bottom: 2.5rem;
  width: 100%;
}
.table-treatment-list th {
  background-color: #f64747;
  color: var(--white);
  font-weight: 700;
  padding: 0.3rem 1rem;
  text-align: left;
  font-size: 1.05rem;
}
.table-treatment-list td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 15px;
  color: #777;
  vertical-align: middle;
}

.table-treatment-list tr:nth-child(even) {
  background-color: #fcfcfc;
}
.table-treatment-icon-cell {
  width: 60px;
  text-align: center;
}
.table-treatment-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.table-treatment-name-cell {
  font-weight: 600;
  font-size: 15px;
  color: #777;
  width: 250px;
}
.table-treatment-desc-cell {
  color: var(--text-muted);
}

/* Circle thumbnails lists */
.circle-item-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}
.circle-item-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
  padding: 3px;
  background-color: var(--white);
  margin-bottom: 0.6rem;
  transition: var(--transition-smooth);
}
.circle-item-wrapper:hover .circle-item-img {
  border-color: var(--primary-color);
  transform: scale(1.05);
}
.circle-item-title {
  font-weight: 400;
  font-size: 20px;
  color: #1d2127;
  margin-bottom: 20px;
}

/* Student Psychology list layout */
.student-complaints-list {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.student-complaints-list li {
  width: 33.33%;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
  font-size: 15px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .student-complaints-list li {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .student-complaints-list li {
    width: 100%;
  }
}
.student-complaints-list li::before {
  content: "✔";
  color: var(--accent-red);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

/* Red Header for Skin Problem List */
.table-skin-problem-list {
  border: 1px solid #fbc2c2;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  border-collapse: collapse;
}
.table-skin-problem-list th {
  background-color: #ee4b4b;
  color: var(--white);
  font-weight: 700;
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
  border: 1px solid #fbc2c2;
  text-align: left;
}
.table-skin-problem-list th u {
  text-underline-offset: 3px;
}
.table-skin-problem-list td {
  padding: 0.4rem 0.8rem;
  border: 1px solid #fbc2c2;
  font-size: 15px;
  font-weight: 400;
  color: #777;
  width: 50%;
  vertical-align: middle;
}
.table-skin-problem-list tbody tr:nth-child(even) {
  background-color: #fdf2f2;
}
.table-skin-problem-list tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

/* Testimonial styling */
.testimonial-section-ref {
  padding: 3rem 0;
  text-align: center;
}
.testimonial-box-ref {
  max-width: 1000px;
  margin: 0 auto;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  position: relative;
  padding: 0 2rem;
}
.testimonial-box-ref::before {
  content: "“";
  font-size: 4rem;
  color: #e0e0e0;
  position: absolute;
  left: 0;
  top: -1.5rem;
  line-height: 1;
}
.testimonial-author-ref {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  font-style: normal;
}

/* Footer Section */
.footer-ref {
  background-color: #0b1a30; /* Dark Blue */
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem 0;
  font-size: 0.9rem;
}
.footer-ref h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}
.footer-ref ul {
  list-style: none;
  padding-left: 0;
}
.footer-ref ul li {
  margin-bottom: 0.6rem;
}
.footer-ref ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.footer-ref ul a:hover {
  color: var(--primary-color);
}
.footer-bottom-ref {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
  font-size: 0.85rem;
}

/* Custom 8% Left and Right Side Padding for All Containers */
.container {
  padding-left: 7% !important;
  padding-right: 7% !important;
}

/* Custom Dropdown Styling to match reference image */
.navbar-custom .dropdown-menu {
  background-color: #eeeeee !important;
  border-radius: 0 0 4px 4px !important;
  border: 1px solid #dcdcdc !important;
  border-top: 4px solid #c62828 !important; /* Thick red top border */
  padding: 0 !important;
  margin-top: 0 !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1) !important;
  min-width: 260px !important;
}
.navbar-custom .dropdown-item {
  font-family: "Open Sans", sans-serif !important;
  color: #333333 !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  padding: 0.75rem 1.2rem !important;
  border-bottom: 1px solid #dcdcdc !important;
  transition: var(--transition-smooth) !important;
  white-space: normal !important; /* Allows wrapping on narrow screens */
}
.navbar-custom .dropdown-item:last-child {
  border-bottom: none !important;
}
.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item:focus {
  background-color: #dcdcdc !important;
  color: #000000 !important;
}

/* Caret Customizations */
.navbar-custom .dropdown-toggle::after {
  display: none !important; /* Hide default bootstrap caret */
}

/* Enable opening dropdowns on hover on desktop viewports (min-width: 992px) */
@media (min-width: 992px) {
  .navbar-custom .nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    margin-top: 0 !important; /* Align dropdown exactly under the nav bar */
  }
}

/* Doctor Profile Page & Image Placeholder Styles */
.doctor-page-title {
  color: #1d2127;
  font-size: 36px;
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.doctor-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.doctor-section:last-of-type {
  border-bottom: none;
}
.doctor-section h2 {
  font-size: 30px;
  color: #1d2127;
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.doctor-section p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #777;
  text-align: justify;
  margin-bottom: 1.2rem;
}
.doctor-section p:last-child {
  margin-bottom: 0;
}
.doctor-blockquote {
  border-left: 4px solid #ee4b4b;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #555555;
}
.doctor-blockquote p {
  text-align: justify;
  font-size: 1.05rem;
  line-height: 1.7;
}
.img-placeholder-wrapper {
  background-color: #f5f5f5;
  border: 1px dashed #cccccc;
  border-radius: 8px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  width:80%;
}
.img-placeholder-wrapper::before {
  content: attr(data-label);
  color: #888888;
  font-size: 0.95rem;
  font-weight: 600;
  position: absolute;
  padding: 10px;
  text-align: center;
}
.img-placeholder-wrapper img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-placeholder-wrapper img:not([src]), 
.img-placeholder-wrapper img[src=""] {
  opacity: 0;
}
.img-placeholder-wrapper:has(img[src]:not([src=""])) {
  border: none;
  background-color: transparent;
}
.img-placeholder-wrapper:has(img[src]:not([src=""]))::before {
  display: none;
}
.img-placeholder-stacked {
  min-height: 160px;
}

/* Treatments Page Sidebar & Content Styles */
.treatments-layout-container {
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.treatments-sidebar {
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--white);
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.treatments-sidebar-title {
  background-color: #f7f7f7;
  color: #333333;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid #dcdcdc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.treatments-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.treatments-sidebar-item a {
  display: block;
  padding: 0.75rem 1.2rem;
  color: #555555;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  border-bottom: 1px solid #eeeeee;
  transition: var(--transition-smooth);
}
.treatments-sidebar-item:last-child a {
  border-bottom: none;
}
.treatments-sidebar-item a:hover {
  background-color: #f9f9f9;
  color: #0076c0;
  padding-left: 1.5rem;
}
.treatments-sidebar-item.active a {
  color: #0076c0;
  background-color: #fdfdfd;
  font-weight: 700;
  border-left: 4px solid #0076c0;
  padding-left: 1rem;
}
.treatment-detail-title {
  color: #1e73be;
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: center;
}
.treatment-detail-red-title {
  color: #ee4b4b;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.treatment-detail-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #777;
  text-align: justify;
  margin-bottom: 1.5rem;
}
.treatment-detail-list {
  padding-left: 1.5rem;
  margin-bottom: 1.8rem;
}
.treatment-detail-list li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #777;
  margin-bottom: 0.5rem;
  list-style: disc;
}
.treatment-detail-images {
  text-align: center;
}
.treatment-detail-icon {
  width: 60px;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.treatment-detail-img-box {
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  overflow: hidden;
  padding: 4px;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}
.treatment-detail-img-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Skin Treatments Page Styles */
.skin-banner-wrapper {
  width: 100%;
  max-height: 250px;
  overflow: hidden;
  border-bottom: 4px solid var(--primary-color);
  margin-bottom: 2.5rem;
}
.skin-banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.skin-page-title {
  color: #1d2127;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: capitalize;
}
.skin-image-card {
  border: 5px solid #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.skin-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}
.skin-list-title {
  color: #ee4b4b;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.skin-bullets-list {
  list-style: none;
  padding-left: 0;
}
.skin-bullets-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 15px;
  font-weight: 400;
  color: #777;
  line-height: 1.6;
}
.skin-bullets-list li::before {
  content: "•";
  color: #ee4b4b;
  font-size: 1.6rem;
  position: absolute;
  left: 0;
  top: -4px;
}
.skin-description-item {
  margin-bottom: 1.5rem;
  font-size: 15px;
  line-height: 1.7;
  color: #777;
  text-align: justify;
}
.skin-description-item strong {
  color: #333333;
  font-weight: 700;
}

/* Hair Treatments Page Styles */
.hair-page-title {
  color: #1d2127;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
  text-transform: capitalize;
}
.hair-image-card {
  border: 5px solid #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hair-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}
.hair-list-title {
  color: #ee4b4b;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hair-bullets-list {
  list-style: none;
  padding-left: 0;
}
.hair-bullets-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 15px;
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
}
.hair-bullets-list li::before {
  content: "•";
  color: #ee4b4b;
  font-size: 1.6rem;
  position: absolute;
  left: 0;
  top: -4px;
}
.hair-reasons-title {
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}
.hair-description-text {
  font-size: 15px;
  line-height: 1.7;
  color: #777;
  text-align: justify;
  margin-bottom: 1.2rem;
}

/* Red Banner Header for Diabetes and other pages */
.red-banner-header {
  background-color: #c62828; /* Crimson Red */
  color: #ffffff;
  font-size: 32px;
  font-weight: 400;
  padding: 1.5rem 1.2rem;
  border-radius: 4px;
  margin-bottom: 2.5rem;
  text-align: center;
}

/* Custom Gallery Tabs */
.custom-gallery-tabs {
  border-bottom: 1px solid #e0e0e0;
  gap: 4px 6px;
  margin-bottom: 25px;
}
.custom-gallery-tabs .nav-item {
  margin-bottom: -1px;
}
.custom-gallery-tabs .nav-link {
  background-color: #eeeeee;
  color: #555555;
  border: 1px solid #d0d0d0;
  border-radius: 4px 4px 0 0;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.2s ease-in-out;
}
.custom-gallery-tabs .nav-link:hover {
  background-color: #e2e2e2;
  color: #222222;
}
.custom-gallery-tabs .nav-link.active {
  background-color: #ffffff;
  color: #333333;
  border-color: #d0d0d0 #d0d0d0 #ffffff #d0d0d0;
  font-weight: 600;
}

/* Floating Fixed Right Social Media Sidebar */
.fixed-social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fixed-social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: -2px 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.fixed-social-sidebar a.social-facebook {
  background-color: #1877f2;
}

.fixed-social-sidebar a.social-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.fixed-social-sidebar a:hover {
  transform: translateX(-6px);
  color: #ffffff;
  box-shadow: -4px 5px 15px rgba(0, 0, 0, 0.3);
}

