/* assets/css/style.css */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}



/* --------------------------------------------
   TYPOGRAPHY SYSTEM (GLOBAL)
-------------------------------------------- */

/* Base font setup */
html {
  font-size: 62.5%; /* 1rem = 10px (easy scaling) */
  scroll-behavior: smooth;
}

body {
  font-family: var(--bs-font-sans-serif);
  color: #222;
  background-color: #fff;
  line-height: 1.6;
  font-size: 1.6rem; /* = 16px */
}

/* Headings - consistent margin and color */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-weight: 600;
  color: #004aad;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

/* Individual heading sizes */
h1, .h1 { font-size: 3.2rem; }   /* 32px */
h2, .h2 { font-size: 2.8rem; }   /* 28px */
h3, .h3 { font-size: 2.4rem; }   /* 24px */
h4, .h4 { font-size: 2rem; }     /* 20px */
h5, .h5 { font-size: 1.8rem; }   /* 18px */
h6, .h6 { font-size: 1.6rem; }   /* 16px */

/* Paragraphs */
p, .p {
  font-size: 1.6rem;  /* 16px */
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}



/* Icond color and text */
i, .ii {
    font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  font-size: 1.8rem;
}

/* --------------------------------------------
   TEXT COLOR UTILITIES
-------------------------------------------- */
.text-primary   { color: #004aad !important; }
.text-secondary { color: #58678a !important; }
.text-accent    { color: #f8b4a2 !important; }
.text-muted     { color: #777 !important; }
.text-white     { color: #fff !important; }

/* --------------------------------------------
   FONT WEIGHT UTILITIES
-------------------------------------------- */
.fw-light   { font-weight: 300 !important; }
.fw-normal  { font-weight: 400 !important; }
.fw-medium  { font-weight: 500 !important; }
.fw-semibold{ font-weight: 600 !important; }
.fw-bold    { font-weight: 700 !important; }


a {
  color: inherit;            /* Use parent color */
  text-decoration: none;     /* Remove underline */
  transition: color 0.3s ease, opacity 0.3s ease;
}


/* --------------------------------------------
   RESPONSIVE TYPOGRAPHY
-------------------------------------------- */
@media (max-width: 768px) {
  h1, .h1 { font-size: 2.6rem; }
  h2, .h2 { font-size: 2.2rem; }
  h3, .h3 { font-size: 2rem; }
  h4, .h4 { font-size: 1.8rem; }
  h5, .h5 { font-size: 1.6rem; }
  h6, .h6 { font-size: 1.5rem; }
  p, .p   { font-size: 1.5rem; }

  /* Icond color and text */
i, .ii {
    font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  font-size: 1.4rem;
}
}





































/* --------------------------------------------
   Announcement Bar Styling
-------------------------------------------- */
.announcement-bar {
  background-color: #2F4872;
  /* color: #f8b4a2; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 8px 5%;
  flex-wrap: wrap;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  flex: 1 1 50%;
}

/* .announcement-left i {
  margin-right: 5px;
  color: #f8b4a2;
} */

.divider {
  color: rgba(255,255,255,0.4);
}

.announcement-right {
  flex: 1 1 50%;
  text-align: right;
  color: #f8b4a2;
}

.announcement-right marquee {
  font-weight: 600;
  color: #ffffff;
}

/* --------------------------------------------
   Marquee Text Gradient Shine Animation
-------------------------------------------- */
/* --------------------------------------------
   Marquee Text Shimmer (Fixed Version)
-------------------------------------------- */
.announcement-right {
  overflow: hidden;
  position: relative;
}

.announcement-right marquee span {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
               0 0 10px rgba(255, 255, 255, 0.3);
  animation: shimmerGlow 2.5s ease-in-out infinite;
}

/* Shimmer animation keyframes */
@keyframes shimmerGlow {
  0% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4),
                 0 0 10px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.7),
                 0 0 20px rgba(255, 255, 255, 0.5);
  }
  100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4),
                 0 0 10px rgba(255, 255, 255, 0.3);
  }
}







/* --------------------------------------------
   Responsive (Mobile)
-------------------------------------------- */
@media (max-width: 768px) {
  .announcement-bar {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .announcement-left {
    justify-content: center;
    margin-bottom: 6px;
  }

  .announcement-right {
    text-align: center;
  }
}






/* --------------------------------------------
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-------------------------------------------- */


/* --------------------------------------------
   HEADER / NAVIGATION (with PNG icons)
-------------------------------------------- */

/* Header Container */
.site-header {
  position: sticky;
  top: 0;
  /* z-index: 1000; */
   z-index: 997;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}

/* Logo */
.logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* Navigation */
.nav-menu {
  flex: 1 1 auto;
  margin-left: 30px;
}

.menu-list {
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.menu-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #222;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
  padding: 8px 6px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

/* PNG Menu Icons */
.menu-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 6px;
  vertical-align: middle;
  transition: opacity 0.3s ease;
}

.nav-link:hover .menu-icon {
  opacity: 0.8;
}

/* Hover effect */
.nav-link:hover,
.nav-link:focus {
  color: #004aad;
  background: rgba(88, 103, 138, 0.08);
}

/* CTA & Hamburger */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-cta {
  background: #004aad;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-cta:hover {
  background: #00308c;
}

/* Hamburger Button */
.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #d2d2d2;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  padding: 6px;
  
}

.hamburger-box {
  display: inline-block;
  width: 26px;
  height: 18px;
  position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  background-color: #333;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger-inner { top: 8px; }
.hamburger-inner::before { content: ""; top: -6px; }
.hamburger-inner::after  { content: ""; top: 6px; }


/* --------------------------------------------
   DESKTOP MEGA MENU (STYLE)
-------------------------------------------- */

/* --------------------------------------------
   TWACHA STYLE FULL-WIDTH MEGA MENU
-------------------------------------------- */

.has-dropdown {
  /* position: relative; */
   position: static !important; /* parent ko static kar diya */
}

/* show menu on hover */
.has-dropdown:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Main mega menu container */
.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  /* width: 100%; */
  right: 0;
  /* width: 500%; */
  width: 100vw;
  margin-left: calc(50% - 50vw); /* center align hack */
  background: #ffffff;
  border-top: 2px solid #004aad;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

/* Inner container grid */
.mega-container {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  /* padding: 35px 6%; */
   padding: 35px 1%; 
}

/* Column headings */
.mega-column h4 {
  color: #58678a;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #d3d7e0;
  padding-bottom: 6px;
}

/* List style */
.mega-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-column ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

/* Custom circular bullet */
.mega-column ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #f8b4a2;
  border: 2px solid #d3d7e0;
  border-radius: 50%;
}

/* Links inside */
.mega-column ul li a {
  text-decoration: none;
  color: #1b1b1b;
  font-size: 1.45rem;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.mega-column ul li a:hover {
  color: #004aad;
}

/* responsive hide on mobile */
@media (max-width: 992px) {
  .mega-menu {
    display: none !important;
  }
   /* hide desktop nav menu on mobile */
  .nav-menu {
    display: none !important;
  }

  /* optional: reduce logo size */
  .logo img {
    height: 60px;
  }
}


/* HAMBURGER SHOULD SHOW ONLY ON MOBILE */
@media (min-width: 993px) {
  #site-hamburger {
    display: none !important;
  }
}



/* --------------------------------------------
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
 $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-------------------------------------------- */



/* --------------------------------------------
   MOBILE SLIDE-IN MENU (Part C)
-------------------------------------------- */
/* overlay background when menu open */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 998;
}

