/********** Template CSS **********/

:root {
  filter: none !important;
  -webkit-filter: none !important;
}

:root {
  color-scheme: light only !important;
  -webkit-color-scheme: light only !important;

  --primary-pink: #b33473 !important;
  --light-pink: #8e2659 !important;
  --dark-pink: #6e1a42 !important;
  --softest-pink: #FFFFFF !important;
  --pale-pink: #FFFFFF !important;
  --ultra-light-pink: #FFFFFF !important;
  --pure-white: #FFFFFF !important;
  --off-white: #FFFFFF !important;
  --text-dark: #2C3E50 !important;
  --text-gray: #6C757D !important;

  --bs-primary: #b33473 !important;
  --bs-primary-rgb: 255, 159, 243 !important;
  --bs-link-color: #b33473 !important;
  --bs-link-hover-color: #8e2659 !important;
  --bs-body-color: #2C3E50 !important;
  --bs-body-bg: #FFFFFF !important;
  --bs-dark: #4A5568 !important;
  --bs-secondary: #6C757D !important;
  --bs-text-opacity: 1 !important;
}

.text-primary {
  color: #b33473 !important;
}

.bg-primary {
  background-color: #b33473 !important;
}

.btn-primary {
  background-color: #b33473 !important;
  border-color: #b33473 !important;
  color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #8e2659 !important;
  border-color: #8e2659 !important;
  color: #ffffff !important;
}

.border-primary {
  border-color: #b33473 !important;
}

.spinner-grow.text-primary {
  color: #b33473 !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #8e2659 !important;
}

/* Global Link Styling */
a {
  color: #b33473 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

a:hover {
  color: #8e2659 !important;
}

a:visited {
  color: #6e1a42 !important;
}

a:focus {
  outline: 2px solid #b33473 !important;
  outline-offset: 2px !important;
}

.text-dark {
  color: #2C3E50 !important;
}

.text-white {
  color: #FFFFFF !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.bg-dark {
  background-color: #2C3E50 !important;
}

.bg-dark p,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark span,
.bg-dark div:not(.btn) {
  color: #FFFFFF !important;
}

.bg-dark a:not(.btn) {
  color: #FFFFFF !important;
}

.bg-dark a:not(.btn):hover {
  color: #b33473 !important;
}

.bg-dark .text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-secondary {
  color: #6C757D !important;
}

.bg-secondary {
  background-color: #6C757D !important;
}

.border-secondary {
  border-color: rgba(108, 117, 125, 0.3) !important;
}

.btn-dark {
  background-color: #4A5568 !important;
  border-color: #4A5568 !important;
  color: #ffffff !important;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
  background-color: #5A6C7D !important;
  border-color: #5A6C7D !important;
  color: #ffffff !important;
}

p,
span,
div,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
}

/* Input and Form Controls Light Theme */
input,
textarea,
select,
button {
  background-color: #FFFFFF !important;
  color: #2C3E50 !important;
  border-color: #dee2e6 !important;
}

input:focus,
textarea:focus,
select:focus {
  background-color: #FFFFFF !important;
  color: #2C3E50 !important;
  border-color: #b33473 !important;
  outline: none !important;
  box-shadow: 0 0 0 0.2rem rgba(179, 52, 115, 0.25) !important;
}

input::placeholder,
textarea::placeholder {
  color: #6C757D !important;
  opacity: 0.7 !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #6C757D !important;
  opacity: 0.7 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #6C757D !important;
  opacity: 0.7 !important;
}

button:focus,
a:focus {
  outline: 2px solid #b33473 !important;
  outline-offset: 2px !important;
}

/* Custom Scrollbar Light Theme */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f0f8ff;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #b33473, #8e2659);
  border-radius: 10px;
  border: 2px solid #f0f8ff;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #8e2659, #6e1a42);
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #b33473 #f0f8ff;
}

/* Text Selection Color */
::selection {
  background-color: #b33473 !important;
  color: #FFFFFF !important;
  text-shadow: none !important;
}

::-moz-selection {
  background-color: #b33473 !important;
  color: #FFFFFF !important;
  text-shadow: none !important;
}

/*** Navbar Logo Size Control ***/
.navbar-brand img {
  max-height: 60px !important;
  width: auto !important;
  object-fit: contain !important;
}

.navbar-brand h1 {
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
}

/*** Footer Logo Size Control ***/
.footer .navbar-brand img {
  max-height: 80px !important;
  max-width: 250px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

.footer .navbar-brand h1 {
  margin-bottom: 0 !important;
  line-height: 1 !important;
}

/*** Prevent layout breaking ***/
.navbar {
  min-height: 80px !important;
}

.navbar-brand {
  padding: 0.5rem 1rem !important;
  background: transparent !important;
  box-shadow: none !important;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  color-scheme: light only !important;
  background-color: #FFFFFF !important;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background-color: #FFFFFF !important;
  color: #2C3E50 !important;
  font-family: 'Open Sans', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@supports (-webkit-touch-callout: none) {
  body {
    -webkit-text-fill-color: #2C3E50;
  }
}

@media (prefers-color-scheme: dark) {
  * {
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    mix-blend-mode: normal !important;
    color-scheme: light only !important;
    -webkit-color-scheme: light only !important;
    forced-color-adjust: none !important;
  }

  :root {
    color-scheme: light only !important;
    -webkit-color-scheme: light only !important;
    forced-color-adjust: none !important;
  }

  html,
  body {
    background-color: #FFFFFF !important;
    color: #2C3E50 !important;
    -webkit-text-fill-color: #2C3E50 !important;
    forced-color-adjust: none !important;
    filter: none !important;
    -webkit-filter: none !important;
  }

  body,
  html,
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  span,
  div,
  a,
  li,
  button,
  input,
  textarea,
  select {
    background-color: inherit !important;
    forced-color-adjust: none !important;
  }

  input,
  textarea,
  select {
    background-color: #FFFFFF !important;
    color: #2C3E50 !important;
    -webkit-text-fill-color: #2C3E50 !important;
  }

  .bg-dark {
    background-color: #2C3E50 !important;
  }

  .bg-dark p,
  .bg-dark h1,
  .bg-dark h2,
  .bg-dark h3,
  .bg-dark h4,
  .bg-dark h5,
  .bg-dark h6,
  .bg-dark span,
  .bg-dark div,
  .bg-dark a {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
  }

  .text-white,
  .text-white-50 {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
  }
}

/* ---------- মূল ফিক্স ---------- */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* horizontal scroll রোধ করবে */
  overscroll-behavior-x: contain;
  /* swipe করলে পাশের পেজে চেইন হবে না */
}

/* ---------- সাধারণ responsive ফিক্স ---------- */
* {
  box-sizing: border-box;
  /* padding/margin ঠিকভাবে কাজ করবে */
}

/* ছবি, ভিডিও, আইফ্রেম যেন viewport-এর বাইরে না যায় */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- debugging mode (চালু করলে বুঝবে কে বাইরে যাচ্ছে) ---------- */
/*
* {
  outline: 1px solid rgba(255, 0, 0, 0.2);
}
*/

/* ---------- কনটেইনার বা সাইট র‍্যাপার ---------- */
.site-wrapper {
  position: relative;
  overflow-x: hidden;
  /* fallback fix */
  max-width: 100vw;
}

/* ---------- vw সমস্যার fix ---------- */
.full-width {
  width: 100%;
  /* width:100vw ব্যবহার না করে */
  max-width: 100vw;
}

/* ---------- margin/padding safe fix ---------- */
.safe-padding {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
  overflow-x: hidden;
}












/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed !important;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Fonts ***/
.font-work-sans {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-dancing-script {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


/*** Button ***/
.btn {
  position: relative;
  transition: .5s;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-dark,
.btn-primary {
  margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
  position: absolute;
  content: "";
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  top: -5px;
  left: -5px;
}

.btn-primary::before {
  top: -10px;
  height: calc(100% + 20px);
  border-left: 2px solid var(--bs-primary);
  border-right: 2px solid var(--bs-primary);
}

.btn-primary::after {
  left: -10px;
  width: calc(100% + 20px);
  border-top: 2px solid var(--bs-primary);
  border-bottom: 2px solid var(--bs-primary);
}

.btn-dark::before,
.btn-dark::after {
  position: absolute;
  content: "";
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  top: -5px;
  left: -5px;
}

.btn-dark::before {
  top: -10px;
  height: calc(100% + 20px);
  border-left: 2px solid var(--bs-dark);
  border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
  left: -10px;
  width: calc(100% + 20px);
  border-top: 2px solid var(--bs-dark);
  border-bottom: 2px solid var(--bs-dark);
}


/*** Navbar ***/


.navbar {
  position: relative;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}



.sticky-top {
  position: relative;
}

/* Nav links */
.navbar .navbar-nav .nav-link {
  margin: 0 12px;
  padding: 0;
  outline: none;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bs-dark);
}

/* Scroll hide/show animation */
.navbar-hide {
  top: -100px;
  /* scroll down -> navbar slide up */
}





.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary)
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
  color: var(--bs-white);
  background: var(--bs-primary);
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .navbar-toggler {
    border: 2px solid #0abde3 !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(10, 189, 227, 0.25) !important;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230abde3' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 24px !important;
    height: 24px !important;
  }

  .navbar-collapse {
    background: linear-gradient(135deg, #f0f8ff, #e0f4ff) !important;
    padding: 20px !important;
    margin-top: 15px !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 20px rgba(176, 230, 255, 0.4) !important;
  }

  .navbar-nav {
    text-align: center !important;
  }

  .navbar .navbar-nav .nav-link {
    margin: 5px 0 !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    border-bottom: none !important;
  }

  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-link.active {
    background: linear-gradient(135deg, #b33473, #8e2659) !important;
    color: #ffffff !important;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}

.navbar .btn-primary {
  border-width: 2px;
  background: var(--bs-light);
}

.navbar .btn-primary:hover {
  background: var(--bs-primary);
}


/*** Hero Header ***/
.hero-header {
  background: url(../img/hero-bg.jpg) top left no-repeat;
  background-size: cover;
}

@media (min-width: 992px) {
  .hero-header .container {
    max-width: 100% !important;
  }

  .hero-header .hero-header-text {
    padding-left: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .hero-header .hero-header-text {
    padding-left: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .hero-header .hero-header-text {
    padding-left: calc(((100% - 1320px) / 2) + .75rem);
  }
}

.header-carousel .owl-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  justify-content: center;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  position: relative;
  margin-left: 2px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-dark);
  background: var(--bs-primary);
  font-size: 22px;
  transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  color: var(--bs-white);
}

.page-header {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  min-height: 400px !important;
  position: relative !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: #2C3E50 !important;
  text-shadow: none;
}


/*** Service ***/
@media (max-width: 768px) {
  .service .service-item {
    border: none !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
  }
}

@media (min-width: 992px) {
  .service .service-item.border-lg-end {
    border-right: 1px solid #dee2e6;
  }

  .service .service-item.border-lg-end-0 {
    border-right: none !important;
  }

  .service .service-item.border-lg-bottom-0 {
    border-bottom: none !important;
  }
}

.service .service-item .btn-primary {
  border-width: 2px;
  background: var(--bs-white);
}

.service .service-item .btn-primary:hover {
  background: var(--bs-primary);
}

.service .service-item img {
  width: 70px;
  margin-bottom: 20px;
}


/*** Pricing ***/
.price .price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .05);
}


/*** Blog ***/
.blog .btn-dark {
  border-width: 2px;
  background: var(--bs-primary);
  color: var(--bs-dark);
}

.blog .btn-dark:hover {
  background: var(--bs-dark);
  color: var(--bs-white);
}


/*** Gallery ***/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery .gallery-item img {
  transition: .5s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.2);
}

.gallery .gallery-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, .7);
  transition: .5s;
  z-index: 1;
}

