* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: -apple-system, sans-serif;
}

:root {
  --snd-bg-color: #d5fdf9;
  --text-color: #000;
  --main-color: #FFE8BF;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  color: var(--text-color);
  overflow-x: hidden;
  background: linear-gradient(135deg, #FF869F 0%, #A10034 100%);

}

section {
  min-height: 100vh;
  padding: 9rem 9% 2rem;
}



/* Header Section */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.1rem 3%;
  background-color: var(--main-color);
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  height: 8rem;
}

.logo {
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg-color);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
}

.logo-image {
  height: 300px;
  width: auto;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.navbar a {
  font-size: 1.8rem;
  color: #000000;
  margin-left: 4rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: var(--text-color);
  transform: scale(1.1);
}

.bx {
  font-size: 3rem;
  margin-left: 1.5rem;
  vertical-align: middle;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}

.social-icons i {
  color: #000;
}

.bx:hover {
  color: var(--text-color);
  transform: scale(1.2);
}

/* Hide burger icon on desktop */
#menu-icon {
  display: none;
  font-size: 3rem;
  cursor: pointer;
}

.social-icons {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  color: #000;
  font-size: 2.8rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--main-color);
}

/* Home Section */
.home {
  background-image: url('/assets/images/background.jpg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.home-contents {
  max-width: 60%;
  z-index: 2;
}

.home-contents h3 {
  font-size: 3.7rem;
  font-weight: 700;
  color: white;
  margin-top: 5rem;
}

.home-contents h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 2rem;
}

.home-contents p {
  font-size: 1.6rem;
  color: #fff4f4;
  margin-bottom: 3rem;
  line-height: 1.6;
}

span {
  color: #ffffff;
  font-weight: 700;
}

#typing-span {
  display: inline-block;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  background: var(--main-color);
  border-radius: 4rem;
  color: var(--text-color);
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--main-color);
}

.logo-img {
  max-width: 200px;
  height: auto;
  margin-top: 3rem;
}

.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease-out;
}

.logo-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 450px;
  animation: logoFloat 4s ease-in-out infinite;
}

.logo-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--main-color), var(--accent-color), var(--main-color));
  border-radius: 50%;
  z-index: -1;
  animation: rotate 3s linear infinite;
}

.logo-image {
  width: 350px;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;

}

.logo-container:hover .logo-image {
  transform: scale(1.05);
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  html {
    font-size: 45%;
  }

  .home {
    padding: 6rem 3% 2rem;
  }

  .home-contents h3 {
    font-size: 2.4rem;
  }

  .home-contents h1 {
    font-size: 3.5rem;
  }

  .home-contents p {
    font-size: 1.4rem;
  }

  .btn {
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
  }

  .logo-img {
    max-width: 140px;
  }

  .responsive-container-block.Container {
    padding: 10px 0;
    width: 100%;
    max-width: 100%;
  }

  .responsive-container-block.bigContainer {
    padding: 10px 20px;
  }

  .text-blk.subHeadingText {
    font-size: 24px;
    padding: 0;
    line-height: 28px;
  }

  .text-blk.description {
    font-size: 16px;
    padding: 0;
    line-height: 22px;
  }

  .allText {
    padding: 0;
    width: 100%;
  }

  .allText.bottomText {
    margin: 30px 0 0 0;
    padding: 0;
  }

  .ultimateImg {
    position: static;
  }

  .purpleBox {
    position: static;
  }

  .stars {
    width: 100%;
  }

  .stars i.bxs-star {
    color: #fff !important;
    font-size: 2rem;
    margin-right: 0.1rem;
  }

  .allText.bottomText {
    margin: 75px 0 0 0;
  }

  .purpleText {
    font-size: 16px;
    line-height: 22px;
  }

  .explore {
    padding: 6px 35px;
    font-size: 15px;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .home {
    min-height: 120vh;
    padding: 6rem 5% 2rem;
  }

  .home-contents {
    padding-top: 1rem;
  }

  .home-contents h1 {
    font-size: 3.5rem;
  }

  .home-contents h3 {
    font-size: 2.5rem;
  }
}

* {
  box-sizing: border-box;
}


/* About Section */
.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  align-items: stretch;
}

.text-content {
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A10034;
  margin-bottom: 20px;
  font-family: 'Arial', sans-serif;
}

.main-heading {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #ffffff;
  font-style: italic;
}

.quote-mark {
  font-size: 120px;
  color: #A10034;
  line-height: 0.5;
  margin-bottom: 20px;
  font-family: serif;
}

.text-blk.description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #ffffff;
  text-align: justify;
  transition: all 0.3s ease;
}

.highlight-text {
  font-style: italic;
  color: #A10034;
  font-weight: 500;
}

