/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, Roboto, Helvetica, sans-serif;
    color: #000B33;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.hero-section {
    background: #424FFA;
    /* padding-bottom: 100px; */
}

.hero-section img {
    display: block;
}

.navbar {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    width: 189px;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: #FFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-outline, .btn-primary, .btn-hero, .btn-plan, .btn-signup {
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #FFF;
}

.btn-outline {
    background: transparent;
    color: #FFF;
}

.btn-primary {
    background: #FFF;
    color: #000B33;
    border-color: #FFF;
}

.btn-hero {
    background: #FFF;
    color: #000B33;
    padding: 15px 40px;
    margin-top: 20px;
}

.btn-outline:hover, .btn-primary:hover, .btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Content */
.hero-content {
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-label {
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-title {
    color: #FFF;
    font-size: 60px;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 20px;
}

.hero-description {
    color: #FFF;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
}

.card-icon {
    width: 213px;
    margin-bottom: 15px;
}

.card-title {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-text {
    color: #FFF;
    font-size: 16px;
}

/* Dashboard Preview */
.dashboard-preview {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.preview-corners {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr); */
    display: flex;
    gap: 20px;
    /* margin-bottom: 20px; */
    align-items: center;
}


.preview-corner-left,.preview-corner-right{
    display: flex;
    flex-direction: column;
    gap: 12px;
}



.corner-img {
    width: 100%;
    border-radius: 30px;
    /* box-shadow: 0 4px 45px rgba(16, 20, 66, 0.15); */
}

.dashboard-main {
    width: 100%;
    /* border-radius: 30px;
    margin-top: -50px; */
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #FFF;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #000B33;
    width: 100%;
    max-width: 970px;
    margin: 0 auto 38px;
}

.section-underline img{
    text-align: center;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
}

.feature-card.bg-light {
    background: #F5EEEE;
}

.feature-card.bg-blue {
    background: rgba(48, 106, 239, 0.1);
}

.feature-icon {
    margin: 0 auto 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
}

/* Vision & Mission */
.vision-mission-section {
    padding:0 0 100px ;
    background: #FFF;
}

.vm-grid {
    display: flex;
    /* grid-template-columns: 1fr 1fr; */
    gap: 60px;
    align-items: center;
}

.vm-image{
   max-width: 560px;
   width: 100%;
}

.vm-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.vm-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.vm-items {
    display: flex;
    gap: 40px;
}

.vm-item svg {
    width: 53px;
    height: 53px;
    margin-bottom: 15px;
}

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

.vm-item p {
    font-size: 16px;
}

.vm-image img {
    width: 100%;
    border-radius: 25px;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: #FFF;
}

.section-label {
    font-size: 25px;
    font-weight: 700;
}

.our-results-wrapper{
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap:14px;
}

.stats-grid {
    display: flex;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item{
    max-width: calc(33.33% - 30px);
    flex-basis:  calc(33.33% - 30px);
    width: 100%;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    /* margin-bottom: 10px; */
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 15px;
    line-height: 1.5;
}

/* Why Jurievo Section */
.why-jurievo-section {
    /* padding: 100px 0; */
    /* background: #F6F7FA; */
}

.why-grid {
    display: flex;
    /* grid-template-columns: 1fr 1fr; */
    gap: 60px;
    background: #F6F7FA;
    border-radius: 25px;
    position: relative;
    align-items: stretch;
}

.why-grid::after {
    position: absolute;
    content: '';
    background: url(../images/landing-rev-img.png) no-repeat 0 0;
    background-size: 100%;
    bottom: -120px;
    right: -210px;
    width: 480px;
    height: 359px;
}

.why-content{
    padding: 76px 64px 76px 0;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px 0 0 25px;
}

.why-title {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
}

.why-list {
   font-size: 18px;
}

.why-list .title-text {
    line-height: 2.2;
    padding-left: 25px;
    padding-right: 10px;
    position: relative;
}

.title-text::before {
    content: "▶";
    color: #306AEF;
    position: absolute;
    left: 0;
}

/* Advantage Section */
.advantage-section {
    padding: 100px 0;
    background: #FFF;
}

.advantage-grid {
    display: flex;
    gap: 25px;
    flex-direction: column;
    margin-top: 60px;
}

.advantage-grid-bottom,.advantage-grid-top{
    display: flex;
    gap: 25px;
}

.advantage-card {
    border-radius: 25px;
    min-height: 331px;
    /* display: flex; */
}

.advantage-card-topleft{
    display: flex;
    background: #F6F7FA;
}

.advantage-card-box{
    max-width: 400px;
    width: 100%;

}

.advantage-grid-bottom .advantage-card-box{
    padding: 60px 64px 30px 34px;
}

.advantage-card.bg-blue-dark {
    background: #225BDD;
    color: #FFF;
}

.advantage-card.bg-blue-light {
    background: #DDEDFF;
}

.advantage-card.bg-purple {
    background: #4952A8;
    color: #FFF;
}

.advantage-card.bg-gradient {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 5.77%, #030C20 100%);
    color: #FFF;
    position: relative;
}

.advantage-card img {
    width: 100%;
    border-radius: 20px;
}

 .advantage-card.advantage-card-topright img{
       margin-bottom: 20px;
 }

.advantage-card-bottom-last.advantage-card img {
    height: 100%;
    object-fit: cover;
}

.advantage-card h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 15px;
}

.advantage-card-bottom-last.advantage-card .overlay-content {
     position: absolute;
    left: 0px;
    bottom: 0px;
    padding: 60px 64px 30px 34px;
}

.advantage-card p {
    font-size: 15px;
    line-height: 1.5;
}

/* Modules Section */
.modules-section {
    padding: 100px 0 200px;
    background: #F6F7FA;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.module-card {
    background: #FFF;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid #D6D3E7;
    box-shadow: 0 4px 15px rgba(96, 102, 123, 0.05);
}

.module-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.module-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.module-card p {
    font-size: 15px;
    line-height: 1.5;
}

/* Experience Section */
.experience-section {
   
}

.experience-section .exp-container {
    background: linear-gradient(135deg, #424FFA 0%, #306AEF 100%);
    padding: 60px 50px 53px;
    clip-path: polygon(110px 0, 100% 0, 100% 85%, calc(100% - 110px) 100%, 0 100%, 0 15%);
    border-radius: 30px;
    margin-top: -100px;
}

.experience-content {
    text-align: center;
    color: #FFF;
}

.experience-content h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.experience-content p {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: normal;
}

.highlight {
    color: #FFD942;
    font-size: 32px;
    font-weight: 700;
}

.experience-features {
    display: flex;
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    gap: 80px;
    margin-top: 60px;
    max-width: 875px;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    flex-wrap: wrap;
}

.exp-feature {
    text-align: center;
}

.exp-feature img {
    width: 63px;
    height: 63px;
    margin: 0 auto 15px;
}

.exp-feature p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 75px 0;
    background: #FFF;
}

.pricing-title-wrapper{
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0 60px;
    background: #FFF;
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 4px 32px rgba(96, 102, 123, 0.1);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    padding: 12px 35px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: #5F6579;
    transition: all 0.3s;
}

.toggle-btn.active {
    background: #306AEF;
    color: #FFF;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.pricing-card {
    background: #FFF;
    padding: 40px 36px;
    border-radius: 20px;
    border: 1px solid #CFD3E5;
    position: relative;
}

.pricing-card.featured {
    box-shadow: -1px 6px 40px 21px #EEEEF4;
    border-color: #D8E0EB;
}

.popular-badge {
    position: absolute;
    top: 36px;
    right: 0;
    background: #ED862C;
    color: #FFF;
    padding: 8px 20px;
    border-radius: 16px 0 0 16px;
    font-size: 16px;
    font-weight: 600;
}

.plan-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.plan-price {
    margin-bottom: 20px;
}

.currency {
    font-size: 16px;
}

.amount {
    font-size: 40px;
    font-weight: 800;
    margin: 0 5px;
}

.period {
    font-size: 16px;
}

.plan-description {
    color: #4C4D5F;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #DDE1E7;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 27px;
    height: 27px;
    background: #ECF3FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #306AEF;
    font-weight: bold;
}

.btn-plan {
    width: 100%;
    padding: 15px;
    background: transparent;
    color: #000;
    border: 2px solid #E4E7ED;
    border-radius: 11px;
    font-size: 16px;
    font-weight: 600;
}

.btn-plan.featured {
    background: #306AEF;
    color: #FFF;
    border-color: #306AEF;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #F6F7FA;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
    display: flex;
    gap: 30px;
    justify-content: center;
    
}

.cta-title span{
    position: relative;
}

.cta-title span::after {
    position: absolute;
    content: '';
    width: 16px;
    height: 6px;
    right: -22px;
    bottom: 15px;
    background: #306AEF;
}

.cta-title span:last-child:after {
    display: none;
}

.cta-subtitle {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    border: 1px solid #BDB9D2;
    background: #fff;
    padding: 12px 12px 12px 40px;   
    border-radius: 50px;
}
.cta-form-input{
    flex: 1;
    position: relative;
}
.email-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
}

.btn-signup {
    background: #306AEF;
    color: #FFF;
    padding: 20px 50px;
    border: none;
    font-size: 20px;
}

/* Footer */
.footer {
    background: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-text {
    font-size: 16px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 20px;
}

.footer-col p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #000B33;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #306AEF;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    color: #2D3552;
}

/* Apply to entire page */
/* Gradient Scrollbar — Matches the Blue UI */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1b1bff; /* Deep blue track */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #b0bcf1, #9a4dff);
  border-radius: 10px;
  border: 2px solid #4f6eff; /* subtle border to blend */
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #b0bcf1, #9a4dff);
}

/* Firefox fallback */
* {
  scrollbar-width: thin;
  scrollbar-color: #b0bcf1 #1b1bff;
}

.why-image{
    max-width: 471px;
    width: 100%;
}

.section-seperator{
    border-top: solid 1px rgba(0, 0, 0, 0.15);
    flex-grow: 1;
}

.arrow-wrapper{
    display: flex;
    align-items: center;
    gap: 5px;
}


.arrow-wrapper > div{
    width: 41px;
    height: 41px;
    background: url(../images/arrow-right.png) no-repeat 0 0;
    cursor: pointer;
}

.arrow-wrapper > div.next{
    transform: rotate(180deg);
}

.advantage-card-topleft .advantage-content{
    padding: 58px 65px 65px 53px;
}

.advantage-card-topright{
    padding: 20px;
}

.icon-nav {
    width: 30px;
    height: 25px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s 
ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s 
ease-in-out;
    /* position: absolute; */
    top: 5px;
    /* right: 40px; */
    z-index: 10;
    display: none;
}

.icon-nav span:nth-child(1) {
    top: 0px;
}

.icon-nav span:nth-child(2), .icon-nav span:nth-child(3) {
    top: 16px;
}

.icon-nav span:nth-child(4) {
    top: 0px;
}

.icon-nav.open span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.icon-nav.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.icon-nav.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.icon-nav.open span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.icon-nav span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s 
ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s 
ease-in-out;
}

