
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background-color: #FCF8FF; 
    color: #333;
    overflow-x: hidden;
}


.custom-navbar {
    background-color: transparent; 
    min-height: 60px;
    flex-wrap: nowrap;
}


.navbar-nav-container {
    display: flex !important;
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap; 
}
.navbar-nav {
    display: flex !important;
    flex-direction: row;
    gap: 15px;
    flex-wrap: nowrap; 
    white-space: nowrap; 
}
.nav-link {
    color: #5633D8; 
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 15px;
    text-decoration: none;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: #5633D8 !important;
     
}

.nav-link.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #5633D8; 
    margin-top: 5px;
}


.hero-section {    
    position: relative;
    background-size: cover;
    background-position: bottom;
    padding: 140px 0 80px 0;
    color: #5633D8; 
    height: 100vh; 
    display: flex;
    align-items: center;
     
    z-index: 2;
    
}


.hero-section::before {
    content: '';
    position: absolute;
    top: -20vh; 
    right: -5vw;
    width: 15vw; 
    height: 15vw;
    background-image: url('/static/images/circle1.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20vh;
    left: -10vw;
    width: 25vw; 
    height: 25vw;
    background-image: url('/static/images/circle2.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

.buttons-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: #5633D8; 
    color: #FCF8FF; 
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #5633D8; 
    color: #5633D8; 
}
.btn-primary:hover {
    background-color: #4527b8; 
    color: #FCF8FF;
}

.btn-secondary:hover {
    background-color: #d3d3d3;  
    color: #5633D8;             
    border-color: #5633D8;
}


.arrow-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
}

.hero-image {
    max-width: 120%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}
.hero-section .col-md-6:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
}


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


@media (max-width: 768px) {
    
    .navbar-nav {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        margin: 0 8px;
    }

    
    .hero-image {
        display: none;
    }
    
    
    .hero-section .col-md-6:first-child {
        text-align: center;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
        max-width: 100%; 
        margin: 0 auto 30px auto; 
    }
    
    .buttons-container {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px; 
        justify-content: center;
    }

    
    .hero-section::before {
        width: 25vw; 
        height: 25vw;
        top: -3vh;
        right: -8vw;
    }
    
    .hero-section::after {
        width: 35vw;
        height: 35vw;
        bottom: -8vh;
        left: -12vw;
    }

    .hero-section {
        height: auto; 
        padding: 120px 0 60px 0;
        min-height: 80vh;
    }
    .navbar-nav {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        margin: 0 5px;
        padding: 8px 10px;
    }
    .hero-description{
        max-width: 80%;
    }
}


