/* Fonts */
@font-face {
  font-family: Poppins-Black;
  src: url(../fonts/Poppins-Black.ttf);
}
@font-face {
  font-family: Poppins-ExtraBold;
  src: url(../fonts/Poppins-ExtraBold.ttf);
}
@font-face {
  font-family: Poppins-Bold;
  src: url(../fonts/Poppins-Bold.ttf);
}
@font-face {
  font-family: Poppins-SemiBold;
  src: url(../fonts/Poppins-SemiBold.ttf);
}
@font-face {
  font-family: Poppins-Medium;
  src: url(../fonts/Poppins-Medium.ttf);
}
@font-face {
  font-family: Poppins-Regular;
  src: url(../fonts/Poppins-Regular.ttf);
}
@font-face {
  font-family: Poppins-Light;
  src: url(../fonts/Poppins-Light.ttf);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Poppins-Regular, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.fluid-container {
  max-width: 1500px !important;
}

/* Header/Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(to right, #c40243, #ff8cb3);
  box-shadow: none;
  z-index: 1000;
  transition: all 500ms;
}

nav.scrolled {
  box-shadow: 0 0 5px 0 #303030;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  min-height: 64px;
  transition: all 500ms;
}

.logo-container {
  flex-grow: 1;
}

.header-logo {
  width: 55px;
  display: block;
}

.nav-items {
  display: none;
  gap: 10px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  text-transform: capitalize;
  padding: 6px 15px;
  font-family: Poppins-Regular;
  transition: opacity 0.3s;
}

.nav-link:hover {
  opacity: 0.8;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -280px;
  width: 240px;
  height: 100vh;
  background: #ffffff;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
  transition: left 0.3s ease;
  z-index: 1100;
}

.mobile-drawer.open {
  left: 0;
}

.drawer-content {
  padding: 16px;
}

.drawer-header {
  padding: 16px 0;
  text-align: center;
}

.drawer-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 10px 0;
}

.drawer-list {
  list-style: none;
  padding: 0;
}

.drawer-list li {
  padding: 8px 0;
}

.drawer-list a {
  color: #000000;
  text-decoration: none;
  font-family: Poppins-Regular;
  display: block;
  padding: 8px 16px;
}

.drawer-list a:hover {
  background: #f5f5f5;
}

/* Banner Section */
.banner {
  width: 100%;
  min-height: 750px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, #c40243, #ff8cb3);
  padding-top: 64px;
}

.slider-content {
  padding: 0 150px;
  position: relative;
  align-items: center;
  display: flex !important;
  min-height: calc(100vh - 100px);
}

.slider-content .content {
  flex: 65;
}

.slider-content .images {
  flex: 35;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner h1,
.banner h2 {
  font-size: 40px;
  color: #ffffff;
  font-weight: 600;
  text-align: left;
  line-height: 70px;
  margin-bottom: 20px;
  font-family: Poppins-Black;
}

.banner p {
  font-size: 26px;
  color: #ffffff;
  font-weight: 400;
  max-width: 600px;
  text-align: left;
  line-height: 50px;
  margin-bottom: 25px;
  font-family: Poppins-Regular;
}

.app-img {
  width: 100%;
  max-width: 250px;
}

/* Slick Carousel Customization */
.slick-dots {
  bottom: 20px;
}

.slick-dots li button::before {
  opacity: .45 !important;
  font-size: 20px !important;
  color: #ffffff;
}

.slick-dots li.slick-active button::before {
  opacity: 1 !important;
  color: #ffffff !important;
}

.slick-prev,
.slick-next {
  z-index: 1;
}

.slick-prev {
  left: -40px !important;
}

.slick-next {
  right: -35px !important;
}

.slick-prev::before,
.slick-next::before {
  font-size: 30px !important;
  color: #ffffff !important;
}

/* Features Section */
.features-section {
  padding: 50px 0 60px;
}

.features-section:nth-child(even) {
  background: #ffffff;
}

.features-section:nth-child(even) h2 {
  color: #c40243;
}

.features-section:nth-child(odd) {
  background-image: linear-gradient(to right, #c40243, #ff8cb3);
}

.features-section:nth-child(odd) h2 {
  color: #ffffff;
}

.feature-title {
  font-size: 40px;
  text-align: center;
  margin: 0 0 40px 0;
  font-family: Poppins-Black;
}

/* Video Section */
.video-section {
  margin-top: 70px;
}

.video-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
  align-items: center;
}

.video-text-col h3 {
  font-size: 40px;
  margin: 0 0 30px 0;
  font-family: Poppins-Black;
  color: #c40243;
}

.video-box video {
  width: 250px;
  border-radius: 10px;
  border: 5px solid #000;
  display: block;
}

/* Custom Row Layout */
.custom-row {
  display: flex;
  padding: 0 100px;
  align-items: center;
  margin-bottom: 30px;
}

.custom-row .custom-col {
  flex: 1;
}

.custom-row .custom-col h3 {
  font-size: 22px;
  font-family: Poppins-Bold;
  color: #c40243;
  margin: 10px 0;
}

.custom-row .custom-col p {
  font-size: 16px;
  font-family: Poppins-Regular;
  color: #000000;
  text-align: justify;
}

.custom-row .custom-col img {
  max-width: 100%;
  height: auto;
  display: block;
}

.custom-row:nth-child(odd) .custom-col img {
  margin-left: 30px;
  margin-right: -25px;
}

.custom-row:nth-child(even) .custom-col img {
  margin-right: 30px;
  margin-left: -25px;
}

.custom-row.bg-primary h3 {
  color: #ffffff;
}

.custom-row.bg-primary p {
  color: #ffffff;
}

.custom-row.bg-primary a {
  color: #ffffff;
}

/* Coming Soon Badge */
.coming-soon {
  animation: smooth-blink 1.5s ease-in-out infinite;
  font-size: 12px;
  vertical-align: super;
  color: #fff;
}

.primary-color {
  color: #c40243 !important;
}

@keyframes smooth-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Footer */
.footer-section {
  padding: 50px 0;
  background-image: linear-gradient(to right, #c40243, #ff8cb3);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: Poppins-Medium;
}

.box-wrapper {
  display: flex;
  flex-direction: column;
}

.box-wrapper a {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 15px;
  text-decoration: none;
  font-family: Poppins-Regular;
}

.box-wrapper a:hover {
  text-decoration: underline;
}

.footer-subscribe {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.field-arrow {
  position: relative;
  width: 100%;
}

.footer-input {
  width: 100%;
  padding: 16px 60px 16px 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-family: Poppins-Regular;
  background: #ffffff;
}

.footer-submit-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  min-width: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-submit-btn svg {
  color: #c40243;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.social-links a {
  color: #ffffff;
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 0.8;
}

.all-rights {
  padding: 20px 0;
  border-top: 1px solid #c40243;
  background-image: linear-gradient(to right, #c40243, #ff8cb3);
}

.all-rights p {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  font-family: Poppins-Regular;
}

/* Spinner */
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 4px solid #c40243;
  width: 25px;
  height: 25px;
  animation: spin 1s linear infinite;
  display: inline-block;
}

.spinner-light {
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-top: 4px solid #fff;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Subscribe Modal */
.subscribe-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.subscribe-modal-container {
  position: relative;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  outline: none;
}

.subscribe-modal-content {
  width: 100%;
  padding: 75px 25px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  position: relative;
}

.modal-close-icon {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #666;
}

.modal-close-icon:hover {
  color: #000;
}

.subscribe-modal-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.right-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.message-alert {
  width: 150px;
  display: block;
  margin: 0 auto;
}

.modal-title {
  font-size: 18px;
  color: #c40243;
  line-height: 28px;
  font-family: Poppins-Bold;
  margin: 40px 0 35px 0;
}

.newsletter-modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.modal-input {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  font-family: Poppins-Regular;
  outline: none;
}

.modal-input:focus {
  border-color: #c40243;
}

.modal-btn {
  background-color: #c40243;
  transition: background-color ease-in 0.15s;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  font-family: Poppins-Regular;
  font-size: 17px;
  line-height: 20px;
  padding: 12px 20px;
}

.modal-btn:hover {
  background-color: #a1073b;
}

.modal-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-subscribe-btn {
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.modal-subscribe-btn svg {
  transition: all ease-in 0.15s;
}

.modal-subscribe-btn:hover svg {
  transform: translateX(5px);
}

.dont-ask-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 14px;
  line-height: 16px;
  background: transparent !important;
  color: #c40243 !important;
}

.dont-ask-btn:hover {
  background: transparent !important;
  text-decoration: underline;
}

/* OTP Inputs */
.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-family: Poppins-Regular;
}

.otp-input:focus {
  border-color: #c40243;
}

/* Snackbar */
.snackbar {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  z-index: 3000;
  right: 20px;
  bottom: 30px;
  font-family: Poppins-Regular;
}

.snackbar.show {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

/* Responsive Design */
@media (min-width: 900px) {
  .nav-items {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

@media (min-width: 1100px) and (max-width: 1279px) {
  .slider-content {
    padding: 0;
  }
  
  .app-img {
    max-width: 230px;
  }
  
  .video-text-col h3 {
    font-size: 36px !important;
  }
}

@media (min-width: 900px) and (max-width: 1099px) {
  .banner h1,
  .banner h2 {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 30px;
  }
  
  .banner p {
    font-size: 22px;
  }
  
  .slider-content {
    padding: 60px 0;
    min-height: inherit;
  }
  
  .app-img {
    max-width: 210px;
  }
  
  .custom-row {
    padding: 0 20px;
  }
  
  .video-text-col h3 {
    font-size: 36px !important;
  }
  
  .video-box video {
    width: 90%;
  }
}

@media (min-width: 700px) and (max-width: 899px) {
  .banner {
    min-height: inherit;
  }
  
  .banner h1,
  .banner h2 {
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  
  .banner p {
    font-size: 20px;
    line-height: 30px;
  }
  
  .slider-content {
    min-height: 500px;
    padding: 60px 0;
  }
  
  .app-img {
    max-width: 140px;
  }
  
  .custom-row {
    padding: 0;
  }
  
  .custom-row:nth-child(odd) .custom-col img,
  .custom-row:nth-child(even) .custom-col img {
    margin-left: 0;
    margin-right: 0;
  }
  
  .custom-row .custom-col img {
    width: 300px;
  }
  
  .video-section h3 {
    font-size: 28px;
    margin-top: 20px;
    text-align: center;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .video-box video {
    margin: 0 auto;
    width: 80%;
  }
}

@media (min-width: 600px) and (max-width: 699px) {
  .banner {
    min-height: inherit;
  }
  
  .banner h1,
  .banner h2 {
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  
  .banner p {
    font-size: 20px;
    line-height: 30px;
  }
  
  .slider-content {
    min-height: 450px;
    padding: 60px 0;
  }
  
  .app-img {
    max-width: 140px;
  }
  
  .custom-row {
    padding: 0;
    margin-bottom: 20px;
    flex-direction: column;
  }
  
  .custom-row:nth-child(odd) {
    flex-direction: column-reverse;
  }
  
  .custom-row:nth-child(odd) .custom-col img,
  .custom-row:nth-child(even) .custom-col img {
    margin-left: 0;
    margin-right: 0;
  }
  
  .custom-row .custom-col h3 {
    margin-top: 0;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
    flex-direction: column-reverse;
  }
  
  .video-box video {
    margin: 0 auto;
  }
  
  .video-text-col h3 {
    font-size: 30px;
    text-align: center;
    margin: 20px 0 15px 0;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 450px) and (max-width: 599px) {
  .banner {
    min-height: inherit;
  }
  
  .banner h1,
  .banner h2 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .banner p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .slider-content {
    min-height: 800px;
    padding: 0;
    flex-direction: column-reverse;
  }
  
  .slider-content .content,
  .slider-content .images {
    flex: auto;
  }
  
  .app-img {
    max-width: 200px;
  }
  
  .features-section {
    padding: 15px 0 20px;
  }
  
  .footer-section {
    padding: 20px 0;
  }
  
  .feature-title {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .custom-row {
    padding: 0;
    margin-bottom: 20px;
    flex-direction: column;
  }
  
  .custom-row:nth-child(odd) {
    flex-direction: column-reverse;
  }
  
  .custom-row:nth-child(odd) .custom-col img,
  .custom-row:nth-child(even) .custom-col img {
    margin-left: 0;
    margin-right: 0;
  }
  
  .custom-row .custom-col h3 {
    margin-top: 0;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .video-box video {
    width: 200px;
    margin: 0 auto;
  }
  
  .video-text-col h3 {
    font-size: 28px;
    text-align: center;
    margin: 20px 0 20px 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .subscribe-modal-content {
    padding: 35px 20px;
  }
  
  .modal-title {
    font-size: 18px;
    margin: 30px 0 25px 0;
  }
}

@media (max-width: 449px) {
  .header-logo {
    width: 55px;
    margin-left: 16px;
  }
  
  .banner {
    min-height: inherit;
  }
  
  .banner h1,
  .banner h2 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .banner p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .app-img {
    max-width: 180px;
  }
  
  .slider-content {
    padding: 0;
    margin-top: 50px;
    margin-bottom: 50px;
    min-height: inherit;
    flex-direction: column-reverse;
  }
  
  .slider-content .content,
  .slider-content .images {
    flex: auto;
  }
  
  .slider-content .images {
    margin-bottom: 50px;
  }
  
  .features-section {
    padding: 15px 0 20px;
  }
  
  .footer-section {
    padding: 20px 0;
  }
  
  .feature-title {
    font-size: 26px;
    text-align: center;
    margin: 10px 0 10px 0;
  }
  
  .custom-row {
    padding: 0;
    margin-bottom: 20px;
    flex-direction: column;
  }
  
  .custom-row .custom-col h3 {
    margin-top: 0;
  }
  
  .custom-row .custom-col img {
    width: 100%;
  }
  
  .custom-row:nth-child(odd) {
    flex-direction: column-reverse;
  }
  
  .custom-row:nth-child(odd) .custom-col img,
  .custom-row:nth-child(even) .custom-col img {
    margin-left: 0;
    margin-right: 0;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .video-box video {
    width: 200px;
    margin: 0 auto;
  }
  
  .video-text-col h3 {
    font-size: 22px;
    text-align: center;
    margin: 15px 0 15px 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-col {
    margin-bottom: 20px;
  }
  
  .otp-input {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
