/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,600;1,600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} 
.mobile-main-menu .current_page_item a {
  color: #19A7CE !important;
}

/* Hero Banner Section Styles */
#hero-banner-section {
  background: #F1FCFF;
  padding-top: 86.5px;
  display: flex;
  align-items: center;
}

.hero-banner-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}

p.hero-banner-description.subheading,
div.hero-banner-description.subheading {
  margin-bottom: 30px;
}

.hero-banner-content {
  flex: 1;
  max-width: 500px;
  padding-bottom: 63.5px;
}

.hero-banner-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;  
  color: #252525;
}

.highlight-blue {
  color: #19A7CE;
}

.hero-banner-content-inner {
  margin-bottom: 30px;
}

.hero-banner-description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  color: #252525; 
}

.hero-app-badges {
  display: flex;
  gap: 20px;  
  margin-top: 30px;
  flex-direction: row;
}

.app-badge {
  display: flex;
  transition: transform 0.3s ease;
  height: 55px;
  width: 100%;
}

a.app-badge:first-child {
  max-width: 185.62px;
}

.app-badge img {
  height: 100%;
  width: 100%;
}

a.app-badge:last-child {
  max-width: 165px;
}

.app-badge:hover {
  transform: translateY(-2px);
}

/* Phone Mockup Styles */
.hero-phone-mockup {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: #000;
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

/* App Interface Styles */
.app-header {
  background: #fff;
  padding: 20px 16px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.back-arrow {
  font-size: 20px;
  color: #333;
  cursor: pointer;
}

.search-bar input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  background: #f8f8f8;
}

.app-categories {
  display: flex;
  gap: 8px;
  padding: 16px;
  overflow-x: auto;
  background: #fff;
}

.category-btn {
  padding: 8px 16px;
  background: #f0f0f0;
  border-radius: 20px;
  font-size: 12px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn.active {
  background: #2196F3;
  color: white;
}

/* Map Styles */
.app-map {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
  margin: 0 16px;
  border-radius: 12px;
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #9C27B0;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.map-pin::after {
  content: attr(data-event);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-pin:hover::after {
  opacity: 1;
}

/* Deal Card Styles */
.deal-card {
  position: absolute;
  bottom: 120px;
  left: 16px;
  right: 16px;
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.deal-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.deal-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.deal-item:last-child {
  margin-bottom: 0;
}

.deal-content {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.deal-content p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.deal-image {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

.hot-chocolate {
  background: linear-gradient(135deg, #8D6E63, #A1887F);
}

.food-dish {
  background: linear-gradient(135deg, #FF9800, #FFB74D);
}

.heart-icon {
  color: #E91E63;
  font-size: 14px;
  cursor: pointer;
}

/* Event Card Styles */
.event-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-image {
  position: relative;
  height: 80px;
  background: linear-gradient(135deg, #FF5722, #FF7043);
}

.concert-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF5722, #FF7043);
  position: relative;
}

.concert-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.concert-image::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 30%;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.event-image .heart-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.event-details {
  padding: 12px;
}

.event-details h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}

.event-details p {
  font-size: 11px;
  color: #666;
  margin-bottom: 8px;
}

.event-price {
  font-size: 12px;
  font-weight: 600;
  color: #2196F3;
  text-align: right;
}

/* Responsive Design for Hero Banner */
@media (max-width: 1024px) {
  .hero-banner-wrapper {
    gap: 40px;
    align-items: center;
  }
  
  .hero-banner-heading {
    font-size: 40px;
    line-height: 48px;
  }
  
  .phone-frame {
    width: 240px;
    height: 480px;
  }
}

@media (max-width: 768px) {
  #hero-banner-section {
    padding-top: 60px;
    min-height: auto;
  }
  
  .hero-banner-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: left;
  }
  
  .hero-banner-content {
    max-width: 100%;
    padding-bottom: 20px;
  }
  
  .hero-banner-heading {
    font-size: 32px;
    line-height: 40px;
  }
  
  .hero-banner-description {
    font-size: 16px;
  }
  
  .hero-app-badges {
    justify-content: center;
  }
  
  .phone-frame {
    width: 200px;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero-banner-heading {
    font-size: 28px;
    line-height: 36px;
  }
  
  .phone-frame {
    width: 180px;
    height: 360px;
  }
}

body {
  background-color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.page-width {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}
@media (max-width: 1024px) {
  .page-width {
    padding: 0 20px;
  }
  
  /* Mobile Menu Responsive Styles - Now handled in mobile-menu.css */
  
  .header-nav {
    padding: 20px 0;
  }
  

}

@media (max-width: 768px) {
  .page-width {
    padding: 0 20px;
  }
  
  /* Mobile Menu Adjustments - Now handled in mobile-menu.css */
}

/* Sticky Header Styles */
.sticky-header {
  /* position: fixed;
  top: 0;
  left: 0;
  right: 0; */
  background-color: #FFFFFF;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 8%);
  position: relative;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
}

.logo {
  max-width: 186px;
  width: 100%;
  display: flex;
}

.logo img {
  width: 100%;
  height: 38px;
}

/* Desktop Menu Styles */
.desktop-menu {
  display: block;
}

.main-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.main-menu li a {
  text-decoration: none;
  color: #333333;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  transition: color 0.3s ease;
  letter-spacing: 0.8px;
}

.main-menu li a:hover {
  color: #C3912C;
}

/* Mobile Menu Styles - Now handled in mobile-menu.css */

.header-cta .cta-button {
  background: #C3912C;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-cta .cta-button:hover {
  background: #A6959E;
  transform: translateY(-2px);
}


/* Heading styles */
h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", serif;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0;
  color: #252525;
}

h1.banner-heading {
  font-size: 58px;
  font-weight: 600;
  line-height: 64px;
}

h2.section-heading {
  font-size: 42px;
  font-weight: 600;
  line-height: 100%;
}

h2.rich-text-heading {
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 0;
  text-align: center;
}

h3.section-subheading {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

h4.section-child-heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
}
.hero-phone-mockup img {
  width: 100%;
  max-width: 621px;
  max-height: 528px;
  height: 100%;
  object-fit: contain;
}
p.body-text,
div.body-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0;
}

a.cta-button {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0;
  text-decoration: none;
  color: #FFFFFF;
  background-color: #19A7CE;
  padding: 10px 30px;
  border-radius: 5px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 172px;
  height: 46px;
  width: 100%;
}

a.cta-button:hover {
  color: #19A7CE;
  background-color: #FFFFFF;
  outline: 1px solid #19A7CE;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}




/* rich-text-section CSS START */

#rich-text-section {
  padding-top: 60px;
  padding-bottom: 50px;
  box-shadow: 0px -10px 20px 0px rgb(0 0 0 / 4%);
}
.rich-text-container-medium h2.rich-text-heading {
  color: #252525;
}
#rich-text-section .rich-text-container-medium {
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #rich-text-section {
    padding: 40px 0;
  }
}



/* benefits-section CSS START */

#benefits-section {
  padding-bottom: 60px;
}

#benefits-section .benefits-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#benefits-section .benefits-item {
  border: 1px solid #0000001A;
  border-radius: 30px;
  padding: 30px;
  transition: all 0.3s ease;
}

#benefits-section .benefits-item:hover {
  box-shadow: 0 0 11px rgb(33 33 33 / 10%);
}