/* slide menu container */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.35s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* header area inside menu */
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.mobile-logo img {
  height: 50px;
  width: auto;
}

.mobile-close {
  font-size: 2.5rem;
  border: none;
  background: none;
  cursor: pointer;
  color: #333;
}

/* list styling */
.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 15px 0;
}

.mobile-menu-list li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-list a,
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  font-size: 1.6rem;
  color: #222;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.mobile-menu-list a:hover,
.mobile-dropdown-toggle:hover {
  background: rgba(88,103,138,0.08);
}

/* submenu */
.mobile-submenu {
  display: none;
  flex-direction: column;
  background: #fafafa;
}

.mobile-submenu li a {
  padding-left: 40px;
  font-size: 1.5rem;
}

/* toggle states */
.mobile-dropdown.open > .mobile-submenu {
  display: flex;
}

.mobile-dropdown.open .mobile-dropdown-toggle span {
  transform: rotate(45deg);
}

/* active body state */
body.mobile-menu-open .mobile-menu {
  right: 0;
}

body.mobile-menu-open .mobile-overlay {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------
   3rd LEVEL SUBMENU (MOBILE)
-------------------------------------------- */
.mobile-sub-submenu {
  display: none;
  flex-direction: column;
  background: #f2f2f2;
}

.mobile-sub-submenu li a {
  padding-left: 55px;
  font-size: 1.45rem;
}

/* when open */
.mobile-subdropdown.open > .mobile-sub-submenu {
  display: flex;
}

.mobile-subdropdown.open .mobile-subdropdown-toggle span {
  transform: rotate(45deg);
}


/* --------------------------------------------
   MOBILE MENU ICON FIX
-------------------------------------------- */

/* icons beside text */
.mobile-menu-list img {
  /* width: 22px; */
   width: 50px;       /* icon width */
  /* height: 22px; */
  height: 50px;      /* icon height */
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block;
  margin-right: 10px; /* space between icon and text */
  vertical-align: middle;
  filter: brightness(0.7); /* subtle tone for harmony */
  transition: filter 0.2s ease;
}

/* hover or active state */
.mobile-menu-list a:hover img {
  filter: brightness(1);
}



/* --------------------------------------------
   MOBILE MENU SUBMENU IMPROVED STYLING
   (Same look as desktop bullet list)
-------------------------------------------- */

/* 2nd-level submenu (Face Treatments > Acne etc.) */
.mobile-submenu {
  background: #fafafa;
  padding: 5px 0;
  border-left: 3px solid #004aad10;
}

/* 3rd-level submenu (Acne > Cystic Acne etc.) */
.mobile-sub-submenu {
  background: #fff;
  padding: 8px 0 8px 0;
  border-left: 3px solid #004aad20;
}

/* Common list item styling */
.mobile-submenu li,
.mobile-sub-submenu li {
  position: relative;
  list-style: none;
  padding: 8px 0 8px 35px;
  border-bottom: 1px solid #f1f1f1;
}

/* Bullet dot (same as desktop) */
.mobile-submenu li::before,
.mobile-sub-submenu li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 14px;
  width: 8px;
  height: 8px;
  background: #f8b4a2;
  border: 2px solid #d3d7e0;
  border-radius: 50%;
}