.gallery .gallery-item:hover .gallery-icon {
  width: 100%;
  height: 100%;
}

.gallery .gallery-icon .btn {
  opacity: 0;
  transition: .5s;
}

.gallery .gallery-item:hover .gallery-icon .btn {
  opacity: 1;
  transition-delay: .5s;
}


/*** Team ***/
.team {
  position: relative;
}

.team::before {
  position: absolute;
  content: "";
  width: 200%;
  height: 200px;
  top: 50%;
  left: -50%;
  transform: translateY(-50%);
  margin-top: 1rem;
  background: var(--bs-primary);
}

.team-item img {
  transition: .5s;
}

.team-item:hover img {
  transform: scale(1.2);
}

.team-overlay {
  position: absolute;
  padding: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  text-align: center;
  background: rgba(255, 255, 255, .5);
  transition: .5s;
  z-index: 1;
}

.team-item:hover .team-overlay {
  background: rgba(255, 255, 255, .9);
}

.team-overlay p {
  letter-spacing: 1px;
}

.team-overlay .btn-dark {
  border-width: 2px;
  color: var(--bs-dark);
  background: transparent;
}

.team-overlay .btn-dark:hover {
  color: var(--bs-white);
  background: var(--bs-dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item {
  position: relative;
}

.testimonial-carousel .owl-item::before {
  position: absolute;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .1;
}

.testimonial-carousel .owl-item img {
  position: relative;
  width: 100px;
  height: 100px;
  z-index: 1;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-item * {
  transition: .5s;
}

.testimonial-carousel .owl-item span {
  letter-spacing: 2px;
}

.testimonial-carousel .owl-item.center .bg-light {
  background: var(--bs-primary) !important;
}

.testimonial-carousel .owl-item.center .bg-light * {
  color: var(--bs-dark) !important;
}

.testimonial-carousel .owl-nav {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--bs-dark);
  background: var(--bs-primary);
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--bs-white);
  background: var(--bs-dark);
}


/*** Footer ***/
@media (min-width: 992px) {
  .footer::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: var(--bs-secondary);
  }
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link:hover {
  color: #b33473 !important;
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-right: 10px;
}

.footer h5 {
  color: #b33473 !important;
}

.footer p {
  color: rgba(255, 255, 255, 0.85) !important;
}





















































.ser1 {
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 100%);
  color: #2C3E50;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
}

.ser2 {
  min-height: 100vh;
  padding: 20px 15px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 100%);
  position: relative;
}

.ser3 {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.ser4 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding: 0 10px;
}

.ser5 {
  display: inline-block;
  background: linear-gradient(135deg, #b33473 0%, #8e2659 100%);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 50px;
  margin-bottom: 25px;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(179, 52, 115, 0.3);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  animation: ser6 2s ease-in-out infinite alternate;
}

.ser5::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: ser7 3s ease-in-out infinite;
}

.ser8 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #2C3E50;
  margin-bottom: 20px;
  line-height: 1.1;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ser8::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #b33473 0%, #8e2659 100%);
  border-radius: 2px;
  animation: ser9 1s ease-out 0.5s both;
}

.ser10 {
  font-size: 1.1rem;
  color: #6C757D;
  max-width: 100%;
  margin: 30px auto 0;
  font-weight: 400;
  line-height: 1.5;
  padding: 0 10px;
}

.ser11 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
  padding: 0;
}

.ser12 {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 8px 25px rgba(179, 52, 115, 0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-top: 4px solid #b33473;
  border: 1px solid #E9ECEF;
  min-height: 360px;
  cursor: pointer;
  touch-action: manipulation;
  width: 100%;
}

.ser12::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(179, 52, 115, 0.03) 0%, rgba(142, 38, 89, 0.03) 100%);
  z-index: 0;
}

.ser12::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.ser12:active {
  transform: scale(0.98) translateY(2px);
}

.ser13 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  gap: 12px;
}

.ser14 {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #FFFFFF;
  background: linear-gradient(135deg, #b33473 0%, #8e2659 100%);
  box-shadow: 0 6px 20px rgba(179, 52, 115, 0.3);
  transition: all 0.4s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.ser14::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.ser12:active .ser14 {
  transform: scale(0.95);
}

.ser16 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.3;
  flex: 1;
  margin-top: 2px;
}

.ser17 {
  color: #6C757D;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.ser17 p {
  margin: 0;
}

.ser18 {
  background: #f8f9fa;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 3px solid #b33473;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  border: 1px solid #E9ECEF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.ser12:active .ser18 {
  transform: translateX(4px);
  border-left-color: #8A6BBF;
}

.ser18 p {
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}

.ser19 {
  margin-top: auto;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* Smaller Learn More button */
.ser20 {
  background: linear-gradient(135deg, #b33473 0%, #8e2659 100%);
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 3px 10px rgba(179, 52, 115, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  width: auto;
  justify-content: center;

  position: relative;
  overflow: hidden;
  min-height: 36px;
}

.ser20::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.ser20:active {
  transform: scale(0.95);
}

.ser20:active::before {
  left: 100%;
}

.ser20 i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.ser20:active i {
  transform: translateX(4px);
}

.ser21 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.ser22 {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.08;
  animation: ser23 15s infinite ease-in-out;
  background: #b33473;
  filter: blur(30px);
}

.ser24 {
  width: 120px;
  height: 120px;
  top: 5%;
  left: 5%;
  animation-delay: 0s;
}

.ser25 {
  width: 80px;
  height: 80px;
  bottom: 10%;
  right: 5%;
  animation-delay: 5s;
}

.ser26 {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 80%;
  animation-delay: 10s;
}

.ser27 {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 10px 30px rgba(179, 52, 115, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 50px;
  border: 2px solid #E9ECEF;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.ser28 {
  text-align: center;
  padding: 25px 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: #FFFFFF;
  border: 2px solid #E9ECEF;
  cursor: pointer;
  animation: ser29 2s ease-in-out infinite alternate;
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 250px;
}

.ser28:active {
  transform: scale(0.98);
}

.ser28:nth-child(1) {
  animation-delay: 0s;
}

.ser28:nth-child(2) {
  animation-delay: 0.5s;
}

.ser28:nth-child(3) {
  animation-delay: 1s;
}

.ser28:nth-child(4) {
  animation-delay: 1.5s;
}

.ser30 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #b33473;
  margin-bottom: 8px;
  display: block;
  background: linear-gradient(135deg, #b33473 0%, #8e2659 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ser31 {
  font-size: 1rem;
  color: #6C757D;
  font-weight: 500;
}

@keyframes ser6 {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(179, 52, 115, 0.3);
  }

  100% {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(179, 52, 115, 0.4);
  }
}

@keyframes ser7 {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes ser9 {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 80px;
    opacity: 1;
  }
}

@keyframes ser15 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-3px) rotate(2deg);
  }

  66% {
    transform: translateY(2px) rotate(-1deg);
  }
}

@keyframes ser23 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  33% {
    transform: translateY(-15px) rotate(3deg) scale(1.05);
  }

  66% {
    transform: translateY(8px) rotate(-2deg) scale(0.95);
  }
}

