* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: "Roboto", sans-serif;*/
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

a {
    text-decoration: none;
}

/* ======================================== Start header ======================================== */
.header_manu .nav-link.active {
    background: linear-gradient(to right, #755DFF 0%, #B465FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header_manu .nav-link:hover {
    background: linear-gradient(to right, #755DFF 0%, #B465FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.header_manu .nav-item .nav-link {
    padding: 10px 10px;
    font-size: 16px;
    font-weight: 500;
    color: #67677E;
    font-family: "Roboto", sans-serif;
}
.sub_menu{
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    border-radius: 20px;
    display: none;
    list-style: none;
    text-align: center;
    padding: 0;
    z-index: 999;
}
.sub_menu li{
    padding: 5px;
    position: relative;
}
.sub_menu li a{
    color: #67677E;
}
.sub_menu li:hover{
     background: linear-gradient(to right, #755DFF 0%, #B465FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
}
.header_manu li{
    position: relative;
}
.header_manu li:hover .sub_menu{
    display: block;
}
/* ======================================== End header ======================================== */
/* ======================================== Start Home Page ======================================== */
/* ------------------------------------------- Start Banner ------------------------------------------- */
.banner_color {
    background-color: #F3EBFD;
}

.banner_imgs {
    position: relative;
}

.banner_imgs .hero_image {
    border-radius: 20px;
    animation: zoomIn 1s ease forwards;
    opacity: 0;
}

.banner_imgs .banner_img {
    position: absolute;
    top: -10%;
    left: -5%;
    animation: slideLeft 1s ease forwards, floatY 3s ease-in-out infinite;
    animation-delay: 0.3s, 1.3s;
    opacity: 0;
}

.banner_imgs .banner_99 {
    position: absolute;
    bottom: -10%;
    right: 15%;
    animation: slideUp 1s ease forwards, floatX 4s ease-in-out infinite;
    animation-delay: 0.6s, 1.6s;
    opacity: 0;
}

.banner_imgs .banner_star {
    position: absolute;
    bottom: 40%;
    right: -2%;
    animation: fadeIn 1s ease forwards, floatRotate 5s ease-in-out infinite;
    animation-delay: 0.9s, 1.9s;
    opacity: 0;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatX {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

@keyframes floatRotate {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(15deg) scale(1.05);
    }
}

.banner_text h4 {
    background: linear-gradient(to right, #755DFF 0%, #B465FF 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 60px;
    font-weight: 700;
}

.banner_text h5 {
    font-size: 60px;
    font-weight: 700;
    color: #4A4A4A;
}

.banner_text h6 {
    color: #8A8AA8;
    font-size: 30px;
    font-weight: 700;
}

.banner_text p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.processed p {
    color: #2463EB;
}

.processed span {
    color: #7D7D9F;
}

.start_cropping_btn a {
    padding: 15px 15px;
    color: #fff;
    background: linear-gradient(to right, #755DFF 0%, #B465FF 100%);
    border-radius: 10px;
    transition: .3s;
}

.start_cropping_btn a:hover {
    color: #fff;
    background: linear-gradient(to right, #B465FF 0%, #755DFF 100%);
}

/* ------------------------------------------- Ena Banner ------------------------------------------- */
/* ------------------------------------------- Start Supported Platforms ------------------------------------------- */
.bg_color {
    background: #f7fafc;
    padding: 30px 0;
}

.platforms h4 {
    background: linear-gradient(to right, #755DFF 0%, #B465FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    font-weight: 600;
}

.platforms p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.feature_card {
    text-align: center;
    padding: 15px;
    border: 1px solid rgba(138, 138, 168, .5);
    border-radius: 15px;
    transition: all 0.3s ease;
    background-color: #fff;
    height: 183px;
}

.feature_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(191, 211, 255, 0.49);
    border-color: #dcdcdc;
}

.feature_icon {
    width: 63px;
    height: 63px;
    background: linear-gradient(to right, #755DFF 0%, #B465FF 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature_card:hover .feature_icon {
    background: linear-gradient(to right, #B465FF 0%, #755DFF 100%);
}

.feature_icon img {
    width: 40px;
    height: 40px;
}

.feature_title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    color: #222;
}

.feature_desc {
    color: #8A8AA8;
    font-size: 14px;
    font-weight: 400;
}

.effortlessly_card {
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 138, 168, .5);
}

.effortlessly_card:hover {
    box-shadow: 0 0 15px rgba(191, 211, 255, 0.49);
    transform: translateY(-3px);
    border-color: #dcdcdc;
}

.effortlessly_txt h6 {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}

.effortlessly_txt span {
    font-size: 14px;
    font-weight: 400;
    color: #2463EB;
}

.effortlessly_card p {
    font-size: 16px;
    font-weight: 400;
    color: #8A8AA8;
}

.raise_request h4 {
    font-size: 36px;
    font-weight: 700;
    color: #4A4A4A;
}

.raise_request h6 {
    font-size: 24px;
    font-weight: 600;
    color: #2F2F2F;
}

.raise_request p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    width: 80%;
    margin: 0 auto;
}

.bg_color_pup {
    background: rgba(248, 236, 255, 0.5);
}

.form_wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    max-width: 850px;
    margin: 40px auto;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.form_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form_radio_box {
    border: 1px solid rgba(189, 111, 249, .3);
    border-radius: 10px;
    padding: 12px 16px 12px 50px;
    margin-bottom: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    color: #4A4A4A;
    font-size: 16px;
    font-weight: 400;
}

.form_radio_box input[type="radio"] {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: 18px;
    height: 18px;
}

.form_radio_box label {
    margin: 0;
    display: block;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
}

.form_button {
    background: linear-gradient(to right, #755DFF 0%, #B465FF 100%);
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 20px;
    font-size: 16px;

    &:hover {
        background: linear-gradient(to right, #B465FF 0%, #755DFF 100%);
    }
}

.form_input,
.form_textarea {
    border-radius: 10px;
    border: 1px solid #e6d9fc;
    padding: 10px 15px;
    background-color: #fff;
    color: #D7CECE;
    font-size: 16px;
}

.form_textarea {
    background: rgba(36, 99, 235, 0.08);
    border: 1px solid rgba(36, 99, 235, 0.25);
}

.form_input::placeholder {
    color: #D7CECE;
    font-size: 16px;
}

.form_note {
    font-size: 14px;
    color: #4A4A4A;
    margin-top: 5px;
}

.feature_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.section_label {
    font-weight: 500;
    margin: 18px 0 10px;
    font-size: 16px;
}

.trusted-section {
    text-align: center;
    padding: 30px 20px;
}

.trusted-section h2 {
    background: linear-gradient(to right, #755DFF 0%, #B465FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 28px;
}

.trusted-section p {
    color: #4b5563;
    font-size: 16px;
    margin-bottom: 40px;
}

.info-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.info-value {
    font-size: 36px;
    font-weight: 600;
    background: linear-gradient(to right, #755DFF 0%, #B465FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-title {
    font-weight: 500;
    margin: 5px 0;
    color: #000000;
    font-size: 24px;
}

.info-desc {
    font-size: 14px;
    color: #6b7280;
}
.footer_bg_color{
    background: linear-gradient(to right, #755DFF 0%, #B465FF 100%);
    color: #fff;
}
.footer_menu li a{
    color: #fff;
}
.footer_menu li{
    padding: 8px;
}
 .footer_title h6{
    font-size: 20px;
    font-weight: 600;
    padding-top: 20px;
 }
 .footer_contact_icon{
    padding-right: 10px;
    margin: 8px;
 }
 .all_rights{
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    border-top: 1px solid rgba(255,255,225,0.1);
    padding: 10px 0;
 }
/* ------------------------------------------- Ena Supported Platforms ------------------------------------------- */
/* ======================================== End Home Page ======================================== */
/* ======================================== Start Amazon Page ======================================== */
.banner_txt{
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner_txt .banner_btn{
    padding: 5px 10px ;
    background: linear-gradient(to right, #755DFF 0%, #B465FF 50%);
    width: 60%;
    opacity: .5;
    color: #fff;
    border-radius: 30px;
}
.banner_txt h4 {
    background: linear-gradient(to right, #755DFF 0%, #B465FF 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 60px;
    font-weight: 700;
}

.banner_txt span {
    font-size: 60px;
    font-weight: 700;
    color: #4A4A4A;
    /* padding-left: 10px; */
}
.banner_txt .start_cropping{
    padding: 15px 10px;
    background: linear-gradient(to right, #755DFF 10%, #B465FF 60%);
    color: #fff;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 500;
}
.banner_txt p {
    font-size: 18px;
    font-weight: 400;
    color: #8A8AA8;
}
.lightning_fast{
    display: flex;
    /* justify-content: center; */
    align-items: center;
}
.lightning_fast div{
    padding-left: 10px;
}
.lightning_fast h5{
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}
.lightning_fast p{
    font-size: 14px;
    margin: 0;
}
.main_wrapper {
      max-width: 1080px;
      margin: 40px auto;
    }
    .logo_box {
        display: flex;
        justify-content: center;
        align-items: center;
      text-align: center;
      margin-bottom: 30px;
    }
    .logo_box img{
        width: 135px;
        height: 135px;
    }
    .logo_box h2 {
      font-size: 40px;
      font-weight: 500;
      margin-top: 10px;
      margin-bottom: 5px;
    font-family: "Roboto", sans-serif;
    }
    .logo_box small {
      color: #34425B;
      font-size: 20px;
    font-family: "Roboto", sans-serif;
      font-weight: 400;
    }
    .card_custom {
      background: #fff;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
      height: 100%;
    }
    .card_custom h5{
        font-size: 24px;
        font-weight: 500;
        font-family: "Roboto", sans-serif;
    }
    .card_custom p{
        font-size: 16px;
        font-weight: 400;
        color: #494949;
        font-family: "roboto",sans-serif;
    }
    .note_box {
      background-color: #e8f4fc;
      padding: 12px 15px;
      font-size: 14px;
      color: #000000;
      border-radius: 6px;
      margin-bottom: 15px;
    }
    .checkmark {
      color: #22c55e;
      font-weight: bold;
    }
    .select_file_box {
      border: 2px dashed #ccc;
      padding: 50px 20px;
      text-align: center;
      border-radius: 12px;
      margin-bottom: 20px;
      color: #666;
    }
    .btn_gradient {
      background: linear-gradient(to right, #a678f1, #8053ff);
      border: none;
      padding: 12px;
      color: white;
      font-weight: 500;
      border-radius: 8px;
      width: 100%;
    }
    .form_label_custom {
      font-weight: 600;
      margin-bottom: 5px;
      display: block;
        font-family: "Roboto",sans-serif;

    }
/* ======================================== End Amazon Page ======================================== */
/* ======================================== Start Privacy Policy Page ======================================== */
.Privacy h4{
    font-size: 32px;
    font-weight: 500;
    font-family: "Roboto",sans-serif;

}
.Privacy h5{
    font-size: 20px;
    color: #4A4A4A;
    font-weight: 600;
    padding: 10px 0;
}
.Privacy p , .Privacy ul li{
    font-size: 16px;
    font-weight: 400;
    color: #4A4A4A;
    margin: 0;
}
/* ======================================== End Privacy Policy Page ======================================== */
/* ======================================== Start Contact Page ======================================== */
.contact_section {
      padding: 50px 20px;
    }

    .contact_container {
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 1100px;
      margin: 0 auto;
      gap: 40px;
      flex-wrap: wrap;
    }

    .contact_left, .contact_right {
      flex: 1 1 100%;
    }

    @media (min-width: 768px) {
      .contact_left, .contact_right {
        flex: 1;
      }
    }

    .contact_left {
      text-align: center;
    }

    .contact_image {
      max-width: 100%;
      height: auto;
    }

    .contact_right {
      background-color: #ffffff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    }

    .contact_form {
      display: flex;
      flex-direction: column;
    }

    .contact_form label {
      font-size: 14px;
      margin-bottom: 5px;
      color: #333;
      font-weight: 500;
    }

    .contact_form .input_field {
      width: 100%;
      padding: 12px 16px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
    }

    .input_row {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    @media (min-width: 600px) {
      .input_row {
        flex-direction: row;
      }
    }

    .input_row .input_field {
      flex: 1;
      margin-bottom: 20px;
    }

    .submit_btn {
      background: linear-gradient(to right, #7f5eff, #8f2fff);
      color: white;
      padding: 12px 0;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      font-size: 14px;
      width: 150px;
      align-self: flex-start;
    }
    .get_in_touch {
         background: linear-gradient(to right, #755DFF 0%, #B465FF 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }
/* ======================================== End Contact Page ======================================== */
/* ======================================== Start All Blog Page ======================================== */
.blog_banner{
     background: linear-gradient(to right, #755DFF 0%, #B465FF 50%);
     height: 300px;
    display: flex;
     justify-content: center;
     align-items: center;
}
.blog_banner_txt h2{
    margin: auto 0;
    text-align: center;
    font-size: 63px;
    color: #fff;
    font-weight: 600;
}
.blog_card{
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 22px;
}
.blog_card_img img{
    width: 100%;
}
.blog_txt{
    padding: 10px;
}
.blog_card span{
    color: #333349;
}
.blog_txt p{
    color: #64647C;
}
/* ======================================== End All Blog Page ======================================== */
/* ======================================== Start Blog Detail Page ======================================== */
.blog_details{
    max-width: 946px;
    margin: auto;
}
.blog_details_txt h4{
    font-size: 30px;
    color: #333349;
    margin: 10px 0;
}
.blog_details_txt h5{
    font-size: 24px;
    font-weight: 500;
    color: #333349;
    

}
.blog_details_txt p, .blog_details_txt ul li{
    font-size: 14px;
    color: #333349;
    font-weight: 400;
}
.blog_details_txt ul .txt_bold{
    font-weight: 700;
    font-size: 14px;
    color: #333349;

}
.blog_details_txt .txt_bold{
     font-weight: 700;
    font-size: 14px;
    color: #333349;
}
/* ======================================== End Blog Detail Page ======================================== */
