/********** Template CSS **********/
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

.twentytwenty-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
     :root {
  --primary: #13aecde2;
  --accent: #13aecde2;
  --secondary: #777777;
  --light: #F8F8F8;
  --bg: #f8f0fb;
  --glass: rgba(255, 255, 255, 0.25);
  --blur: blur(15px);
  --text: #333;
  --dark: #252525;
  --hover: #e0aaff;
}


    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Outfit', sans-serif;
    }

    body {
      background: linear-gradient(120deg, var(--bg), #fff);
      color: var(--text);
      overflow-x: hidden;
    }

  header {
  position: relative;
  height: 80vh; /* %100 yerine %60 ekran yüksekliği */
  background: url('img/anatema.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.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;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}
.service-item img {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #fff;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/*yeni*/
 body {
      font-family: Arial, sans-serif;
      background: #f0f0f0;
      margin: 0;
      padding: 40px;
    }
    .comparison-section {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
    }
    .comparison-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    
    .comparison-row > div {
      flex: 1 1 48%;
    }
   .twentytwenty-container,
.twentytwenty-container * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; 
 
    }
@media (max-width: 768px) {
  .comparison-row {
    flex-direction: column;
    gap: 30px;
  }

  .comparison-row > div {
    margin-bottom: 20px;
  }

  .twentytwenty-container {
    margin-bottom: 10px;
    width: 100vw;         /* Ekran genişliği kadar */
    max-width: 100vw;
    height: auto;
    overflow: hidden;
  }

  .twentytwenty-container img {
    width: 100%;
    height: auto;
    object-fit: contain;  /* Oran koru, hiçbir yeri kesme */
    display: block;
  }

  body {
    margin: 0;
    padding: 0;
  }

  .comparison-section {
    padding: 20px 0;
    margin: 0;
  }
}
.about-section .text-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: #009CFF;;
  margin-bottom: 20px;
}

.about-section .text-content p {
  font-size: 16px;
  color: #232323;
  margin-bottom: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.feature-icon {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.feature-icon:hover {
  transform: scale(1.2);
}

.about-btn {
  background-color: #567656;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}
 
 
.about-btn:hover {
  background-color: #405940;
  color: white !important;
}
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px !important;
  }

  .about-section h1 {
    font-size: 24px !important;
  }

  .about-section p {
    font-size: 15px !important;
  }

  .feature-icon {
    width: 60px !important;
    height: 60px !important;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.feature-icon {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.feature-icon:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .feature-item h4 {
    font-size: 16px;
  }

  .feature-item p {
    font-size: 14px;
  } 

    }
    .comparison-section {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
    }
    .comparison-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .comparison-row > div {
      flex: 1 1 48%;
    }
   .twentytwenty-container,
.twentytwenty-container * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; 
 
    }
@media (max-width: 768px) {
  .comparison-row {
    flex-direction: column;
    gap: 30px;
  }

  .comparison-row > div {
    margin-bottom: 20px;
  }

  .twentytwenty-container {
    margin-bottom: 10px;
    width: 100vw;         /* Ekran genişliği kadar */
    max-width: 100vw;
    height: auto;
    overflow: hidden;
  }

  .twentytwenty-container img {
    width: 100%;
    height: auto;
    object-fit: contain;  /* Oran koru, hiçbir yeri kesme */
    display: block;
  }

  body {
    margin: 0;
    padding: 0;
  }

  .comparison-section {
    padding: 20px 0;
    margin: 0;
  }
}


 
  /* Skin Analyzer Section */
/* Skin Analyzer Section */
#skin-analyzer {
  max-width: 540px;
  margin: 4rem auto;
  padding: 2.5rem;
  background: #9cdeff;
  border-radius: 0.75rem;
  box-shadow: 0 16px 32px rgb(94, 170, 209);
  backdrop-filter: blur(6px); 
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: 'Poppins', sans-serif;
  color: #2c3e50;
  background-image: linear-gradient(135deg, #ffffff, #f2faff);
}

#skin-analyzer h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #0077b6;
  margin-bottom: 0.75rem;
}

#skin-analyzer p {
  text-align: center;
  color: #5c6b75;
  font-size: 1rem;
  margin-bottom: 2rem;
}

#skinForm label {
  display: block;
  margin: 1rem 0 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #111510;
}

#skinForm select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgb(143, 228, 16);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  appearance: none;
  transition: border 0.3s ease;
}

#skinForm select:focus {
  outline: none;
  border-color: #38b000;
  box-shadow: 0 0 0 3px rgba(56, 176, 0, 0.25);
}

#skinForm button {
  width: 100%;
  margin-top: 2rem;
  padding: 0.9rem 1.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, #0077b6, #38b000);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

#skinForm button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 119, 182, 0.4);
}

.result-box {
  margin-top: 2rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease-in-out;
}

.result-box h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: #38b000;
}

.result-box p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: #2c3e50;
  line-height: 1.6;
}

.result-box a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.4rem;
  background: #38b000;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.65rem;
  transition: background 0.3s ease;
}

.result-box a:hover {
  background: #2d8700;
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  #skin-analyzer {
    padding: 1.75rem;
  }
}


.contact-buttons {
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}
.contact-buttons a:hover,
.contact-buttons a:focus,
.contact-buttons a:visited:hover,
.contact-buttons a:active {
  color: white !important;
}