.header-right{
    flex-grow: 1;
}

.header-right{
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: flex-end;
}

.header-menu-wrapper{
    position: relative;
}
.icon-nav.open{
    top: -10px;
}

.why-list-description-item{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.why-list-description-item .title-text{
    min-width: 250px;
    max-width: max-content;
}

.advantage-card-topleft img{
    max-width: 370px;
    object-fit: cover;
    width: 100%;
    border-radius: 20px 0 0 20px;
}

.module-card ul{
    padding-left: 15px;
}

.popup-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
}

.contact-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    width: 100%;
    /* background: #424FFA; */
    background: #fff;
    border-radius: 24px;
    min-height: 380px;
    z-index: 1000;
    display: none;
}

.contact-form-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.contact-form-wrapper-in {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 20px 20px;
}

.contact-form-group{
    width: 100%;
}


.contact-form-wrapper-in h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

.contact-form-wrapper-in form{
    width: 100%;
}

.contact-form-group-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.contact-form-wrapper-in input[type='text'], .contact-form-wrapper-in input[type='email'], .contact-form-wrapper-in input[type='password'] {
    width: 100%;
    font-family: 'Plus Jakarta Sans';
    background: #fff;
    box-shadow: none;
    border: solid 1px #ccc;
    outline: none;
    height: 34px;
    border-radius: 8px;
    padding: 8px 17px;
}

