:root {
    --primary: #228be6;
    --secondary: #29394f;
    --accent: #25b4e7;
    --success: #30b561;
    --dark-footer: #102040;
    --glass-white: rgba(255,255,255,0.85);
    --glass-fallback: #f8fcff;
    --bg-light: #f7fbfe;
    --section-blue: #e0f3ff;
    --radius: 20px;
    --radius-sm: 11px;
    --shadow: 0 4px 25px rgba(34, 139, 230, 0.1), 0 1px 6px rgba(34, 139, 230, 0.08);
    --shadow-bold: 0 8px 40px rgba(34, 158, 255, 0.2);
    --section-gap: 4em;
    --transition: all 0.3s cubic-bezier(.47,1.22,.38,1.03);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    color: #203040;
    background: var(--bg-light);
    font-size: 1em;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 700;
    margin: 0 0 0.7em 0;
    color: #173263;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

section {
    padding: var(--section-gap) 1em;
}

section h2 {
    text-align: center;
    margin-bottom: 1.5em;
}

.glass {
    background: var(--glass-fallback);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@supports (backdrop-filter: blur(15px)) {
    .glass {
        background: var(--glass-white);
        backdrop-filter: blur(15px) saturate(120%);
    }
}

.btn {
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    font-weight: 700;
    border-radius: 50px;
    padding: .8em 2em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.4s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 139, 230, 0.3);
}

.btn:hover::before {
    left: 100%;
}

.primary-cta, .submit-btn, .guide-cta {
    background-image: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
}

.primary-cta::after {
    content: '';
    position: absolute;
    left: 36%;
    top: -18px;
    width: 62px;
    height: 62px;
    background: radial-gradient(circle at 65% 60%, var(--accent) 40%, transparent 60%);
    opacity: 0.15;
    filter: blur(6px);
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.primary-cta:hover::after {
    opacity: 0.22;
}

.sticky-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 2vw;
    min-height: 80px;
    border-radius: 0 0 var(--radius) var(--radius);
}

.logo {
    height: 90px;
    width: auto;
    transition: height 0.3s ease;
}

.hero-bg {
    background: linear-gradient(120deg, var(--section-blue) 80%, #cae6fe 100%);
    padding: 0;
}

.hero-main-container {
    max-width: 1700px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}

.hero-inner {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 520px;
    padding: 30px;
}

.hero-slider-area {
    flex: 0 0 60%;
    width: 60vw;
    min-width: 60vw;
    max-width: 60vw;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
   /* padding: 50px 0px 0px 30px;*/
}

.hero-form-area {
    flex: 0 0 40%;
    min-width: 340px;
    max-width: 480px;
    width: 40vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
}

.owl-carousel.hero-slider {
    width: 100%;
    min-height: 420px;
}


.slider-item {
    position: relative;
    width: 100%;
    min-height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-bold);
    background: #01314a;
    animation: fadeInSlider 0.65s cubic-bezier(.51,.13,.58,.87);
    isolation: isolate;
}

@keyframes fadeInSlider {
    from {opacity:0; transform:scale(0.96) translateY(60px);}
    to {opacity:1; transform:scale(1) translateY(0);}
}

.slide-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-content {
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    padding: 10px 10px 8px 10px;
    background: linear-gradient(60deg, rgba(0,0,0,.45) 60%, rgba(0,90,160,.14));
    z-index: 2;
    box-sizing: border-box;
}

.slider-content h1, .slider-content h2, .slider-content p {
    margin: 0;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0,0,0,0.7);
    text-align: left;
}

.slider-content h1, .slider-content h2 {
    font-family: 'Montserrat',sans-serif;
    font-size: 2rem;
    margin-bottom:.3em;
}

.slider-content p {
    font-size: 1.1rem;
    margin-top:.5em;
}

.owl-dot span { background: var(--accent); }
.owl-dot.active span { background: var(--primary); }
.owl-dots { position:absolute; left:50%; bottom:18px; transform:translateX(-50%); }