@keyframes ser29 {
  0% {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  100% {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
}

.ser32 {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ser33 {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ser34 {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
}

.ser35 {
  width: 100%;
}

@media (min-width: 768px) {
  .ser2 {
    padding: 40px 30px;
  }

  .ser3 {
    padding: 0 30px;
  }

  .ser11 {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .ser12 {
    padding: 25px 18px;
    min-height: 380px;
  }

  .ser27 {
    padding: 50px 30px;
  }

  .ser28 {
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 280px;
    padding: 30px 25px;
  }

  .ser20 {
    min-width: 120px;
  }

  .ser35 {
    max-width: calc(50% - 15px);
  }

  .ser12:hover::after {
    left: 100%;
  }
}

@media (min-width: 1024px) {
  .ser2 {
    padding: 60px 40px;
  }

  .ser3 {
    padding: 0 40px;
  }

  .ser11 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .ser12 {
    min-height: 400px;
    padding: 28px 22px;
  }

  .ser16 {
    font-size: 1.15rem;
  }

  .ser27 {
    padding: 60px 40px;
  }

  .ser28 {
    flex: 0 1 240px;
    min-width: 220px;
    max-width: 240px;
  }

  .ser35 {
    max-width: calc(33.333% - 20px);
  }

  .ser12:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(179, 52, 115, 0.15);
    border-top-color: #8A6BBF;
  }

  .ser12:hover .ser14 {
    transform: scale(1.1) rotate(8deg);
  }

  .ser12:hover .ser14::before {
    transform: translateX(100%);
  }

  .ser12:hover .ser18 {
    transform: translateX(4px);
    border-left-color: #8A6BBF;
  }

  .ser20:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(179, 52, 115, 0.4);
  }

  .ser20:hover::before {
    left: 100%;
  }

  .ser20:hover i {
    transform: translateX(4px);
  }

  .ser28:hover {
    transform: translateY(-5px);
    border-color: #b33473;
  }
}

.ser20:focus-visible {
  outline: 2px solid #b33473;
  outline-offset: 1px;
}

.ser12:focus-visible {
  outline: 3px solid #b33473;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

  .ser5,
  .ser5::before,
  .ser8::after,
  .ser14,
  .ser22,
  .ser28 {
    animation: none !important;
  }

  .ser12,
  .ser20 {
    transition: none !important;
  }
}













































































:root {
  --vid1: #b33473;
  --vid2: #8e2659;
  --vid3: #2C3E50;
  --vid4: #6e1a42;
  --vid5: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 100%);
}

.vid1 {
  font-family: 'Poppins', sans-serif;
  background: var(--vid5);
  color: var(--vid3);
  line-height: 1.6;
  overflow-x: hidden;
}

.vid2 {
  min-height: 100vh;
  padding: 40px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.vid3 {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vid4 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: vid5 1s ease 0.5s forwards;
}

.vid6 {
  display: inline-block;
  background: linear-gradient(135deg, var(--vid1) 0%, var(--vid2) 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(179, 52, 115, 0.4);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.4s ease;
  animation: vid7 3s ease-in-out infinite alternate;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.vid6::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: vid8 3s infinite;
}

.vid9 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--vid3) 0%, var(--vid1) 50%, var(--vid4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  opacity: 0;
  animation: vid5 1s ease 0.7s forwards;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0 10px;
}

.vid10 {
  position: absolute;
  width: 80px;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23BF9456' d='M50,10 L60,40 L90,40 L65,60 L75,90 L50,70 L25,90 L35,60 L10,40 L40,40 Z'/%3E%3C/svg%3E") no-repeat center;
  opacity: 0.1;
  animation: vid11 20s linear infinite;
}

.vid12 {
  top: -20px;
  left: 5%;
}

.vid13 {
  bottom: -15px;
  right: 8%;
}

.vid14 {
  font-size: 1rem;
  color: #6C757D;
  max-width: 100%;
  margin: 20px auto 0;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: vid5 1s ease 0.9s forwards;
  position: relative;
  padding: 0 15px;
}

.vid15 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.vid16 {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(179, 52, 115, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  background: #2C3E50;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  animation: vid17 1s ease 1s forwards, vid18 8s ease-in-out infinite;
  border: 1px solid rgba(179, 52, 115, 0.3);
}

.vid16::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--vid1), var(--vid2), var(--vid4), var(--vid1));
  z-index: -1;
  border-radius: 22px;
  animation: vid19 3s ease-in-out infinite alternate;
}

.vid20 {
  width: 100%;
  height: 300px;
  background: #2C3E50;
  position: relative;
  overflow: hidden;
}

#vid21 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.9);
}

.vid20:hover #vid21 {
  transform: scale(1.03);
  filter: brightness(1);
}

.vid22 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(179, 52, 115, 0.25) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
  opacity: 1;
  transition: all 0.5s ease;
  backdrop-filter: blur(2px);
}

.vid22.vid23 {
  opacity: 0;
  pointer-events: none;
}

.vid24 {
  position: relative;
  margin-bottom: 25px;
}

.vid25 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px solid rgba(179, 52, 115, 0.3);
  border-radius: 50%;
  animation: vid26 3s ease-out infinite;
}

.vid25:nth-child(2) {
  width: 130px;
  height: 130px;
  animation-delay: 0.5s;
}

.vid25:nth-child(3) {
  width: 160px;
  height: 160px;
  animation-delay: 1s;
}

.vid27 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--vid1) 0%, var(--vid4) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    0 0 0 6px rgba(179, 52, 115, 0.3);
  position: relative;
  overflow: hidden;
  animation: vid28 3s ease-in-out infinite, vid11 10s linear infinite;
  z-index: 10;
}

.vid27::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: vid11 3s linear infinite;
}

.vid27:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    0 0 0 10px rgba(179, 52, 115, 0.4);
  animation-play-state: paused;
}

.vid27 i {
  font-size: 2rem;
  color: white;
  margin-left: 5px;
  transition: transform 0.3s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.vid27:hover i {
  transform: scale(1.2);
}

.vid29 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  animation: vid5 0.8s ease 1.3s forwards;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding: 0 10px;
}

.vid29::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vid1), transparent);
  border-radius: 2px;
}

.vid30 {
  font-size: 0.9rem;
  color: #e8e8e8;
  max-width: 100%;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  animation: vid5 0.8s ease 1.5s forwards;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  padding: 0 10px;
}

.vid31 {
  background: linear-gradient(135deg, #e0f4ff 0%, #b8e6ff 100%);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(179, 52, 115, 0.4);
  opacity: 0;
  animation: vid32 0.8s ease 1.7s forwards;
  position: relative;
  flex-wrap: wrap;
  gap: 10px;
}

.vid33 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.vid34 {
  background: transparent;
  border: none;
  color: var(--vid1);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.vid34::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(179, 52, 115, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.vid34:hover::before {
  transform: scale(1);
}

.vid34:hover {
  color: var(--vid2);
  transform: scale(1.15);
}

.vid35 {
  flex-grow: 1;
  height: 6px;
  background: #4A5568;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  margin: 0 15px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  min-width: 100px;
}

.vid35::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  animation: vid8 2s infinite;
}

.vid36 {
  position: absolute;
  height: 100%;
  background: linear-gradient(135deg, var(--vid1) 0%, var(--vid2) 100%);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(179, 52, 115, 0.6);
}

.vid37 {
  color: var(--vid1);
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 100px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.vid38 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 100%;
}

.vid39 {
  text-align: left;
  padding: 30px 25px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(179, 52, 115, 0.2);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: vid40 1s ease 1.9s forwards;
}

.vid39::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(135deg, var(--vid1) 0%, var(--vid2) 100%);
}

.vid39::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(179, 52, 115, 0.05), transparent);
  animation: vid11 20s linear infinite;
}

.vid41 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--vid3);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.vid42 {
  color: #6C757D;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.vid43 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: vid44 1s ease 2.1s forwards;
}

.vid45 {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 4px solid var(--vid1);
  position: relative;
  overflow: hidden;
}

.vid45::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(179, 52, 115, 0.03) 0%, rgba(142, 38, 89, 0.03) 100%);
  z-index: 0;
}