#benefits-section .benefits-item .benefits-item-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
}

#benefits-section .benefits-item .benefits-item-inner .benefits-item-icon {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#benefits-section .benefits-item .benefits-item-inner .benefits-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#benefits-section .benefits-item .benefits-item-inner .benefits-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#benefits-section .benefits-item .benefits-item-inner .benefits-item-content p,
#benefits-section .benefits-item .benefits-item-inner .benefits-item-content div {
  text-align: center;
}

@media (max-width: 768px) {
  #benefits-section {
    padding: 10px 0;
  }

  #benefits-section .benefits-container {
    grid-template-columns: repeat(1, 1fr);
  }
}



/* rich-text-section-2 CSS START */

#rich-text-section-2 {
  padding-top: 60px;

}

#rich-text-section-2 .rich-text-container-2_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid #0000001A;
  padding-bottom: 50px;
}

#rich-text-section-2 .rich-text-container-2_wrapper .rich-text-heading {
  max-width: 40.6552%;
  width: 100%;
}

#rich-text-section-2 .rich-text-container-2_wrapper .rich-text-content {
  max-width: 59.3448%;
  width: 100%;
}

#rich-text-section-2 .rich-text-container-2_wrapper .rich-text-content p,
#rich-text-section-2 .rich-text-container-2_wrapper .rich-text-content div {
  margin: 0;
  margin-bottom: 20px;
  color: #252525;
}

#rich-text-section-2 .rich-text-container-2_wrapper .rich-text-content p:last-child,
#rich-text-section-2 .rich-text-container-2_wrapper .rich-text-content div:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {

  #rich-text-section-2 .rich-text-container-2_wrapper {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
  }

  #rich-text-section-2 .rich-text-container-2_wrapper .rich-text-heading {
    max-width: 100%;
  }

  #rich-text-section-2 .rich-text-container-2_wrapper .rich-text-content {
    max-width: 100%;
  }
}



/* Partner Section */
#partner-section {
  padding: 60px 0;
}

#partner-section .center-text {
  text-align: center;
  margin-bottom: 20px;
}

#partner-section a.cta-button {
  max-width: 174px;
}

.partner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.partner-columns {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.partner-box {
  flex: 1;
  background-color: #F7F7F7;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px #0000000A;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partner-box h3.section-subheading {
  font-size: 20px;
}

.partner-box .cta-button {
  align-self: flex-start;
}

.partner-list {
  padding-left: 20px;
}

.partner-list li {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .partner-columns {
    flex-direction: column;
  }

  .partner-box {
    padding: 20px;
  }
}



/* App Download Section */
#download-app-section {
  background-color: #19A7CE;
  padding: 40px 0;
  box-shadow: 8px -5px 20px 0px rgb(0 0 0 / 4%);
}

.download-app-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

