:root {
    --primary-slate-blue : #0E2038;
    --secondary-slate-blue : #233B5D;
    --primary-white : #ffffff;
    --primary-light-blue : #409FEB;
    --general-slate-blue : #254F99;
    --primary-orange: #FB430B;

    --primary-dark:#000;
    --primary-gray:#A5A7AA;
    --secondary-gray:#E9E9E9;
    --secondary-text:#A3B5C1;
  }
@font-face {
    font-family: 'Urbanist';
    src: url('../fonts/Urbanist-VariableFont_wght.ttf') format('truetype');
}
@font-face {
    font-family: 'Urbanist Medium';
    src: url('../fonts/static/Urbanist-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Urbanist Bold';
    src: url('../fonts/static/Urbanist-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Urbanist Regular';
    src: url('../fonts/static/Urbanist-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Urbanist Semi-Bold';
    src: url('../fonts/static/Urbanist-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Urbanist Light-20';
    src: url('../fonts/static/Urbanist-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Urbanist Light-12';
    src: url('../fonts/static/Urbanist-Light.ttf') format('truetype');
    font-size: 12px;
}
.fc-dark{
    color: var(--primary-dark) !important;
}
.fc-gray{
    color: var(--primary-gray) !important;
}
.fc-light-gray{
    color: var(--secondary-text) !important;
}
.fc-white{
    color: var(--primary-white) !important;
}

.bgc-primary-slate-blue{
    background-color: var(--primary-slate-blue);
}
.bgc-secondary-slate-blue{
    background-color: var(--secondary-slate-blue);
}
.bgc-primary-white{
    background-color: var(--primary-white);
}
.bgc-primary-light-blue{
    background-color: var(--primary-light-blue);
}
.bgc-general-slate-blue{
    background-color: var(--general-slate-blue);
}
.bgc-primary-orange{
    background-color: var(--primary-orange);
}
.bgc-primary-dark{
    background-color: var(--primary-dark);
}
.bgc-primary-gray{
    background-color: var(--primary-gray);
}
.bgc-secondary-gray{
    background-color: var(--secondary-gray);
}

.ff_medium{
    font-family:'Urbanist Medium',sans-serif,sans-serif;
}
.ff_bold{
    font-family: 'Urbanist Bold',sans-serif,sans-serif;
}
.ff_semi_bold{
    font-family: 'Urbanist Semi-Bold',sans-serif;
}
.ff_regular{
    font-family: 'Urbanist Regular',sans-serif;
}
.ff_light_20{
    font-family: 'Urbanist Light-20',sans-serif;
}
.ff_light_12{
    font-family: 'Urbanist Light-12',sans-serif;
}

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Urbanist',sans-serif;
    background-color: var(--primary-slate-blue);
    height: 100%;
    min-height: 100vh;
}
#ui-view{
    padding-top: 100px;
}

#ui-view section{
    padding: 22px 44px;
    background-image: url("../assets/bg-mesh.svg");
    background-repeat: repeat-y;
    background-size:60%;
    background-position: -30% 110%;
    background-blend-mode: screen;
}

#ui-view > section:nth-of-type(1) {
    background-color: var(--primary-slate-blue);
}
section#industry{
    background-color: var(--secondary-slate-blue);
}
section#why-us,section#process{
    background-color: var(--primary-white) !important; 
}

.bg_glass {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 25px;
}

/* footer  */

#footer {
    padding: 22px 44px;
    background-color: var(--primary-slate-blue);
    color: var(--primary-white);
    font-family: 'Urbanist Light-20',sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
}

#footer a{
    color: var(--primary-white);
}
#footer a:hover{
    color: var(--primary-light-blue);
}

#footer .social-icons{
    height: 50px;
    border-radius: 50%;
}
#footer .social-icons:hover{
    box-shadow: 0px 0px 10px 5px var(--primary-light-blue);
}

#footer #footer-links{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#footer #footer-conpany-datail{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
}