.vid45:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(179, 52, 115, 0.15);
}

.vid46 {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--vid1) 0%, var(--vid2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(179, 52, 115, 0.4);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  flex-shrink: 0;
  margin-top: 5px;
}

.vid45:hover .vid46 {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 12px 30px rgba(179, 52, 115, 0.6);
}

.vid47 {
  position: relative;
  z-index: 1;
  flex: 1;
}

.vid48 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vid3);
  margin-bottom: 6px;
}

.vid49 {
  color: #6C757D;
  font-size: 0.85rem;
  line-height: 1.5;
}

.vid50 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.vid51 {
  position: absolute;
  opacity: 0.1;
  animation: vid18 15s infinite ease-in-out;
}

.vid52 {
  width: 80px;
  height: 80px;
  background: var(--vid1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.vid53 {
  width: 60px;
  height: 60px;
  background: var(--vid4);
  border-radius: 50%;
  bottom: 15%;
  right: 8%;
  animation-delay: 5s;
}

.vid54 {
  width: 70px;
  height: 70px;
  background: var(--vid2);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  top: 60%;
  left: 85%;
  animation-delay: 10s;
}

.vid55 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--vid1) 0%, var(--vid2) 50%, var(--vid1) 100%);
  opacity: 0.03;
  z-index: 0;
}

.vid56 {
  position: absolute;
  border-radius: 50%;
  background: var(--vid1);
  opacity: 0.05;
  filter: blur(40px);
  animation: vid57 15s ease-in-out infinite;
}

.vid58 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
  animation-delay: 0s;
}

.vid59 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  right: -30px;
  animation-delay: 5s;
}

.vid60 {
  width: 120px;
  height: 120px;
  top: 40%;
  left: 70%;
  animation-delay: 10s;
}

.vid61 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.vid62 {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--vid1);
  border-radius: 50%;
  animation: vid63 20s infinite linear;
  pointer-events: none;
}

.vid64 {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  animation: vid65 4s infinite;
  opacity: 0;
}

.vid66 {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(179, 52, 115, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes vid5 {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vid32 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes vid17 {
  from {
    opacity: 0;
    transform: translateY(50px) perspective(1000px) rotateX(0deg) rotateY(0deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) perspective(1000px) rotateX(0deg) rotateY(0deg);
  }
}

@keyframes vid40 {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vid44 {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vid18 {

  0%,
  100% {
    transform: translateY(0) perspective(1000px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: translateY(-10px) perspective(1000px) rotateX(0deg) rotateY(0deg);
  }
}

@keyframes vid63 {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes vid8 {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes vid7 {
  0% {
    box-shadow: 0 8px 25px rgba(179, 52, 115, 0.4);
    transform: scale(1);
  }

  100% {
    box-shadow: 0 12px 35px rgba(179, 52, 115, 0.6);
    transform: scale(1.02);
  }
}

@keyframes vid28 {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  }
}

@keyframes vid11 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes vid19 {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

@keyframes vid26 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

@keyframes vid57 {

  0%,
  100% {
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  }

  25% {
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  }

  50% {
    border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
  }

  75% {
    border-radius: 30% 70% 70% 30% / 30% 50% 50% 70%;
  }
}

@keyframes vid65 {

  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Desktop Styles */
@media (min-width: 768px) {
  .vid2 {
    padding: 80px 20px;
  }

  .vid4 {
    margin-bottom: 80px;
  }

  .vid6 {
    font-size: 0.85rem;
    padding: 12px 35px;
  }

  .vid9 {
    font-size: 4rem;
    margin-bottom: 25px;
  }

  .vid14 {
    font-size: 1.3rem;
    margin: 30px auto 0;
    max-width: 700px;
  }

  .vid15 {
    gap: 80px;
  }

  .vid16 {
    max-width: 1100px;
    border-radius: 30px;
  }

  .vid20 {
    height: 600px;
  }

  .vid24 {
    margin-bottom: 40px;
  }

  .vid25 {
    width: 160px;
    height: 160px;
  }

  .vid25:nth-child(2) {
    width: 200px;
    height: 200px;
  }

  .vid25:nth-child(3) {
    width: 240px;
    height: 240px;
  }

  .vid27 {
    width: 120px;
    height: 120px;
    margin-bottom: 35px;
  }

  .vid27 i {
    font-size: 3rem;
  }

  .vid29 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .vid30 {
    font-size: 1.2rem;
    max-width: 650px;
  }

  .vid31 {
    padding: 25px 30px;
  }

  .vid33 {
    gap: 25px;
  }

  .vid34 {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .vid35 {
    height: 10px;
    margin: 0 25px;
  }

  .vid37 {
    font-size: 1.1rem;
    min-width: 140px;
  }

  .vid38 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
  }

  .vid39 {
    padding: 50px 40px;
    border-radius: 25px;
    transform: translateX(-30px);
    animation: vid40 1s ease 1.9s forwards;
  }

  .vid41 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  .vid42 {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .vid43 {
    transform: translateX(30px);
    animation: vid44 1s ease 2.1s forwards;
  }

  .vid45 {
    padding: 30px;
    border-radius: 20px;
    align-items: center;
    gap: 20px;
  }

  .vid46 {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    font-size: 1.6rem;
    margin-top: 0;
  }

  .vid48 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .vid49 {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

@media (min-width: 1024px) {
  .vid10 {
    width: 150px;
    height: 150px;
  }

  .vid12 {
    top: -30px;
    left: 10%;
  }

  .vid13 {
    bottom: -20px;
    right: 15%;
  }

  .vid56 {
    width: 400px;
    height: 400px;
  }

  .vid58 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
  }

  .vid59 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
  }

  .vid60 {
    width: 250px;
    height: 250px;
  }
}

























































.appo1 {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  background: #f8f9fa;
}

/* Floating Particles - এই অংশটা যোগ করুন */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: #b33473;
  opacity: 0.3;
  animation: particleFloat 20s infinite linear;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

.appo23 {
  position: absolute;
  border-radius: 50%;
  background: rgba(142, 38, 89, 0.856);
  animation: appoFloat 15s infinite linear;
  z-index: 0;
}

.appo23:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.appo23:nth-child(2) {
  width: 180px;
  height: 180px;
  top: 70%;
  right: 8%;
  animation-delay: -3s;
}

.appo23:nth-child(3) {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 15%;
  animation-delay: -6s;
}

.appo23:nth-child(4) {
  width: 160px;
  height: 160px;
  top: 30%;
  right: 15%;
  animation-delay: -9s;
}

@keyframes appoFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }

  33% {
    transform: translateY(-25px) rotate(120deg) scale(1.1);
  }

  66% {
    transform: translateY(15px) rotate(240deg) scale(0.9);
  }
}

.appo2 {
  font-size: 42px;
  color: #4A5568;
  margin-bottom: 20px;
  font-weight: bold;
  opacity: 0;
  animation: appoTitleGlow 1.2s ease-out 0.5s forwards;
  position: relative;
  display: inline-block;
}

.appo2::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #b33473;
  animation: appoLineExpand 1s ease-out 1.5s forwards;
}

@keyframes appoTitleGlow {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes appoLineExpand {
  to {
    width: 120px;
  }
}

.appo3 {
  color: #666;
  max-width: 620px;
  margin: 30px auto 60px;
  line-height: 1.7;
  font-size: 18px;
  opacity: 0;
  animation: appoFadeIn 1s ease-out 1s forwards;
}

@keyframes appoFadeIn {
  to {
    opacity: 1;
  }
}

.appo4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.appo5 {
  background: white;
  border-radius: 20px;
  padding: 45px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(179, 52, 115, 0.15);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: appoCardEntrance 0.8s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.appo5:nth-child(1) {
  animation-delay: 1.2s;
}

.appo5:nth-child(2) {
  animation-delay: 1.4s;
}

.appo5:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes appoCardEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.appo5:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.appo13 {
  margin-bottom: 30px;
  position: relative;
}

.appo14 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  animation: appoIconSubtle 6s ease-in-out infinite;
}

.appo5:nth-child(1) .appo14 {
  animation-delay: 0s;
}

.appo5:nth-child(2) .appo14 {
  animation-delay: 0.2s;
}

.appo5:nth-child(3) .appo14 {
  animation-delay: 0.4s;
}

@keyframes appoIconSubtle {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

.appo5:hover .appo14 {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.appo14 i {
  font-size: 32px;
  color: #b33473;
  transition: all 0.3s ease;
}

.appo5:hover .appo14 i {
  transform: scale(1.1);
}

.appo15 {
  font-size: 22px;
  font-weight: bold;
  color: #4A5568;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.appo15::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #b33473;
  transition: all 0.3s ease;
}

.appo5:hover .appo15::after {
  width: 70px;
}

.appo16 {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  min-height: 80px;
}

.appo18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #b33473;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  width: 100%;
  max-width: 200px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(179, 52, 115, 0.4);
}

.appo5:nth-child(1) .appo18 {
  animation: appoButtonPulse 3s infinite;
}

@keyframes appoButtonPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.appo5:nth-child(2) .appo18 {
  animation: appoButtonFloat 4s infinite;
}

@keyframes appoButtonFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-4px);
  }

  75% {
    transform: translateY(2px);
  }
}

.appo5:nth-child(3) .appo18 {
  animation: appoButtonGlow 5s infinite;
}

@keyframes appoButtonGlow {

  0%,
  100% {
    box-shadow: 0 6px 20px rgba(179, 52, 115, 0.4);
  }

  50% {
    box-shadow: 0 6px 25px rgba(179, 52, 115, 0.6);
  }
}

.appo18:hover {
  background: #6e1a42;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 35px rgba(179, 52, 115, 0.6);
  animation: none;
}

.appo18 i {
  transition: all 0.3s ease;
  font-size: 16px;
}

.appo18:hover i {
  transform: scale(1.4) rotate(15deg);
}

.appo-footer {
  margin-top: 80px;
  padding: 30px 20px;
  color: #666;
  font-size: 14px;
  position: relative;
}

.appo-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: #b33473;
}

@media (max-width: 600px) {
  .appo1 {
    padding: 60px 20px;
  }

  .appo2 {
    font-size: 32px;
  }

  .appo5 {
    padding: 35px 25px;
  }

  .appo14 {
    width: 75px;
    height: 75px;
  }

  .appo14 i {
    font-size: 28px;
  }

  .appo15 {
    font-size: 20px;
  }

  .appo16 {
    font-size: 14px;
    min-height: 70px;
  }

  .appo18 {
    padding: 12px 28px;
    font-size: 14px;
    max-width: 180px;
  }

  .appo23 {
    display: none;
  }
}



















































.map1 {
  --gold: #b33473;
  --gold-light: #8e2659;
  --gold-dark: #6e1a42;
  --gold-glow: rgba(179, 52, 115, 0.3);
  --white: #ffffff;
  --off-white: #FFFFFF;
  --text: #4A5568;
  --text-light: #5a5a5a;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --border: rgba(179, 52, 115, 0.2);
}

.map2 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.map3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  overflow-x: hidden;
  padding: 20px;
}

.map4 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.map5 {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
}

.map6:nth-child(1) {
  width: 3px;
  height: 3px;
  top: 15%;
  left: 10%;
  animation: twinkle1 4s infinite ease-in-out;
}

.map7:nth-child(2) {
  width: 2px;
  height: 2px;
  top: 25%;
  left: 85%;
  animation: twinkle1 5s infinite ease-in-out 1s;
}

.map8:nth-child(3) {
  width: 4px;
  height: 4px;
  top: 40%;
  left: 20%;
  animation: twinkle1 6s infinite ease-in-out 2s;
}

.map9:nth-child(4) {
  width: 3px;
  height: 3px;
  top: 60%;
  left: 75%;
  animation: twinkle1 4.5s infinite ease-in-out 0.5s;
}

.map10:nth-child(5) {
  width: 2px;
  height: 2px;
  top: 80%;
  left: 15%;
  animation: twinkle1 5.5s infinite ease-in-out 1.5s;
}

.map11:nth-child(6) {
  width: 3px;
  height: 3px;
  top: 70%;
  left: 90%;
  animation: twinkle1 4s infinite ease-in-out 2.5s;
}

.map12 {
  position: absolute;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
}

.map13:nth-child(7) {
  top: 20%;
  left: 10%;
  animation: shootStar1 8s infinite linear 0s;
}

.map14:nth-child(8) {
  top: 45%;
  left: 5%;
  animation: shootStar1 12s infinite linear 4s;
}

.map15:nth-child(9) {
  top: 65%;
  left: 15%;
  animation: shootStar1 10s infinite linear 6s;
}

.map16 {
  position: absolute;
  opacity: 0.3;
  font-size: 20px;
  color: var(--gold);
}

.map17:nth-child(10) {
  top: 30%;
  left: 80%;
  animation: clusterFloat1 20s infinite ease-in-out;
}

.map18:nth-child(11) {
  top: 75%;
  left: 25%;
  animation: clusterFloat1 25s infinite ease-in-out reverse;
}

.map19 {
  position: absolute;
  height: 1px;
  background: var(--gold);
  opacity: 0.1;
  transform-origin: left center;
}

.map20:nth-child(12) {
  top: 25%;
  left: 30%;
  width: 100px;
  transform: rotate(45deg);
  animation: constellationPulse1 15s infinite ease-in-out;
}

.map21:nth-child(13) {
  top: 55%;
  left: 60%;
  width: 80px;
  transform: rotate(-30deg);
  animation: constellationPulse1 18s infinite ease-in-out 2s;
}

.map22:nth-child(14) {
  top: 85%;
  left: 40%;
  width: 120px;
  transform: rotate(15deg);
  animation: constellationPulse1 20s infinite ease-in-out 4s;
}

.map23 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(179, 52, 115, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(179, 52, 115, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(179, 52, 115, 0.03) 0%, transparent 50%);
  animation: fieldRotate1 60s infinite linear;
}

.map24 {
  max-width: 1200px;
  margin: 40px auto;
  padding: 28px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.map25 {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.map26 h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.map26 h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.map26 p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 25px auto 0;
  line-height: 1.6;
}

.map27 {
  display: flex;
  gap: 30px;
  align-items: stretch;
  min-height: 500px;
}

.map28 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
}

.map29 {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  min-height: 140px;
  border: 1px solid var(--border);
}

.map29::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gold);
  transition: all 0.4s ease;
}

.map30 {
  opacity: 1;
  transform: translateY(0);
}

.map29::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(179, 52, 115, 0.05) 0%, transparent 100%);
  transition: width 0.5s ease;
}

