   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #AFA7FF;
            --secondary-color: #FF8D84 ;
            --background-color: #0f0f25;
            --body-background: #191820;
            --font-size-base: 16px;
            --border-radius: 8px;
            --white-color: #ffffff;
            --text:#fff;
            --p-size:clamp(12px, 10vw, 20px);
        }

        body {
            font-family: "Manrope", sans-serif;
            background: var(--body-background);
            color: #fff;
            line-height: 1.8;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Navigation */
        nav {
            /* position: fixed; */
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 17px 0px 0px 10px;
            background: linear-gradient(135deg, #0d0d0d 0%, #0d0d0d 100%);
        }
        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 24px;
            font-weight: 900;
            letter-spacing: 3px;
            text-transform: uppercase;
        }
        .logo img{
            max-width: 130px;
        }

        .nav-links {
            display: flex;
            gap: 50px;
            list-style: none;
        }
        .hero-content .sub-p p {
            border: 1px solid #fff;
            background: #fff;
            color: #333;
            padding: 8px 45px;
            border-radius: 30px;
            font-weight: 500;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #00D9B4;
        }

        /* Hero Section - Full Screen */
        .hero-fullscreen {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: var(--background-color);
        }
        .hero-fullscreen .logo{
            position: absolute;
            top: 4%;
        }

        /* .hero-content {
            max-width: 1170px;
            padding: 0 40px;
        } */

        /* .hero-label {
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 400;
            color: var(--primary-color);
            margin-bottom: 30px;
            display: block;
            text-align: start;
        } */

        h1.mega-title {
            font-size: clamp(12px, 10vw, 90px);
            font-weight: 900;
            line-height: 1;
            letter-spacing: -3px;
            margin-bottom: 20px;
            text-align: start;
        }
        h2.mega-title {
            font-size: clamp(20px, 10vw, 29px);
            font-weight: 400;
            line-height: 0.9;
            letter-spacing: 0px;
            margin-bottom: 17px;
            text-transform: capitalize;
            text-align: start;
        }

        .hero-subtitle {
            font-size: clamp(15px, 10vw, 18px);
            color: var(--white-color);
            font-weight: 300;
            line-height: 1.4;
            max-width: 700px;
            text-align: start;
        }
        .store-badges img {
            max-height: 65px;
        }
        .hero-fullscreen .banner-img{
            position: absolute;
            right: 10%;
           bottom: 60px;
            max-width: 46%;
            max-height: 91%;
        }

        /* .scroll-indicator {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #666;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        } */

        /* Section Styles */
        section {
            padding: 90px 0;
            position: relative;
        }

        .section-label {
             font-size: clamp(15px, 2vw, 19px);
            letter-spacing: 0px;
            color: var(--secondary-color);
            margin-bottom: 3px;
            display: block;
        }
        .primary-cr{
            color: var(--primary-color);
        }
        .secondary-cr{
            color: var(--secondary-color);
        }
        .white-cr{
            color: var(--white-color);
        }

        h2 {
            font-size: clamp(40px, 6vw, 42px);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            text-transform: none;
        }

        .media-block img{
        background-size: contain;
        width: 100%;
        background-position: top;
        }

        .large-text {
            font-size: clamp(12px, 10vw, 20px);
            line-height: 1.4;
            font-weight: 400;
            color: var(--text);
            margin-bottom: 10px;
        }

        /* Split Content Layout */
        .split-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            margin-bottom: 40px;
            background: #1a1a1a;
            border-radius: 27px;
            padding: 30px 30px;
        }

        .split-section.reverse {
            direction: rtl;
        }

        .split-section.reverse > * {
            direction: ltr;
        }

        .content-block h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }

        .content-block p {
            font-size: var(--p-size);
            line-height: 1.4;
            color: #fff;
            margin-bottom: 30px;
        }
        p{
            font-size: var(--p-size);
            color: var(--text);
            line-height: 1.4;
        }

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 80px;
        }
         .section-3 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 35px;
        }
        .section-3 .feature-item{
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);  
        }
        .section-3 .feature-item:hover{
            background: rgba(136, 92, 255, 0.1);
            backdrop-filter: blur(10px);  
            box-shadow: rgba(255, 255, 255, 0) 0px 6px 12px -2px, rgba(255, 255, 255, 0.47) 0px 3px 7px -3px;
        }
        .section-3 .feature-item img{
            height: 50px;
            margin-bottom: 20px;
        }

        .feature-item {
            text-align: center;
            border-radius: 20px;
            padding: 2rem;
            border: none;
            backdrop-filter: blur(7px);
            position: relative;
            background-color: #302F36;
            overflow: hidden;
            margin-bottom: 0px;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(0, 217, 180, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 32px;
            transition: all 0.3s;
        }

        .feature-item:hover .feature-icon {
            background: #00D9B4;
            transform: scale(1.1);
        }

        .feature-item h4 {
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 15px;
            letter-spacing: 1px;
            text-transform: none;
        }

        .feature-item p {
            font-size: 16px;
            color: var(--white-color);
            line-height: 1.4;
            text-align: start;
        }

        /* Video/Image Placeholder */
        .media-block {
            background: #1a1a1a;
            border-radius: 10px;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .media-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
.consult-btn {
  background-color: #7166D6;
  color: white;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
        .play-button {
            width: 80px;
            height: 80px;
            background: #00D9B4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }

        .play-button:hover {
            transform: scale(1.1);
            background: #00F5CC;
        }

        .principles-list .principles-card img {
            width: 65px;
            margin-right: 10px;
            }
.principles-list .principles-card {
        /* display: flex; */
        align-items: center;
        border-bottom: 2px solid transparent;
        border-image: linear-gradient(0.25turn, #262626, #7166D6, #FF8D84);
        border-image-slice: 100%;
        border-image-slice: 100%;
        border-image-slice: 1;
        width: 100%;
        padding: 13px 0px;
        margin-bottom: 22px;
}
.principles-list .principles-card p {
        margin: 0;
        }
        .principles-list .principles-card h5{
            font-size: clamp(15px, 3vw, 27px);
        }
        .principles-list .principles-card img {
            width: 60px;
            margin-right: 10px;
            margin-bottom: 10px;
            }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            margin: 100px 0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 60px;
            font-weight: 900;
            color: #00D9B4;
            margin-bottom: 15px;
        }

        .stat-label {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #666;
            font-weight: 600;
        }

        /* Steps Section */
        .steps-vertical {
        max-width: 800px;
        margin: 80px auto;
        background: #171717;
       padding: 45px 45px 10px 45px;
        border-radius: 20px;
        box-shadow: rgba(0, 0, 0, 0.47) 0px 30px 60px -12px,
                    rgb(0, 0, 0) 0px 18px 36px -18px;
        transition: transform 1.5s ease; /* smooth + slow animation */
        }

        .step-item {
            display: flex;
            gap: 39px;
            margin-bottom: 38px;
            align-items: flex-start;
            padding-bottom: 20px;
            border-bottom: 1px solid #414141;
        }
        .step-item:last-child{
            border-bottom: none;
        }

        .step-number {
            font-size: 80px;
            font-weight: 900;
            color:var(--secondary-color);
            line-height: 1;
            min-width: 100px;
        }

        .step-content h4 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        /* .step-content p {
            line-height: 1.8;
        } */
        .footer-card{
            background: linear-gradient(#0C0C0E, #0C0C0E) padding-box, linear-gradient(to bottom, white, #282828) border-box;
            border-radius: 50px;
            border: 1px solid transparent;
            padding: 41px 0px;
            overflow: hidden;
            margin-bottom: 45px;
            margin-top: 60px;
        }
        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 80px;
        }

        .team-member {
            text-align: center;
        }

        .team-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: #1a1a1a;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
        }

        .team-member h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .team-role {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #00D9B4;
            margin-bottom: 20px;
        }

        .team-member p {
            font-size: 14px;
            color: #fff;
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 90px 0px 19px 0px;
        }

        .btn-primary {
            background: #7166D6;
            color: #E5E5E5 !important;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            transition: 0.2s;
        }

        .btn-primary:hover {
           box-shadow: 0 0 0 3px #b3abff00, 0 0 0 5px #b3abff00;
            background-color: #7166D6 !important;
            border-color: #7166D6 !important;
        }
        .card{
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 40px 50px;
        }

        /* Footer */
        footer {
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

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

        .footer-base {
  border-top: 1px solid rgba(255,255,255,0.1);
  background: black;
padding: 53px 0 20px;
    padding-right: 0px;
    padding-left: 0px;
}
.maxine-logo img {
  width: 180px;
}
.footer-base a {
  color: #fff !important;
}
.social-media {
  background: #363345;
  padding: 3px 7px;
  border-radius: 160px;
}
.descriptions {
  font-size: 20px !important;
  color: #aaa !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-size: 13px;
  color: #fff;
  text-align: center;
}
.footer-links p, .footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0px 0px;
  font-size: 18px !important;
}
/*--------------------------------footer-card--------------*/
.footer-cta {
    backdrop-filter: blur(9px);
    opacity: 98%;
    background: linear-gradient(180deg, #1c1b22cf 0%, #1211169c 100%);
    border-radius: 40px;
    padding: 75px 70px;
    margin-bottom: -140px;
    position: relative;
    z-index: 2;
    border-top: 1px solid #ffffff38;
    border-bottom: 1px solid #ffffff38;
}
.footer-cta h5 {
    color: #837df5;
    font-weight: 500;
}
.violet-radiation {
  color: #AFA7FF;
  font-size: 22px;
}
.footer-cta h2 {
  font-size: clamp(15px, 3vw, 42px);
  margin: 5px 0 10px;
  font-weight: 600 !important;
  margin-bottom: 15px;
}
.descriptions {
  font-size: 20px !important;
  color: #fff !important;
  margin-bottom: 17px;
}
.footer-cta img {
  max-height: 525px;
}
.app-buttons img {
  height: 50px;
  margin-right: 15px;
}
.footer-cta img {
  max-height: 525px;
}
.mobile-footer img {
    position: absolute;
    bottom: 0;
    right: 100px;
}
.Features-img{
    height: 260px;
    width: 100%;
}
#work {
    background-image: url(../../images/getstarted/providers/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
}
#work::before{
    content: '';
  position: absolute;
  background: #000000bd;
  height: 100%;
  width: 100%;
  top: 0;
}

#work .container{
    position: relative;
    z-index: 2;
}
.hero-content h4{
    font-size: 20px;
    padding-top: 70px;
    text-align:left;
}
/* .elevate{
    height: 440px;
} */

.app-icon{
   height: 70px;
  border-radius: 10px; 
}


        /* Responsive */
        @media (max-width: 1024px) {
            .split-section,
            .feature-grid,
            .stats-grid,
            .team-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .nav-links {
                display: none;
            }

            section {
                padding: 100px 0;
            }
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
@media (max-width: 1199px) {
    .footer-cta h2 {
    font-size: clamp(15px, 10vw, 29px);}
}



@media (max-width: 991px) {
.section-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
    section.fot-text{
        padding-bottom: 0px !important;
    }
    .mobile-footer img {
  position: inherit;
    }
    .footer-cta img {
  max-height: 310px;}

  .footer-cta {
    height: 580px;
    overflow: hidden;
    padding: 70px 70px;
  }
    .hero-fullscreen .logo {
        position: absolute;
        top: 9%;
        transform: translate(-50%, -50%);
        left: 50%;
    }
    h2.mega-title,
    h1.mega-title {
        text-align: center;
    }
    .hero-subtitle {
        max-width: inherit;
        text-align: center;
    }
    .hero-fullscreen .banner-img {
        position: inherit;
        padding-top: 56px;
        padding-bottom: 20px;
    }
    .hero-fullscreen {
            height: 1090px;
    display: flex;
    overflow: hidden;
        }
    .hero-content{
   margin-top: 290px;
    }
    .hero-fullscreen .banner-img {
  max-width: 50%;
  max-height: 100%;
}
.large-text {
  text-align: center;
}
.section-label{
    text-align: center;
}

}

@media (max-width: 767px) {
    
h1.mega-title {
  font-size: clamp(37px, 10vw, 53px);
  line-height: 1.2;
  letter-spacing: -3px;
  margin-bottom: 17px;
}
    .hero-content {
    margin-top: 130px;
  }
  .hero-fullscreen .banner-img {
    max-width: 60%;
    max-height: 100%;
 margin-bottom: 10px;
  }
  
   .hero-fullscreen {
    height: auto !important;
    display: flex;
    overflow: hidden;
    padding-bottom: 0px;
  }
  .steps-vertical {
  transform: rotate(0deg);
  }
.hero-content h4{text-align: center !important;}
}
@media (max-width: 575px) {
    .store-badges img {
  max-height: 40px;
}
    .footer-base {
  border-top: 1px solid rgba(255,255,255,0.1);
  background: black;
  padding: 100px 0 20px;
    }
    
    .Features-img {
  height: 180px;
  width: 100%;
}
.section-3 .feature-item img {
  height: 45px;
  margin-bottom: 20px;
}
.steps-vertical {
  max-width: 800px;
  margin: 30px auto;
}
.section-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}
.feature-item p {
  font-size: 18px;
  color: var(--white-color);
  line-height: 1.4;
  text-align: center;
}
.footer-card {
  padding: 43px 30px;
}
}


@media (max-width: 400px) {
    .footer-base p{
        font-size: 17px !important;
    }
     .hero-fullscreen .banner-img {
    position: inherit;
    padding-top: 40px;
    max-width: 67%;
  }
     .footer-cta h2 {
    font-size: clamp(15px, 10vw, 25px);
    margin: 5px 0 21px;
  }
    .app-buttons img {
  height: 39px;
  margin-right: -5px;
}
     .footer-cta {
    height: 580px;
    overflow: hidden;
    padding: 43px 8px;
  }
  .hero-content {
    margin-top: 110px;
  }
  h2.mega-title {
 font-size: clamp(15px, 10vw, 16px);
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 4px;
  }
  .hero-subtitle {
 font-size: clamp(11px, 10vw, 14px);
}
  h1.mega-title {
   font-size: clamp(45px, 10vw, 63px);
    line-height: 1.2;
    letter-spacing: -3px;
    margin-bottom: 4px;
  }
  .store-badges img {
  max-height: 40px;
}
 h2 {
    font-size: clamp(20px, 6vw, 33px);
  }
  .content-block h3 {
  font-size: 22px;
  }
.split-section {
  padding: 22px 20px;
}
.step-item {
  display: block;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}
  section {
    padding: 40px 0;
  }
}
@media screen and (min-device-width: 1366px) and (max-device-width: 1440px) {
.hero-fullscreen {
    height: 152vh;

}
}