#download-app-section .rich-text-heading {
  color: #ffffff;
  margin: 0;
  text-align: left;
}

.app-badges {
  display: flex;
  gap: 20px;
}

.app-badges img {
  max-height: 65px;
  height: auto;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  #download-app-section {
    padding: 40px 0;
  }

  #download-app-section .rich-text-heading {
    text-align: center;
  }

  .download-app-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .app-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
}



/* Feedback Section */
#feedback-section {
  background-color: #F1FCFF;
  padding: 60px 0;
}

.feedback-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.feedback-image {
  width: 100%;
  max-width: 42.339%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}


.feedback-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.feedback-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feedback-content .section-heading {
  margin: 0;
  color: #252525;
  margin-bottom: 30px;
}

.feedback-content p,
.feedback-content div{
  margin-bottom: 30px;
}
.feedback-content .body-text {
  color: #252525;
  margin: 0;
}

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

  .feedback-content {
    align-items: center;
  }

  .feedback-content .cta-button {
    margin: 0 auto;
  }
  .feedback-image{
    max-width: 100%;
    height: 100%;
  }
}


/* Events Section Styles */
#events-section {
  padding-top: 50px;
  padding-bottom: 60px;
  background-color: white;
}

.events-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.events-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 670px;
}

h4.section-child-heading.accordion-title {
  margin-bottom: 20px;
  cursor: pointer;
}

.accordion-item {
  border-bottom: 1px solid #0000001A;
}

.accordion-content p,
.accordion-content div {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  color: #252525;
  margin-bottom: 10px
}

.section-child-heading {
  font-size: 22px;
  font-weight: 700;
  color: #252525;
  margin: 0;
}

.accordion-item.active h4.section-child-heading.accordion-title{
  color: #19A7CE;
}

.body-text {
  font-size: 16px;
  color: #252525;
  line-height: 26px;
  margin: 0;
}

.sub-section-heading {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.events-image{
  display: flex;
  max-width: 526px;
  width: 100%;
  height: 526px;
}

.events-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: block;
  transition: opacity 0.3s ease, filter 0.2s ease, transform 0.2s ease;
  opacity: 1;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}


/* Responsive */
@media (max-width: 768px) {
  .events-wrapper {
    flex-direction: column;
  }

  .events-content {
    max-width: 100%;
  }

  .events-image {
    max-width: 100%;
    height: 100%;
  }

  .events-image img {
    max-width: 100%;
    height: 100%;
    transition: opacity 0.3s ease, filter 0.2s ease, transform 0.2s ease;
    opacity: 1;
  }

}

/* Footer Styles */
.site-footer {
  background-color: #252525;
  color: #FFFFFF;
  padding: 60px 0 30px;
}

/* Top Section: Logo and Tagline */
.footer-top-section {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
    width: 100%;
    max-width: 228px;
    object-fit: unset;
}

.footer-tagline {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

/* Middle Section: Navigation and Social Media */
.footer-middle-section {
  text-align: center;
  margin-bottom: 30px;
}

.footer-navigation {
  margin-bottom: 30px;
}

.footer-nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-nav-list li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-nav-list li a:hover {
  color: #19A7CE;
}

.footer-sociallist {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.footer-sociallist-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-sociallist-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: opacity 0.3s ease;
}

.footer-sociallist-link:hover {
  opacity: 0.7;
}

.footer-sociallist-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

/* Separator Line */
.footer-separator {
  height: 1px;
  background-color: #555555;
  margin: 30px 0;
  width: 100%;
}

/* Bottom Section: Copyright and App Store Badges */
.footer-bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  flex: 1;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  letter-spacing: 0;
}

.footer-app-badges {
  display: flex;
  gap: 15px;
}

.footer-appbtns {
  display: flex;
  list-style: none;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.footer-appbtns-item {
  display: flex;
  align-items: center;
}

.footer-appbtns-link {
  display: block;
  transition: opacity 0.3s ease;
}

.footer-appbtns-link:hover {
  opacity: 0.8;
}

.footer-appbtns-link img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
  }
  
  .footer-nav-list {
    gap: 20px;
    flex-direction: column;
  }
  
  .footer-bottom-section {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-copyright {
    order: 2;
  }
  
  .footer-app-badges {
    order: 1;
    margin-bottom: 20px;
  }
  
  .footer-appbtns {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-sociallist {
    gap: 15px;
  }
  
  .footer-appbtns {
    gap: 10px;
  }
  
  .footer-appbtns-link img {
    height: 35px;
  }
}
/* Swiper Slider Section */
#swiper-slider-section {
  padding: 60px 0;
  background: #F1FCFF;
  box-shadow: 0px -10px 20px 0px rgb(0 0 0 / 4%);
}
.phone-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 20px;
  margin-bottom: 50px;
}
.phone-heading p.body-text {
  width: 45%;
  text-align: center;
  margin-top: 20px;
}
#swiper-slider-section .swiper-container-wrapper{
  overflow: hidden;
  position: relative;
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
}
#swiper-slider-section .swiper-container-wrapper .swiper{
  width: 100%;
  max-width: 845px;
  margin: 0 auto;
}
.swiper-slide-text h3.section-subheading {
  font-size: 14px;
  line-height: 100%;
}
#swiper-slider-section .swiper--slider-wrapper .swiper-wrapper {
  display: flex;
  transition-property: transform;
}