/* Link text */
.mobile-submenu li a,
.mobile-sub-submenu li a {
  display: block;
  color: #1b1b1b;
  font-size: 1.5rem;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease, background 0.2s ease;
}

/* Hover effect */
.mobile-submenu li a:hover,
.mobile-sub-submenu li a:hover {
  color: #004aad;
  background: rgba(0, 74, 173, 0.05);
}

/* Heading button styles (Acne, Acne Scar etc.) */
.mobile-subdropdown-toggle {
  background: #f0f0f0;
  font-weight: 600;
  color: #004aad;
  border: none;
  padding: 12px 20px;
  width: 100%;
  text-align: left;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-subdropdown-toggle span {
  font-size: 2rem;
  transition: transform 0.2s ease;
}

.mobile-subdropdown.open .mobile-subdropdown-toggle span {
  transform: rotate(45deg);
}

/* Sub-submenu animation */
.mobile-subdropdown.open > .mobile-sub-submenu {
  display: flex;
  flex-direction: column;
}



/* hide desktop nav */
@media (min-width: 993px) {
  .mobile-menu,
  .mobile-overlay {
    display: none;
  }
}




/* --------------------------------------------
   PART D — ANIMATION + OVERLAY POLISH
-------------------------------------------- */

/* Overlay blur */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);        /* soft blur */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 998;
}