.map29:hover::after {
  width: 100%;
}

.map29:hover::before {
  width: 8px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
}

.map31 {
  flex: 0 0 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 22px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map31::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transition: left 0.7s;
}

.map29:hover .map31 {
  transform: translateY(-5px);
  background: var(--gold);
  box-shadow: 0 10px 20px var(--gold-glow);
}

.map29:hover .map31::before {
  left: 100%;
}

.map31 svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
  transition: all 0.3s ease;
}

.map29:hover .map31 svg {
  fill: var(--white);
  transform: scale(1.1);
}

.map32 h4 {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.map32 p {
  margin: 10px 0 0;
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
  transition: all 0.3s ease;
}

.map29:hover .map32 h4 {
  color: var(--gold);
  transform: translateX(5px);
}

.map29:hover .map32 p {
  transform: translateX(5px);
}

.map33 {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.map34 {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease 0.3s;
  border: 1px solid var(--border);
  position: relative;
  min-height: 400px;
}

.map34::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(179, 52, 115, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.map34:hover::before {
  opacity: 1;
}

.map35 {
  opacity: 1;
  transform: translateX(0);
}

.map36 {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  transition: all 0.5s ease;
}

.map34:hover .map36 {
  transform: scale(1.03);
}

.map34::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: all 0.4s ease;
  pointer-events: none;
}

.map34:hover::after {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold) inset;
}

@keyframes float1 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

.map29:hover {
  animation: float1 3s ease-in-out infinite;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@keyframes twinkle1 {

  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes shootStar1 {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0);
  }

  10% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(300px) translateY(150px);
  }
}

@keyframes clusterFloat1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(10px, -15px) rotate(5deg);
  }

  50% {
    transform: translate(-5px, 10px) rotate(-3deg);
  }

  75% {
    transform: translate(15px, 5px) rotate(2deg);
  }
}

