 



.hero-text-section{
 
    font-size:56px ; 
}





/*-----------------------header section------------------------*/

/* Minimal custom styling (about 10%) */

.hero-section {
    background-color: #F0FCFF; /* soft lavender tone */
    position: relative;
    overflow: hidden;
}

.text-gradient {
    background: linear-gradient(90deg, #4b6bff, #9a73ff);
    /*-webkit-background-clip: text;*/
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background-color: #007aff;
    border: none;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #6546ff;
        transform: translateY(-2px);
    }
 

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #b6aaff; /* top border line */
}

/*-----------------------Feather section------------------------*/


.section-gradientm {
    background-image: linear-gradient(to bottom, #F0FCFF, white );
    text-align: center;
    padding-bottom: 100px;
}


/*-----------------------Benefit section------------------------*/


.benefits-section {
    background-color: #ffffff;
}

.text-primary {
    color: #3f80da !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #edeaff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b61ff;
    box-shadow: 0 4px 10px rgba(123, 97, 255, 0.1);
    transition: all 0.3s ease;
}

    .icon-circle:hover {
        transform: translateY(-4px);
        background-color: #dcd3ff;
    }

 
.section-faq {
    background: linear-gradient(120deg, #e6ecff 0%, #d6e4ff 100%);
    font-family: "Poppins", sans-serif;
    height:500px;
}


 
/*-----------------------FAQ section------------------------*/

/* FAQ Section Styling */

 


.section-faq {
    background: linear-gradient(120deg, #e6ecff 0%, #d6e4ff 100%);
    font-family: "Poppins", sans-serif;
}
 

.faq-box {
    border-radius: 20px;
}

.faq-title {
    font-weight: 700;
    color: #222;
}

.accordion-button {
    font-weight: 500;
    background: #f8f9fb;
    color: #333;
    border-radius: 10px !important;
    box-shadow: none;
}

    .accordion-button:not(.collapsed) {
        color: #0056ff;
        background: #eef3ff;
        border-left: 3px solid #0056ff;
    }

.accordion-body {
    font-size: 15px;
    color: #555;
    background: #fff;
    border-left: 3px solid #0056ff;
    border-radius: 0 0 10px 10px;
    margin-top: -10px;
    padding: 15px 20px;
}

/* Form Styling */
.faq-form {
    background: #f9fafb;
    border: 1px solid #e0e6f7;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

    .faq-form input,
    .faq-form textarea {
        border-radius: 8px;
        border: 1px solid #ddd;
        font-size: 15px;
    }

        .faq-form input:focus,
        .faq-form textarea:focus {
            border-color: #0056ff;
            box-shadow: 0 0 0 0.2rem rgba(0, 85, 255, 0.1);
        }

    .faq-form button {
        background-color: #0056ff;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        color: #fff;
        padding: 10px 0;
        transition: 0.3s;
    }

        .faq-form button:hover {
            background-color: #003dcc;
        }

@media (max-width: 992px) {
    .faq-box {
        padding: 40px 25px;
    }
}



/*-----------------------Form section------------------------*/

.demo-section {
 
    background-color: #7b82ff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.form-box {
    border-radius: 20px;
    transition: 0.3s ease;
}

    .form-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

h1 {
    font-size: 2.5rem;
    line-height: 1.4;
}

.btn-primary {
    background-color: #7b82ff;
    border-color: #7b82ff;
}

    .btn-primary:hover {
        background-color: #6369ff;
        border-color: #6369ff;
    }

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .demo-section {
        padding: 3rem 1rem;
        text-align: center;
    }

}

/* Subtle geometric pattern (SVG background) */
.demo-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.15' stroke-width='1'%3E%3Crect x='0' y='0' width='100' height='100'/%3E%3Crect x='100' y='100' width='100' height='100'/%3E%3Crect x='200' y='200' width='100' height='100'/%3E%3Crect x='300' y='300' width='100' height='100'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 250px;
  opacity: 0.4;
  right: -50px;
}

/* Card styling */
.demo-card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Inputs */
.form-control {
  border-radius: 0.6rem;
  border: 1px solid #dee2e6;
}

.form-control:focus {
  border-color: #7b7cf8;
  box-shadow: 0 0 0 0.25rem rgba(123, 124, 248, 0.15);
}

/* Submit Button */
.submit-btn {
  background-color: #7b7cf8;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 0.6rem;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #6c6de4;
  box-shadow: 0 6px 18px rgba(123, 124, 248, 0.3);
}

/* reCAPTCHA placeholder */
.recaptcha-placeholder {
  background: #f8f9fa;
 
}







 
amination-form  {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #f8fafc;
}
.wide-banner {
    background: #7b82ff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.background-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    opacity: 0.5;
}

.form-box {
    border-radius: 20px;
    position: relative;
    z-index: 1;
    background-color: #fff;
    transition: all 0.3s ease;
}

    .form-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

h1 {
    font-size: 2.5rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: #7b82ff;
    border-color: #7b82ff;
}

    .btn-primary:hover {
        background-color: #6369ff;
        border-color: #6369ff;
    }

.float-anim {
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .form-box {
        padding: 2rem;
    }

    .wide-banner {
        padding: 3rem 1rem;
        text-align: center;
    }
}


 