.contact-buttons a {
  width: 40px;
  height: 40px;
  background: #009CFF;
  color: white;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

/* Renkler (sıraya göre) */
.contact-buttons a:nth-child(1) { background: #009CFF; }  /* Yukarı */
.contact-buttons a:nth-child(2) { background: #25d366; }  /* WhatsApp */
.contact-buttons a:nth-child(3) { background: #007bff; }  /* Telefon */
.contact-buttons a:nth-child(4) { background: #ff5722; }  /* Harita */

.contact-buttons a:hover {
  transform: scale(1.1);
}
/* Mobil görünümde başlığı ortala ve paddingle hizala */
@media (max-width: 576px) {
  .section-title {
    display: inline-block;
    font-size: 1rem;
    padding: 4px 12px;
    margin-bottom: 0.5rem;
  }

  .display-6 {
    font-size: 1.5rem;
  }

  .service-item img {
    width: 100%;
    height: auto;
  }

  .service-item {
    padding: 1rem !important;
  }
}
.glass-box {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: 30px;
  padding: 40px 60px;
  text-align: center;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: fadeIn 2s ease forwards;
}

.glass-box h1 {
  font-size: 3rem;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #6c4fff, #e05eff, #ffb86c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent; /* ✅ sadece bu satır yeterli */

  background-size: 200% auto;
  animation: shimmer 6s infinite linear;
  letter-spacing: 1px;
}


.glass-box p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
}

/* Gradient animasyonu */
@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Mobil uyum */
@media (max-width: 768px) {
  .glass-box {
    padding: 30px 20px;
  }

  .glass-box h1 {
    font-size: 2.2rem;
  }

  .glass-box p {
    font-size: 1rem;
  }
}


    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    nav {
      position: absolute;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--glass);
      backdrop-filter: var(--blur);
      padding: 15px 30px;
      border-radius: 50px;
      display: flex;
      gap: 30px;
      z-index: 10;
    }

    nav a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      transition: 0.3s;
    }

    nav a:hover {
      color: var(--hover);
    }
 
    .benefits-section {
  background: var(--benefits-bg);  /* 🌈 Degrade arka plan */
  padding: 80px 20px;
  text-align: center;
  color: var(--benefits-text);     /* 🎨 Yazı rengi temaya bağlı */
  font-family: 'Inter', sans-serif;
}

.benefits-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.4;
  color: var(--benefits-text);     /* Başlık rengi de temaya bağlı */
}

.benefits-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* Burayı artır/düşür boşluk ayarını yapar */
}

@media (max-width: 768px) {
  .benefits-flex {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.benefit-item img:hover {
  transform: scale(1.2);
}

.benefit-item h5 {
  font-size: 14px;
  margin: 0 0 4px;
  line-height: 1.2;
}

.benefit-item p {
  font-size: 12px;
  margin: 0;
  color: var(--benefits-text);  /* 🎨 Yazı rengi temaya bağlı */
  line-height: 1.4;
}

.benefit-center-image {
  width: 320px;
  height: 360px;
  object-fit: cover;
  border-radius: 160px / 180px;
  border: 4px solid var(--primary);  /* 🎨 Ana tema rengiyle uyumlu */
  margin: 0 auto;
}

@media (max-width: 768px) {
  .benefit-center-image {
    width: 240px;
    height: 280px;
    border-radius: 120px / 140px;
    margin: 20px auto;
  }
}
    #loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: radial-gradient(ellipse at bottom, #1e003b 0%, #0c001a 100%);
      z-index: 9999;
      display: grid;
      place-items: center;
      overflow: hidden;
      font-family: 'Unbounded', sans-serif;
      opacity: 0;
      transition: opacity 1.2s ease;
    }

    #loader.fade-in {
      opacity: 1;
    }

    #loader.fade-out {
      opacity: 0;
      pointer-events: none;
    }

    #loader .stars {
  display: none;
}

    #loader .holo-glow {
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(244,210,255,0.35), transparent 70%);
      filter: blur(120px);
      animation: pulse 8s infinite ease-in-out;
      z-index: 1;
    }

    #loader .title {
      position: relative;
      z-index: 2;
      text-align: center;
      animation: fadeUp 2s ease-out forwards;
      opacity: 0;
    }

    #loader .title h1 {
      font-size: 4.2rem;
      background: linear-gradient(90deg, #f7d8ff, #d2b0ff, #e0c8ff);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shimmer 5s infinite linear;
      background-size: 200% auto;
      letter-spacing: 2px;
      margin: 0;
      text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }

    #loader .title p {
      font-size: 1.4rem;
      margin-top: 12px;
      color: #ddd;
      letter-spacing: 1.2px;
      text-shadow: 0 0 10px rgba(255,255,255,0.1);
    }

    #loader .shine-lines {
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
      z-index: 3;
    }

    #loader .shine-lines::before {
      content: "";
      position: absolute;
      top: -150%;
      left: 0;
      width: 100%;
      height: 400%;
      background: linear-gradient(to bottom, transparent 0%, rgba(255, 229, 249, 0.07) 50%, transparent 100%);
      animation: shineFlow 12s infinite linear;
    }
 
  .gallery-carousel .item img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
  }
 

    @keyframes starScroll {
      0% { transform: translate(0, 0); }
      100% { transform: translate(-10%, -10%); }
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.7; }
      50% { transform: scale(1.2); opacity: 1; }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(50px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes shimmer {
      0% { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }

    @keyframes shineFlow {
      0% { top: -150%; }
      100% { top: 100%; }
    }

    @media (max-width: 600px) {
      #loader .title h1 { font-size: 2.5rem; }
      #loader .title p { font-size: 1rem; }
    }
    