@keyframes constellationPulse1 {

  0%,
  100% {
    opacity: 0.1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes fieldRotate1 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse1 {
  0% {
    box-shadow: 0 0 0 0 rgba(179, 52, 115, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(179, 52, 115, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(179, 52, 115, 0);
  }
}

.map31 {
  animation: pulse1 3s infinite;
}

@media (max-width: 920px) {
  .map27 {
    flex-direction: column;
    min-height: auto;
  }

  .map28,
  .map33 {
    flex: 1 1 100%;
  }

  .map33 {
    order: 2;
    height: 400px;
  }

  .map29 {
    min-height: auto;
    margin-bottom: 0;
  }

  .map26 h1 {
    font-size: 2.5rem;
  }

  .map28 {
    gap: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .map3 {
    padding: 10px;
  }

  .map24 {
    padding: 15px;
    margin: 20px auto;
  }

  .map26 h1 {
    font-size: 2.2rem;
  }

  .map27 {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .map24 {
    padding: 10px;
  }

  .map26 h1 {
    font-size: 2rem;
  }

  .map29 {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }

  .map31 {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .map32 p {
    font-size: 14px;
  }

  .map26 p {
    font-size: 1rem;
    padding: 0 10px;
  }
}
































































:root {
  --Abo1: #b33473;
  --Abo2: #8e2659;
  --Abo3: #6e1a42;
  --Abo4: #FFFFFF;
  --Abo5: #e8e4de;
  --Abo6: #2C3E50;
  --Abo7: #4A5568;
  --Abo8: #6b6b6b;
  --Abo9: #ffffff;
  --Abo10: 0 5px 15px rgba(0, 0, 0, 0.08);
  --Abo11: 0 2px 8px rgba(0, 0, 0, 0.05);
  --Abo12: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

.Abo13 {
  font-family: 'Merriweather', serif;
  margin: 0;
  color: var(--Abo6);
  background: linear-gradient(135deg, #FFFFFF 0%, #ffffff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

.Abo14 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 30px;
  position: relative;
}

.Abo15 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.Abo16 {
  position: absolute;
  border-radius: 50%;
  background: rgba(179, 52, 115, 0.05);
}

.Abo17 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.Abo18 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  left: -100px;
}

.Abo19 {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23b78a45' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.Abo20 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.Abo21 {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.Abo21::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--Abo1), var(--Abo2), var(--Abo1));
  z-index: -1;
  border-radius: 16px;
  opacity: 0.2;
}

.Abo22 {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: var(--Abo12);
  filter: grayscale(0.1);
}

.Abo22:hover {
  transform: scale(1.02);
}

.Abo23 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  background: var(--Abo4);
  padding: 22px 28px;
  border-radius: 12px;
  box-shadow: var(--Abo11);
  transition: var(--Abo12);
  border-left: 4px solid var(--Abo1);
  position: relative;
  overflow: hidden;
}

.Abo23::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(179, 52, 115, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.Abo23:hover {
  background: var(--Abo5);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.Abo24 {
  background: linear-gradient(135deg, var(--Abo1), var(--Abo3));
  color: var(--Abo9);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 50%;
  transition: var(--Abo12);
  box-shadow: 0 5px 15px rgba(179, 52, 115, 0.3);
  position: relative;
  z-index: 1;
}

.Abo23:hover .Abo24 {
  transform: scale(1.05) rotate(5deg);
}

.Abo25 {
  position: relative;
  z-index: 1;
}

.Abo25 h3 {
  margin: 0;
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--Abo6);
  font-style: bold;
}

.Abo25 p {
  margin: 8px 0 0;
  color: var(--Abo8);
  font-size: 15px;
}

.Abo26 {
  font-family: 'Great Vibes', cursive;
  color: var(--Abo1);
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
  position: relative;
  padding-left: 20px;
}

.Abo26::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--Abo1);
  border-radius: 50%;
}

.Abo27 {
  font-size: 46px;
  margin: 0 0 24px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--Abo6);
  position: relative;
  display: inline-block;
}

.Abo27::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--Abo1), transparent);
  border-radius: 3px;
}

.Abo28 {
  color: var(--Abo7);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 17px;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(179, 52, 115, 0.2);
}

.Abo29 {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
}

.Abo30 {
  flex: 1;
  background: var(--Abo4);
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: var(--Abo11);
  transition: var(--Abo12);
  position: relative;
  overflow: hidden;
}

.Abo30::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--Abo1), var(--Abo2));
}

.Abo30:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.Abo30 .Abo31 {
  font-size: 40px;
  color: var(--Abo1);
  margin-bottom: 12px;
  transition: var(--Abo12);
}

.Abo30:hover .Abo31 {
  transform: scale(1.1);
}

.Abo30 .Abo32 {
  font-size: 38px;
  margin: 8px 0;
  font-weight: 700;
  color: var(--Abo6);
  position: relative;
  display: inline-block;
}

.Abo30 .Abo32::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--Abo1), transparent);
  opacity: 0.5;
}

.Abo30 .Abo33 {
  letter-spacing: 1px;
  color: var(--Abo8);
  font-size: 14px;
  font-weight: 600;
}

.Abo34 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  border: 2px solid var(--Abo1);
  padding: 14px 40px;
  text-decoration: none;
  color: var(--Abo6);
  position: relative;
  font-weight: 700;
  border-radius: 30px;
  overflow: hidden;
  transition: var(--Abo12);
  letter-spacing: 0.5px;
  background: var(--Abo9);
}

.Abo34::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--Abo1), var(--Abo2));
  transition: var(--Abo12);
  z-index: -1;
}

.Abo34:hover {
  color: var(--Abo9);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(179, 52, 115, 0.3);
  padding-right: 50px;
}

.Abo34:hover::before {
  left: 0;
}

.Abo34 i {
  transition: var(--Abo12);
}

.Abo34:hover i {
  transform: translateX(5px);
}

.Abo35 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.Abo35.active {
  opacity: 1;
  visibility: visible;
}

.Abo36 {
  background: var(--Abo9);
  padding: 40px;
  max-width: 760px;
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
}

.Abo35.active .Abo36 {
  transform: translateY(0);
}

.Abo36::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--Abo1), var(--Abo2));
  border-radius: 12px 12px 0 0;
}

.Abo36 h2 {
  margin-top: 0;
  color: var(--Abo6);
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.Abo36 h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--Abo1);
  border-radius: 3px;
}

.Abo36 p {
  color: var(--Abo7);
  line-height: 1.7;
  margin-bottom: 15px;
}

.Abo36 strong {
  color: var(--Abo6);
}

.Abo37 {
  padding: 12px 24px;
  border: 0;
  background: linear-gradient(135deg, var(--Abo1), var(--Abo3));
  color: var(--Abo9);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--Abo12);
  box-shadow: 0 5px 15px rgba(179, 52, 115, 0.3);
}

.Abo37:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(179, 52, 115, 0.4);
}

@media (max-width: 900px) {
  .Abo14 {
    padding: 40px 20px;
  }

  .Abo20 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .Abo27 {
    font-size: 36px;
  }

  .Abo29 {
    flex-direction: column;
    gap: 20px;
  }

  .Abo30 {
    padding: 24px 18px;
  }

  .Abo24 {
    width: 60px;
    height: 60px;
  }

  .Abo25 h3 {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .Abo14 {
    padding: 30px 15px;
  }

  .Abo27 {
    font-size: 30px;
  }

  .Abo26 {
    font-size: 28px;
  }

  .Abo28 {
    font-size: 16px;
  }

  .Abo36 {
    padding: 30px 20px;
  }

  .Abo36 h2 {
    font-size: 26px;
  }
}






















































.SerK1 {
  background: #FFF8FA;
  color: #2C3E50;
  line-height: 1.6;
  min-height: 100vh;
  padding: clamp(20px, 5vw, 40px);
}

.SerK2 {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 80px) 0;
}

.SerK3 {
  text-align: center;
  margin-bottom: clamp(50px, 8vw, 80px);
}

.SerK4 {
  display: inline-block;
  background: linear-gradient(135deg, #b33473 0%, #6e1a42 100%);
  color: white;
  padding: clamp(8px, 1.5vw, 12px) clamp(20px, 3vw, 30px);
  border-radius: 50px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 600;
  margin-bottom: clamp(20px, 3vw, 30px);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(179, 52, 115, 0.3);
}

.SerK5 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #2C3E50;
  margin-bottom: clamp(20px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}

.SerK5 span {
  color: #b33473;
  position: relative;
}

.SerK5 span::after {
  content: '';
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 0.3em;
  background: rgba(179, 52, 115, 0.2);
  border-radius: 1em;
  z-index: -1;
}

.SerK6 {
  max-width: min(700px, 90%);
  margin: 0 auto;
  color: #666;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.7;
}

.SerK7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(20px, 4vw, 35px);
  align-items: stretch;
}

.SerK8 {
  background: #ffffff;
  border-radius: clamp(16px, 3vw, 24px);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: clamp(25px, 4vw, 35px);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border: 1px solid rgba(179, 52, 115, 0.1);
}

.SerK8:hover {
  transform: translateY(clamp(-8px, -1.5vw, -12px));
  box-shadow: 0 20px 50px rgba(179, 52, 115, 0.15);
}

.SerK9 {
  position: absolute;
  top: clamp(20px, 3vw, 25px);
  right: clamp(20px, 3vw, 25px);
  width: clamp(35px, 6vw, 45px);
  height: clamp(35px, 6vw, 45px);
  background: linear-gradient(135deg, #b33473 0%, #6e1a42 100%);
  border-radius: clamp(8px, 2vw, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  box-shadow: 0 6px 20px rgba(179, 52, 115, 0.4);
}

.SerK10 {
  margin-bottom: clamp(20px, 3vw, 25px);
}

.SerK11 {
  width: clamp(60px, 10vw, 80px);
  height: clamp(60px, 10vw, 80px);
  border-radius: clamp(16px, 3vw, 20px);
  background: linear-gradient(135deg, rgba(179, 52, 115, 0.1) 0%, rgba(179, 52, 115, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: 2px solid rgba(179, 52, 115, 0.1);
}

.SerK8:hover .SerK11 {
  background: linear-gradient(135deg, #b33473 0%, #6e1a42 100%);
  transform: scale(1.1) rotate(5deg);
  border-color: #b33473;
}

.SerK11 i {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  color: #b33473;
  transition: all 0.4s ease;
}

.SerK8:hover .SerK11 i {
  color: white;
  transform: scale(1.1);
}

.SerK12 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
}

.SerK13 {
  font-size: clamp(1.3rem, 3.5vw, 1.6rem);
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.3;
}

.SerK14 {
  color: #666;
  line-height: 1.6;
  font-size: clamp(0.9rem, 2vw, 1rem);
  flex: 1;
}

.SerK15 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.5vw, 10px);
}

.SerK15 li {
  padding: clamp(6px, 1.5vw, 8px) 0;
  position: relative;
  padding-left: clamp(24px, 4vw, 28px);
  color: #666;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  transition: all 0.3s ease;
}

.SerK15 li:hover {
  color: #b33473;
  transform: translateX(5px);
}

.SerK15 li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #b33473;
  font-weight: bold;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: all 0.3s ease;
}

.SerK15 li:hover::before {
  transform: scale(1.3);
}

.SerK16 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(15px, 3vw, 20px);
  border-top: 2px solid rgba(179, 52, 115, 0.1);
  gap: clamp(10px, 2vw, 15px);
  flex-wrap: wrap;
}