.read-more-btn {
  display: inline-block;
  padding: 15px 35px;
  background: transparent;
  border: 2px solid #A10034;
  color: #A10034;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'Arial', sans-serif;
  cursor: pointer;
  align-self: flex-start;
}

.read-more-btn:hover {
  background: #A10034;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 111, 71, 0.3);
}

.visual-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 600px;
}

.image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-image:hover {
  transform: scale(1.08);
}

.image-large {
  grid-row: span 2;
}

.image-small {
  height: 100%;
}

.decorative-element {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 60px;
  height: 60px;
  border: 2px solid #A10034;
  border-radius: 50%;
  opacity: 0.7;
}

.floating-badge {
  position: absolute;
  top: 30px;
  right: -25px;
  background: linear-gradient(135deg, #A10034, #A10034);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(139, 111, 71, 0.4);
  z-index: 10;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-grid {
    gap: 60px;
  }

  .text-content {
    padding-right: 20px;
  }

  .visual-content {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 20px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .main-heading {
    font-size: 36px;
  }

  .visual-content {
    height: 400px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .image-large {
    grid-row: span 1;
  }

  .floating-badge {
    position: static;
    margin-bottom: 20px;
    align-self: flex-start;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .visual-content {
    height: 300px;
    grid-template-columns: 1fr;
  }

  .quote-mark {
    font-size: 80px;
  }

  .main-heading {
    font-size: 28px;
  }
}

/* Achievements Section */
.dynamic-intro-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #FFC4C4;
  padding: 12rem 5rem;
}

.dynamic-intro-main-title {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  color: #A10034;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.achievements-sub p {
  font-size: 18px;
  opacity: 0.95;
  margin-top: 1rem;
  max-width: 1000px;
  margin: 0 auto 4rem auto;
  color: rgb(255, 255, 255);
  line-height: 1.6;
  text-align: center;
}

.dynamic-intro-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: start;
}

.dynamic-intro-feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: #FF869F;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dynamic-intro-feature-card::before {
  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.5s;
}

.dynamic-intro-feature-card:hover::before {
  left: 100%;
}

.dynamic-intro-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.dynamic-intro-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #850f32, #970d47);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.dynamic-intro-feature-card:hover .dynamic-intro-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.dynamic-intro-icon {
  width: 50px;
  height: 50px;
  fill: white;
}

.dynamic-intro-feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFE8BF;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.dynamic-intro-feature-description {
  color: #ffffff;
  line-height: 1.6;
  font-size: 1rem;
}