@media (max-width: 480px) {
    
    .navbar-nav {
        gap: 5px;
    }
    
    .nav-link {
        font-size: 0.75rem;
        margin: 0 3px;
        padding: 6px 8px;
    }

    .hero-section::before {
        background-image: none;
        width: 30vw;
        height: 30vw;
    }
    
    .hero-section::after {
        width: 40vw;
        height: 40vw;
        bottom:0vh
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    .hero-section {
        padding: 100px 0 50px 0; 
        height: 80vh;
    }
}

.how-it-works-section {
    padding: 80px 0;
    background-color: #FCF8FF;
    position: relative;
    z-index: 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.step-item {
    text-align: center;
    padding: 20px 15px;
    margin-bottom: 40px;
}

.step-image {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin: 20px 0;
    transition: transform 0.3s ease;
}

.step-image:hover {
    transform: translateY(-5px);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5633D8;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

.step-link {
    color: #5633D8;
    text-decoration: none;
    font-weight: 500;
}

.step-link:hover {
    color: #4527b8;
    text-decoration: underline;
}

.cta-button {
    margin-top: 40px;
    padding: 15px 30px;
    font-size: 1.1rem;
}


@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .step-item {
        margin-bottom: 30px;
    }
    
    .step-image {
        max-width: 100px;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }
    
    .step-image {
        max-width: 80px;
    }
    
    .step-title {
        font-size: 0.95rem;
    }
    
    .step-description {
        font-size: 0.8rem;
    }
}
.partner-form-section {
    position: relative;
    background-color: #FCF8FF;
    padding: 100px 0;
    z-index: 0;
}


.partner-form-section::before {
    content: '';
    position: absolute;
    top: -10vh;
    right: -5vw;
    width: 15vw;
    height: 15vw;
    background-image: url('/static/images/circle1.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

.partner-form-section::after {
    content: '';
    position: absolute;
    bottom: -15vh;
    left: -10vw;
    width: 25vw;
    height: 25vw;
    background-image: url('/static/images/circle2.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}


.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    background-color: #FCF8FF;
    overflow: hidden;
    position: relative;
    z-index: 0;
}


.form-left {
    background-color: #5633D8;
    color: white;
    flex: 1 1 35%;
    min-width: 280px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.form-logo {
    width: 40px;
    margin-bottom: 40px;
}

.form-info-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-info-text p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}


.form-right {
    flex: 1 1 65%;
    padding: 50px 40px;
    background-color: #EFEAF9;
    position: relative;
    z-index: 1;
}

.form-section-title {
    color: #5633D8;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}


.form-control,
.form-select {
    border: none;
    border-bottom: 2px solid #c9c3e6;
    border-radius: 0;
    background-color: transparent;
    font-size: 1rem;
    padding-left: 0;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: #5633D8;
    box-shadow: none;
    background-color: transparent;
}

.submit-button {
    background-color: #5633D8;
    color: #FCF8FF;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #4527b8;
}
html, body {
    overflow-x: clip; 
}


@media (max-width: 768px) {
    .form-wrapper {
        flex-direction: row;
    }

    .form-left,
    .form-right {
        width: 100%;
        flex: 1 1 100%;
    }

    .form-left {
        align-items: center;
        text-align: center;
    }

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

}
@media (max-width: 1000px) {
  .partner-form-section::before {
    right: -5vw;
    top: -5vh;
    width: 20vw;
    height: 20vw;
  }

  .partner-form-section::after {
    left: -5vw;
    bottom: -5vh;
    width: 25vw;
    height: 25vw;
  }
}
@media (max-width: 768px) {
  .partner-form-section::before {
    right: -5vw;
    top: -5vh;
    width: 30vw;
    height: 30vw;
  }

  .partner-form-section::after {
    left: -5vw;
    bottom: -5vh;
    width: 30vw;
    height: 30vw;
  }
}
@media (max-width: 500px) {
  .partner-form-section::before {
    right: -15vw;
    top: -0vh;
    width: 40vw;
    height: 40vw;
  }

  .partner-form-section::after {
    background-image: none;
    left: -15vw;
    bottom: -0vh;
    width: 40vw;
    height: 40vw;
  }
}
@media (orientation: portrait) {
  .hero-section {
    height: 60vh;
  }
  .hero-section::after{
    bottom: -10vh;
  }
}

.enhanced-footer {
  background: linear-gradient(180deg, #FFFFFF 0%, #5633D8 100%);
  color: #FCF8FF;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.footer-top {
  padding: 60px 40px 40px;
  position: relative;
  background-color: rgba(86, 51, 216, 0.92);
}

.footer-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 1px;
  background-color: rgba(252, 248, 255, 0.3);
}

.footer-heading {

  font-weight: 700;
  color: #FCF8FF;
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block; 
  margin-top: 0;
  height: 36px; 
  line-height: 36px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%; 
  height: 3px;
  background-color: #FCF8FF;
}

.footer-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.download-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.store-button {
  display: inline-block;
  transition: transform 0.3s ease;
}

.store-button:hover {
  transform: translateY(-5px);
}

.playstore-button {
  height: auto;
  max-width: 140px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #FCF8FF;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0.9;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 20px;
}

.footer-links a:hover::before {
  transform: translateX(5px);
}

.contact-info {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.contact-item p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.9;
}

.social-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(252, 248, 255, 0.1);
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px);
  background-color: rgba(252, 248, 255, 0.2);
}

.social-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  padding: 25px 40px;
  background-color: #5633D8;
}

.copyright p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: #FCF8FF;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.footer-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}


.footer-columns-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.footer-column {
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-columns-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-column {
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-column:first-child,
.footer-column:nth-child(2),
.footer-column:nth-child(3),
.footer-column:nth-child(4) {
  padding-top: 0;
}

@media (max-width: 991px) {
  .footer-top {
    padding: 60px 30px 30px;
  }
  
  .footer-heading {
    font-size: 1.3rem;
    margin-bottom: 15px;
    height: 32px;
    line-height: 32px;
  }
}


@media (max-width: 767px) {
  .footer-top {
    padding: 40px 20px 20px;
  }
  
  .footer-bottom {
    padding: 20px;
  }
  
  .footer-legal {
    justify-content: center;
    margin-top: 15px;
  }
  
  .copyright p {
    margin-bottom: 10px;
    text-align: center;
  }
  
  .footer-column {
    width: 100%;
    padding: 0 10px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(252, 248, 255, 0.3);
    margin-bottom: 0;
  }
  
  .footer-column:last-child {
    border-bottom: none;
  }
  
  .footer-heading {
    height: auto;
    line-height: normal;
    margin: 0 auto 15px;
    padding-top: 30px;
    display: inline-block;
  }
  

  .footer-about .footer-heading {
    padding-top: 0;
  }
  

  .contact-item {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
  

  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-links li {
    width: 25%;
    text-align: center;
    margin: 0 5px 15px;
  }
  
  .footer-links a {
    padding-left: 0;
  }
  
  .footer-links a::before {
    content: "";
    position: static;
  }
  
  .footer-links a:hover {
    padding-left: 0;
  }
}

@media (max-width: 575px) {
  .download-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  
  .footer-heading {
    font-size: 1.2rem;
  }
  
  .footer-desc, .social-text {
    font-size: 0.9rem;
  }
  
  .footer-legal {
    gap: 15px;
  }
  
  .footer-legal a {
    font-size: 0.8rem;
  }
}

@media (min-width: 992px) {
    .footer-links {
        padding-left: 5%;
    }
}
@media (max-width: 767px) {
 
  .footer-contact .footer-heading,
  .footer-social .footer-heading,
  .footer-social .social-text {
    display: none;
  }

  .footer-column.footer-contact,
  .footer-column.footer-social {
    border-bottom: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  

  .footer-column.footer-contact,
  .footer-column.footer-social {
    width: 100%;
    padding-top:20px;
    text-align: center;
  }
  

  .footer-column.footer-contact {
    padding-bottom: 5px;
    margin-bottom: 0;
  }
  
  .footer-column.footer-social {
    padding-top: 5px;
  }
  

  .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  .contact-item {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  .social-links {
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  

  .footer-columns-wrapper .footer-column:nth-child(3)::after {
    display: none;
  }
}