.SerK17 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #b33473;
  white-space: nowrap;
}

.SerK17 span {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  color: #666;
  font-weight: 500;
}

.SerK18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b33473 0%, #6e1a42 100%);
  color: white;
  padding: clamp(10px, 2vw, 12px) clamp(18px, 3vw, 25px);
  border-radius: clamp(8px, 2vw, 12px);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(179, 52, 115, 0.3);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  min-width: max-content;
}

.SerK18:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(179, 52, 115, 0.4);
  background: linear-gradient(135deg, #6e1a42 0%, #AD1457 100%);
}

.SerK18 i {
  margin-left: clamp(6px, 1.5vw, 8px);
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  transition: transform 0.3s ease;
}

.SerK18:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .SerK7 {
    grid-template-columns: 1fr;
    gap: clamp(15px, 4vw, 25px);
  }

  .SerK8 {
    padding: clamp(20px, 5vw, 30px);
  }

  .SerK16 {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(12px, 3vw, 15px);
  }

  .SerK18 {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .SerK7 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1440px) {
  .SerK7 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (hover: none) {
  .SerK8:hover {
    transform: none;
  }

  .SerK8:active {
    transform: scale(0.98);
  }

  .SerK18:hover {
    transform: none;
  }

  .SerK18:active {
    transform: scale(0.95);
  }
}

@media (prefers-contrast: high) {
  .SerK8 {
    border: 2px solid #b33473;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}







































.rrr1 {
  background: linear-gradient(135deg, #FFF5F8 0%, #FFEBEF 100%);
  color: #2C3E50;
  line-height: 1.6;
  min-height: 100vh;
  padding: clamp(20px, 5vw, 40px);
  position: relative;
  overflow: hidden;
}

.rrr1::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(179, 52, 115, 0.05) 0%, rgba(179, 52, 115, 0.02) 100%);
  border-radius: 50%;
  z-index: 0;
}

.rrr1::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(179, 52, 115, 0.03) 0%, rgba(179, 52, 115, 0.01) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
}

.rrr2 {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  z-index: 1;
}

.rrr3 {
  text-align: center;
  margin-bottom: clamp(50px, 8vw, 80px);
}

.rrr4 {
  display: inline-block;
  background: linear-gradient(135deg, #b33473 0%, #6e1a42 100%);
  color: white;
  padding: clamp(8px, 1.5vw, 12px) clamp(20px, 3vw, 30px);
  border-radius: 50px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 600;
  margin-bottom: clamp(20px, 3vw, 30px);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(179, 52, 115, 0.3);
  position: relative;
  overflow: hidden;
}

.rrr4::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: rrrShimmer 3s infinite;
}

@keyframes rrrShimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.rrr5 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #2C3E50;
  margin-bottom: clamp(20px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}

.rrr5 span {
  color: #b33473;
  position: relative;
  display: inline-block;
}

.rrr5 span::after {
  content: '';
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 0.3em;
  background: rgba(179, 52, 115, 0.2);
  border-radius: 1em;
  z-index: -1;
  animation: rrrUnderline 2s ease-in-out infinite;
}

@keyframes rrrUnderline {

  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.2;
  }

  50% {
    transform: scaleX(1.1);
    opacity: 0.3;
  }
}

.rrr6 {
  max-width: min(700px, 90%);
  margin: 0 auto;
  color: #666;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.7;
}

.rrr7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(25px, 4vw, 40px);
  align-items: stretch;
}