#footer #footer-links .other-links, #footer #footer-links .social-links{
    display: flex;
    gap: 24px;
    align-items: center;
}
#footer .company-logo img{
    height: 41px;
}




#footer {
    padding:120px 44px 120px 44px;
    background-color: var(--primary-slate-blue);
    color: var(--primary-white);
    font-family: 'Urbanist Light-20',sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    position: relative;
}
#footer::before{
    content: " ";
    position: absolute;
    width: 60%;
    height: 1px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(to right,
     rgba(255, 255, 255, 0) 0%, 
    var(--primary-white) 50%, 
    rgba(255, 255, 255, 0) 100%);
    
}
#footer .footer-content{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
#footer a{
    color: var(--primary-white);
}
#footer a:hover{
    color: var(--primary-light-blue);
}

#footer .social-icons{
    height: 50px;
    border-radius: 50%;
    color: white !important;
    background-color: white;
}
#footer .social-icons:hover{
    box-shadow: 0px 0px 10px 5px var(--primary-light-blue);
}

#footer #footer-links{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#footer #footer-conpany-datail{
    display: flex;
    align-items: center;
    gap: 32px;
    flex-direction: row;
    flex-wrap: nowrap;
}
#footer .social{
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .social-links{
    width: max-content;
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 35px;
    background-color: #b9dfff23;
    backdrop-filter: blur(3px);
}
#footer .company-logo img{
    height: 41px;
}
#footer .other-links{
    display: flex;
    gap: 24px;
}
#footer-conpany-datail,#footer-conpany-datail a{
    color: rgb(141, 141, 141);
}

/* divider  */

.divider{
    width: 2px;
    margin: 0 10px;
    height: 100%;
    border-radius:10%;
    background: linear-gradient(to bottom,
     rgba(255, 255, 255, 0) 0%, 
    var(--primary-white) 50%, 
    rgba(255, 255, 255, 0) 100%);
    display: none;
}



/* video  */
.star {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,0,255,1) 0%, rgba(0,0,255,0) 80%);
}

#custom-modal{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: 10001;
    background-color:#a3b5c15d;
    backdrop-filter:blur(5px);
    top: 0;
    left: 0;
    cursor: pointer;
}


/* request demo  */
.request_demo{
    height: max-content;
    padding: 15px 5px;
    border-radius: 15px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.55);
    box-sizing: border-box;
    margin-top: -10%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width:50%;
}

.request_demo input,.request_demo textarea {
    background-color: var(--primary-slate-blue);
    border-radius: 12px;
    padding:12px;
    border: none;
    color: var(--primary-white);
}
.request_demo textarea{
    min-height: 300px;
}
.request_demo input::placeholder,.request_demo textarea::placeholder{
    color: var(--primary-white);
    text-transform: capitalize;
}

.request_demo input#message_submit{
    background-color: var(--primary-white)  !important;
    color: var(--primary-dark) !important;
    cursor: pointer;
}

.request_demo input, .request_demo textarea ,#looking_for{
    background-color: var(--primary-slate-blue);
    border-radius: 12px;
    padding: 12px;
    border: none;
    color: var(--primary-white);
    transition: background-color 0.3s ease, color 0.3s ease;
}
label[for="looking_for"]{
    font-size: inherit;
    margin-top: 6px;
    padding-left: 12px;
    font-weight: bold;
}

.request_demo input, .request_demo textarea,#looking_for{
    background-color: var(--primary-slate-blue) !important;
    border-radius: 12px;
    padding: 12px;
    border: none;
    color: var(--primary-white);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Force background color for autofill */
.request_demo input:-webkit-autofill,
.request_demo textarea:-webkit-autofill {
    background-color: var(--primary-slate-blue) !important;
    -webkit-box-shadow: 0 0 0px 1000px var(--primary-slate-blue) inset !important;
    box-shadow: 0 0 0px 1000px var(--primary-slate-blue) inset !important;
    -webkit-text-fill-color: var(--primary-white) !important;
    color: var(--primary-white) !important;
}