.hero-form {
    border-radius: 18px;
    box-shadow: 0 5px 30px 10px rgba(34, 180, 255, 0.08), 0 2px 8px rgba(23, 139, 250, 0.2);
    width: 100%;
    max-width: 380px;
    padding: 1.5em;
    margin: 0 auto;
    animation: formAppear 1s cubic-bezier(.37,.07,.44,.97);
}

@keyframes formAppear {
    from {opacity:0;transform:scale(.95) translateY(40px);}
    to{opacity:1; transform:none;}
}

.hero-form h2 { font-size:1.2em; text-align:center; color: #16396a; margin-bottom: 0.5em;}
.hero-form label { display:block; margin-top:0.8em; color:#2381ce; font-weight:600; }
.hero-form label span { color: red; }
.hero-form input, .hero-form textarea {
    width:100%; margin-top:.2em; margin-bottom:.5em; padding:.6em 1em;
    border-radius:10px; border: 1.4px solid #56c9ff; background:#f9fcfe;
    font-size:1em; transition:.16s; color: #183348;
}
.hero-form input:focus, .hero-form textarea:focus {
    border-color: var(--primary); outline: none; box-shadow: 0 0 5px var(--accent);
}
.hero-form textarea { resize: vertical; }

.btn.submit-btn {
    width: 100%; margin-top:.5em; font-size:1.1em;
    border-radius:50px; box-shadow: 0 1px 8px rgba(34, 158, 255, 0.1);
    background-image: linear-gradient(45deg, var(--primary), var(--accent));
}

.form-consultation-strip { margin-top:.6em; text-align: center; }
.form-consultation-strip p {
    background: #e5f7fa; color: #09699c; border-radius: 16px;
    font-size: .95em; font-weight: 600; padding: .4em 1em;
    display: inline-block; margin: 0;
}

.floating-chat-btn {
    background: linear-gradient(135deg,#25b4e7 70%,#047bf9 100%);
    color:#fff;
    border-radius:50%;
    box-shadow: 0 8px 30px #058fad33, 0 2px 10px #43b3ff12;
    border:none;
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2.0em;
    cursor: pointer;
    transition:.18s;
}

.floating-chat-btn:hover {
    background:linear-gradient(90deg,#1fa6c5,#071bcf);
}

.chat-popup-form {
    display: none;
    position: fixed;
    right: 24px;
    bottom: 95px;
    z-index: 2000;
    width: 345px;
    max-width:95vw;
    background: #fff;
    padding: 1em 1.1em .5em 1.1em;
    border-radius: 22px;
    box-shadow: 0 10px 30px #25b4e8bb, 0 2px 6px #25b4e743;
    animation: popupFlipIn .55s cubic-bezier(.54,-0.14,.39,1.12);
}

@keyframes popupFlipIn {
    from {opacity:0;transform:scale(.93) translateY(100px);}
    to{opacity:1;transform:none;}
}

.chat-popup-form.active {
    display:block;
}

.close-chat-btn {
    background: transparent;
    border: none;
    font-size: 1.4em;
    color: #188ecc;
    position: absolute;
    right: 12px;
    top: 8px;
    cursor: pointer;
}

.chat-popup-form h2 {
    text-align:center;
    color:#1c4d7a;
    margin-bottom: 0.4em;
}

.chat-popup-form input,
.chat-popup-form textarea {
    width:100%;
    padding:.5em 1em;
    border-radius:9px;
    border:1.2px solid #aee7fd;
    background:#f6fcff;
    margin-bottom:.5em;
    font-size:.8em;
    transition:.14s;
}

.chat-popup-form input:focus,
.chat-popup-form textarea:focus {
    border-color: #229de7;
    box-shadow: 0 0 4px #50b6fd7a;
}

.chat-popup-form label{
    margin:.5em 0 .1em 0;
    display: block;
    font-weight:600;
    color:#1483cb;
}

.chat-popup-form .form-consultation-strip{
    margin-top:.8em;
}

.chat-popup-form .btn.submit-btn{
    margin-top:.5em;
}

.sticky-ctas {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    z-index: 3000;
}

.sticky-cta.wa-btn {
    background: #25d366;
    width:54px;
    height:54px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2.05em;
    box-shadow: 0 4px 15px rgba(37,211,102,0.12);
    text-decoration: none;
    border:none;
    color:#fff;
    margin-top:0;
}

.sticky-cta.wa-btn:hover{
    background:#128c41;
}

.entrust-partner-section {
    background: #fff;
    padding: 2.5em 1em;
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) inset, 0 -10px 30px rgba(0,0,0,0.05) inset;
}

.partner-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
}

.partner-text {
    flex: 1 1 500px;
    font-size: 1.15em;
    color: var(--secondary);
    line-height: 1.7;
}

.partner-logo img {
    max-width: 200px;
    height: auto;
}

.about-company {
    max-width: 900px;
    margin: 1em auto;
    padding: 2.5em;
    text-align: center;
}

.about-logo-container {
    margin-bottom: 1.5em;
}

.about-forceid-logo {
    max-height: 60px;
}

.about-company h3 {
    margin-top: 2em;
    text-align: left;
    color: var(--primary);
}

.about-intro, .about-mission, .about-outro {
    font-size: 1.05em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1em auto;
    text-align: left;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 1.5em auto;
    text-align: left;
    max-width: 800px;
}

.offer-list li {
    font-size: 1.05em;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    gap: 15px;
}

.offer-list i {
    color: var(--primary);
    font-size: 1.5em;
    width: 30px;
    text-align: center;
}

.applications-grid {
    background: var(--bg-light);
}

.apps-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    justify-content: center;
}

.app-card {
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    width: 236px;
    padding: 1.5em 1em;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e5f4fc;
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: var(--shadow-bold);
}

.app-card .icon {
    font-size: 2.5em;
}

.app-card h3 {
    margin: .5em 0 .3em 0;
}

.app-card p {
    font-size: .99em;
    color: #367;
    font-weight: 400;
    min-height: 50px;
}

.product-highlights {
    background: var(--bg-light);
}

.product-carousel-container {
    position: relative;
    width: 100%;
    max-width: 970px;
    margin: 0 auto 1.2em auto;
    overflow: hidden;
}

.product-carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.product-carousel-item {
    background: var(--glass-white);
    padding: 2em;
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 2em;
}

.product-image {
    flex: 0 0 40%;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.product-desc {
    flex: 1 1 60%;
    text-align: left;
}

.product-desc h3 {
    font-size: 1.5em;
    margin-bottom:.5em;
    color: #27377a;
}

.product-desc ul {
    list-style: none;
    padding-left: 0;
    font-size:.98em;
    color:#379;
    margin:0 0 1.5em 0;
}

.product-desc li {
    margin-bottom: 0.5em;
    padding-left: 1.2em;
    position: relative;
}

.product-desc li::before {
    content: '✓';
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #d6ecfb;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    color: #228be6;
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--primary);
    color: #fff;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.faq-section {
    max-width: 910px;
    margin: 2em auto;
    padding: 2.5em;
}

.steps-accordion {
    margin-top: 1.08em;
}

.accordion-item {
    margin-bottom: 1em;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 2px 10px #2196f115;
}

.accordion-title {
    background: #e9f6ff;
    color: #206aba;
    font-weight: bold;
    font-size: 1.07em;
    padding: 1em 2em 1em 1.1em;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.accordion-title:hover {
    background: #d6ecfb;
}

.accordion-title::after {
    content: "+";
    position: absolute;
    right: 1.45em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.28em;
    color: #26b1e3;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-title::after {
    content: "-";
    transform: translateY(-50%) rotate(45deg);
}

.accordion-content {
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: all .33s ease-in-out;
    font-size: 1em;
    padding: 0 1.3em;
}

.accordion-content p {
    text-align: left;
}

.accordion-item.active .accordion-content {
    padding: 0.8em 1.3em;
}

.id-card-marquee {
    padding: var(--section-gap) 0;
    background: #fff;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: scroll 60s linear infinite;
}

.marquee-content img {
    height: 240px;
    width: auto;
    margin: 0 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-content img:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.footer {
    margin-top: var(--section-gap);
    background: var(--dark-footer);
    padding: 4em 1em 1.5em 1em;
    border-radius: var(--radius) var(--radius) 0 0;
    color: #fff;
}

.footer-main {
    max-width:1200px;
    margin:0 auto;
    display: flex;
    flex-wrap: wrap;
    gap:2em;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 1vw 2em 1vw;
}

.footer-column {
    padding: 0 15px;
}

.footer-logo-area {
    flex: 1 1 250px;
}

.footer-logo {
    max-width: 140px;
    margin-bottom: 1em;
}

.footer-about-short {
    font-size: 0.9em;
    color: #badefa;
    line-height: 1.5;
    margin-top: 1em;
    max-width: 250px;
}

.footer-social-icons {
    margin-top: 1.5em;
    display: flex;
    gap: 10px;
}

.footer-social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons .social-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}

.social-icon.facebook:hover {
    background: #3b5998;
}

.social-icon.linkedin:hover {
    background: #0077b5;
}

.social-icon.instagram:hover {
    background: #e4405f;
}

.footer-addresses {
    flex: 2 1 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
}

.address-block h4 {
    color: var(--accent);
    margin-bottom: 0.5em;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-block p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.6;
    color: #badefa;
}

.footer-contact-details {
    flex: 1 1 200px;
}

.footer-contact-details h4 {
    color: var(--accent);
    margin-bottom: 0.5em;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-details a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7fd7fd;
    text-decoration: none;
    margin-bottom: 0.8em;
    transition: color 0.2s ease;
}

.footer-contact-details a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    color: #badefa;
    margin-top: 2em;
    font-size: .95em;
    border-top: 1px solid #29394f;
    padding-top: 1.5em;
}

.footer-bottom a {
    color: #7fd7fd;
    text-decoration: none;
}


/* --- CORRECTED RESPONSIVE STYLES --- */

@media (max-width: 900px) {
    .owl-dots {
        bottom: 85px;
    }
}

@media (max-width: 900px) {
    /* Correct Hero Section Layout for Mobile */
    .hero-inner {
        flex-direction: column;
        gap: 0em;
        padding: 1.5em 1em;
        min-height: auto;
    }
    .hero-slider-area {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0;
}
    .hero-form-area {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .hero-form {
        margin-top: -85px;
        margin-bottom: 1.2em;
        max-width: 420px;
    }
   
    /* Other Mobile Adjustments */
    .logo {
        height: 80px;
    }
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 2.5em;
    }
    .footer-logo-area, .footer-contact-details, .footer-social-icons {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .footer-addresses {
        grid-template-columns: 1fr;
        text-align: center;
        width: 100%;
    }
    .product-carousel-item {
        flex-direction: column;
        text-align: center;
    }
    .product-desc {
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1, h2 {
        font-size: 1.8rem;
    }
    .logo {
        height: 70px;
    }
    .partner-container {
        text-align: center;
    }
    .about-company {
        padding: 2em 1.5em;
    }
    .about-company h3, .about-intro, .about-mission, .about-outro, .offer-list {
        text-align: center;
    }
    .offer-list li {
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .chat-popup-form {
        right: 2vw;
        left: 2vw;
        bottom: 90px;
    }
}

@media (max-width: 540px) {
    /* Hero Section adjustments for small phones */
    .slider-content h1, .slider-content h2 {
        font-size: 1.4rem;
    }
    .slider-content p {
        font-size: 0.95rem;
    }
    .slider-item {
        min-height: 300px;
    }
    .slide-bg-img {
        height: 100%;
        object-position: center 40%;
    }

    /* Other adjustments for small phones */
    .form-consultation-strip p {
        font-size:0.9em;
    }
    .logo {
        height: 60px;
    }
    .apps-card-grid {
        display: grid;
        grid-template-columns: 1fr;
    }
    .app-card {
        width: 100%;
        max-width: none;
    }
    .product-carousel-item {
        padding: 1.5em 1em;
    }
    .carousel-prev, .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }
    .footer-main {
        gap: 2em;
    }
}

