 :root {
     --primary-color: #e51711;
     --primary-hover: #dc2626;
     --text-dark: #374151;
     --text-light: #6b7280;
     --bg-gradient: radial-gradient(circle at center, #f5f5fa 0%, #e4ebf5 40%, #f4e2f5 60%, #e2f0f9 100%);
 }

 body {
     background: var(--bg-gradient);
     font-family: 'Poppins', sans-serif;
     color: var(--text-dark);
 }

 .bg-ghostwhite {
     background-color: #f8f8ff;
     /* Ghost White */
     border-radius: 30px;
 }

 /* Base Header Styles */
 .main-header {
     background: var(--bg-gradient);
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1030;
     padding: 10px 0;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Desktop Navigation */
 .desktop-nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     width: 100%;
 }

 .nav-links {
     display: flex;
     align-items: center;
 }

 .nav-link {
     color: var(--text-dark);
     margin: 0 15px;
     position: relative;
     text-decoration: none;
     font-weight: 500;
     font-size: 16px;
     transition: color 0.3s ease;
 }

 .nav-link:hover {
     color: var(--primary-color);
 }

 .nav-link.active {
     font-weight: 600;
     color: var(--text-dark);
 }

 .nav-link.active::after {
     content: "";
     display: block;
     width: 40%;
     height: 2px;
     background-color: var(--primary-color);
     /*margin: 5px auto 0;*/
     transition: width 0.3s ease;
 }

 .nav-link.active:hover::after {
     width: 60%;
 }

 .header-btns {
     display: flex;
     align-items: center;
 }

 .header-btn {
     padding: 10px 20px;
     border-radius: 30px;
     transition: all 0.3s ease;
     font-weight: 500;
     font-size: 14px;
     cursor: pointer;
 }

 .header-btn-outline {
     border: 1px solid var(--text-dark);
     color: var(--text-dark);
     background: transparent;
 }

 .header-btn-outline:hover {
     background-color: var(--primary-color);
     color: white;
     border-color: var(--primary-color);
 }

 .header-btn-primary {
     background-color: var(--primary-color);
     color: white;
     border: 1px solid var(--primary-color);
     margin-left: 10px;
 }

 .header-btn-primary:hover {
     background-color: var(--primary-hover);
     border-color: var(--primary-hover);
 }

 /* Mobile Navigation */
 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     cursor: pointer;
     padding: 10px;
     margin-right: 20px;
     z-index: 1050;
 }

 .hamburger {
     width: 25px;
     height: 2px;
     background: var(--text-dark);
     position: relative;
     transition: all 0.3s ease;
 }

 .hamburger:before,
 .hamburger:after {
     content: '';
     position: absolute;
     width: 25px;
     height: 2px;
     background: var(--text-dark);
     transition: all 0.3s ease;
 }

 .hamburger:before {
     top: -8px;
 }

 .hamburger:after {
     top: 8px;
 }

 .mobile-menu-btn.active .hamburger {
     background: transparent;
 }

 .mobile-menu-btn.active .hamburger:before {
     top: 0;
     transform: rotate(45deg);
 }

 .mobile-menu-btn.active .hamburger:after {
     top: 0;
     transform: rotate(-45deg);
 }

 .mobile-nav {
     position: fixed;
     top: 0;
     right: -100%;
     width: 80%;
     max-width: 320px;
     height: 100vh;
     background-color: aliceblue;
     box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
     z-index: 1040;
     transition: right 0.3s ease;
     padding: 80px 20px 20px;
     display: flex;
     flex-direction: column;
 }

 .mobile-nav.active {
     right: 0;
 }

 .mobile-nav .nav-link {
     padding: 15px 0;
     margin: 0;
     border-bottom: 1px solid #eee;
     font-size: 18px;
 }

 .mobile-nav .header-btn {
     margin: 15px 0;
     width: 100%;
     text-align: center;
 }

 .overlay {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.5);
     z-index: 1035;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }

 .overlay.active {
     opacity: 1;
     visibility: visible;
 }
 
 #mainVideo{
     width:100%;
 }

 /* Responsive Adjustments */
 @media (max-width: 992px) {

     .desktop-nav .nav-links,
     .desktop-nav .header-btns {
         display: none;
     }

     .mobile-menu-btn {
         display: block;
     }

     .logo-container {
         margin-right: auto;
     }

     .nav-link.active::after {
         width: 25%;
         height: 3px;
         margin: 2px;
     }

 }

 @media (min-width: 993px) {

     .mobile-nav,
     .overlay {
         display: none !important;
     }
 }

 /* Hero Section */
 .hero-section {
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     padding: 100px 2rem 2rem;
     position: relative;
 }

 .hero-section::before {
     content: '';
     position: absolute;
     inset: 0;
     background: url('/landing_page/images/herobg.png') no-repeat center/cover;
     /* mix-blend-mode: soft-light; */
     z-index: -1;
 }

 #video-section::before {
     content: '';
     position: absolute;
     left: 0;
     right: 0;
     bottom: 0;
     height: 100px;
     /* Adjust height to your needs */
     background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #f4edff);
     /* Match with next section */
     z-index: -1;
 }


 .hero-title {
     font-weight: 700;
     line-height: 1.25;
     font-size: clamp(44px , 4vw, 60px);
 }

 .hero-title span {
     font-weight: 800;
     color: black;
 }

 .hero-subtitle {
     color: var(--text-dark);
     font-size: clamp(12px 4vw 18px);
 }

 .hero-form {
     max-width: 600px;
     border-radius: 50px;
     overflow: hidden;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
 }

 .hero-email {
     border: none;
     padding: 12px 20px;
     width: 100%;
 }

 .hero-email:focus {
     outline: none;
 }

 .hero-submit {
     background-color: var(--primary-color);
     color: white;
     border: none;
     padding: 12px 25px;
     transition: background-color 0.3s ease;
 }

 .hero-submit:hover {
     background-color: var(--primary-hover);
 }

 /* Video Section */
 .video-thumbnail {
     position: relative;
     overflow: hidden;
     cursor: pointer;
     transition: transform 0.3s ease;
 }

 .video-thumbnail:hover {
     transform: scale(1.02);
 }

 .video-thumbnail img {
     width: 100%;
     display: block;
 }

 .play-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     /* background: rgba(0, 0, 0, 0.3); */
 }

 .play-icon {
     width: 60px;
     height: 60px;
     background-color: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     backdrop-filter: blur(5px);
     transition: all 0.3s ease;
     cursor: pointer !important;
 }

 .play-icon svg {
     width: 30px;
     height: 30px;
     fill: white;
 }

 /* Content Sections */
 .section-title {
     font-weight: 700;
     line-height: 1.25;
 }

 .section-title span {
     color: var(--primary-color);
     font-weight: 800;
 }

 .section-content {
     color: var(--text-light);
     font-size: clamp(14px, 2.5vw, 16px);
 }

 .btn-primary-custom {
     background-color: var(--primary-color);
     color: white;
     border-radius: 50px;
     padding: 12px 25px;
     transition: background-color 0.3s ease;
     font-size: clamp(12px, 2.5vw, 16px);
 }

 .btn-primary-custom:hover {
     background-color: var(--primary-hover);
     color: white;
 }

 /* App Download Section */
 .app-download-btn {
     height: 45px;
     margin-right: 10px;
 }

 .google-play-btn {
     height: 60px;
 }

    /* Features */
    .feature-card {
        height: 380px;
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #80808026;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-icon{
        position: absolute;
        z-index: 2;
        bottom: 22%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .feature-content{
        height: 150px;
        position: absolute;
        bottom: 0px;
        width: 94%;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        z-index: 1;
    }

    .feature-content h3{
        font-size: 16px;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
    }

    .feature-content p{
        font-size: 12px;
        font-family: 'Poppins', sans-serif;
    }

    .card-image-container {
        height: 100%;
        position: relative;
        background-size: cover;
        background-position: center;
    }

 .card-icon {
     position: absolute;
     bottom: -32%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 60px;
     height: 60px;
     background: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 }

 .card-icon img {
     width: 30px;
     height: 30px;
 }

 .card-content {
     padding: 24px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .card-content h3 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 12px;
     text-align: center;
 }

 .card-content p {
     color: #666;
     text-align: center;
     font-size: 14px;
     line-height: 1.5;
 }

 /* Newsletter Section */
 .newsletter {
     background-color: #E51711;
     border-radius: 12px;
     padding: 40px;
     margin: 120px auto;
     margin-bottom: -10%;
     max-width: 800px;
     display: flex;
     align-items: center;
     position: relative;
     /* overflow: hidden; */
     box-shadow: 0 10px 30px rgba(229, 23, 17, 0.2);
 }

 .mailbox-illustration {
     width: 180px;
     height: 180px;
     margin-right: 50px;
     position: relative;
     flex-shrink: 0;
 }

 .mail-box {
     position: absolute;
     bottom: 24%;
 }

 .newsletter-content {
     flex: 1;
     color: white;
     position: relative;
     z-index: 2;
 }

 .newsletter h3 {
     font-size: 24px;
     font-weight: 600;
     margin-bottom: 15px;
 }

 .newsletter-form {
     display: flex;
     margin-top: 20px;
     max-width: 500px;
 }

.input-wrapper {
                display: flex;
                align-items: center;
                background: rgb(255 255 255 / 39%);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                border-radius: 50px;
                padding: 5px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
                }

                .icon {
                padding: 0 15px;
                color: white;
                font-size: 1.2rem;
                }
                
 .newsletter-input {
                background: transparent;
                border: none;
                outline: none;
                color: white;
                padding: 10px;
                width: 200px;
                font-size: 1rem;
                }

                .newsletter-input::placeholder {
                color: #eee;
                }

 .newsletter-button {
     background-color: white;
     color: --text-dark;
     border: none;
     padding: 12px 25px;
     border-radius: 30px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .newsletter-button:hover {
     background-color: #f5f5fa;
 }

 .newsletter-help-text {
     font-size: 14px;
     opacity: 0.9;
     margin-top: 10px;
 }

 /* Footer Section */
 .footer {
     background-color: white;
     border-radius: 20px 20px 0 0;
     box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
     padding: 60px 40px 30px;
     margin-top: 40px;
 }

 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
     margin-top: 5%;
 }

 .footer-brand {
     flex: 1;
     min-width: 250px;
 }

 .logo-container {
     display: flex;
     align-items: center;
 }

 .brand-name {
     font-size: 24px;
     font-weight: 700;
     color: #333;
 }

 .brand-description {
     font-size: 14px;
     color: #666;
     margin-bottom: 20px;
 }

 .social-icons {
     display: flex;
     gap: 5px;
 }

 .social-icon {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background-color: #f5f5fa;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .social-icon:hover {
     background-color: #E51711;
     color: white;
 }

 .footer-links {
     display: flex;
     justify-content: end;
     flex: 1;
     min-width: 250px;
     gap: 60px;
 }

 .links-column{
    width: fit-content;
 }

 .links-column h4 {
     font-size: 16px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #333;
 }

 .links-column ul {
     list-style: none;
     padding-left: 0px;
 }

 .links-column li {
     margin-bottom: 10px;
 }

 .links-column a {
     text-decoration: none;
     color: #666;
     font-size: 14px;
     transition: color 0.3s ease;
 }

 .links-column a:hover {
     color: #E51711;
 }

 .contact-info {
     font-size: 14px;
     color: #666;
 }

 .contact-info p {
     margin-bottom: 10px;
 }

.newsletter-form input[type="email"] {
    font-size: clamp(10px, 2.5vw, 14px);
}

 /* Footer Bottom Bar */
 .footer-bottom {
     max-width: 1200px;
     margin: 30px auto 0;
     padding-top: 20px;
     border-top: 1px solid #eee;
     display: flex;
     align-items:center;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
 }

 .copyright {
     font-size: 12px;
     color: #999;
     margin-bottom:0px;
 }

 .legal-links {
     display: flex;
     gap: 20px;
 }

 .legal-links a {
     font-size: 12px;
     color: #666;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .legal-links a:hover {
     color: #E51711;
 }

 /* Social Icons Styling */
 .social-icons {
     display: flex;
     gap: 5px;
 }

 .social-icon {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background-color:transparent;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .social-icon:hover {
     background-color: transparent;
 }

 .icon-img {
     width: 18px;
     height: 18px;
     object-fit: contain;
 }

 @media (-webkit-min-device-pixel-ratio: 2),
 (min-resolution: 192dpi) {
     .icon-img {
         width: 36px;
         height: 36px;
         transform: scale(0.5);
         transform-origin: 0 0;
     }
 }

 .social-icon:hover .icon-img {
     filter: brightness(0) invert(1);
 }

 /* Contact Icons Styling */
 .contact-info {
     font-size: 14px;
     color: #666;
 }

 .contact-info p {
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .contact-icon {
     width: 16px;
     height: 16px;
     object-fit: contain;
 }

 /* Responsive Adjustments */
 @media (max-width: 900px) {
     .newsletter {
         flex-direction: column;
         text-align: center;
         padding: 30px;
     }

     .mailbox-illustration {
         margin-right: 0;
         margin-bottom: 30px;
     }

     .newsletter-form {
         margin-left: auto;
         margin-right: auto;
     }

     .footer-content {
         flex-direction: column;
         gap: 30px;
     }

     .footer-links {
         gap: 15px;
     }

     .links-column ul{
        padding-left: 0px;
     }
     
 }

 @media (max-width: 600px) {
     .newsletter {
         border-radius: 30px;
         padding: 30px 20px;
         margin: 20px;
         text-align: left;
     }

     .newsletter h3 {
         font-size: 20px;
     }

     .newsletter-form {
         flex-direction: column;
         max-width: 100%;
     }

     .newsletter-input {
         border-radius: 30px;
         margin-bottom: 0px;
     }

     .newsletter-button {
         border-radius: 30px;
     }

     .footer {
         padding: 40px 20px 20px;
         border-radius: 15px 15px 0 0;
     }

     .footer-bottom {
         flex-direction: column-reverse;
         text-align: center;
     }

     .legal-links {
         justify-content: center;
     }
 }

 /* Responsive Adjustments */
 @media (min-width: 768px) {
     /* .hero-title {
         font-size: 3.5rem;
     } */

     /* .hero-subtitle {
         font-size: 1.1rem;
     } */
 }

 @media (max-width: 767px) {
     /* .hero-title {
         font-size: 2.5rem;
     } */

     .hero-form {
         flex-direction: column;
         border-radius: 10px;
     }

     .hero-email,
     .hero-submit {
         border-radius: 10px;
     }
 }

 @media (max-width: 480px) {
     #mobile-login {
         display: block !important;
     }
     
     #hero-section .container{
         padding:0px !important;
     }
/* 
     .hero-title {
         font-size: 1.6rem;
     } */

     /* .hero-subtitle {
         font-size: 11px;
         margin-bottom: 2rem !important;
     } */

     .hero-form {
         background-color: transparent !important;
         gap: 15px;
         box-shadow: none !important;
         font-size: 13px;
     }

     /*#video-section {*/
     /*    margin-top: -2rem !important;*/
     /*}*/

     /* #video-section .row {
                margin-left: 0px !important;
                margin-right: 0px;
            } */

     /*#intro-section {*/
     /*    margin-top: -5rem !important;*/
     /*}*/

     #intro-section img{
        max-width: 90% !important;
     }

     .card-title{
        font-size: 0.9rem !important;
     }

     .play-icon{
        width: 40px !important;
        height: 40px !important;
     }

     .play-icon svg{
        width: 25px !important;
        height: 25px !important;
     }

     #feature-main-image{
        padding: 0px !important;
     }


     .card-image-container{
        height: 190px !important;
     }

     .feature-card{
        height: 225px !important;
     }

     .feature-icon{
        width: 40px !important;
        height: 40px !important;
        bottom: 9% !important;
     }

     .feature-card img{
        width: 20px !important;
        height: 20px !important;
     }

     .feature-content{
        bottom: -18%;
        left: 6px;
     }

    .feature-content h3 {
        font-size: 13px;
    }

     .feature-content p{
        font-size: 7px !important;
     }

    .section-title{
        text-align:center;
    }
    .section-content{
        text-align:center;
    }

     #explore-features-button{
        justify-content: center !important;
        font-size: 12px !important;
     }

     /*#discovery-section {*/
     /*    margin-top: -6rem !important;*/
     /*}*/

     .newsletter {
        margin-bottom: -5rem !important;
        margin-top: 2rem !important;
     }

     .mail-box {
         width: 120px !important;
         height: 220px !important;
         bottom: 35%;
         left: 16px;
     }

     .mailbox-illustration {
         /* margin-bottom: -35px !important; */
         display: none !important;
     }

     .newsletter-form {
         flex-direction: row !important;
         font-size: 11px;
         position: relative !important;
     }

     /*.newsletter-form input[type="email"] {*/
     /*    width: 100%;*/
     /*    border-radius: 20px !important;*/
     /*    border: 1px solid #ccc !important;*/
     /*    background: rgba(255, 254, 254, 0.767) !important;*/
     /*    color: var(--text-dark) !important;*/
     /*}*/

     /*.newsletter-form input[type="email"]::placeholder {*/
     /*    color: var(--text-dark) !important;*/
     /*}*/
     
     .input-wrapper {
         padding:0px !important;
     }

     .newsletter-form button[type="button"] {
         position: absolute !important;
         top: 0px;
         right: 0px;
         padding: 9px !important;
         color: var(--text-dark) !important;
     }
     
     .icon{
         font-size:1rem;
     }

     .newsletter h3 {
         font-size: 13px;
     }

     .newsletter-help-text {
         font-size: 8px;
     }

     .download-btns {
         flex-direction: row;
         align-items: center;
         justify-content: space-evenly;
     }

    .download-btns a:first-child img {
        width: 100px;
    }

    .download-btns a:last-child img {
        height: 50px;
    }

     .btn-primary-custom {
         padding: 12px !important;
     }

     #download-section {
         margin-top: 0rem !important;
     }

     #feature-section {
        margin-right: 10px;
        margin-left: 10px;
     }

     .card-icon {
         bottom: -20%;
         width: 40px;
         height: 40px;
     }

     .card-icon img {
         width: 20px;
         height: 20px;
     }
     
    .footer-links{
        justify-content: space-between !important;
     }
     
     .links-column {
         width:auto;
     }
     
     .logo-container{
         margin-bottom:10px;
     }
     
     
 }

 @media screen and (min-width: 481px) and (max-width: 768px) {
     /*#intro-section {*/
     /*    margin-top: -4rem !important;*/
     /*}*/

     /*#discovery-section {*/
     /*    margin-top: -14rem !important;*/
     /*}*/
     
     .hero-subtitle{
         font-size:15px !important;
     }

     #download-section {
         margin-top: 1rem !important;
         padding-top: -4rem !important;
     }

     /*#feature-section {*/
     /*    margin-top: -5rem !important;*/
     /*}*/

     .newsletter {
         flex-direction: row !important;
     }

     .mail-box {
         bottom: 9%;
         left: 0%;
     }

     .newsletter h3 {
         font-size: 22px;
     }

     .newsletter-form {
         max-width: 340px;
     }

     .newsletter-help-text {
         font-size: 11px;
         margin-top: 16px;
     }
     
      .links-column {
         width:45%;
     }
 }

 .card-title {
     font-size: clamp(1rem, 2vw, 1.2rem);
     font-family: 'Poppins', sans-serif;
 }

     .card-text{
        font-size: clamp(10px, 2.5vw, 12px) !important;
        font-family: 'Poppins', sans-serif !important;
     }

 .card-body {
     padding-bottom: 10px !important;
 }

 #mainVideoPlayIcon {
     display: none !important;
 }

 .play-overlay:hover #mainVideoPlayIcon {
     display: flex !important;
     transition: 0.5s ease-in-out;
 }