/* Ensure consistency when focus, hover, and active */
.request_demo input:-webkit-autofill:focus,
.request_demo textarea:-webkit-autofill:focus,
.request_demo input:-webkit-autofill:hover,
.request_demo textarea:-webkit-autofill:hover,
.request_demo input:-webkit-autofill:active,
.request_demo textarea:-webkit-autofill:active {
    background-color: var(--primary-slate-blue) !important;
    -webkit-box-shadow: 0 0 0px 1000px var(--primary-slate-blue) inset !important;
    box-shadow: 0 0 0px 1000px var(--primary-slate-blue) inset !important;
    -webkit-text-fill-color: var(--primary-white) !important;
}

.close-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    color: #a4a4a4;
    font-size:55px !important;
    line-height: 12px;
    font-weight: normal;
}
.close-btn:hover{
    color:red;
}

@media  screen and  (min-width :1499.98px) {}
@media  screen and  (min-width :1200px) and (max-width:1499.98px){}
@media  screen and  (min-width :992px) and (max-width:1199.98px) {
    #ui-view{
        padding-top: 110px;
    }
}
@media  screen and  (min-width :768px) and (max-width:991.98px) {
    #ui-view{
        padding-top: 80px;
    }
}
@media  screen and  (min-width :576px) and (max-width:767.98px) {
    #ui-view{
        padding-top: 60px;
    }
    #footer {
        font-size: 14px;
        line-height: 16px;
    }
    #footer .social-icons{
        height: 18px;
    }
    #footer #footer-links .other-links, #footer #footer-links .social-links{
        gap: 12px;
    }
    .request_demo{
        width: 90%;
    }
}
@media screen and (min-width:300px )and (max-width:575.98px) {
    /* footer  */
    #footer {
        padding: 12px 32px;
        font-weight: 400;
        font-size: 8px;
        line-height: 10px;
    }
    #footer .social-icons{
        height: 24px;
    }
    #footer #footer-links .other-links, #footer #footer-links .social-links{
        gap: 6px;
    }
    #ui-view{
        padding-top: 60px;
    }
    #footer .company-logo img{
        height: 17px;
    }
    #ui-view section{
        padding: 22px 22px;
    }
    .request_demo{
        width: 90%;
    }
    #footer .social-links{
        padding:6px 12px;
        gap: 18px;
    }
    .close-btn{
        font-size: 24px !important;
    }
   

}
@media screen and (max-width:299.98px) {
    /* footer  */
    #footer {
        padding: 12px 32px;
        font-weight: 400;
        font-size: 10px;
        line-height: 12px;
    }
    #footer .social-links{
        padding: 3px 6px;
    }
    #footer .social-icons{
        height: 32px;
    }
    #footer #footer-links .other-links, #footer #footer-links .social-links{
        gap: 6px;
    }
    #ui-view{
        padding-top: 60px;
    }
    #footer .company-logo img{
        height: 27px;
    }
    .request_demo{
        width: 100%;
    }
}

.popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    min-width: 200px;
    text-align: center;
    z-index: 10002;
}

/* Success Message */
.popup.success {
    background-color: #28a745;
}

/* Error Message */
.popup.error {
    background-color: #dc3545;
}

/* Show the popup */
.popup.show {
    opacity: 1;
    visibility: visible;
}

.form-success {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 29px;
    font-family: 'Urbanist';
}

.form-success h2 {
    color: #28a745;
}

.form-success p {
    font-size: 16px;
    color: #333;
    font-size: 18px;
}
.iti--show-selected-dial-code .iti__selected-flag{
    background-color: white !important;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
#message_phone{
    width: 100%;
}
.animate {
    opacity: 0;
    transform: translateY(50px); /* Start position (bottom) */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Direction-based Animations */
.animate[data-direction="up"] { transform: translateY(50px); }
.animate[data-direction="down"] { transform: translateY(-50px); }
.animate[data-direction="left"] { transform: translateX(-50px); }
.animate[data-direction="right"] { transform: translateX(50px); }

/* When the element becomes visible, animate it */
.animate.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