#swiper-slider-section .swiper--slider-wrapper .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

#swiper-slider-section .swiper--slider-wrapper .swiper-slide-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

#swiper-slider-section .swiper--slider-wrapper .swiper-slide-content .swiper-slide-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

#swiper-slider-section .swiper--slider-wrapper .swiper-slide-content .swiper-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

#swiper-slider-section .swiper--slider-wrapper .swiper-slide-content .swiper-slide-text {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #252525;
}

#swiper-slider-section .swiper--slider-wrapper .swiper-slide:not(.swiper-slide-active) .swiper-slide-text {
  display: none;
}
/* Transform scale logic - keeping as requested */
#swiper-slider-section .swiper--slider-wrapper .swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.85);
  transition: transform 0.3s ease;
}

#swiper-slider-section .swiper--slider-wrapper .swiper-slide.swiper-slide-active {
  transform: scale(1);
  transition: transform 0.3s ease;
}

/* Swiper Navigation Styles */
#swiper-slider-section .swiper-button-next,
#swiper-slider-section .swiper-button-prev {
  color: #252525;
  background: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#swiper-slider-section .swiper-button-next:after,
#swiper-slider-section .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

/* Swiper Pagination Styles */
#swiper-slider-section .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

#swiper-slider-section .swiper-pagination-bullet {
  background: #19A7CE;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

#swiper-slider-section .swiper-pagination-bullet-active {
  opacity: 1;
  background: #19A7CE;
}
#swiper-slider-section .swiper-button-next {
  right: 25px;
}
#swiper-slider-section .swiper-button-prev {
  left: 25px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  #swiper-slider-section .swiper--slider-wrapper .swiper-slide.swiper-slide-active{
    padding: 0 20px;  
  }
  
  #swiper-slider-section .swiper--slider-wrapper .swiper-slide-content .swiper-slide-text {
    font-size: 18px;
  }
  #swiper-slider-section .swiper-button-prev{
    left: 0;
  }
  #swiper-slider-section .swiper-button-next{
    right: 0;
  }
  .phone-heading{
    margin-bottom: 30px;
  }
}
#download-app-section .download-app-wrapper .app-badges a{
  width: auto;
  height: auto;
  transition: transform 0.3s ease;
}
#download-app-section .download-app-wrapper .app-badges a:hover{
  transform: translateY(-2px);
}
.download-app-wrapper .app-badges a {
  display: flex;
  width: 100%;
  height: 65px;
}

.download-app-wrapper .app-badges a:first-child {
  max-width: 219.38px;
}

.download-app-wrapper .app-badges a:last-child {
  max-width: 195px;
}

div#events-section-2 {
  padding: 60px 0px;
}

#events-section-2 .events-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 0px
}

#events-section-2 .events-wrapper .body-text {
  margin-top: 20px;
  margin-bottom: 50px;
  width: 67%;
}
#events-section-2 .events-accordion-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}
.events-content.accordion-2-content .body-text {
  width: 100% !important;
}

@media (max-width: 768px) {
  #events-section-2 .events-wrapper .body-text{
    width: 100%;
  }
  #events-section-2 .events-wrapper .events-image{
    max-width: 100%;
    height: 100%;
  }
  #events-section-2 .events-wrapper .events-image img{
    max-width: 100%;
    height: 100%;
    transition: opacity 0.3s ease, filter 0.2s ease, transform 0.2s ease;
    opacity: 1;
  }
  h1.banner-heading {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

h2.section-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}

h2.rich-text-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
}

h3.section-subheading {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

h4.section-child-heading {
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  }
  p.body-text, div.body-text {
    font-size: 14px;
    line-height: 22px;
  }
  .events-wrapper .body-text {
    width: 100%;
  }
  .events-accordion-wrapper {
    flex-direction: column;
  }
  .events-accordion-wrapper .events-content {
    width: 100%;
  }
  .events-accordion-wrapper .events-image {
    width: 100%;
  }
  #partner-section .section-heading {
    font-size: 28px;
    line-height: 32px;
  }
  #partner-section .partner-box h3.section-subheading {
    font-size: 16px;
  }
  #partner-section .partner-box .cta-button {
    max-width: 100%;
  }
  #partner-section{
    padding: 20px 0;
  }
}
@media (max-width: 1024px) {
  h1.banner-heading {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
  }
  
  h2.section-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
  }
  
  h2.rich-text-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
  }
  
  h3.section-subheading {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
  }
  
  h4.section-child-heading {
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    }
    p.body-text, div.body-text {
      font-size: 14px;
      line-height: 22px;
    }
}

