.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated background */
body{
     background: url("https://assets.fastexpert.com/images/cma/cma_landing.jpg") no-repeat;background-size: cover !important;
     /* background-image: url("https://assets.fastexpert.com/images/cma/cma_landing.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;  */

}

.hero {
    min-height: calc(100vh - 68px);
   
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.foter_her{position: fixed;bottom: 0;text-align: center;left: 0;width: 100%;}
.foter_her p{color: #fff;font-family: 'latoRegular';font-weight: 400}
.foter_her p a{color: #2EAADC;padding: 0 10px;text-decoration: underline;}
@media (max-height: 930px) {
  .step_2_active.hero {min-height: auto;padding: 50px 0 20px}
  .step_2_active .foter_her{position: relative;}
}
@media (max-height: 700px) {
  .hero {min-height: auto;padding: 50px 0 20px}
  .foter_her{position: relative;}
}
@media screen and (max-width: 767px) {
    @media (max-height: 950px) {
    .step_2_active.hero {min-height: auto;padding: 50px 0 20px}
    .step_2_active .foter_her{position: relative;}
}
}
/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="300" cy="700" r="120" fill="url(%23a)"/><circle cx="900" cy="800" r="80" fill="url(%23a)"/></svg>');
    animation: float 20s ease-in-out infinite;
} */

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

.hero-content {

align-items: center;
position: relative;text-align: center;
z-index: 2;
}

.hero-text {
color: white;max-width:640px;margin: 0 auto;
}

.hero-text h1 {
    font-size: clamp(40px, 5vw, 63px);
    font-weight: 800;
    line-height: 1.1;margin-top: 0;
    margin-bottom: 0px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-text .highlight {
    background: linear-gradient(45deg, #2EAADC, #20b3ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 0px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.step_2{display: none;}

.trust-indicators {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    opacity: 0.9;
}

.trust-item::before {
    content: '✓';
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.sample-report-link {
    margin-top: 20px;
}

.sample-report-link a {
    color: #ffd700;
    text-decoration: underline;
    font-size: 18px;
    transition: all 0.3s ease;
}

.sample-report-link a:hover {
    color: #ffed4a;
    text-decoration: none;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}
.errMsg{color: red;}
.errMsg:empty{display: none;}
/* Form Card */
.form-card {
    max-width: 448px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(0);margin-top:30px;margin-bottom:20px;
    transition: transform 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size:28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-header p {
    color: #718096;
    font-size: 18px;
}

.form-group {
    margin-bottom: 20px;
}
.step_2 .form-row{margin-bottom: 0;text-align: left;}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}
.step_2 .form-group{text-align: left;}
.form-group label ,#cma_signup .form-group h2{
    display: block;
    margin-bottom: 8px;
     font-family: 'latoSemiBold', sans-serif;
    color: #333;
    font-size: 16px;font-weight: 400;
}
#cma_signup .form-group h2{margin-top: 0;}
.form-group input,
.form-group select {
    width: 100%;
    padding: 2px 10px;
    border: 1px #E0E6EB solid;
    border-radius: 4px;
    font-size: 18px;height: 48px;box-shadow: none;
    transition: all 0.3s ease;
    background: white;
}
.step_1.form-group input {padding-left: 40px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;padding-right: 25px;}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.submit-btn.step_1{display: inline-block;line-height: 48px}
.submit-btn {
    width: 100%;
    padding:0 18px;
    /*background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);*/
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 22px;
    font-weight: 400;
    cursor: pointer;height: 48px;line-height: 0px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(97.13deg, #0C75CA 0%, #2EAADC 100%);
    

}
.submit-btn img{width: 22px;position: relative;top: -1px}
.submit-btn:hover {
    transform: translateY(-2px);color: #fff;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}


.disclaimer-text {
    margin-top: 16px;
    font-size: 11px;
    line-height: 1.1;text-align: left;
    color: #333;
     
}

.disclaimer-text a {
    color: #3b82f6;
    text-decoration: underline;
}

.disclaimer-text a:hover {
    color: #1e40af;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 34px;
}

.feature-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.feature-card p {
    color: #718096;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.section-header h2 {
    font-size:38px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 22px;
    color: #718096;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 50px;
    color: #3b82f6;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 24px;
    font-size: 22px;
    color: #4a5568;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h4 {
    font-weight: 600;
    color: #2d3748;
}

.author-info p {
    font-size: 16px;
    color: #718096;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 22px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .hero-content {
        grid-template-columns: 1fr;
        gap: 0px;
        text-align: center;
    }

    .form-card {
        padding: 30px 20px;margin: 0 auto; margin-top: 30px ;margin-bottom: 50px;width: 100%;
    }
    
    .hero-text .trust-indicators{margin-bottom: 50px}

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;text-align: left;
    }.form-group label{text-align: left;}

    .trust-indicators {
        justify-content: center;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .hero-text p{font-size: 18px;}
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-text {
    animation-delay: 0.2s;
}

.form-card {
    animation-delay: 0.4s;
}

/*----------------- */


.active_me {
  display: block;
}

.inactive {
  display: none;
}

#suggestionContainer {
  position: relative;margin: 0 auto;width: 100%;
}

#suggestionBox {
    position: absolute;
    top: -8px;
    left: auto;
    background-color: #fff;
    width: 100%;
    max-height: 200px;
    overflow-y: scroll;
    cursor: pointer;
    text-align:left;
    z-index: 1;
}
/*#suggestionBox.active_me{
  border: solid 1px #e0e0e0;
}*/
#suggestionBox div {
  padding: 10px;border-left: solid 1px #e0e0e0;border-right: solid 1px #e0e0e0;
}

#suggestionBox div:hover {
  background-color: #06c;
  color: #fff;
}

.addressfield{position: relative;display: block;width: 100%}
.addressfield .cm_loct{position: absolute;left: 15px;top: 16px;z-index: 5}
.clearaddress{display: none;} 
.clearaddress{
  position: absolute;
  font-size: 24px;
  color: #333;line-height:44px;
  padding:0 6px;
  right: 5px;
   
  cursor: pointer;
  outline: none !important;
  text-decoration: none;
  top: 1px;
  margin-right: 0;
  height: 44px;line-height: 44px;
  align-content: center;
}
.clearaddress:hover,
.clearaddress:focus{
  color: #333;
  outline: none !important;
  text-decoration: none;
}
.CTCODE {
  position: relative;
}
.CTCODE span {
  position: absolute;z-index: 1;
  left: 10px;
  top: 18px;
  font-size: 14px;
  color: #333;line-height: 14px;
  display: flex;
  line-height: 13px;
  align-items: center;
  font-family: 'latoBold', sans-serif;
}
.CTCODE span img {
  height: 12px;
  position: relative;z-index: 9;
  top: 0px;
  margin-right: 2px;
}
.CTCODE input {
  padding-left:45px;
}
#LoginAsAgentandclient .modal-dialog{margin-top: 50px !important}
@media screen and (max-width:1035px) {
    body{
    /* background: url("https://assets.fastexpert.com/images/cma/cma_landing.jpg") no-repeat 100% 100%;background-size:100% 100% !important  */
    background-image: url("https://assets.fastexpert.com/images/cma/cma_landing.jpg");
    background-repeat: no-repeat;
    background-size: cover !important;   /* makes image cover full screen */
    background-position: center !important;
    background-attachment: fixed !important; /* keeps it fixed */

    }
    .hero{padding: 0;}
    .hero-content{    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;}

    body .container{height: calc(100dvh - 68px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    body .step_2_active .container{height: auto;}
    .step_2_active .hero-content{height: auto;}
    .foter_her{position:relative;padding-bottom: calc( env(safe-area-inset-bottom));}
    .step_2 .form-row{display: inline-flex;gap:15px;}
    .step_2 .form-row .form-group{width: 100%;}
}
@media screen and (max-width: 767px) {
  #suggestionContainer {width: 100%;} #suggestionBox {width:100%;}
 /*.hero{min-height: auto;padding: 50px 0 0;background: none}
 .hero::before{display: none;}
 .foter_her{position: relative;}*/
  
    .CTCODE span img{top: 0;margin-right: 5px}
   
    .step_1_active .form-group label{text-align: center;}
    .step_2_active .hero-text p{font-size: 23px;;}
}
.hidden-xs{}
.visibe-xs{display: none;}
@media screen and (max-width: 767px) {
    .hidden-xs{display: none;}
    .visibe-xs{display: block;}
    .trust-item{margin-bottom: 5px}
    .CTCODE input{padding-left: 50px}
    .foter_her.active{position: relative;}
}

@media screen and (max-width: 395px) {
    .hero-text h1{font-size: 36px;}
}