.dynamic-intro-contact-link {
  color: #2c5aa0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.dynamic-intro-contact-link:hover {
  color: #667eea;
  text-decoration: underline;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  html {
    font-size: 55%;
  }

  .home {
    padding: 8rem 5% 2rem;
  }

  .home-contents {
    max-width: 70%;
  }

  .home-contents h1 {
    font-size: 5rem;
  }

  .home-contents h3 {
    font-size: 3rem;
  }

  .responsive-container-block.Container {
    max-width: 450px;
  }

  .mainImg {
    width: 55%;
    height: auto;
  }

  .allText {
    width: 40%;
    margin: 0 0 0 20px;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .allText.bottomText {
    margin: 30px 40px 0 0;
    text-align: left;
  }

  .purpleBox {
    bottom: auto;
    left: -10%;
    top: 70%;
  }

  .mainImg {
    width: 100%;
  }

  .text-blk.headingText {
    text-align: left;
  }

  .dynamic-intro-section {
    padding: 8rem 3rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  html {
    font-size: 50%;
  }

  .header {
    padding: 1rem 5%;
    height: 7rem;
  }

/* Enhanced Mobile Navbar */
.navbar {
  /* Positioning & Dimensions */
  position: fixed;
  top: 0;
  right: -280px; /* Slightly wider for better touch experience */
  width: 260px;
  height: 100vh;
  z-index: 2000;
  
  /* Modern Background Effects */
  background: linear-gradient(
    135deg, 
    var(--main-color) 0%, 
    rgba(var(--main-color-rgb), 0.95) 50%,
    var(--main-color) 100%
  );
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  
  /* Layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 3rem 2rem 2rem;
  gap: 1.5rem;
  
  /* Enhanced Animations */
  transition: 
    right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s ease;
  
  /* Visual Enhancements */
  box-shadow: 
    -8px 0 32px rgba(0, 0, 0, 0.12),
    -4px 0 16px rgba(0, 0, 0, 0.08),
    inset 1px 0 0 rgba(255, 255, 255, 0.1);
  
  /* Border & Overflow */
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  overflow-y: auto;
  overflow-x: hidden;
  
  /* Smooth scrolling for content */
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* Webkit Scrollbar Styling */
.navbar::-webkit-scrollbar {
  width: 4px;
}

.navbar::-webkit-scrollbar-track {
  background: transparent;
}

.navbar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.navbar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Active State - Slide In Animation */
.navbar.active {
  right: 0;
  transform: translateX(0);
  animation: slideInWithBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover Effect (for desktop) */
@media (hover: hover) {
  .navbar:hover {
    box-shadow: 
      -12px 0 40px rgba(0, 0, 0, 0.15),
      -6px 0 20px rgba(0, 0, 0, 0.1),
      inset 1px 0 0 rgba(255, 255, 255, 0.2);
  }
}

/* Gradient Overlay for Depth */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Decorative Edge Highlight */
.navbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 20%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.4) 80%,
    transparent 100%
  );
  z-index: 2;
}

/* Enhanced Animation Keyframes */
@keyframes slideInWithBounce {
  0% {
    right: -280px;
    transform: translateX(0) scale(0.95);
    opacity: 0.8;
  }
  60% {
    right: -10px;
    transform: translateX(0) scale(1.02);
    opacity: 1;
  }
  100% {
    right: 0;
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

/* Slide Out Animation */
@keyframes slideOutWithEase {
  0% {
    right: 0;
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  100% {
    right: -280px;
    transform: translateX(10px) scale(0.98);
    opacity: 0.8;
  }
}

/* When navbar is closing */
.navbar.closing {
  animation: slideOutWithEase 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Focus trap for accessibility */
.navbar:focus-within {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: -2px;
}

/* Enhanced for different screen sizes */
@media (max-width: 480px) {
  .navbar {
    right: -100%;
    width: 85%;
    max-width: 300px;
    padding: 2.5rem 1.5rem 2rem;
    gap: 1.8rem;
  }
  
  .navbar.active {
    right: 0;
  }
  
  @keyframes slideInWithBounce {
    0% {
      right: -100%;
      transform: translateX(0) scale(0.95);
    }
    60% {
      right: -3%;
      transform: translateX(0) scale(1.02);
    }
    100% {
      right: 0;
      transform: translateX(0) scale(1);
    }
  }
}

@media (max-width: 360px) {
  .navbar {
    width: 90%;
    padding: 2rem 1.2rem 1.5rem;
    gap: 1.5rem;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .navbar {
    background: linear-gradient(
      135deg, 
      rgba(var(--main-color-rgb), 0.95) 0%, 
      rgba(var(--main-color-rgb), 0.9) 50%,
      rgba(var(--main-color-rgb), 0.95) 100%
    );
    border-left-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
      -8px 0 32px rgba(0, 0, 0, 0.3),
      -4px 0 16px rgba(0, 0, 0, 0.2),
      inset 1px 0 0 rgba(255, 255, 255, 0.15);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .navbar {
    transition: right 0.2s ease;
    animation: none;
  }
  
  .navbar.active {
    animation: none;
  }
  
  .navbar.closing {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .navbar {
    border-left: 2px solid;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Print styles */
@media print {
  .navbar {
    display: none;
  }
}

  .navbar.active {
    right: 0;
  }

  .navbar a {
    margin-left: 0;
    font-size: 2rem;
  }

  #menu-icon {
    display: block;
    z-index: 2100;
  }

  .social-icons {
    display: none;
  }

  .home {
    min-height: 100vh;
    padding: 8rem 5% 2rem;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
  }

  .home-contents {
    max-width: 100%;
    margin: 0;
    padding-top: 2rem;
  }

  .home-contents h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }

  .home-contents h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
  }

  .home-contents p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }

  .btn {
    padding: 1rem 2.4rem;
    font-size: 1.4rem;
  }

  .logo-img {
    max-width: 150px;
  }

  /* About section mobile */
  .allText {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .responsive-container-block.Container {
    flex-direction: column;
    height: auto;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .text-blk.subHeadingText {
    text-align: center;
    font-size: 24px;
  }

  .text-blk.description {
    text-align: center;
    font-size: 18px;
  }

  .allText {
    margin: 40px 0 0 0;
  }

  .responsive-container-block.Container.bottomContainer {
    margin: 50px auto;
    flex-direction: column;
  }

  .allText.bottomText {
    margin: 40px 0 0 0;
    width: 100%;
    align-items: flex-start;
  }

  .mainImg {
    width: 100%;
    margin: 0 0 -70px 0;
  }

  .ultimateImg {
    width: 100%;
    position: relative;
  }

  .purpleBox {
    position: absolute;
    left: 0px;
    top: 80%;
    margin: 0;
  }

  .allText.bottomText {
    margin: 100px 0 0 0;
  }

  .text-blk.headingText {
    text-align: left;
  }

  .text-blk.subHeadingText {
    text-align: left;
  }

  .text-blk.description {
    text-align: left;
  }

  .dynamic-intro-main-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .dynamic-intro-section {
    padding: 6rem 2rem;
  }

  .dynamic-intro-features-grid {
    gap: 2rem;
  }

  .dynamic-intro-feature-card {
    padding: 1.5rem;
  }
}

/* Feedback Section */


.testimonials-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
  font-size: 48px;
  margin-top: 5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  color: #A10034;
}

.section-header p {
  font-size: 18px;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  color: white;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.testimonial-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.testimonial-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #A10034, #FF869F, #FFC4C4);
}

.testimonial-container::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(161, 0, 52, 0.1), rgba(255, 134, 159, 0.1));
  border-radius: 50%;
  transition: all 0.4s ease;
}

.testimonial-container:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.testimonial-container:hover::after {
  top: -25%;
  right: -25%;
  width: 150px;
  height: 150px;
}

.fb-embed-wrapper {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.fb-embed-wrapper iframe {
  width: 100% !important;
  max-width: 100%;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.testimonial-label {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #A10034;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.testimonial-label::before {
  content: '⭐';
  margin-right: 0.5rem;
  font-size: 1.2rem;
  animation: sparkle 2s infinite;
}

.cta-section {
  text-align: center;
  background: rgba(178, 11, 11, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(161, 0, 52, 0.1), rgba(255, 134, 159, 0.1), rgba(255, 196, 196, 0.1));
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h3 {
  font-size: 4.5rem;
  color: #A10034;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  color: white;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.main-cta-btn {
  background: linear-gradient(135deg, #A10034, #FF869F);
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 30px rgba(161, 0, 52, 0.3);
}

.main-cta-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 20px 40px rgba(161, 0, 52, 0.4);
  background: linear-gradient(135deg, #FF869F, #A10034);
}

.social-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.proof-item::before {
  content: '✓';
  margin-right: 0.5rem;
  color: #FFC4C4;
  font-weight: bold;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sparkle {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.2) rotate(180deg);
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial-container {
    padding: 1.5rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-section h3 {
    font-size: 2rem;
  }

  .social-proof {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 580px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-container {
    margin: 0 -0.5rem;
  }

  .fb-embed-wrapper iframe {
    height: auto !important;
    min-height: 200px;
  }
}


/* Memories Section */

.memories-section {
  min-height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('assets/images/image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 60px 20px;
}

.memories-header {
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 3px;
}

.memories-subheader {
  text-align: center;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.gallery {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery__strip__wrapper {
  margin-bottom: 30px;
  overflow: hidden;
}

.gallery__strip {
  display: flex;
  gap: 20px;
  animation: scroll 20s linear infinite;
}

.gallery__strip.two {
  animation-direction: reverse;
  animation-duration: 25s;
}

.gallery__strip.three {
  animation-duration: 22s;
}

.gallery__strip.four {
  animation-direction: reverse;
  animation-duration: 18s;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.photo {
  flex-shrink: 0;
  width: 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.photo:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.photo__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.photo__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo:hover .photo__image img {
  transform: scale(1.1);
}

.photo__name {
  padding: 20px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  position: relative;
}

.photo__name::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
}

/* Duplicate photos for seamless scrolling */
.gallery__strip::after {
  content: '';
  display: flex;
  gap: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
  .memories-section {
    padding: 40px 15px;
  }

  .memories-header {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .memories-subheader {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .photo {
    width: 250px;
  }

  .photo__image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .memories-header {
    font-size: 2rem;
  }

  .memories-subheader {
    font-size: 1rem;
  }

  .photo {
    width: 200px;
  }

  .photo__image {
    height: 150px;
  }
}

/* Video section */


/* contact section */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FF869F 0%, #A10034 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.form-header {
  margin-bottom: 30px;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 10px;
}

.form-subtitle {
  color: #718096;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #A10034;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, #A10034 0%, #FF869F 100%);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.info-section {

  padding: 40px 0;
}

.info-header {
  margin-bottom: 40px;
}

.info-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.info-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
  color: #ffffff;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.contact-text {
  font-size: 1.1rem;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Modal/Popup Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 500px;
  width: 90%;
  transform: scale(0.7) translateY(-50px);
  transition: all 0.3s ease;
}

.modal-overlay.show .modal {
  transform: scale(1) translateY(0);
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.modal-icon.success {
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: white;
}

.modal-icon.error {
  background: linear-gradient(135deg, #f56565, #e53e3e);
  color: white;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2d3748;
}

.modal-message {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 30px;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.modal-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-btn.primary {
  background: linear-gradient(135deg, #A10034, #FF869F);
  color: white;
}

.modal-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 104, 95, 0.3);
}

.modal-btn.secondary {
  background: #e2e8f0;
  color: #4a5568;
}

.modal-btn.secondary:hover {
  background: #cbd5e0;
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-title,
  .info-title {
    font-size: 2rem;
  }

  .form-section {
    padding: 30px 20px;
  }
}
