* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #f6ece6;
  line-height: 1.6;
  overflow-x: hidden;
}
::selection {
  background-color: #8a2154;
  color: #f3e5e2;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  background: rgba(246, 236, 230, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.hero-brand-main {
  color: #8a2154;
  font-size: clamp(6rem, 15vw, 24rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: -1.5rem;
  opacity: 0.95;
}
.hero-brand-sub {
  color: #8a2154;
  font-size: clamp(1.5rem, 6vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  opacity: 0.9;
  font-family: "Dancing Script", cursive;
}
.flow-circular-regular {
  font-family: "Flow Circular", system-ui;
  font-weight: 400;
  font-style: normal;
}
.logo {
  height: 60px;
  display: flex;
  align-items: center;
  border-radius: 10px;
}
.logo img {
  height: 200px;
  width: auto;
  object-fit: contain;
  transition: 0.3s;
  filter: drop-shadow(0px 0px 0px #8a2154);
}
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links li {
  margin-left: 30px;
  position: relative;
}
.nav-links a {
  text-decoration: none;
  color: #8a2154;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #c42773;
}
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #8a2154;
  animation: 0.3s forwards underline;
}
@keyframes underline {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  background: #8a2154;
  margin: 5px 0;
  transition: 0.3s;
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:first-child {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100vh;
  background: #f6ece6;
  flex-direction: column;
  padding: 80px 20px 20px;
  transition: right 0.3s ease;
  z-index: 1000;
}

.mobile-menu-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: #f6ece6;
  border-bottom: 1px solid #d8a7b1;
  display: flex;
  justify-content: flex-end;
}

.close-menu {
  font-size: 30px;
  color: #8a2154;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.close-menu:hover {
  background-color: #f3e5e2;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: #8a2154;
  text-decoration: none;
  font-size: 1.2rem;
}
.mobile-menu a:hover {
  color: #d8a7b1;
}
.section {
  margin-top: 4vh;
  height: 200vh;
  position: relative;
  overflow: hidden;
}
.text-container {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
}
.main-text {
  font-size: 7rem;
  margin: 0;
  color: #8a2154;
  background-size: contain;
  background-position: center;
  display: inline-block;
  padding: 0 20px;
}
.main-text span {
  position: relative;
  z-index: 2;
}
.sub-text {
  font-size: 3.5rem;
  margin-top: 10px;
  margin-bottom: 2vh;
  color: #8a2154;
  font-family: "Dancing Script", cursive;
}
.hero-book-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: #8a2154;
  color: #f6ece6;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 10;
}
.hero-book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(138, 33, 84, 0.4);
}
.hero-book-btn span {
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 100%;
  margin-left: 10px;
  color: #000;
  height: 6vh;
  width: 2vh;
  display: flex;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  transition: margin-left 0.3s;
}
.hero-book-btn:hover span {
  margin-left: 15px;
}
.image-container {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  z-index: 2;
}
.frame {
  padding: 20px;
  border-radius: 5px;
  background-color: #f8f0f5;
  border: 2px solid #e0b9c0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  box-sizing: border-box;
}
.image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  margin: 0 auto;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
}
.sm-card h1 {
  margin: 15px 0 0;
  font-size: 1.8rem;
  color: #d16ba5;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.sm-card p {
  color: #d16ba5;
  font-family: "Dancing Script", cursive;
}
@media (max-width: 768px) {
  .image {
    max-height: 250px;
  }
  .sm-card h1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .image {
    max-height: 200px;
  }
  .sm-card h1 {
    font-size: 1.4rem;
  }
  .frame {
    padding: 15px;
  }
  .hero-brand-main {
    margin-bottom: 2vh;
  }
  .pin-top {
    right: -10%;
    transform: rotate(40deg);
  }
  .hero-book-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #8a2154;
    color: #f6ece6;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
}
.image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.pin-top {
  display: none;
  position: absolute;
  top: -40px;
  right: -40px;
  transform: rotate(40deg);
  font-size: 2.5rem;
  z-index: 3;
  padding: 4px 8px;
  border-radius: 50%;
}
.pin-top img {
  width: 100px;
  height: 100px;
}
.heart-bottom {
  position: absolute;
  bottom: -45px;
  left: -5%;
  transform: rotate(-10deg);
  font-size: 2rem;
  z-index: 3;
  padding: 4px 8px;
  border-radius: 50%;
}
.heart-bottom img {
  width: 40px;
  height: 40px;
}
.heart-bottom:hover {
  transform: translateX(-50%) scale(1.2);
  transition: 0.3s;
}
.decoration-image.bottom-left {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 15%;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  border-radius: 10px;
}
.decoration-image.top-right {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 15%;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  .logo {
    height: 45px;
  }
  .logo img {
    max-width: 150px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .pin-top {
    display: none;
    position: absolute;
    top: -200px;
    right: -40px;
    transform: rotate(40deg);
    font-size: 2.5rem;
    z-index: 3;
    padding: 4px 8px;
    border-radius: 50%;
  }
  .pin-top img {
    width: 100px;
    height: 100px;
  }
  .heart-bottom {
    display: none;
    position: absolute;
    bottom: -45px;
    left: -5%;
    transform: rotate(-10deg);
    font-size: 2rem;
    z-index: 3;
    padding: 4px 8px;
    border-radius: 50%;
  }
  .heart-bottom img {
    width: 40px;
    height: 40px;
  }
  .mobile-menu {
    display: flex;
  }
  .main-text {
    font-size: 4rem;
    background: 0 0;
  }
  .sub-text {
    font-size: 1rem;
  }
  .book-btn {
    margin-top: 20px;
  }
  .image-container {
    width: 90%;
    bottom: 10%;
  }
  .decoration-image.bottom-left,
  .decoration-image.top-right {
    display: none;
  }
}
@media (max-width: 480px) {
  .navbar {
    padding: 12px 15px;
  }
  .logo {
    height: 40px;
  }
  .logo img {
    max-width: 120px;
  }
  .section {
    height: 115vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main-text {
    font-size: 3rem;
  }
  .sub-text {
    font-size: 1.4rem;
  }
  .book-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
  .pin-top {
    position: absolute;
    top: -40px;
    right: -40px;
    transform: rotate(40deg);
    font-size: 2.5rem;
    z-index: 3;
    padding: 4px 8px;
    border-radius: 50%;
  }
  .pin-top img {
    width: 100px;
    height: 100px;
  }
  .heart-bottom {
    position: absolute;
    bottom: -45px;
    left: -5%;
    transform: rotate(-10deg);
    font-size: 2rem;
    z-index: 3;
    padding: 4px 8px;
    border-radius: 50%;
  }
  .heart-bottom img {
    width: 10px;
    height: 10px;
  }
  .image-container {
    width: 100%;
    bottom: 7%;
  }
}
.services-header {
  padding: 20px 20px 10px;
  background: #f6ece6;
  border-top: 2px solid #d8a7b1;
  border-bottom: 2px solid #d8a7b1;
}
.header-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.header-left h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #8a2154;
  margin: 0;
  letter-spacing: -0.5px;
}
.header-right p {
  font-family: Poppins, sans-serif;
  font-size: 1.2rem;
  color: #5c4033;
  margin: 0;
  text-align: right;
  max-width: 300px;
}
@media (max-width: 768px) {
  .header-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .header-left h2 {
    font-size: 2.3rem;
  }
  .header-right p {
    font-size: 1rem;
    text-align: center;
  }
}
.tabs {
  padding: 50px 20px;
  background: #f6ece6;
  text-align: center;
}
.tab-buttons {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  text-align: left;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.tab-buttons::-webkit-scrollbar {
  display: none;
}
.tab-button {
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #8a2154;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
  white-space: nowrap;
}
.tab-button.active {
  border-bottom-color: #8a2154;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 8px;
  padding: 0 10px;
  transition: opacity 0.5s, transform 0.5s;
}
.card {
  background: #f3e5e2;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d8a7b1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 15px;
}
.card-image img {
  width: 40%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
  border: 10px solid #d8a7b1b5;
  border-radius: 10px;
}
.card-image .front-image {
  transform: rotate(-15deg) translateX(15px);
  z-index: 2;
}
.card-image .back-image {
  transform: rotate(15deg) translateX(-15px);
  z-index: 1;
}
.card:hover .back-image {
  transform: rotate(20deg);
}
.card:hover .front-image {
  transform: rotate(-20deg);
}
.card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  text-align: left;
}
.card-info {
  text-align: left;
}
.card-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #8a2154;
}
.card-price {
  font-size: 1.2rem;
  color: #4a2c2a;
  margin-bottom: 0;
}
.card-content .book-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #8a2154;
  color: #f6ece6;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card-content .book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(138, 33, 84, 0.4);
}
.card-content .book-btn span {
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 100%;
  margin-left: 10px;
  color: #000;
  height: 6vh;
  width: 0.5vh;
  display: flex;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  transition: margin-left 0.3s;
}
.card-content .book-btn:hover span {
  margin-left: 15px;
}
.card-button {
  display: inline-block;
  padding: 10px 20px;
  background: #8a2154;
  color: #f6ece6;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1rem;
  transition: transform 0.3s, background 0.3s;
}
.card-button:hover {
  transform: scale(1.1);
  background: #d8a7b1;
}
@media (max-width: 768px) {
  .tabs {
    padding: 40px 15px;
  }
  .tab-button {
    font-size: 1.1rem;
    padding: 10px 18px;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0;
  }
  .card-image {
    padding: 20px 10px;
  }
  .card-image img {
    height: 200px;
    width: 45%;
  }
  .card-title {
    font-size: 1.4rem;
  }
  .card-price {
    font-size: 1.1rem;
  }
  .card-button {
    padding: 9px 18px;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .header-left h2 {
    font-size: 2rem;
  }
  .header-right p {
    font-size: 0.9rem;
    padding: 0 10px;
  }
  .tabs {
    padding: 30px 10px;
  }
  .tab-buttons {
    justify-content: start;
  }
  .tab-button {
    font-size: 1rem;
    padding: 8px 14px;
  }
  .card-image {
    padding: 15px 10px;
  }
  .card {
    padding-top: 20px;
  }
  .card-image img {
    height: 190px;
    width: 50%;
  }
  .card-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .card-info {
    margin-bottom: 5px;
  }
  .card-title {
    font-size: 1.3rem;
  }
  .card-price {
    font-size: 1rem;
  }
  .card-button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}
.gallery-container {
  margin-top: 10vh;
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}
.slider-row {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.slider-track {
  display: flex;
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  gap: 1vh;
}
.row-1 .slider-track {
  animation: 40s linear infinite slideRight;
}
.row-2 .slider-track {
  animation: 45s linear infinite slideLeft;
}
.row-3 .slider-track {
  animation: 35s linear infinite slideRight;
}
.slider-row:hover .slider-track {
  animation-play-state: paused;
}
.slider-item {
  width: 400px;
  height: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
  transition: transform 0.5s;
  border-radius: 10px;
}
.slider-item:hover img {
  transform: scale(1.1);
}
.overlay-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #f3e5e2 0,
    #f3e5e2c8 30%,
    #f3e5e243 60%,
    transparent 100%
  );
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
}
.main-title {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #4a2c2a;
}
.browse-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #4a2c2a;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: transform 0.3s;
  margin-top: 20px;
  width: fit-content;
  border-bottom: 1px solid #fff;
}
.browse-btn:hover {
  transform: translateX(10px);
}
.browse-btn::before {
  content: "▶";
  font-size: 0.8rem;
}
@keyframes slideRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 20px 30px;
  }
  .logo {
    font-size: 1.5rem;
  }
  .nav-menu {
    gap: 25px;
  }
  .main-title {
    font-size: 3.5rem;
  }
  .overlay-content {
    padding: 0 50px;
    width: 60%;
  }
  .slider-item {
    width: 350px;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .header {
    padding: 20px;
  }
  .logo {
    font-size: 1.3rem;
  }
  .main-title {
    font-size: 2.5rem;
  }
  .overlay-content {
    width: 70%;
    padding: 0 30px;
  }
  .slider-item {
    width: 280px;
  }
  .action-buttons {
    bottom: 20px;
    right: 20px;
  }
}
@media (max-width: 480px) {
  .gallery-container {
    position: relative;
    width: 100vw;
    height: 62vh;
    display: flex;
    flex-direction: column;
  }
  .main-title {
    font-size: 1.9rem;
    margin-bottom: 0;
  }
  .overlay-content {
    width: 80%;
    padding: 0 20px;
  }
  .slider-item {
    width: 220px;
  }
  .browse-btn {
    font-size: 1rem;
  }
  .intro {
    font-size: 10vw !important;
  }
}
.about-me {
  background-color: #f4e8e3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  overflow: hidden;
  margin-top: 5vh;
}
.about-me .container {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #d8a7b1;
  border-radius: 10px;
}
.image-side {
  flex: 1;
  position: relative;
  height: 100%;
    display: flex;
  align-items: center;
  justify-content: center;
}
.image-side img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;

}
.about-me .overlay {
  position: absolute;
  top: 0;
  left: 71%;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, transparent, #f3e5e2 100%);
  pointer-events: none;
}
.text-side {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f3e5e2;
  color: #333;
}
.text-side h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: left;
  color: #8a2154;
}
.scroll-reveal {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #5c4033;
}
.scroll-reveal .line {
  display: block;
  margin-bottom: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.scroll-reveal .line.intro {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  word-break: break-word;
}
@media (max-width: 768px) {
  .about-me .container {
    flex-direction: column;
    height: auto;
  }
  .image-side {
    height: 50vh;
    width: 100%;
  }
  .about-me .overlay {
    width: 100%;
    height: 30%;
    top: auto;
    left: auto;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, #f4e8e3 100%);
  }
  .text-side {
    padding: 40px 20px;
  }
  .text-side h2 {
    text-align: center;
  }
  .scroll-reveal {
    font-size: 1.2rem;
  }
}
.sm-courses-section {
  padding: 100px 0;
}
.sm-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.sm-section-header {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #d8a7b1;
  border-bottom: 2px solid #d8a7b1;
}
.sm-enroll-btn {
  position: relative;
}
.sm-enroll-btn::after {
  content: "Enroll via WhatsApp";
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #8b4513;
  color: #fff;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}
.sm-enroll-btn:hover::after {
  opacity: 1;
}
.sm-section-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #8a2154;
  margin-bottom: 20px;
  letter-spacing: -1px;
  width: 50%;
}
.sm-section-subtitle {
  font-size: 1.2rem;
  color: #5c4033;
  max-width: 600px;
  margin: 0 auto;
}
.sm-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 50px;
  margin-top: 60px;
}
.single-card-grid {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.sm-course-card {
  position: relative;
  background: var(--sm-white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--sm-shadow-medium);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 450px;
}
.sm-course-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--sm-shadow-heavy);
}
.sm-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sm-course-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  will-change: transform;
}
.sm-floating-icon {
  position: absolute;
  background: var(--sm-white);
  padding: 12px;
  border-radius: 50%;
  box-shadow: var(--sm-shadow-medium);
  display: none;
  align-items: center;
  justify-content: center;
  animation: 6s ease-in-out infinite sm-float;
  backdrop-filter: blur(50px);
  z-index: 2;
}
.filter {
  height: 4vh;
  width: 100%;
  position: fixed;
  z-index: 99;
  bottom: 0;
  left: 0;
  backdrop-filter: blur(10px);
}
.sm-floating-icon i {
  font-size: 1.2rem;
  color: var(--sm-primary);
}
.sm-icon-1 {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}
.sm-icon-2 {
  bottom: 20px;
  left: 20px;
  animation-delay: 2s;
}
.sm-icon-3 {
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  animation-delay: 4s;
}
@keyframes sm-float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}
.sm-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 30px;
  color: var(--sm-white);
  z-index: 3;
  color: #f6ece6;
}
.sm-course-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  backdrop-filter: blur(10px);
  width: fit-content;
  border: 1px solid #d16ba5;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 2vh;
}
.sm-course-description {
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: 90%;
  backdrop-filter: blur(10px);
  padding: 5px 10px;
  border-radius: 10px;
  border: solid 1px;
}
.sm-enroll-btn {
  background: linear-gradient(135deg, var(--sm-primary), #f4d03f);
  color: var(--sm-white);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sm-enroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #f4d03f, var(--sm-primary));
}
.sm-enroll-btn:active {
  transform: translateY(0);
}
.sec5 .enroll-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #8a2154;
  color: #f6ece6;
  font-size: 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 4vh;
}
.sec5 .enroll-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(138, 33, 84, 0.4);
}
.sec5 .enroll-btn span {
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 100%;
  margin-left: 10px;
  color: #000;
  height: 6vh;
  width: 2vh;
  display: flex;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  transition: margin-left 0.3s;
}
.sec5 .enroll-btn:hover span {
  margin-left: 15px;
}
.sm-makeup-course .sm-floating-icon {
  border: 2px solid #ff6b9d;
}
.sm-makeup-course .sm-floating-icon i {
  color: #ff6b9d;
}
.sm-mehandi-course .sm-floating-icon {
  border: 2px solid #8b4513;
}
.sm-mehandi-course .sm-floating-icon i {
  color: #8b4513;
}
.sm-hair-course .sm-floating-icon {
  border: 2px solid #9b59b6;
}
.sm-hair-course .sm-floating-icon i {
  color: #9b59b6;
}
.sm-nail-course .sm-floating-icon {
  border: 2px solid #e74c3c;
}
.sm-nail-course .sm-floating-icon i {
  color: #e74c3c;
}
@media (max-width: 1024px) {
  .sm-container {
    padding: 0 30px;
  }
  .sm-courses-grid {
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  .sm-course-card {
    height: 420px;
  }
}
@media (max-width: 768px) {
  .sm-courses-section {
    padding: 60px 0;
  }
  .sm-container {
    padding: 0 20px;
  }
  .sm-courses-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .single-card-grid {
    max-width: 100%;
    padding: 0 15px;
  }
  .sm-course-card {
    height: 400px;
  }
  .sm-card-content {
    padding: 25px;
  }
}
@media (max-width: 480px) {
  .sm-courses-grid {
    gap: 25px;
  }
  .single-card-grid {
    padding: 0 10px;
  }
  .sm-course-card {
    height: 320px;
    margin: 0;
  }
  .sm-card-content {
    padding: 15px;
  }
  .sm-course-title {
    font-size: 1.2rem;
    padding: 8px 15px;
  }
  .sm-course-description {
    font-size: 0.85rem;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 10px;
    border: solid;
  }
  .sm-enroll-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .sm-section-header {
    display: flex;
    flex-direction: column;
  }
  .sm-section-title {
    font-size: 2rem;
    width: 100%;
    margin-bottom: 10px;
  }
  .sm-section-subtitle {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 2vh;
  }
}
.testimonials-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin-bottom: 40px;
  color: #8a2154;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin-bottom: 15px;
}
.section-subtitle {
  font-size: 1.2rem;
  color: #5c4033;
}
.testimonial-bg-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 520px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: #000;
}
.testimonials-wrapper {
  border: 1px solid;
  border-radius: 10px;
}
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  object-fit: cover;
  filter: blur(8px);
  transform: scale(1.1);
  z-index: 1;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.testimonial-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  height: 380px;
  z-index: 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 10px;
}
.testimonial-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  width: 100%;
  flex-shrink: 0;
  height: 100%;
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #5c4033;
  word-break: break-all;
}
.quote-icon {
  font-size: 3rem;
  color: #8a2154;
  opacity: 0.7;
}
.testimonial-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 3vw, 1rem);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
}
.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  justify-content: center;
}
.testimonial-rating .modal-star {
  color: gold;
  font-size: 1.1rem;
}
.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d4af37;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 800;
  justify-content: center;
  background-color: #8a2154;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.customer-details h4 {
  font-weight: 600;
  color: #8a2154;
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.customer-details p {
  color: #5c4033;
  font-size: 0.95rem;
  font-weight: 500;
}
.navigation-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 15;
}
.nav-button {
  background: #fff;
  border: 2px solid #8a2154;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.nav-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: #f8f0f5;
}
.nav-button svg {
  width: 20px;
  height: 20px;
  fill: #8a2154;
}
.indicators {
  display: flex;
  gap: 12px;
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}
.indicator.active {
  background: #8a2154;
  border-color: #8a2154;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .testimonials-header {
    padding: 0 10px;
  }
  .testimonial-bg-wrapper {
    width: 95%;
    height: 450px;
  }
  .testimonial-container {
    width: 90%;
    height: 400px;
  }
  .testimonial-card {
    padding: 30px 25px;
  }
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.2;
  }
  .navigation-controls {
    gap: 20px;
  }
  .nav-button {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 480px) {
  .testimonials-header {
    padding: 0 15px;
  }
  .testimonial-bg-wrapper {
    width: 100%;
    height: 500px;
  }
  .testimonial-container {
    height: 350px;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle,
  .testimonial-text {
    font-size: 1rem;
  }
  .customer-avatar {
    width: 50px;
    height: 50px;
  }
  .navigation-controls {
    gap: 15px;
  }
  .nav-button {
    width: 40px;
    height: 40px;
  }
}
.sm-contact-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.sm-contact-header {
  text-align: center;
  margin-bottom: 60px;
}
.sm-contact-main-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: #8a2154;
  margin-top: 0;
  line-height: 1.2;
}
.sm-contact-subtitle {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-style: italic;
  color: #5c4033;
  margin-top: 10px;
}
.sm-contact-form-container {
  background: #f3e5e2;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #8a2154;
}
.sm-contact-form-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #8a2154;
  margin-bottom: 30px;
  text-align: left;
}
.sm-contact-form-group {
  margin-bottom: 25px;
}
.sm-contact-form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #5c4033;
  margin-bottom: 8px;
}
.sm-contact-form-input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #d4c4b0;
  border-radius: 12px;
  background: #fdf3f1;
  font-size: 1rem;
  color: #2c2c2c;
  transition: 0.3s;
  font-family: inherit;
}
.sm-contact-form-input:focus {
  outline: 0;
  border-color: #8b4513;
  background: #fdf3f1;
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}
.sm-contact-form-input::placeholder {
  color: #a0a0a0;
  font-size: 0.95rem;
}
.sm-contact-email-group {
  position: relative;
}
.sm-contact-email-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  fill: #8b4513;
  pointer-events: none;
}
.sm-contact-form-select {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #d4c4b0;
  border-radius: 12px;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%238b4513' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e")
    right 15px center/16px no-repeat #fdf3f1;
  font-size: 1rem;
  color: #2c2c2c;
  cursor: pointer;
  appearance: none;
  transition: 0.3s;
}
.sm-contact-form-select:focus {
  outline: 0;
  border-color: #8b4513;
  background-color: #fdf3f1;
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}
.sm-contact-form-textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 200px;
}
.sm-contact-submit-btn {
  width: 100%;
  padding: 18px 20px;
  background: #8a2154;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 20px;
}
.sm-contact-submit-btn:hover {
  background: #be226d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}
.sm-contact-submit-btn:active {
  transform: translateY(0);
}
.sm-contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.sm-contact-info-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 10px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sm-contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
}
.sm-contact-info-card i {
  font-size: 1.5rem;
  color: #8a2154;
  background-color: #f3e5e2;
  border: 1px solid #d8a7b1;
  padding: 10px 20px;
  border-radius: 10px;
}
.sm-contact-info-icon {
  width: 30px;
  height: 30px;
  stroke: #8b4513;
  stroke-width: 2;
  fill: none;
}
.sm-contact-info-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #8a2154;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
}
.sm-contact-info-subtitle {
  font-size: 0.9rem;
  color: #5c4033;
}
.info {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .sm-contact-form-container {
    padding: 30px 25px;
  }
  .sm-contact-info {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .sm-contact-info-card {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .sm-contact-form-container {
    padding: 25px 20px;
    border-radius: 15px;
  }
  .sm-contact-form-input,
  .sm-contact-form-select {
    padding: 12px 15px;
  }
  .sm-contact-submit-btn {
    padding: 15px 20px;
    font-size: 1rem;
  }
}
.sm-contact-form-input.error {
  border-color: #e74c3c;
  animation: 0.5s ease-in-out sm-contact-shake;
}
@keyframes sm-contact-shake {
  0%,
  20%,
  40%,
  60%,
  80% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
}
.sm-contact-success-message {
  background: #27ae60;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.announcement-strip {
  background: #8a2154;
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  z-index: 999;
  white-space: nowrap;
}
.announcement-content {
  display: inline-block;
  animation: 30s linear infinite scroll-left;
  padding-right: 50px;
}
.announcement-text {
  display: inline-block;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
}
.announcement-text span {
  color: #f6ece6;
  font-weight: 700;
  margin: 0 5px;
}
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 768px) {
  .announcement-strip {
    top: 70px;
    padding: 8px 0;
  }
  .announcement-text {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .announcement-strip {
    top: 60px;
    padding: 6px 0;
  }
  .announcement-text {
    font-size: 11px;
  }
}
.footer-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #f3e5e2;
  overflow: hidden;
  margin-top: 4vh;
}
.footer-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.2);
  will-change: transform;
  opacity: 0.3;
}
.footer-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    to bottom,
    #f6ece6,
    #f6ece6ad,
    #f6ece67c,
    transparent
  );
  z-index: 2;
  pointer-events: none;
}
.footer-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(180deg, transparent 0, #d8a7b1 50%, #d8a7b1 100%);
  z-index: 2;
  pointer-events: none;
}
.footer-content {
  position: relative;
  z-index: 10;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 50px 50px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.quote-section {
  flex: 1;
  max-width: 500px;
  color: #5c4033;
  font-weight: 800;
}
.quote-text {
  font-size: 0.95rem;
  line-height: 1.8;
  letter-spacing: 0.5px;
  opacity: 0.9;
  margin-bottom: 10px;
}
.links-section {
  display: flex;
  gap: 80px;
}
.link-column h3 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  opacity: 1;
}
.link-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}
.link-list a {
  color: #5c4033;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.8;
  transition: 0.3s;
}
.link-list a:hover {
  opacity: 1;
  transform: translateX(5px);
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: #5c4033;
  margin-bottom: 40px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
.copyright {
  color: #5c4033;
  font-size: 0.85rem;
  opacity: 0.8;
  letter-spacing: 0.5px;
}
.social-links {
  display: flex;
  gap: 30px;
}
.social-link {
  color: #5c4033;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.8;
  transition: 0.3s;
}
.social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.brand-typography {
  text-align: center;
  margin-bottom: 0;
}
.brand-main {
  color: #d74971;
  font-size: clamp(6rem, 15vw, 24rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: -1.5rem;
  opacity: 0.95;
}
.brand-sub {
  color: #d74971;
  font-size: clamp(1.5rem, 6vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  opacity: 0.9;
}
.action-buttons {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.action-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  font-size: 0.85rem;
  text-decoration: none;
}
.action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}
@media (max-width: 1200px) {
  .footer-content {
    padding: 0 40px 40px;
  }
  .footer-main {
    gap: 40px;
    margin-bottom: 50px;
  }
  .links-section {
    gap: 60px;
  }
  .action-buttons {
    right: 40px;
    bottom: 40px;
  }
}
@media (max-width: 768px) {
  .footer-content {
    padding: 0 30px 30px;
  }
  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
  .quote-section {
    max-width: 100%;
  }
  .links-section {
    gap: 40px;
    display: flex;
    flex-wrap: wrap;
  }
  .link-list {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 60px;
  }
  .social-links {
    gap: 25px;
    order: -1;
  }
  .action-buttons {
    position: relative;
    right: auto;
    bottom: auto;
    flex-direction: row;
    margin: 30px auto 0;
    justify-content: center;
  }
  .brand-main {
    margin-bottom: -1rem;
    line-height: 1.5;
  }
}
@media (max-width: 640px) {
  .footer-content {
    padding: 0 25px 25px;
  }
  .links-section {
    gap: 30px;
  }
  .link-column h3 {
    margin-bottom: 20px;
  }
  .social-links {
    gap: 20px;
    flex-wrap: wrap;
  }
  .quote-text {
    font-size: 0.9rem;
  }
  .action-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .action-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .footer-content {
    padding: 0 20px 20px;
  }
  .footer-main {
    gap: 30px;
    margin-bottom: 30px;
  }
  .links-section {
    flex-direction: column;
    gap: 25px;
  }
  .footer-bottom {
    margin-bottom: 40px;
  }
  .copyright {
    font-size: 0.8rem;
  }
  .social-link {
    font-size: 0.85rem;
  }
  .quote-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .footer-content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: 1s forwards slideUpFade;
  }
  .footer-main {
    animation-delay: 0.2s;
  }
  .footer-divider {
    animation-delay: 0.4s;
  }
  .footer-bottom {
    animation-delay: 0.6s;
  }
  .brand-typography {
    animation-delay: 0.8s;
  }
  @keyframes slideUpFade {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Lazy Loading Styles */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not(.lazy) {
  opacity: 1;
}

/* Loading placeholder for images */
.lazy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
  z-index: 1;
}

@keyframes loading-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Image error state */
img[loading="lazy"].error {
  background-color: #e74c3c !important;
  color: white;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
}

img[loading="lazy"].error::after {
  content: 'Failed to load';
}

/* Smooth loading transition for all images */
img {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease;
}

/* Optimize image rendering */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Progressive loading effect */
@media (prefers-reduced-motion: no-preference) {
  img[loading="lazy"] {
    filter: blur(5px);
    transform: scale(1.02);
  }

  img[loading="lazy"]:not(.lazy),
  img[loading="lazy"].loaded {
    filter: blur(0);
    transform: scale(1);
  }
}
.sm-contact-success-message {
  position: absolute;
  opacity: 0;
  z-index: 99;
  transform: translateY(-20px);
  transition: 0.3s;
}
.sm-contact-success-message.show {
  opacity: 1;
  transform: translateY(0);
}
.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}
.reviews-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  color: #8a2154;
  margin-bottom: 15px;
}
.reviews-subtitle {
  font-size: 1.2rem;
  color: #5c4033;
  max-width: 600px;
  margin: 0 auto;
}
.review-form-container {
  background: #f3e5e2;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #d8a7b1;
}
.form-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #8a2154;
  margin-bottom: 30px;
  text-align: center;
}
.review-form .form-group {
  margin-bottom: 25px;
}
.review-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #5c4033;
  margin-bottom: 8px;
}
.review-form input,
.review-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #d4c4b0;
  border-radius: 12px;
  background: #fdf3f1;
  font-size: 1rem;
  color: #2c2c2c;
  transition: 0.3s;
  font-family: inherit;
}
.review-form input:focus,
.review-form textarea:focus {
  outline: 0;
  border-color: #8a2154;
  background: #fdf3f1;
  box-shadow: 0 0 0 3px rgba(138, 33, 84, 0.1);
}
.review-form textarea {
  resize: vertical;
  min-height: 100px;
}
.star-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.star {
  font-size: 2rem;
  color: #d4c4b0;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.star.active,
.star.filled,
.star.selected,
.star:hover {
  color: gold;
}
.submit-review-btn {
  width: 100%;
  padding: 18px 20px;
  background: #8a2154;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 20px;
}
.submit-review-btn:hover {
  background: #be226d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(138, 33, 84, 0.3);
}
.submit-review-btn:active {
  transform: translateY(0);
}
.reviews-display {
  margin-top: 60px;
}
.display-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #8a2154;
  text-align: center;
  margin-bottom: 40px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.review-card {
  background: #f3e5e2;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #d8a7b1;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #8a2154;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.review-author {
  flex: 1;
}
.review-name {
  font-weight: 600;
  color: #8a2154;
  margin-bottom: 5px;
}
.review-date {
  font-size: 0.85rem;
  color: #5c4033;
  opacity: 0.7;
}
.review-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 15px;
}
.review-star {
  color: gold;
  font-size: 1rem;
}
.review-content {
  color: #5c4033;
  line-height: 1.6;
  margin-bottom: 15px;
}
.review-full-link {
  color: #8a2154;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
}
.review-full-link:hover {
  color: #be226d;
  text-decoration: underline;
}
.review-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  backdrop-filter: blur(5px);
}
.review-modal.show {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  word-break: break-all;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s;
}
.review-modal.show .modal-content {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #8a2154;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.modal-close:hover {
  background: #be226d;
}
.modal-header {
  margin-bottom: 20px;
  padding-right: 40px;
}
.modal-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #8a2154;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.modal-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #8a2154;
  margin-bottom: 10px;
}
.modal-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.modal-star {
  color: gold;
  font-size: 1.2rem;
}
.modal-review {
  color: #5c4033;
  line-height: 1.7;
  font-size: 1.1rem;
}
.loading {
  text-align: center;
  padding: 40px;
  color: #5c4033;
}
.loading::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #8a2154;
  border-radius: 50%;
  border-top-color: transparent;
  animation: 1s linear infinite spin;
  margin-left: 10px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.success-message {
  background: #27ae60;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-20px);
  transition: 0.3s;
}
.success-message.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 15px;
  }
  .review-form-container {
    padding: 30px 25px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .review-card {
    padding: 25px;
  }
  .modal-content {
    padding: 30px 25px;
    margin: 20px;
  }
  .modal-header {
    padding-right: 30px;
  }
  .modal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 480px) {
  .review-form-container {
    padding: 25px 20px;
  }
  .form-title {
    font-size: 1.8rem;
  }
  .review-card {
    padding: 20px;
  }
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .modal-content {
    padding: 25px 20px;
    margin: 15px;
  }
}
.gallery-temp-container {
  width: 80%;
  transform: translateX(13%);
  position: relative;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 150vh;
  justify-content: center;
}
.gallery-temp-content-wrapper {
  position: relative;
  width: 100%;
  z-index: 10;
}
.gallery-temp-text-content {
  position: relative;
  z-index: 5;
}
.gallery-temp-header {
  color: rgba(138, 33, 84, 0.8);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 300;
}
.gallery-temp-title {
  color: #8a2154;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.gallery-temp-subtitle {
  color: #8a2154;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.gallery-temp-btn,
.mobile-gallery-temp-btn {
  background: #8a215420;
  color: #8a2154;
  border: 2px solid #8a2154;
  padding: 12px 30px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 4px;
  margin-bottom: 60px;
}
.learn-more-btn:hover {
  background: #8a21542b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(138, 33, 84, 0.2);
}
.gallery-temp-polaroids-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.gallery-temp-polaroid {
  pointer-events: all;
  position: absolute;
  background-color: #f8f0f5;
  border: 2px solid #e0b9c0;
  padding: 20px 20px 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform-origin: center center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border-radius: 4px;
  will-change: transform;
}
.gallery-temp-polaroid img {
  width: 180px;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.gallery-temp-polaroid-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-size: 14px;
  color: #333;
  text-align: center;
  font-style: italic;
  line-height: 1.4;
}
.gallery-temp-tape {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  rotate: 60deg;
  background-image: url("https://www.pikpng.com/pngl/b/348-3482159_torn-note-paper-png.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
.gallery-temp-polaroid:first-child {
  top: -40%;
  left: 2%;
  transform: rotate(-8deg);
}
.gallery-temp-polaroid:nth-child(2) {
  top: -40%;
  right: 4%;
  transform: rotate(6deg);
}
.gallery-temp-polaroid:nth-child(3) {
  top: 50%;
  left: 6%;
  transform: rotate(12deg);
}
.gallery-temp-polaroid:nth-child(4) {
  top: 60%;
  right: 6%;
  transform: rotate(-5deg);
}
.gallery-temp-polaroid:nth-child(5) {
  bottom: -80%;
  left: 60%;
  transform: translateX(-50%) rotate(5deg);
}
.gallery-temp-polaroid:nth-child(6) {
  bottom: -10%;
  right: -22%;
  transform: translateX(-50%) rotate(7deg);
}
.gallery-temp-polaroid:nth-child(7) {
  bottom: -10%;
  left: -4%;
  transform: translateX(-50%) rotate(-7deg);
}
.gallery-temp-polaroid:nth-child(8) {
  bottom: -80%;
  left: 40%;
  transform: translateX(-50%) rotate(-7deg);
}
@media (max-width: 768px) {
  .gallery-temp-content-wrapper {
    display: flex;
    flex-direction: column;
  }
  .gallery-temp-text-content {
    order: 1;
    margin-bottom: 40px;
  }
  .gallery-temp-polaroids-container {
    order: 2;
    position: static !important;
    transform: none !important;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0;
    pointer-events: all;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .gallery-temp-polaroid {
    position: static !important;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 12px 12px 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  .gallery-temp-polaroid:nth-child(odd) {
    transform: rotate(1deg) !important;
  }
  .gallery-temp-polaroid:nth-child(2n) {
    transform: rotate(-1deg) !important;
  }
  .gallery-temp-polaroid:hover {
    transform: rotate(0) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  .gallery-temp-polaroid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gallery-temp-polaroid-text {
    font-size: 11px;
    bottom: 12px;
    left: 12px;
    right: 12px;
    line-height: 1.3;
  }
  .gallery-temp-tape {
    width: 25px;
    height: 25px;
    top: -5px;
    right: -5px;
  }
  .container {
    padding: 20px 10px;
    min-height: 100vh;
    justify-content: flex-start;
  }
  .header-text {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .learn-more-btn {
    padding: 10px 25px;
    font-size: 12px;
    margin-bottom: 20px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .polaroids-container {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 400px;
  }
  .gallery-temp-polaroid:nth {
    pointer-events: all;
    position: absolute;
    background-color: #f3e5e2;
    border: 2px solid #e0b9c0;
    padding: 20px 20px 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform-origin: center center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border-radius: 4px;
    will-change: transform;
  }
  .polaroid {
    padding: 10px 10px 45px;
  }
  .polaroid img {
    height: 100%;
  }
  .polaroid-text {
    font-size: 9px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  .gallery-temp-tape {
    width: 60px;
    height: 40px;
    top: 4px;
    right: -5px;
  }
  .main-text {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  .sub-text {
    font-size: clamp(1rem, 4vw, 2rem);
  }
  .image-container {
    max-width: 250px;
  }
  .heart-bottom img,
  .pin-top img {
    width: 60px;
    height: 60px;
  }
  .header-left h2 {
    font-size: 1.8rem;
  }
  .header-right p {
    font-size: 1rem;
  }
  .tab-button {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
  .card-image img {
    height: 250px;
  }
  .gallery-temp-polaroids-container {
    grid-template-columns: 1fr;
  }
  .gallery-temp-polaroid:first-child {
    transform: rotate(10deg);
  }
  .gallery-temp-polaroids-container img {
    height: 250px;
  }
  .mobile-gallery-temp-btn {
    display: block;
  }
  .sm-course-card {
    height: 340px;
  }
  .sm-contact-form-container {
    padding: 25px;
  }
}