/* Smart Personalized Section */
div#smart-personalized-section {
  background: #F1FCFF;
  padding: 60px 0px;
}
#smart-personalized-section .section-header {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#smart-personalized-section .section-heading {
  color:rgba(0, 0, 0, 1);
}
#smart-personalized-section .section-heading .section-inner-text-highlight{
  color: rgba(25, 167, 206, 1);
}
#smart-personalized-section .body-text {
  color: rgba(0, 0, 0, 1);
}
#smart-personalized-section .smart-personalized-section-container{
  display: flex;
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
}
#smart-personalized-section .smart-personalized-section-container-items{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
#smart-personalized-section .smart-personalized-section-container-items-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#smart-personalized-section .smart-personalized-section-container-items-item-icon{
  width: 100%;
  max-width: 35px;
  max-height: 35px;
  display: flex;
}
#smart-personalized-section .smart-personalized-section-container-items-item .section-child-heading{
  text-align: center;
  color: rgba(37, 37, 37, 1);
}

@media (min-width: 768px) {
#smart-personalized-section .smart-personalized-section-container-items-item:nth-child(6n+1),
#smart-personalized-section .smart-personalized-section-container-items-item:nth-child(6n+2),
#smart-personalized-section .smart-personalized-section-container-items-item:nth-child(6n+3) {
    padding: 0 30px 30px 30px;
}

#smart-personalized-section .smart-personalized-section-container-items-item:nth-child(6n+4),
#smart-personalized-section .smart-personalized-section-container-items-item:nth-child(6n+5),
#smart-personalized-section .smart-personalized-section-container-items-item:nth-child(6n+6) {
    padding: 30px 30px 0 30px;
}
#smart-personalized-section .smart-personalized-section-container-items-item {
  border-right: 1px solid #cce5f0; /* light blue like in your screenshot */
  border-bottom: 1px solid #cce5f0;
  padding: 30px;
}

/* Remove right border from last column in each row */
#smart-personalized-section .smart-personalized-section-container-items-item:nth-child(3n) {
  border-right: none;
}

/* Remove bottom border from last row */
#smart-personalized-section .smart-personalized-section-container-items-item:nth-last-child(-n+3) {
  border-bottom: none;
}
}
@media (max-width: 768px) {
  #smart-personalized-section .smart-personalized-section-container-items{
    grid-template-columns: repeat(1, 1fr);
  }
  #smart-personalized-section .smart-personalized-section-container-items-item{
    border-right: none;
    border-bottom: 1px solid #cce5f0;
    padding: 20px;
  }
  #smart-personalized-section .smart-personalized-section-container{
    justify-content: center;
  }
}

/* Banner Section Styles */
.event-banner {
  background: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.banner-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: #252525;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .event-banner{
    padding: 30px 0;
  }
  .lr-text .lr-heading{
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
   .banner-text {
    font-size: 16px;
  }
  .event-banner{
    padding: 20px 0;
  }
}

/*--------------------------------------------------------------
# LR Sections - Event Template
--------------------------------------------------------------*/

