/* Reset spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Tagesschrift", system-ui;
}

/* Header layout */
.default-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 999;
  padding: 0;
  height: 100px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  background: transparent;
  border-bottom: none;
}

/* Inner flex wrapper */
.header-inner {
  width: 95vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo image */
.logo img {
  width: 25rem;
  height: 25rem;
  display: flex;
  margin-top: 50px;
  margin-left: -50px;
}

/* Navigation - Desktop Default */
.main-nav {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  position: static;
  width: auto;
  height: auto;
  background: transparent;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  box-shadow: none;
  transition: none;
}

.nav-menu-icon {
  margin-left: -25rem;
  font-size: 2rem;
  color: #fff;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black,
    1px 1px 0 black;
  display: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  user-select: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.nav-menu-icon:before {
  content: "☰";
}

.nav-menu-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.nav-menu-icon.active {
  color: #ff4081;
  text-shadow: none;
}

.nav-menu-icon.active:before {
  content: "✕";
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive mobile menu overlay adjustments */
@media (max-width: 768px) {
  .mobile-menu-overlay {
    background: rgba(0, 0, 0, 0.6);
  }
}

@media (max-width: 480px) {
  .mobile-menu-overlay {
    background: rgba(0, 0, 0, 0.7);
  }
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: #ffff;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: none;
  background: transparent;
  width: auto;
  text-align: left;
  border-bottom: none;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: #ff4081;
  transform: translateY(-2px);
}

/* Optional: Add padding to body to avoid overlap */
body {
  padding-top: 0;
}
.ilene-area {
  background-image: url("/img/splash-section-1.png");
}

.section-gap {
  padding: 100px 0;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  margin-bottom: 20px;
  color: #ff4081 !important;
}

.section-title p {
  font-size: 16px;
  margin-bottom: 0;
}

/* Switch to mobile menu at 991px and below */
@media (max-width: 991px) {
  .nav-menu-icon {
    margin-left: -25rem;
    display: flex !important;
    visibility: visible !important;
    margin-right: 3rem !important;
    margin-top: 3rem !important;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }

  .main-nav {
    position: fixed;
    top: 60px;
    right: -300px;
    width: 280px;
    /* background: rgba(255, 255, 255, 0.98); */
    backdrop-filter: blur(15px);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    height: calc(100vh - 100px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 0;
    gap: 0;
    margin-top: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border-left: 3px solid #ff4081;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 18px 25px;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 0;
    transform: none;
    font-size: 15px;
    font-weight: 600;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: #ff4081;
    color: #fff;
    transform: translateX(5px);
  }

  .section-title p br {
    display: none;
  }

  body{
    margin-right: -40px !important;
  }
}

nav a {
  font-size: 1px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black,
    1px 1px 0 black;
  margin: 0 25px;
  display: inline-block;
  padding: 6px 16px;
  transition: all 0.3s ease;
  border-radius: 0;
}

nav a:hover,
nav a.active {
  background-color: #ff4081;
  color: #fff;
  border-radius: 999px;
}

.primary-btn {
  line-height: 40px;
  padding: 0 30px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid #fff;
  color: #222222;
  display: inline-block;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none !important;
}

.primary-btn:focus {
  outline: none;
}

.primary-btn span {
  color: #fff;
  position: relative;
  z-index: 2;
}

.primary-btn .mr-10 {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.primary-btn:hover .mr-10 {
  margin-right: 20px;
}
.primary-btn:hover {
  background: #76a863;
  border-color: #76a863;
}

.primary-btn:hover span {
  color: #fff;
}

.primary-btn.white-bg {
  background: #fff;
  border: 1px solid #eee;
  color: #8460f6;
}

.primary-btn.white-bg span {
  color: #8460f6;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.primary-btn.white-bg:hover {
  background: #8460f6;
  color: #fff;
  border: 1px solid transparent;
}

.primary-btn.white-bg:hover span {
  color: #fff;
}

/* Background Video Style */
.banner-area {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.banner-area .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay Shadow */
.banner-area .overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: oklab(76.11% -0.04363 0.12532 / 0.3);
  z-index: 2;
}

/* Responsive overlay adjustments */
@media (max-width: 768px) {
  .banner-area .overlay-bg {
    background: oklab(76.11% -0.04363 0.12532 / 0.4);
  }
}

@media (max-width: 480px) {
  .banner-area .overlay-bg {
    background: oklab(76.11% -0.04363 0.12532 / 0.5);
  }
}

/* Ensure content is on top */
.banner-area .container,
.banner-content {
  position: relative;
  z-index: 3;
}
.banner-content {
  font-family: "Tagesschrift", system-ui;
  font-size: 150px;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black,
    1px 1px 0 black;
}

.banner-content h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .default-header {
    padding: 10px 0;
    margin-top: 2rem;
  }

  .header-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 1rem;
    width: 100%;
  }

  .logo {
    flex: 0 0 180px;
  }

  .logo img {
    width: 180px;
    height: auto;
    margin-top: -30px;
    margin-left: -50px;
  }

  .main-nav {
    position: fixed;
    top: 60px;
    right: -300px;
    width: 280px;
    /* background: rgba(255, 255, 255, 0.98); */
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    height: calc(100vh - 100px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 0;
    gap: 0;
    margin-top: 0;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    color: #333;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .main-nav a:hover {
    background: #ff4081;
    color: #fff;
  }

  .nav-menu-icon {
    display: flex !important;
    visibility: visible !important;
    margin-right: 3rem !important;
    margin-top: -3rem !important;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }

  .banner-content {
    margin-top: 8rem;
    font-size: 1.5rem;
    padding: 0 1rem;
  }

  .banner-content h1 {
    font-size: 1.6rem;
  }

  .banner-content p {
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .logo img {
    width: 200px;
    height: auto;
    margin: 0;
  }
  .nav-menu-icon{
    margin-top: -5rem !important;
  }
  .main-nav a {
    font-size: 15px;
    padding: 15px 20px;
  }

  .banner-content {
    margin-top: 12rem;
    font-size: 2rem;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}

@media (min-width: 1025px) {
  .logo img {
    width: 300px;
    height: auto;
  }

  .main-nav a {
    font-size: 16px;
  }

  .banner-content {
    font-size: 2.5rem;
    margin-top: 25rem;
  }

  .banner-content h1 {
    font-size: 2.2rem;
  }

  .banner-content p {
    font-size: 1.1rem;
  }
}

/* About */

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

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.history-area {
  height: 100vh;
  background-color: #eef8ff;
}

.custom-container {
  max-width: 100vw;
  margin: 0 auto;
}

/* Title */
.centered-title {
  text-align: center;
  margin-bottom: 40px;
}

.centered-title h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
  margin-top: 2.5rem;
}

.centered-title p {
  font-size: 1rem;
  color: #666;
}

.history-tab-wrapper {
  background-color: hsla(0, 0%, 20%, 0.3);
  border-radius: 16px;
  padding: 40px;
  box-shadow: none;
}

.custom-row {
  margin-top: -50px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ilene-tabs .nav-item {
  line-height: 40px;
  padding: 0 25px;
  border: 1px solid #eee;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-right: 10px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: #ca143c;
}

.tabs input[type="radio"] {
  display: none;
}

.tabs label {
  cursor: pointer;
  display: inline-flex; /* Keep it inline */
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ca143c;
  border: 1px solid #ddd;
  border-radius: 25px;
  background: transparent;
  transition: 0.3s all ease;
}

@media (max-width: 767px) {
  .ilene-tabs .nav-item {
    margin-top: 10px;
  }
}

.tab-thumb {
  /* padding: 0 0 30px 30px; */
  position: relative;
  z-index: 2;
}


.img-fluid {
  border-radius: 20px;
  height: 30rem;
  /* margin-top: -90px; */
}

@media (max-width: 575px) {
  .tab-thumb {
    padding: 0;
  }
}

.ilene-tabs .nav-item:last-child {
  margin-right: 0;
}

.ilene-tabs .nav-item span {
  margin-right: 10px;
  color: #8460f6;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 14px;
}

.ilene-tabs .nav-item:hover {
  background: #ca143c;
  color: #fff;
  border: 1px solid transparent;
  text-decoration: none;
}

.ilene-tabs .nav-item:hover span {
  color: #fff;
}

.ilene-tabs .nav-item.active {
  background: #ca143c;
  color: #fff;
  border: 1px solid transparent;
}

.ilene-tabs .nav-item.active span {
  color: #fff;
}

.tabs label:hover {
  background-color: #f4f0ff;
}

.tabs input:checked + label {
  background-color: #ca143c;
  color: #fff;
  box-shadow: 0 2px 8px rgba(123, 97, 255, 0.2);
}

.tab-label img.icon {
  width: 18px;
  height: 18px;
  filter: invert(39%) sepia(83%) saturate(5000%) hue-rotate(240deg)
    brightness(95%) contrast(105%);
}

#tab1:checked ~ .tab-content .tab-panel:nth-child(1),
#tab2:checked ~ .tab-content .tab-panel:nth-child(2),
#tab3:checked ~ .tab-content .tab-panel:nth-child(3),
#tab4:checked ~ .tab-content .tab-panel:nth-child(4),
#tab5:checked ~ .tab-content .tab-panel:nth-child(5),
#tab6:checked ~ .tab-content .tab-panel:nth-child(6) {
  display: block;
}

#tab1:checked ~ label[for="tab1"],
#tab2:checked ~ label[for="tab2"],
#tab3:checked ~ label[for="tab3"],
#tab4:checked ~ label[for="tab4"],
#tab5:checked ~ label[for="tab5"],
#tab6:checked ~ label[for="tab6"] {
  background-color: #ca143c;
  color: #fff;
  font-weight: 700;
  border-color: transparent;
}

#tab1:checked ~ label[for="tab1"] img.icon,
#tab2:checked ~ label[for="tab2"] img.icon,
#tab3:checked ~ label[for="tab3"] img.icon,
#tab4:checked ~ label[for="tab4"] img.icon,
#tab5:checked ~ label[for="tab5"] img.icon,
#tab6:checked ~ label[for="tab6"] img.icon {
  filter: invert(100%) brightness(200%);
}

.tab-content {
  padding: 20px 0;
}

.tab-panel {
  display: none;
}

.tab-layout {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: nowrap;
}

.tab-left {
  flex: 1 1 50%;
  overflow: hidden;
  background-color: transparent;
  padding: 0;
}

.ilene-tab-left img.tab-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
}

.tab-left img.tab-img:hover {
  transform: scale(1.05) rotate(0.5deg);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.tab-right {
  flex: 1 1 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tab-right h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #111;
}

.tab-right p {
  font-size: 1rem;
  color: #555;
  font-weight: normal;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .tab-layout {
    flex-direction: column;
    text-align: center;
  }

  .tab-left,
  .tab-right {
    flex: 1 1 100%;
  }

  .tabs {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .centered-title h2 {
    font-size: 1.8rem;
  }

  .centered-title p {
    font-size: 0.95rem;
  }

  .history-area {
    padding: 40px 10px;
  }

  .history-tab-wrapper {
    padding: 20px;
  }

  .tab-right {
    padding: 20px;
  }

  .tab-right h3 {
    font-size: 1.5rem;
  }

  .tabs label {
    font-size: 0.85rem;
    padding: 8px 14px;
    margin: 4px;
  }

  .tab-right p {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {

  .tab-right {
    padding: 30px;
  }

  .tab-right h3 {
    font-size: 1.6rem;
  }

  .tab-right p {
    font-size: 0.98rem;
  }

  .centered-title h2 {
    font-size: 2.2rem;
  }

  .tabs label {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .single-content p{
    font-size: small;
  }
}

/* gallery part */

.gallery-heading {
  padding-top: 50px !important;
  width: 100vw;
  color: #ff4081 !important;
}

.gallery-container {
  position: relative;
  overflow: hidden;
  width: 90vw;
  margin-left: 5%;
}

.gallery-wrapper {
  display: flex;
  padding-bottom: 50px !important;
  transition: transform 0.3s ease;
}

.slide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 245px);
  gap: 3rem;
  min-width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
}

.hero-item img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.3s ease;
}

/* Overlay */
.hero-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: oklab(47.674% -0.01597 0.05227 / 0.3);
  pointer-events: none;
  transition: background 0.3s;
}

.hero-item:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-item:hover::after {
  background: oklab(62.434999999999995% -0.01282 0.09037 / 0.1);
}

/* Responsive gallery overlay adjustments */
@media (max-width: 768px) {
  .hero-item::after {
    border-radius: 6px;
    background: oklab(47.674% -0.01597 0.05227 / 0.2);
  }

  .hero-item:hover::after {
    background: oklab(62.434999999999995% -0.01282 0.09037 / 0.05);
  }
}

@media (max-width: 480px) {
  .hero-item::after {
    border-radius: 4px;
    background: oklab(47.674% -0.01597 0.05227 / 0.15);
  }

  .hero-item:hover::after {
    background: oklab(62.434999999999995% -0.01282 0.09037 / 0.03);
  }
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  display: block;
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

@media (max-width: 480px) {
  .slide {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 140px !important;
    gap: 10px !important;
    padding: 10px !important;
    box-sizing: border-box !important;
  }

  .hero-item {
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
  }

  .hero-item img {
    width: 100%;
    height: 100%;
    display: block;
  }
  .hero-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  }

  .arrow {
    font-size: 18px;
    padding: 6px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border-radius: 50%;
    z-index: 10;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .slide {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 160px);
    gap: 8px;
  }

  h2 {
    font-size: 1.7rem;
  }

  .arrow {
    font-size: 22px;
    padding: 8px;
  }
}

@media (max-width: 992px) {
  .slide {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 120px);
    gap: 10px;
  }

  h2 {
    font-size: 2rem;
  }
}
/* gallery end  */

/* museum start */
.museum-types-section{
    background-image: url("../img/splash-section-3.png");
  }

.museum-container {
  max-width: 80vw;
  /* margin-left: 1.3%; */
}

.museum-row {
  flex-wrap: nowrap !important;
}

/* Box Wrapper */
.single-service {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Top Section (Image area) */
.single-service .top {
  height: 15rem;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Content inside top stays above image */
.single-service .top .content {
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: (0, 0, 0, #fff);
}

.single-service .top .content h2 {
  font-size: 23px;
  margin-top: 20px;
  color: #f3487f;
  transition: color 0.3s ease;
}

/* Bottom Section */
.single-service .bottom {
  height: 15rem;
  /* background: #ca143c; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  color: #fff;
}
.live-art-bg {
  /* background-image: url("../img/blue-splash.png"); */
  background: #ffbc01;
  font-size: 18px;
}
.teddy-bg {
  /* background-image: url("../img/green-splash.png"); */
  background: #ca143c;
  font-size: 18px;
}
.fish-bg {
  /* background-image: url("../img/orange-splash.png"); */
  background: #224773;
  font-size: 18px;
}
.single-line-bg {
  /* background-image: url("../img/yellow-splash.png"); */
  background: #76a863;
  font-size: 18px;
}
.beach-bg {
  /* background-image: url("../img/pink-splash.png"); */
  background: #e95819;
  font-size: 18px;
}
/* Hover style for text */
.single-service:hover .top {
  background: #f3487f;
  font-size: 18px;
}

.single-service:hover .top .content h3 {
  color: #fff;
}

.single-service .top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

/* Show image on hover */
.single-service:hover .top::before {
  opacity: 1;
}

/* Responsive museum card overlay adjustments */
@media (max-width: 991px) {
  .single-service .top::before {
    background-position: center center;
    background-size: cover;
  }
}

@media (max-width: 768px) {
  .single-service .top::before {
    background-position: center center;
    background-size: contain;
    opacity: 0.1;
  }

  .single-service:hover .top::before {
    opacity: 0.3;
  }
}

@media (max-width: 480px) {
  .single-service .top::before {
    background-position: center center;
    background-size: cover;
    opacity: 0.05;
  }

  .single-service:hover .top::before {
    opacity: 0.2;
  }
}

/* Unique background images for each box */
.single-service.software .top::before {
  background-image: url("../img/Live\ Art.jpg"); /* Live art*/
}

.single-service.wordpress .top::before {
  background-image: url("../img/Teddy.jpg"); /* teddy museum */
}

.single-service.frontend .top::before {
  background-image: url("../img/Fish.jpg"); /* fish image*/
}

.single-service.uxdesign .top::before {
  background-image: url("../img/Single\ Line.jpg"); /* single art gallery */
}

.single-service.uiux .top::before {
  background-image: url("../img/Davenci.jpg"); /* beach image */
}
/* Fix order issue for flex-based boxes (wordpress & uxdesign) */
.single-service.wordpress,
.single-service.uxdesign {
  flex-direction: column !important;
}
@media (max-width: 767px) {
  .museum-types-section{
    background-image: url("../img/splash-section-3.png");
  }

  .museum-container {
    max-width: 100%;
    margin-left: 0;
  }
.museum-row {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
  }

  .museum-row > .single-service {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    text-align: center;
  }

  .museum-area {
    position: relative;
    z-index: 1;
    clear: both;
  }

  .single-service .top,
  .single-service .bottom {
    padding: 10px 0;
  }

  .single-service h4 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 4px;
  }

  .single-service h5,
  .single-service p {
    font-size: 0.875rem;
    margin: 0;
  }
.main-nav{
  margin-top: 2rem !important;
}
}
@media (min-width: 714px) {
  .museum-container{
    max-width: 80vw;
    margin-top: 8rem;
  }
  .banner-content{
    margin-top: 17rem !important;
  }
}
@media (max-width: 713px) {

  .text-div{
    visibility: hidden;
    width: 0px;
  }
  .social-card{
    width: 3.8rem !important;
    height: 3.3rem !important;
  }
  .social-icon-circle{
    margin-right:0px !important;
    width: 100%;
  }
  .social-links{
    position: absolute;
    top:80% ;
    right:70% !important;
  }
  .contact-info{
    position: absolute;
    left: 30% !important;
  }
.history-area{
  height: auto !important;
}
.museum-area{
  height: auto !important;
}
.gallery-section{
  margin-top: 0 !important;
}
.banner-content{
  margin-top: 13.5rem !important
}
.contact-content iframe{
  width: 30rem !important;
}
.contact-info{
  position: absolute;
  left:20% !important;
}
}

@media (max-width: 700px) {
  .contact-info{
    height: 35rem !important;
    top: 45% !important;
  }
}
@media (max-width: 606px) {
  .contact-info{
    height: 30rem !important;
    top: 57% !important;
    left: 20% !important;
  }
  .banner-content{
    margin-top: 10rem !important;
  }
}

@media (max-width: 540px) {
  .contact-content iframe{
  width: 23rem !important;
}
.contact-info{
    height: 30rem !important;
    top: 55% !important;
  }
  .banner-content{
    margin-top: 10rem !important;
  }
}
@media (min-width: 506px) and (max-width:550px){
  .contact-info{
    width: 20rem !important;
  }
}

@media (min-width: 460px) and (max-width:585px){
  body{
     margin-right: -80px!important;
  }
}
@media (max-width: 505px) {
   .nav-menu-icon{
    margin-right: 7rem!important;
  }
  body{
    margin-right: -90px !important
  }
  .banner-content{
    margin-top: 10rem !important;
  }
  .map iframe{
    width: 30rem !important;
  }
  .contact-info{
    height: 25rem !important;
    top: 66% !important;
    left: 13% !important;
  }
}
@media (max-width: 480px) {
   .nav-menu-icon{
    margin-right: 15rem!important;
  }
  .map iframe{
    width: 27rem !important;
  }
  .logo{
    margin-top: 25px !important;
  }
  .main-nav{
    margin-right: -6rem !important;
  }
  .contact-info{
    left:10% !important
  }
  .banner-content{
    margin-top: 10rem !important;
  }

}
@media (max-width: 469px) {
   .nav-menu-icon{
    margin-right: 15rem!important;
  }
  .logo{
    margin-top: 25px !important;
  }
  .main-nav{
    margin-right: -6rem !important;
  }

  .banner-content{
    margin-top: 10rem !important;
  }
  .social-links{
    width: 100% !important;
    position: absolute;
    left:-30% !important;
  }
  .map iframe{
    width: 26rem !important;
  }
  .contact-info{
height: 20rem !important;
width: 20rem !important;
position: absolute;
top:78% !important;
left: 25% !important;
}
}
@media (max-width: 410px) {
 body{
  margin-right: -80px !important;
 }
   .main-nav{
    margin-right: -2rem !important;
  }
  .nav-menu-icon{
    margin-right: 7rem!important;
  }
  .map iframe{
    width: 25rem !important;
  }
  .banner-content{
    margin-top: 10rem !important;
  }
  .logo{
    margin-top: 25px !important;
  }
  .contact-info{
  height: 20rem !important;
  width: 16rem !important;
  position: absolute;
  top:78% !important;
  left: 30% !important;
}

}
@media (max-width:375px ) {
  body{
    margin-right: -90px !important;
  }
  .main-nav{
    margin-right: -6rem !important;
  }
  .map iframe{
    width: 22rem !important;
  }
  .banner-content{
    margin-top: 10rem !important;
  }
  .nav-menu-icon{
  margin-right: 15rem!important;
}
 .logo img{
  margin-top: -20px !important;
}
}
@media (min-width:320px )and (max-width: 350px) {

.img-fluid{
  height: 25rem;
}

/* Ultra-small screen overlay adjustments */
.banner-area .overlay-bg {
  background: oklab(76.11% -0.04363 0.12532 / 0.6);
}

.hero-item::after {
  background: oklab(47.674% -0.01597 0.05227 / 0.1);
}

.single-service .top::before {
  opacity: 0.03;
}

.single-service:hover .top::before {
  opacity: 0.15;
}
.map iframe{
  width:20rem !important;
}
.banner-content{
  margin-top: 10rem !important;
}
.contact-info{
height: 20rem !important;
width: 16rem !important;
position: absolute;
top:78% !important;
left: 20% !important;
}
.logo{
  margin-top: 2.7rem;
}
.nav-menu-icon{
  margin-right: 15rem!important;
}
.main-nav{
  margin-right: -6rem !important;
}
}
/* testimonals start */

.reviews-section {
  padding: 1rem 1rem;
  background-position: bottom;
  background-image: url("../img/splash-section-3.png");
}

.reviews-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
  color: #ff4081 !important;
  letter-spacing: 0.5px;
  padding-top: 2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: auto;
  animation: fadeIn 1.5s ease;
}

.review-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
  cursor: pointer;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #f3ec78, #af4261);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
  box-sizing: border-box;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.review-card img {
  width: 100%;
  height: auto;
  display: block;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  transition: opacity 0.4s ease;
}

.review-card:hover img {
  opacity: 0.85;
}

.review-card-content {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #444;
}

.review-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid #ddd;
}

.review-text {
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem;
}

.review-stars {
  color: #fbb034;
  margin-bottom: 0.5rem;
}

.review-date {
  font-size: 0.75rem;
  color: #999;
}

.zoom-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.zoom-modal.active {
  display: flex;
}

.zoom-modal img.zoomed-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  /* box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); */
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  .reviews-section {
    padding-bottom: 0.5rem;
    margin-bottom: 0;
    overflow: hidden;
    background-size: cover;

    background-position: top center;
  }

  .reviews-title {
    font-size: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .review-card-content {
    padding: 1rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .close-btn {
    font-size: 2.2rem;
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .reviews-title {
    font-size: 1.7rem;
  }
  .review-card {
    border-radius: 12px;
  }

  .review-card::before {
    border-radius: 12px;
    padding: 1px;
  }

  .review-card:hover {
    transform: translateY(-4px) scale(1.01);
  }

}
/* testimonals end */

/*------ Footer Section ------*/

.contact-section {
  position: relative;
  padding: 60px 40px 150px 40px;
  background: url("../img/splash-section-5.png");
  background-size: cover;
  background-color: hsla(0, 0%, 20%, 0.8);
  text-align: center;
}

/*------ Heading ------*/
.contact-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.map {
  position: relative;
  z-index: 0;
  margin-right: 12rem;
}

.contact-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(10%, -40%);
  z-index: 2;
  width: 36rem;
  height: 47rem;
  background-image: url("../img/contact-image.png");
  background-size: cover;

  border-radius: 12px;
}

.map-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #ff4081;
  font-size: 2.5rem;
}

.contact-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.map iframe {
  width: 60rem;
  height: 450px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
}

.contact-info i {
  margin-right: 8px;
  color: #ca143c;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 40px auto 30px auto;
  max-width: 55rem;
  margin-top: -5rem;
  transform: translateX(-20%);
}
.social-links a {
  text-decoration: none;
}

.social-card {
  border-radius: 20px;
  display: flex;
  width: 20rem;
  height: 5rem;
  padding: 15px 15px;
  text-align: center;
  background: rgb(255, 255, 255, 0.9);
  border: #de7a9d solid 1px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.social-card:hover {
  transform: translateY(-5px);
}

.social-icon-circle {
  width: 3rem;
  height: 3rem;
  background: #de7a9d;
  border-radius: 50%;
  text-align: center;
  color: white;
  font-size: 18px;
  align-content: center;
  margin-right: 15px;
  box-shadow: 0 4px 12px rgba(230, 122, 174, 0.2);
}

.social-handle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
}

.copyright {
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

@media (max-width: 1024px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .map iframe {
    width: 90%;
    height: 350px;
  }

  .contact-img {
    height: 400px;
    margin-top: -60px;
  }

  .social-links {
    flex-direction: row;
    justify-content: center;
    transform: translateX(0);
    margin-top: 20px;
  }

  .contact-info {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 20px 100px 20px;
  }
  .copyright {
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

  .contact-section h2 {
    font-size: 30px;
  }

  .map iframe {
    width: 100%;
    height: 300px;
  }

  .contact-img {
    height: 500px;
    margin-top: -40px;
  }

  .social-label {
    font-size: 14px;
  }

  .social-handle {
    font-size: 13px;
  }

}
.bg-wrapper {
  background: url("../img/bg\ 1.jpg") no-repeat center center;
  width: 100%;
}
.gallery-section {
  background-image: url("../img/splash-section-2.png");
  margin-top: -70px;
  margin-bottom: -50px !important;
}

.centered-title,
.gallery-container {
  margin-top: 0px !important;
  margin-bottom: 10px !important;
  padding-top: 10px !important;
  padding-bottom: 0px !important;
}

section {
  padding: 100px 20px;
  box-sizing: border-box;
}
@media (max-width: 1265px) {
  .map iframe {
    width: 40rem;
    height: 450px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
  }
  .contact-info {
    width: 32rem;
    height: 46rem;
    left: 30%;
  }
}
@media (max-width: 1205px) and (min-width: 993px) {

  .slide {
    gap: 1rem;
  }
  .hero-item {
    height: 90%;
  }
  .main-nav {
    gap: 0px;
  }
}
@media (min-width: 1152px) {
  .banner-content{
    margin-top: 18rem ;
  }
}


@media (max-width: 1115px) {
  .banner-content{
    margin-top: 14rem ;
  }
  .contact-info {
    width: 30rem;
    height: 38rem;
    top: 40%;
    left: 46%;
  }
  .social-links {
    position: absolute;
    top: 90%;
    right: 15%;
  }
  .contact-section {
    padding: 60px 40px 50px 40px;
  }
  .main-nav {
    gap: 0px;
  }
  .banner-content {
    margin-top: 20rem;
  }
  .history-tab-wrapper {
    padding: 1rem 1rem 0.2rem 1rem;
  }
  .about-section {
    background-size: cover;
  }
  .gallery-section {
    background-size: cover;
  }

  .testimonial-section {
    background-color: cover;
  }
}
@media (max-width: 1025px) {
  .social-links {
    position: absolute;
    top: 80%;
    right: 26%;
  }
}

@media (max-width: 980px) {
  .contact-info {
    width: 27rem;
    height: 38rem;
    top: 40%;
    left: 40%;
  }

  .social-links {
    position: absolute;
    top: 80%;
    right: 30%;
  }

  .social-card{
    height: 4.5rem;
    width: 17rem;
  }
}
@media (max-width: 804px) {
 .social-card{
    height: 3.5rem;
    width: 15rem;
 }
.text-div h5{
  font-size: small;
}
.soc-id{
  font-size: 11px;
}
.social-icon-circle{
  width: 2rem;
  height: 2rem;
}
}
@media (max-width: 790px){
  .contact-info{
    left:30%;
  }
}