.contact-form-wrapper-in textarea{
    width: 100%;
    font-family: 'Plus Jakarta Sans';
    background: #fff;
    box-shadow: none;
    border: solid 1px #ccc;
    outline: none;
    height: 100px;
    border-radius: 8px;
    padding: 8px 17px;
    resize: none;
}

.popup-overlay.show, .contact-popup.show{
    display: flex;
}

.btn-submit {
    background: #01236f;
    color: #fff;
    font-family: 'Plus Jakarta Sans';
    font-weight: bold;
    font-size: 14px;
    height: 34px;
    border-radius: 18px;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    border: solid 1px transparent;
    text-transform: uppercase;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-popup-close {
    position: absolute;
    top: 8px;
    right: 15px;
    background: url(../images/cancel.png) no-repeat 0 0;
    background-size: 100%;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

/* Responsive Design */
@media screen and  (max-width: 1600px) {
    .why-grid::after {
        bottom: -10.37vw;
        right: -13.12vw;
        width: 30vw;
        height: 22.44vw;
    }
}

@media screen and  (max-width: 1400px) {
    .why-grid {
        gap: 45px; 
    }

    .why-content {
        padding: 50px 35px 50px 0;
    }
}

@media screen and  (max-width: 1300px) {
    .advantage-card-topleft .advantage-content {
        padding: 30px;
    }

    .advantage-card-box {
        max-width: 320px;
    }

    .nav-links a{
        font-size: 16px;
    }

    .nav-links,.header-right{
        gap: 20px;
    }

    .experience-features{
        gap: 40px;
    }

}
@media (max-width: 1024px) {
    .hero-grid,
    .vm-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

     .vm-grid{
        flex-direction: column;
     }

    .nav-links {
        display: none;
        position: absolute;
        top: 40px;
        right: 0;
        width: 190px;
        background: #fff;
        border-radius: 10px;
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

     .nav-links.active {
        display: flex;
     }

    .nav-links a{
        color: #1b1bff;
    }

    .hero-title {
        font-size: 48px;
    }

    .why-title {
        font-size: 40px;
    }

    /* .preview-corners {
        grid-template-columns: 1fr;
    } */

    .modules-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .icon-nav {
        display: block;
    }

    .header-right{
        justify-content: flex-end;
    }

    .corner-img{
        border-radius:6px ;
    }

    .why-grid{
        flex-direction: column;
        padding: 40px 0; 
    }

    .why-image{
        max-width: 100%;
    }

    .why-image img{
        width: unset;
        height: unset;
        margin: 0 auto;
        border-radius: 25px;
        padding: 10px ;
    }

    .why-content {
        padding: 0px 30px 0;
    }

    .vision-mission-section {
        padding: 0px 0 50px;
    }

    .about-section {
        padding: 50px 0;
    }

    .section-subtitle {
        margin: 0 auto 10px;
    }

    .advantage-grid-bottom, .advantage-grid-top{
        flex-direction: column;
    }

    .advantage-card-box {
        max-width: 100%;
    }

    .advantage-card.advantage-card-topright img {
        height: 260px;
        object-fit: contain;
    }

    .advantage-section {
        padding: 50px 0;
    }

    .advantage-card{
        min-height: unset;
    }

    .modules-section {
        padding: 50px 0 160px;
    }

    .advantage-section {
        padding: 60px 0;
    }

    .advantage-grid-bottom .advantage-card-box {
        padding: 60px 64px 60px 34px;
    }

    .stats-grid{
        flex-direction: column;
    }

    .stat-item {
        max-width: 100%;
        flex-basis: 100%;
    }

    .cta-title{
        flex-direction: column;
        gap: 8px;
    }

    .cta-title span::after{
        display: none;
    }

    .cta-section {
        padding: 60px 0;
    }

    .exp-feature p {
        font-size: 16px;
    }

    .experience-content h2 {
        font-size: 35px;
        margin-bottom: 5px;
    }

    .experience-section .exp-container{
        clip-path: unset;
        padding: 30px 30px 30px;
    }
}

@media (max-width: 768px) {
    .header-menu-wrapper {
        order: 2;
    }
    .nav-buttons {
        order: 1;
    }
    .header-right .nav-buttons .btn-outline, .header-right .nav-buttons .btn-primary {
        text-indent: -9999px;
        border-radius: 100%;
        padding: 0;
        background: #FFF url(../images/login.png) no-repeat center;
        background-size: 58%;
        width: 29px;
        height: 29px;
    }
    
    .header-right .nav-buttons .btn-primary {
        background-image: url(../images/add-user.png);
    }
    .header-right {
        flex-direction: row;
    }
    .why-list-description-item {
        flex-wrap: wrap;
    }
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .why-title {
        font-size: 32px;
    }

    .features-grid,
    .advantage-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-form {
        flex-direction: column;
        padding: 12px;
        border-radius: 20px;
    }

    .cta-form-input{
        width: 100%;
    }

    .email-input,
    .btn-signup {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* .experience-features {
        grid-template-columns: repeat(2, 1fr);
    } */

    .vm-items {
        flex-direction: column;
    }

    .preview-corners{
        flex-direction: column;
    }

    .preview-corner-left{
        order: 1;
    }

     .preview-corner-right{
        order: 2;
    }

     .preview-corner-center{
        order: 3;
    }

    .about-section {
        padding: 40px 0;
    }

    .why-grid::after{
        display: none;
    }

    .experience-features {
        gap: 30px;
    }

    .advantage-card-topleft{
        flex-direction: column;
        padding: 30px 0 0;
    }

    .advantage-card-topleft img{
        margin: auto;
        border-radius: 15px;
    }

    .advantage-card-bottom-last.advantage-card h3 {
        left: 25px;
        bottom: 5px;
        font-size: 25px;
    }
    .footer-col h4{
        margin-top: 0;
    }

    .vm-title {
        font-size: 30px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-label {
        font-size: 17px;
    }

    .advantage-card h3 {
        font-size: 21px;
    }

    
}

@media screen and (max-width: 640px) {
   

    .logo {
    width: 145px;
    }

    .btn-outline, .btn-primary, .btn-hero, .btn-plan, .btn-signup {
        padding: 6px 20px;
        font-size: 15px;
    }

    .cta-form .btn-signup {
         padding: 10px 20px;
    }

    .advantage-card.advantage-card-topright img{
        height: unset;
    }
}


@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

   
    .navbar .container{
        align-items: flex-start;
    }

    .btn-outline,
    .btn-primary {
        font-size: 14px;
        padding: 8px 20px;
    }


    .experience-features {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 420px) {
    .contact-popup{
        max-width: 95%;
    }
}