.lr-section {
  padding-top:44px;
  padding-bottom: 44px;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.lr-content-wrapper {
  display: flex  ;
      align-items: center;
      justify-content: center;
      gap: 60px;
      max-width: 1240px;
      margin: 0 auto;
}

.lr-visual { 
  display: flex;
  justify-content: center;
  align-items: center;
}

.lr-placeholder {
  width: 410px;
  height: 399px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lr-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lr-text {
  flex: 1;
  text-align: center;
  max-width: 65%;
  width: 100%;
}

.lr-heading {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 30px;
  line-height: 100%;
}

.lr-description {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000000;
  margin: 0;
}

/* Reversed layout for even rows */
.lr-reversed {
  flex-direction: row-reverse;
}

/* Responsive design */
@media (max-width: 768px) {
  .lr-content-wrapper {
      flex-direction: column !important;
      gap: 40px;
      text-align: center;
  }
  
  .lr-visual {
      flex: 0 0 auto;
  }
  
  .lr-placeholder {
      width: 250px;
      height: 250px;
  }
  .lr-description{
    font-size: 18px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin: 0;
  }
  .lr-section {
      padding: 30px 0;
  }
}

@media (max-width: 480px) {
  .lr-placeholder {
      width: 200px;
      height: 200px;
  }
  .lr-description{
    font-size: 18px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin: 0;
  }
}

/*--------------------------------------------------------------
# Left Section Layout - Consistent left-right design
--------------------------------------------------------------*/

.left-section {
  padding-top:44px;
  padding-bottom: 44px;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.left-section .page-width {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.left-visual { 
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-visual img {
  width: 410px;
  height: 399px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  object-fit: cover;
}

.left-content {
  flex: 1;
  text-align: center;
}

.left-content .lr-heading {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 30px;
  line-height: 100%;
}

.left-content .lr-description {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000000;
  margin: 0;
}

/*--------------------------------------------------------------
# Right Section Layout - Content on left, image on right
--------------------------------------------------------------*/

.right-section {
  padding-top:44px;
  padding-bottom: 44px;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.right-section .page-width {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.right-content {
  flex: 1;
  text-align: center;
}

.right-content .lr-heading {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 30px;
  line-height: 100%;
}

.right-content .lr-description {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000000;
  margin: 0;
}

.right-visual { 
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-visual img {
  width: 410px;
  height: 399px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  object-fit: cover;
}

/* Responsive design for both left and right sections */
@media (max-width: 768px) {
  .left-section .page-width,
  .right-section .page-width {
      flex-direction: column !important;
      gap: 40px;
      text-align: center;
  }
  
  .left-visual,
  .right-visual {
      flex: 0 0 auto;
  }
  
  .left-visual img,
  .right-visual img {
      width: 250px;
      height: 250px;
  }
  
  .left-section,
  .right-section {
      padding: 60px 0;
  }
  .left-content .lr-description,
  .right-content .lr-description {
    font-size: 18px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000000;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .left-visual img,
  .right-visual img {
      width: 200px;
      height: 200px;
  }
  
  
  .left-content .lr-description,
  .right-content .lr-description {
    font-size: 18px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000000;
    margin: 0;
  }
}

/*--------------------------------------------------------------
# Event Organizer Section
--------------------------------------------------------------*/
.middle-section {
  display: flex;
  width: 100%;
  min-height: 400px;
  margin: 0 auto;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.organizer-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.organizer-question {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 30px;
  line-height: 100%;
  text-align: center;
}

.organizer-text {
  font-size: 22px;  
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.05px;
  text-align: center;
}

/* Responsive design for event organizer section */
@media (max-width: 768px) {
  .middle-section{
    min-height: 200px;
  }
  .event-organizer-section {
      padding: 40px 0;
  }
  
  .organizer-question {
      font-size: 24px;
      line-height: 100%;
      color: #000000;
      font-weight: 700;
      letter-spacing: 0.05px;
      text-align: center;
  }
  
  .organizer-text {
      font-size: 18px;
      line-height: 100%;
      color: #000000;
      font-weight: 700;
      letter-spacing: 0.05px;
      text-align: center;
      padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .organizer-question {
      font-size: 24px;
      line-height: 100%;
      color: #000000;
      font-weight: 700;
      letter-spacing: 0.05px;
      text-align: center;
  }
  
  .organizer-text {
      font-size: 18px;
      line-height: 100%;
      color: #000000;
      font-weight: 700;
      letter-spacing: 0.05px;
      text-align: center;
  }
}

/*--------------------------------------------------------------
# Two Middle Fields Section - Two Column Layout
--------------------------------------------------------------*/

.two-middle-fields-section {
  padding-top: 44px;
  padding-bottom: 44px;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.two-middle-fields-section .page-width {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.two-columns-wrapper {
  display: flex;
  gap: 80px;
  align-items: stretch;
}

.left-column,
.right-column {
  flex: 1;
  text-align: center;
}

.column-heading {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 30px;
  line-height: 100%;
}

.column-content {
  font-size: 22px;  
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* Responsive design for two middle fields section */
@media (max-width: 768px) {
  .two-columns-wrapper {
      flex-direction: column;
      gap: 40px;
      text-align: center;
  }
  
  .left-column,
  .right-column {
      text-align: center;
  }
  
  .column-heading {
      font-size: 24px;
      line-height: 100%;
      color: #000000;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-align: center;
  }
  
  .column-content {
      font-size: 18px;
      line-height: 100%;
      color: #000000;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-align: center;
  }
  
  .two-middle-fields-section {
      padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .column-heading {
      font-size: 24px;
      line-height: 100%;
      color: #000000;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-align: center;
  }
  
  .column-content {
      font-size: 18px;
      line-height: 100%;
      color: #000000;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-align: center;
  }
  
  .two-columns-wrapper {
      gap: 30px;
  }
}

/*--------------------------------------------------------------
# TWF Bottom Section - Centered Text Layout
--------------------------------------------------------------*/

.twf-bottom-section {
  padding-top: 120px;
  padding-bottom: 72px;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.bottom-content-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.bottom-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 30px;
  line-height: 100%;
}

.bottom-content {
  font-size: 22px;  
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* Responsive design for TWF bottom section */
@media (max-width: 768px) {
  .twf-bottom-section {
      padding: 40px 0;
  }
  
  .bottom-title {
      font-size: 24px;
      line-height: 100%;
      color: #000000;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-align: center;
  }
  
  .bottom-content {
      font-size: 18px;
      line-height: 100%;
      color: #000000;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-align: center;
      padding: 0 20px;
  }
  
  .bottom-content-wrapper {
      max-width: 100%;
      padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .bottom-title {
        font-size: 24px;
      line-height: 100%;
      color: #000000;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-align: center;
  }
  
  .bottom-content {
      font-size: 18px;
      line-height: 100%;
      color: #000000;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-align: center;
  }
}

.main-menu li, .main-menu li, .main-menu li {
  padding: 8px 10px;
  border: 1px solid #000000;
  border-radius: 35px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.current_page_item, .current_page_item, .current_page_item {
  background: #19A7CE;
  border-color: #19A7CE !important;
  color: #ffffff;
}

.main-menu .current_page_item a, .main-menu .current_page_item a,   .main-menu .current_page_item a {
  color: #ffffff !important;
}

@media (max-width: 1024px) {
  .mobile-main-menu .current_page_item, .mobile-main-menu .current_page_item, .mobile-main-menu .current_page_item{
    color: #19A7CE;
    background: none;
    border: none;
  }
  .mobile-main-menu .current_page_item a, .mobile-main-menu .current_page_item a, .mobile-main-menu .current_page_item a{
    color: #19A7CE !important;
  }
  .mobile-main-menu .current_page_item a:hover, .mobile-main-menu .current_page_item a:hover, .mobile-main-menu .current_page_item a:hover{
    color: #19A7CE !important;
  }
  .mobile-main-menu li, .mobile-main-menu li, .mobile-main-menu li{
    align-items: center;
    justify-content: center;
    border: none;
  }
} 

/* ========================================
   ANIMATION SYSTEM FOR HOMEPAGE
   ======================================== */

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
  opacity: 1;
}

/* Hero Banner Animations */
.hero-banner-content {
  animation: fadeInLeft 1s ease-out 0.3s both;
}

.hero-phone-mockup {
  animation: fadeInRight 1s ease-out 0.6s both;
}

.hero-banner-heading {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-banner-description {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-app-badges {
  animation: fadeInUp 1s ease-out 0.7s both;
}

/* Benefits Section Animations */
.benefits-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefits-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.benefits-item:nth-child(1) { transition-delay: 0.1s; }
.benefits-item:nth-child(2) { transition-delay: 0.2s; }
.benefits-item:nth-child(3) { transition-delay: 0.3s; }
.benefits-item:nth-child(4) { transition-delay: 0.4s; }

.benefits-item-icon {
  transition: transform 0.3s ease;
}

.benefits-item:hover .benefits-item-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Swiper Section Animations */
.phone-heading {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.swiper-container-wrapper {
  animation: fadeInScale 1s ease-out 0.6s both;
}

.swiper-slide {
  transition: transform 0.3s ease;
}

.swiper-slide:hover {
  transform: translateY(-5px);
}

/* Rich Text Section Animations */
.rich-text-container-medium,
.rich-text-container-2_wrapper {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.rich-text-heading {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.rich-text-content {
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Smart Personalized Section Animations */
.section-header {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.smart-personalized-section-container-items-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.smart-personalized-section-container-items-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.smart-personalized-section-container-items-item:nth-child(1) { transition-delay: 0.1s; }
.smart-personalized-section-container-items-item:nth-child(2) { transition-delay: 0.2s; }
.smart-personalized-section-container-items-item:nth-child(3) { transition-delay: 0.3s; }
.smart-personalized-section-container-items-item:nth-child(4) { transition-delay: 0.4s; }

.smart-personalized-section-container-items-item-icon {
  transition: all 0.3s ease;
}

.smart-personalized-section-container-items-item:hover .smart-personalized-section-container-items-item-icon {
  transform: scale(1.1) rotate(5deg);
  animation: pulse 1s ease-in-out;
}

/* Partner Section Animations */
.partner-wrapper {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.partner-box {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-box.animated {
  opacity: 1;
  transform: translateY(0);
}

.partner-box:nth-child(1) { transition-delay: 0.1s; }
.partner-box:nth-child(2) { transition-delay: 0.2s; }
.partner-box:nth-child(3) { transition-delay: 0.3s; }

/* Download Section Animations */
.download-app-wrapper {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.app-badges {
  animation: fadeInUp 1s ease-out 0.5s both;
}

/* Feedback Section Animations */
.feedback-image {
  animation: fadeInLeft 1s ease-out 0.3s both;
}

.feedback-content {
  animation: fadeInRight 1s ease-out 0.5s both;
}

/* Enhanced Button Animations */
.cta-button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Enhanced App Badge Animations */
.app-badge {
  transition: all 0.3s ease;
  position: relative;
}

.app-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.app-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.app-badge:hover::after {
  opacity: 1;
}

/* Loading State Animations */
.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* Responsive Animation Adjustments */
@media (max-width: 768px) {
  .hero-banner-content,
  .hero-phone-mockup {
    animation: fadeInUp 1s ease-out 0.3s both;
  }
  
  .benefits-item,
  .smart-personalized-section-container-items-item,
  .partner-box {
    transition-delay: 0.1s !important;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   ANIMATION SYSTEM FOR OTHER TEMPLATES
   (Agora, Event, Restaurant)
   ======================================== */

/* Banner Section Animations */
.event-banner .banner-content {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.event-banner .rich-text-heading {
  animation: fadeInUp 1s ease-out 0.5s both;
}

/* Left-Right Section Animations */
.lr-section {
  overflow: hidden;
}

.lr-visual {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lr-visual.animated {
  opacity: 1;
  transform: translateX(0);
}

.lr-text {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lr-text.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Reversed layout animations */
.lr-reversed .lr-visual {
  transform: translateX(40px);
}

.lr-reversed .lr-visual.animated {
  transform: translateX(0);
}

.lr-reversed .lr-text {
  transform: translateX(-40px);
}

.lr-reversed .lr-text.animated {
  transform: translateX(0);
}

/* Left Section Animations */
.left-section .left-visual {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.left-section .left-visual.animated {
  opacity: 1;
  transform: translateX(0);
}

.left-section .left-content {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.left-section .left-content.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Right Section Animations */
.right-section .right-content {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.right-section .right-content.animated {
  opacity: 1;
  transform: translateX(0);
}

.right-section .right-visual {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.right-section .right-visual.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Middle Section Animations */
.middle-section .organizer-content {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.middle-section .organizer-content.animated {
  opacity: 1;
  transform: translateY(0);
}

.organizer-question {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.organizer-text {
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Two Middle Section Animations */
.two-middle-fields-section .left-column {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.two-middle-fields-section .left-column.animated {
  opacity: 1;
  transform: translateX(0);
      display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.two-middle-fields-section .right-column {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.two-middle-fields-section .right-column.animated {
  opacity: 1;
  transform: translateX(0);
}

.column-heading {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.column-content {
  animation: fadeInUp 1s ease-out 0.7s both;
}

/* Bottom Section Animations */
.twf-bottom-section .bottom-content-wrapper {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.twf-bottom-section .bottom-content-wrapper.animated {
  opacity: 1;
  transform: translateY(0);
}

.bottom-title {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.bottom-content {
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Enhanced Image Animations */
.lr-placeholder img,
.left-visual img,
.right-visual img {
  transition: all 0.5s ease;
  filter: brightness(0.95);
}

.lr-placeholder img:hover,
.left-visual img:hover,
.right-visual img:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Text Animation Enhancements */
.lr-heading {
  position: relative;
  overflow: hidden;
}

.lr-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #19A7CE, transparent);
  transition: left 0.6s ease;
}

.lr-heading.animated::after {
  left: 100%;
}

/* Staggered Animation Delays for Multiple Items */
.lr-section:nth-child(1) .lr-visual { transition-delay: 0.1s; }
.lr-section:nth-child(1) .lr-text { transition-delay: 0.2s; }
.lr-section:nth-child(2) .lr-visual { transition-delay: 0.3s; }
.lr-section:nth-child(2) .lr-text { transition-delay: 0.4s; }
.lr-section:nth-child(3) .lr-visual { transition-delay: 0.5s; }
.lr-section:nth-child(3) .lr-text { transition-delay: 0.6s; }

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .lr-visual,
  .lr-text,
  .left-visual,
  .left-content,
  .right-visual,
  .right-content {
    transform: translateY(30px) !important;
    transition-delay: 0.1s !important;
  }
  
  .lr-visual.animated,
  .lr-text.animated,
  .left-visual.animated,
  .left-content.animated,
  .right-visual.animated,
  .right-content.animated {
    transform: translateY(0) !important;
  }
  
  .two-middle-fields-section .left-column,
  .two-middle-fields-section .right-column {
    transform: translateY(30px) !important;
  }
  
  .two-middle-fields-section .left-column.animated,
  .two-middle-fields-section .right-column.animated {
    transform: translateY(0) !important;
  }
}

/* add the defult page css  */

header.entry-header.default-banner {
  background: #F1FCFF;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 50px 15px;
}
.page-width.default-text {
  padding-top: 50px;
  padding-bottom: 50px;
}
header.entry-header.default-banner h1.entry-title {
  font-weight: bold;
}
/* ===============================
Default Text Scoped Styles
=============================== */

.default-text h1,
.default-text h2,
.default-text h3,
.default-text h4,
.default-text h5,
.default-text h6,
.default-text p,
.default-text ul,
.default-text li {
  margin: 0;
  padding: 0;
  color: #252525;
}
/* Headings */
.default-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.default-text h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.9rem;
}

.default-text h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.default-text h4 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.7rem;
}

.default-text h5 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.default-text h6 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

/* Paragraphs */
.default-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

/* Lists */
.default-text ul {
  list-style: disc inside;
  margin-bottom: 1rem;
}

.default-text ul li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.about-us-section {
  background: #F1FCFF;
  margin-bottom: 50px;
}
.about-us-section-box-section h3.section-subheading {
  text-align: center;
}
.page-template-about-us-template #partner-section .center-text {
  max-width: 800px;
}
/* ===============================
   Responsive Typography
   =============================== */

/* Tablets */
@media (max-width: 992px) {
  .default-text h1 { font-size: 2rem; }
  .default-text h2 { font-size: 1.75rem; }
  .default-text h3 { font-size: 1.5rem; }
  .default-text h4 { font-size: 1.25rem; }
  .default-text h5 { font-size: 1.1rem; }
  .default-text h6 { font-size: 0.95rem; }
  .default-text p,
  .default-text ul li { font-size: 0.95rem; }
}

/* Mobiles */
@media (max-width: 576px) {
  .default-text h1 { font-size: 1.75rem; }
  .default-text h2 { font-size: 1.5rem; }
  .default-text h3 { font-size: 1.25rem; }
  .default-text h4 { font-size: 1.1rem; }
  .default-text h5 { font-size: 1rem; }
  .default-text h6 { font-size: 0.9rem; }
  .default-text p,
  .default-text ul li { font-size: 0.9rem; }
}