.rrr8 {
  background: linear-gradient(145deg, #ffffff 0%, #faf8f5 100%);
  border-radius: clamp(20px, 4vw, 30px);
  overflow: hidden;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: clamp(30px, 4vw, 45px);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border: 1px solid rgba(179, 52, 115, 0.15);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.rrr8::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b33473, #e8c897, #b33473);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.rrr8:hover::before {
  transform: scaleX(1);
}

.rrr8:hover {
  transform:
    translateY(clamp(-12px, -2vw, -18px)) rotateX(2deg) rotateY(1deg);
  box-shadow:
    0 25px 60px rgba(179, 52, 115, 0.2),
    0 15px 35px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.rrr8::after {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: clamp(4rem, 8vw, 6rem);
  color: rgba(179, 52, 115, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.rrr9 {
  display: flex;
  align-items: center;
  margin-bottom: clamp(20px, 3vw, 25px);
  gap: clamp(15px, 3vw, 20px);
  position: relative;
  z-index: 1;
}

.rrr10 {
  width: clamp(70px, 12vw, 90px);
  height: clamp(70px, 12vw, 90px);
  border-radius: 20px;
  background: linear-gradient(135deg, #b33473 0%, #6e1a42 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  box-shadow:
    0 8px 25px rgba(179, 52, 115, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.rrr10::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.rrr8:hover .rrr10 {
  transform: scale(1.05) rotate(5deg);
  box-shadow:
    0 12px 35px rgba(179, 52, 115, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.rrr8:hover .rrr10::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.rrr11 {
  flex: 1;
}

.rrr12 {
  font-size: clamp(1.3rem, 3.5vw, 1.6rem);
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 8px;
  position: relative;
}

.rrr13 {
  color: #b33473;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 600;
  background: rgba(179, 52, 115, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
}

.rrr14 {
  display: flex;
  gap: 4px;
  margin-top: 10px;
}

.rrr14 i {
  color: #b33473;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  text-shadow: 0 2px 4px rgba(179, 52, 115, 0.3);
  transition: all 0.3s ease;
}

.rrr14:hover i {
  transform: scale(1.2);
}

.rrr15 {
  color: #5A6C7D;
  line-height: 1.7;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  margin-bottom: clamp(20px, 3vw, 25px);
  flex: 1;
  font-style: italic;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.7);
  padding: 15px;
  border-radius: 12px;
  border-left: 3px solid #b33473;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.rrr16 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(15px, 3vw, 20px);
  border-top: 2px solid rgba(179, 52, 115, 0.1);
  position: relative;
  z-index: 1;
}

.rrr17 {
  color: #888;
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  background: rgba(179, 52, 115, 0.05);
  padding: 6px 12px;
  border-radius: 15px;
}

.rrr18 {
  display: flex;
  gap: 8px;
}

.rrr19 {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(179, 52, 115, 0.1) 0%, rgba(179, 52, 115, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b33473;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(179, 52, 115, 0.2);
}

.rrr19:hover {
  background: linear-gradient(135deg, #b33473 0%, #6e1a42 100%);
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(179, 52, 115, 0.4);
}

.rrr20 {
  margin-top: clamp(50px, 8vw, 80px);
  text-align: center;
  position: relative;
}

.rrr21 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b33473 0%, #6e1a42 100%);
  color: white;
  padding: clamp(14px, 3vw, 18px) clamp(30px, 5vw, 45px);
  border-radius: clamp(12px, 3vw, 18px);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  transition: all 0.4s ease;
  box-shadow:
    0 8px 30px rgba(179, 52, 115, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.rrr21::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.rrr21:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 15px 40px rgba(179, 52, 115, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.rrr21:hover::before {
  left: 100%;
}

.rrr21 i {
  margin-left: clamp(10px, 2vw, 15px);
  transition: transform 0.3s ease;
}

.rrr21:hover i {
  transform: translateX(8px) scale(1.1);
}

@media (max-width: 768px) {
  .rrr7 {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 30px);
  }

  .rrr8 {
    padding: clamp(25px, 5vw, 35px);
  }

  .rrr9 {
    flex-direction: column;
    text-align: center;
    gap: clamp(12px, 3vw, 15px);
  }

  .rrr16 {
    flex-direction: column;
    gap: clamp(12px, 3vw, 15px);
    align-items: center;
    text-align: center;
  }

  .rrr8:hover {
    transform: translateY(-8px);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .rrr7 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1440px) {
  .rrr7 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (hover: none) {
  .rrr8:hover {
    transform: none;
  }

  .rrr8:active {
    transform: scale(0.98);
  }

  .rrr21:hover {
    transform: none;
  }

  .rrr21:active {
    transform: scale(0.95);
  }
}

@media screen and (max-width: 1400px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 1200px) {
  .navbar .navbar-nav .nav-link {
    font-size: 16px;
    margin: 0 8px;
  }

  h1,
  .display-1 {
    font-size: 2.5rem !important;
  }

  h2,
  .display-2 {
    font-size: 2rem !important;
  }
}

@media screen and (max-width: 992px) {
  .btn {
    padding: 10px 20px !important;
    font-size: 14px !important;
  }

  .navbar-collapse {
    background: #ffffff;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    border-radius: 8px;
  }

  .navbar .navbar-nav .nav-link {
    margin: 8px 0;
    padding: 10px 0 !important;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  h1,
  .display-1 {
    font-size: 2rem !important;
  }

  h2,
  .display-2 {
    font-size: 1.75rem !important;
  }

  h3 {
    font-size: 1.5rem !important;
  }

  h4 {
    font-size: 1.25rem !important;
  }

  .btn {
    padding: 8px 16px !important;
    font-size: 13px !important;
    width: 100%;
    margin: 5px 0 !important;
  }

  .container,
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  section {
    padding: 40px 0 !important;
  }

  .back-to-top {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 576px) {
  body {
    font-size: 13px;
  }

  h1,
  .display-1 {
    font-size: 1.75rem !important;
    line-height: 1.3;
  }

  h2,
  .display-2 {
    font-size: 1.5rem !important;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.25rem !important;
  }

  h4 {
    font-size: 1.1rem !important;
  }

  .btn {
    padding: 8px 12px !important;
    font-size: 12px !important;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  section {
    padding: 30px 0 !important;
  }

  .navbar {
    padding: 10px 0 !important;
  }

  .back-to-top {
    right: 15px;
    bottom: 15px;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  body {
    font-size: 12px;
  }

  h1,
  .display-1 {
    font-size: 1.5rem !important;
  }

  h2,
  .display-2 {
    font-size: 1.3rem !important;
  }

  .btn {
    padding: 6px 10px !important;
    font-size: 11px !important;
  }

  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media screen and (orientation: landscape) and (max-height: 500px) {
  .navbar {
    padding: 5px 0 !important;
  }

  section {
    padding: 20px 0 !important;
  }

  h1,
  .display-1 {
    font-size: 1.8rem !important;
  }

  h2,
  .display-2 {
    font-size: 1.5rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Gallery Slider Styles */
.ggg1 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(179, 52, 115, 0.05), rgba(142, 38, 89, 0.03));
  position: relative;
  padding: 60px 20px;
}

.gall1 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

        .gall2 {
            position: relative;
            width: 100%;
            height: 500px;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 
                0 25px 50px rgba(255, 113, 146, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 113, 146, 0.2);
        }

        .gall3 {
            display: flex;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .gall4 {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gall5 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: 
                brightness(0.95)
                contrast(1.05)
                saturate(1.05);
            transition: all 0.6s ease;
        }

        .gall4:hover .gall5 {
            filter: 
                brightness(1)
                contrast(1.1)
                saturate(1.1);
            transform: scale(1.02);
        }

        .gall6 {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 70%, rgba(255, 113, 146, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 113, 146, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.6s ease;
            mix-blend-mode: overlay;
        }

        .gall4:hover .gall6 {
            opacity: 1;
        }

        .gall7 {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 113, 146, 0.15) 0%, transparent 70%);
            opacity: 0;
            transition: all 0.8s ease;
            transform: translate(-50%, -50%);
        }

        .gall4:hover .gall7 {
            width: 150%;
            height: 150%;
            opacity: 0.2;
        }

        .gall8 {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
            padding: 0 20px;
        }

        .gall9 {
            width: 80px;
            height: 80px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 15px rgba(179, 52, 115, 0.15);
            pointer-events: auto;
            z-index: 50;
        }

        .gall9::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                rgba(179, 52, 115, 0.3), 
                rgba(142, 38, 89, 0.2), 
                rgba(110, 26, 66, 0.1));
            background-size: 400% 400%;
            border-radius: 13px;
            z-index: -1;
            opacity: 0;
            animation: gall10 3s ease infinite;
            transition: opacity 0.4s ease;
        }

        .gall9:hover::before {
            opacity: 1;
        }

        .gall9:hover {
            transform: translateY(-5px) scale(1.1);
            border-color: rgba(179, 52, 115, 0.4);
            box-shadow: 0 10px 20px rgba(179, 52, 115, 0.3);
        }

        .gall9.active {
            transform: scale(1.15);
            border-color: rgba(179, 52, 115, 0.6);
            box-shadow: 0 10px 25px rgba(179, 52, 115, 0.35);
        }

        .gall9.active::before {
            opacity: 1;
        }

        .gall9 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gall9:hover img {
            transform: scale(1.1);
        }

        .gall11 {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(179, 52, 115, 0.4);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            color: #b33473;
            transition: all 0.4s ease;
            backdrop-filter: blur(15px);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(179, 52, 115, 0.3);
        }

        .gall11::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            background: linear-gradient(45deg, #b33473, #8e2659);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .gall11:hover::before {
            opacity: 1;
        }

        .gall11:hover {
            transform: translateY(-50%) scale(1.15);
            border-color: transparent;
            color: white;
            box-shadow: 0 10px 30px rgba(179, 52, 115, 0.5);
        }

        .gall12 {
            left: 20px;
        }

        .gall13 {
            right: 20px;
        }

        .gall14 {
            display: none !important;
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 113, 146, 0.3);
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            color: #ff7192;
            font-weight: 600;
            transition: all 0.4s ease;
            backdrop-filter: blur(15px);
            align-items: center;
            gap: 10px;
            z-index: 10;
            font-size: 1rem;
            box-shadow: 0 5px 15px rgba(255, 113, 146, 0.15);
        }

        .gall14:hover {
            background: rgba(255, 113, 146, 0.1);
            transform: translateX(-50%) translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 113, 146, 0.25);
        }

        .gall14.playing .gall15 {
            display: none;
        }

        .gall14.playing .gall16 {
            display: inline;
        }

        .gall14 .gall16 {
            display: none;
        }

        .gall17 {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255, 113, 146, 0.1);
            overflow: hidden;
        }

        .gall18 {
            height: 100%;
            background: linear-gradient(90deg, #ff7192, #ff9ebb, #ffc2d6);
            background-size: 300% 100%;
            width: 0%;
            transition: width 4s linear;
            animation: gall10 3s ease infinite;
        }

        .gall19 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .gall20 {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 113, 146, 0.1) 0%, transparent 70%);
            animation: gall21 20s infinite linear;
            filter: blur(1px);
        }

        .gall20:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .gall20:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 70%;
            left: 80%;
            animation-delay: -7s;
        }

        .gall20:nth-child(3) {
            width: 80px;
            height: 80px;
            top: 40%;
            left: 90%;
            animation-delay: -14s;
        }

        @keyframes gall21 {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg) scale(1); 
            }
            25% { 
                transform: translateY(-20px) rotate(90deg) scale(1.1); 
            }
            50% { 
                transform: translateY(0px) rotate(180deg) scale(1); 
            }
            75% { 
                transform: translateY(20px) rotate(270deg) scale(0.9); 
            }
        }

        @keyframes gall10 {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .gall22 {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            z-index: 1000;
            backdrop-filter: blur(20px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gall22.active {
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 1;
        }

        .gall23 {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 20px;
            box-shadow: 0 0 50px rgba(255, 113, 146, 0.2);
            transform: scale(0.8);
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .gall22.active .gall23 {
            transform: scale(1);
        }

        .gall24 {
            position: absolute;
            top: 30px;
            right: 30px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 113, 146, 0.3);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            color: #ff7192;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(255, 113, 146, 0.15);
        }

        .gall24:hover {
            background: rgba(255, 113, 146, 0.1);
            transform: scale(1.1);
        }

        /* Mobile Responsive Fixes */
        @media (max-width: 768px) {
            .gall2 {
                height: 400px;
            }
            
            .gall9 {
                width: 60px;
                height: 60px;
            }
            
            .gall11 {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .gall14 {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            /* Mobile touch improvements */
            .gall9, .gall11, .gall14 {
                cursor: pointer;
                -webkit-tap-highlight-color: transparent;
            }
            
            .gall8 {
                flex-wrap: wrap;
                gap: 10px;
                justify-content: center;
            }
            
            /* Hide decorative elements on mobile for performance */
            .gall20 {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .gall2 {
                height: 300px;
            }
            
            .gall9 {
                width: 50px;
                height: 50px;
            }
            
            .gall11 {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .gall12 {
                left: 10px;
            }
            
            .gall13 {
                right: 10px;
            }
            
            .gall14 {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
            
            .gall8 {
                gap: 8px;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) {
            .gall9:hover {
                transform: none;
            }
            
            .gall9:hover img {
                transform: none;
            }
            
            .gall11:hover {
                transform: translateY(-50%);
            }
            
            .gall14:hover {
                transform: translateX(-50%);
            }
            
            .gall24:hover {
                transform: none;
            }
        }

        .ggg1{
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 113, 146, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 113, 146, 0.1) 0%, transparent 50%),