/* Slide-in menu animation */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px 0 0 8px;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 999;
  overflow-y: auto;
}

/* When menu open */
body.mobile-menu-open .mobile-menu {
  right: 0;
}

body.mobile-menu-open .mobile-overlay {
  opacity: 1;
  visibility: visible;
}

/* Disable body scroll when menu open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Height expand animation for submenus */
.mobile-submenu,
.mobile-sub-submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.mobile-dropdown.open > .mobile-submenu {
  max-height: 1000px; /* enough for content */
}

.mobile-subdropdown.open > .mobile-sub-submenu {
  max-height: 800px;
}





/* -----------------------------------------------------
   HERO SECTION (Animated Banner)
----------------------------------------------------- */
/* --------------------------------------------
   HERO BANNER BASE (UI + ANIMATION)
-------------------------------------------- */
/* --------------------------------------------
   HERO BANNER (FULL UI + ANIMATION)
-------------------------------------------- */
:root {
  --hero-bg: #f4f8ff;
  --hero-accent: #004aad;
  --hero-text: #132238;
}

.hero {
  background: var(--hero-bg);
  padding: 45px 5%;
  position: relative;
}

.hero-inner {
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.hero-scene {
  position: relative;
  width: 100%;
}

/* SCENE BLOCK */
.scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.scene.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* TEXT */
.hero-text {
  flex: 1 1 50%;
}

.hero-title {
  font-size: 5rem;
  color: var(--hero-text);
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 1.6rem;
  color: #566178;
  margin-bottom: 18px;
  max-width: 40ch;
}

/* CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 22px;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 28px;
  text-decoration: none;
}

.btn-primary {
  background: var(--hero-accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,74,173,0.25);
}

.btn-outline {
  border: 2px solid var(--hero-accent);
  color: var(--hero-accent);
}

/* IMAGE */
.hero-image-wrap {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
}

.hero-image {
  width: 360px;
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 25px 45px rgba(21, 54, 100, 0.15),
              0 10px 20px rgba(21, 54, 100, 0.12);
}

/* --------------------------------------------
   MOBILE (TWACHA STYLE)
-------------------------------------------- */
@media (max-width: 768px) {

  .hero {
    /* padding: 20px 4%; */
     padding: 0px 4%;
  }

  .hero-inner {
    min-height: 30vh;
  }

  .scene {
    flex-direction: row;
    gap: 10px;
  }

  .hero-text {
    flex: 0 0 55%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-sub {
    display: none;
  }

  .btn-primary {
    padding: 6px 16px;
    font-size: 1.35rem;
  }

  .btn-outline {
    display: none !important; /* Only Book Appointment on mobile */
  }

  .hero-image-wrap {
    flex: 0 0 45%;
  }

  .hero-image {
    /* width: 70%;
    max-width: 150px; */
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(21, 54, 100, 0.15);
  }
}



/* SECTION STRUCTURE */

/* GLOBAL PAGE WRAPPER */




body {
  overflow-x: hidden;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #122238;
  margin-bottom: 35px;
  letter-spacing: 1px;
}



.containers {
  max-width: 1250px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}


.services-section {
  padding: 20px 0;
  margin-top: 10px;
  background-color: #F4F8FF;
}
.services-section-inner {
  display: flex;
  gap: 15px;
}

/* LEFT & RIGHT BOX */
.services-left, .services-right {
  background: #ffffff;
  padding: 28px;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.services-left { width: 45%; }
.services-right { width: 55%; }

/* TITLES */
.sec-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.dull { color: #2d3a4a; }
.pink-badge {
  background: #cf6d8c;
  padding: 6px 14px;
  color: #fff;
  border-radius: 10px;
}

/* TREATMENT BOX */
.treat-box {
  border: 1px solid #e5e7f0;
  border-radius: 18px;
  margin-bottom: 16px;
  overflow: hidden;
}

.treat-head {
  background: #5d6a89;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.treat-icon {
  width: 38px;
  height: 38px;
  margin-right: 12px;
}

.treat-head span {
  flex-grow: 1;
  margin-left: 12px;
  font-size: 2rem;
}

.treat-arrow {
  width: 26px;
  height: 26px;
  transition: 0.3s;
}

/* CONTENT */
.treat-content {
  background: #fff;
  padding: 20px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
}

.treat-content ul {
  padding-left: 20px;
}

.treat-content li {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.treat-content li a {
  color: #2b3750;
  text-decoration: none;
  transition: 0.25s;
}
.treat-content li a:hover {
  color: #004aad;
  padding-left: 4px;
}

/* ACTIVE */
.treat-box.active .treat-content { display: grid; }
.treat-box.active .treat-arrow { transform: rotate(90deg); }

/* RIGHT SIDE GRID */
.cond-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.cond-card {
  background: #fff;
  padding: 10px 10px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  text-decoration: none;
  color: #384259;
  transition: .25s;
}
.cond-card:hover { transform: translateY(-5px); }

.cond-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .services-section-inner { flex-direction: column; }
  .services-left, .services-right { width: 100%; }
  .cond-grid {
  
  grid-template-columns: repeat(2,1fr);
  gap: 22px;
}
}



/* why choose us ka section banaio *%
/* WHY CHOOSE US SECTION */
.why-section {
  margin-top: 10px;
  padding: 20px 0;
  background: rgb(255, 247, 244);
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* BOX */
.why-box {
  background: #ffffff;
  padding: 28px 22px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: 0.25s;
}

.why-box:hover {
  transform: translateY(-5px);
}

/* ICON */
.why-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
  object-fit: contain;
}

/* TITLE */
.why-box h3 {
  font-size: 1.9rem;
  margin-bottom: 8px;
  color: #122238;
}

/* TEXT */
.why-box p {
  font-size: 1.5rem;
  color: #556070;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}



/* meet our expert */
/* EXPERT SECTION */
.expert-section {
  padding: 20px 0;
  margin-top: 10px;
  background: linear-gradient(135deg, #f7faff 0%, #fff0f5 100%);
}

/* CARD LAYOUT */
.doctor-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(0,0,0,0.12);
}

/* DOCTOR IMAGE */
.doctor-image img {
  width: 300px;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* DETAILS */
.doctor-info {
  flex: 1;
}

/* BADGE */
.dr-badge {
  background: #004aad;
  color: #fff;
  padding: 6px 16px;
  border-radius: 18px;
  font-size: 1.4rem;
  display: inline-block;
}

/* NAME */
.dr-name {
  margin-top: 18px;
  font-size: 3rem;
  font-weight: 700;
  color: #1a2433;
}

/* QUALIFICATION */
.dr-qual {
  font-size: 1.7rem;
  color: #556070;
  margin-bottom: 18px;
}

/* EXPERIENCE BADGES */
.dr-experience {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
}

.exp-item {
  text-align: center;
}

.exp-item strong {
  display: block;
  /*font-size: 2.4rem;*/
  color: #cf6d8c;
  font-weight: 700;
}

.exp-item span {
  font-size: 1.4rem;
  color: #556070;
}

/* DESCRIPTION */
.dr-desc {
  font-size: 1.55rem;
  color: #414b61;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* SIGNATURE */
.dr-sign {
  width: 160px;
  margin-top: 10px;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .doctor-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  /* .doctor-image img {
    width: 230px;
  } */

  .dr-experience {
    justify-content: center;
  }
}




/* footer start */
/* FOOTER */
.footer {
  background: #1f2630;
  color: #dce1e8;
  padding: 60px 0 40px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
}

/* Titles */
.footer-box h3 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #ffffff;
}

/* Text */
.footer-box p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color:pink;
}

/* List */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #dce1e8;
  text-decoration: none;
  font-size: 1.5rem;
  transition: 0.25s;
}

.footer-box ul li a:hover {
  color: #ff8bb0;
  padding-left: 4px;
}

/* MAP */
.footer-map iframe {
  width: 100%;
  height: 160px;
  border: 0;
  border-radius: 12px;
  margin-top: 10px;
}

/* Disclaimer */
.footer-disclaimer {
  margin-top: 40px;
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1.6;
  text-align: center;
  padding: 0 10%;
}

/* Social Icons */
.footer-social {
  text-align: center;
  margin-top: 25px;
}

.footer-social a {
  color: #dce1e8;
  font-size: 2.3rem;
  margin: 0 12px;
  transition: 0.25s;
}

.footer-social a:hover {
  color: #ff8bb0;
  transform: translateY(-3px);
}

/* Copyright */
.footer-copy {
  margin-top: 20px;
  color: #8b93a0;
  text-align: center;
  font-size: 1.4rem;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-disclaimer {
    padding: 0;
  }
}





/* footer end */


/* h2 section css start */

/* WRAPPER */
.section-heading {
  text-align: center;
  margin-bottom: 15px;
  margin-top: 10px;
}

/* SMALL TOP TEXT */
.section-heading .sub-title {
  font-size: 1.3rem;
  letter-spacing: 0.32rem;
  font-weight: 500;
  color: #697a93;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* MAIN H2 TITLE */
.section-heading .main-title {
  font-size: 3.2rem;
  color: #0c1b33;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  position: relative;
}

/* UNDERLINE ACCENT */
.section-heading .line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #b87592, #ffacc6);
  margin: auto;
  border-radius: 4px;

  /* animation */
  transform: scaleX(0);
  animation: lineGrow 0.7s ease-out forwards;
}

@keyframes lineGrow {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* MOBILE FRIENDLY */
@media (max-width: 768px) {
  .section-heading .main-title {
    font-size: 2.4rem;
  }

  .section-heading .sub-title {
    font-size: 1.1rem;
    letter-spacing: 0.18rem;
  }

  .section-heading .line {
    width: 45px;
  }
}






/* h2 section css end */



/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

/* review section sstart */

/* review SECTION */
/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */


.chat-review-section {
  background: #F4F8FF;
  margin-top: 10px;
  padding: 20px 15px;
}

/* GOOGLE BADGE */
.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 40px;
  width: max-content;
  margin: auto;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.g-logo {
  width: 30px;
}

.g-rating {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1b1b1b;
}

.g-count {
  display: block;
  font-size: 1.2rem;
  color: #6b6b6b;
}

/* TITLE */
.chat-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 25px 0 40px;
}

/* MAIN WRAPPER */
.chat-reviews {
  max-width: 780px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ROWS */
.chat-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.chat-row.left { flex-direction: row; }
.chat-row.right { flex-direction: row-reverse; }

/* PICTURES */
.chat-pic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffb3cd;
}

/* CHAT BUBBLE */
.chat-bubble {
  padding: 14px 18px;
  max-width: 78%;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  border: 1px solid #f1d8e3;
  position: relative;
}

/* PATIENT CHAT BUBBLE (gradient) */
.chat-bubble.patient {
  background: linear-gradient(135deg, #ffffff, #ffe8f3);
}

/* CHAT TAIL */
.chat-row.left .chat-bubble::after,
.chat-row.right .chat-bubble::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 13px;
  height: 13px;
  background: inherit;
  border: inherit;
  transform: rotate(45deg);
}

.chat-row.left .chat-bubble::after { left: -6px; }
.chat-row.right .chat-bubble::after { right: -6px; }

/* STARS */
.stars {
  color: #ffb700;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

/* TEXT */
.chat-bubble p {
  font-size: 1.6rem;
  line-height: 1.55;
  color: #2f2f2f;
}

/* NAMES */
.chat-name {
  font-size: 1.4rem;
  margin-top: 8px;
  font-weight: 600;
  color: #555;
}

/* VERIFIED BADGE */
.verified {
  background: #d1ffd7;
  padding: 2px 6px;
  color: #1b8f3a;
  font-size: 1.1rem;
  border-radius: 4px;
  margin-left: 6px;
}

/* DESKTOP IMPROVED */
@media (min-width: 820px) {

  .chat-bubble { 
    max-width: 60%; 
    padding: 20px 26px;
    border-radius: 20px;
  }

  .chat-row.left  { padding-left: 4%; }
  .chat-row.right { padding-right: 4%; }

  /* Floating animation */
  .chat-row {
    animation: floatY 6s ease-in-out infinite;
  }

  @keyframes floatY {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
  }
}

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

/* review section end */

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */




/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

/* video or text section start */


/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

.hero-section {
  margin-top: 10px;
  padding: 20px 20px;
  background: #fff7f4;
}

.hero-container {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 40px;
  max-width: 1250px;
  margin: auto;
  flex-wrap: wrap;
}

/* VIDEO BOX */
.hero-video-box {
  position: relative;
  width: 360px;
  /* height: 640px; */ /* Instagram reel ratio */
   height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.hero-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SOUND BUTTON */
.sound-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 6px rgba(0,0,0,0.25);
}

.sound-btn img {
  width: 26px;
}

/* CONTENT AREA */
.hero-content {
  max-width: 520px;
}

.hero-subtitle {
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #6f6f6f;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.2;
  margin: 20px 0;
  color: #0d1b33;
  font-weight: 700;
}

.hero-title .highlight {
  color: #c06582;
}

.hero-text {
  font-size: 1.6rem;
  color: #4d4d4d;
  margin-bottom: 25px;
  line-height: 1.6;
}

.hero-btn {
  background: #1a2a47;
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #0f1d36;
}

/* ========== MOBILE VIEW ========== */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    gap: 30px;
  }

  .hero-video-box {
    width: 100%;
    max-width: 350px;
    height: 400px;
  }

  .hero-title {
    font-size: 2.6rem;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-btn {
    display: block;
    margin: auto;
    margin-top: 10px;
  }

  .hero-content { text-align: center; }
}



/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

/* video or text section end */

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */



/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

/* Before And Afterr image seciont start */

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */



/* SECTION */
.ba-single-section {
  padding: 60px 20px;
  background: #F4F8FF;
  text-align: center;
  margin-top: 10px;
}

/* HEADING */
.ba-heading h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ba-heading p {
  color: #555;
  font-size: 1.4rem;
  margin-bottom: 28px;
}

/* GRID */
.ba-single-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  max-width: 1250px;
  margin: auto;
}

/* DESKTOP GRID */
@media (min-width: 768px) {
  .ba-single-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .ba-single-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CARD */
.ba-single-card {
  background: #ffffff;
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transition: 0.3s ease;
}

.ba-single-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

/* IMAGE BOX */
.ba-single-imgbox {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.ba-single-imgbox img {
  width: 100%;
  height: auto;
  display: block;
}

/* TAG STYLES */
.tag {
  position: absolute;
  top: 12px;
  padding: 4px 12px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 6px;
}

/* LEFT SIDE — BEFORE */
.before-tag {
  left: 12px;
  background: #c44f6c;
}

/* RIGHT SIDE — AFTER */
.after-tag {
  right: 12px;
  background: #1b8149;
}

/* CAPTION */
.ba-caption {
  margin-top: 12px;
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
}



/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

/* Before And Afterr image seciont end */

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */




/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

/* GAlery section  start */

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */



/* WRAPPER */
.clinic-gallery-section {
  padding: 60px 20px;
  background: #fff7fc;
  margin-top: 10px;
}

/* HEADING */
.gallery-heading {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-heading h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.gallery-heading p {
  color: #666;
  font-size: 1.4rem;
}

/* MASONRY GRID */
.masonry-gallery {
  column-count: 1;
  column-gap: 16px;
  max-width: 1100px;
  margin: auto;
}

@media (min-width: 600px) {
  .masonry-gallery {
    column-count: 2;
  }
}

@media (min-width: 992px) {
  .masonry-gallery {
    column-count: 3;
  }
}

/* CHILD ITEM */
.masonry-item {
  margin-bottom: 16px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* IMAGE */
.masonry-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

/* HOVER EFFECT (desktop only) */
@media (min-width: 768px) {
  .masonry-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 26px rgba(0,0,0,0.18);
  }
}



/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

/* GAlery section end*/

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
