   /* GLOBAL */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            background: #f8fafc;
            color: #0f172a;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

    
		
		.section{
			max-width:1200px;
			margin:auto;
			padding:80px 20px;
			}

			.section-title{
			text-align:center;
			font-size:34px;
			margin-bottom:10px;
			color:#0284c7;
			}

			.section-desc{
			text-align:center;
			color:#64748b;
			max-width:700px;
			margin:auto;
			margin-bottom:40px;
			}

			.grid{
			display:grid;
			grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
			gap:25px;
			}

		
		

        /* FADE IN ANIMATION */
        .fade {
            opacity: 0;
            transform: translateY(40px);
            transition: all .8s ease;
        }

        .fade.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* TOPBAR */
        .topbar {
            background: #8d8d8b;
            color: white;
            font-size: 16px;
            padding: 8px 20px;
        }

        .topbar-inner {
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* HEADER & NAV */
        .header {
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-inner {
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
        }

        .logo {
            font-size: 22px;
            font-weight: 700;
            color: #0284c7;
        }

        /*
		.nav-menu {
            display: flex;
            align-items: center;
        }

        .nav-menu a {
            margin-left: 25px;
            color: #334155;
            font-weight: 500;
            text-decoration: none;
            transition: .3s;
        }

        .nav-menu a:hover {
            color: #0284c7;
        }
		*/
		
		.nav-menu a{
    margin-left:10px;
    padding:8px 16px;
    border-radius:10px;
    color:#334155;
    font-weight:500;
    text-decoration:none;
    transition:all .3s ease;
}

/* Hover */

.nav-menu a:hover{
    background:#e0f2fe;
    color:#0284c7;
}

/* Active Menu */

.nav-menu a.active{
    background:#0284c7;
    color:white;
}


@media (max-width:768px){

.nav-menu a{
    margin:8px 0;
    width:100%;
    padding:12px;
    border-radius:8px;
}

.nav-menu a:hover{
    background:#f1f5f9;
}

.nav-menu a.active{
    background:#0284c7;
    color:white;
}

}

		
		

        /* Hamburger Menu Icon */
        .menu-toggle {
            display: none;
            font-size: 26px;
            cursor: pointer;
            color: #0f172a;
            z-index: 1100; /* Ensure it's above the mobile nav */
            transition: 0.3s;
        }

        /* HERO SECTION */
        .hero {
            background: linear-gradient(135deg, #e0f2fe, #ffffff);
            padding: 100px 20px;
        }

        .hero-inner {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero h1 {
            font-size: 46px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .btn {
            padding: 14px 26px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            margin-right: 10px;
            transition: .3s;
            display: inline-block;
        }

        .primary {
            background: #0284c7;
            color: white;
        }

        .secondary {
            border: 1px solid #0284c7;
            color: #0284c7;
        }

       

        /* FOOTER */
        .footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 60px 20px;
        }

        .footer-grid {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            font-size: 13px;
        }

        /* --- RESPONSIVE STYLES --- */

        @media (max-width: 992px) {
            .hero h1 { font-size: 36px; }
            .hero-inner { grid-template-columns: 1fr; text-align: center; }
            .hero-inner img { margin: auto; }
        }

        @media (max-width: 768px) {
            .menu-toggle { 
                display: block; 
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%; 
                height: 100vh;
                width: 280px;
                background: white;
                flex-direction: column;
                justify-content: center;
                padding: 40px;
                transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -10px 0 30px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu a {
                margin: 20px 0;
                font-size: 20px;
                width: 100%;
                text-align: center;
            }

            .topbar-inner {
                flex-direction: column;
                gap: 5px;
                text-align: center;
            }

            .counter-grid {
                flex-direction: column;
                gap: 40px;
            }
        }
		
		
/* ABOUT */

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:12px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.about-content p{
margin-bottom:15px;
color:#475569;
}


/* CARD */

.card{
background:white;
padding:25px;
border-radius:10px;
border:1px solid #e5e7eb;
transition:.3s;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.icon{
font-size:28px;
color:#0284c7;
margin-bottom:10px;
}


/* PRODUCT MOCKUP */

.product-mock{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.product-mock img{
width:100%;
border-radius:10px;
box-shadow:0 25px 50px rgba(0,0,0,.15);
}


.counter-section{
position:relative;
padding:100px 20px;
background:url("../images/counter-bg.jpg") center/cover no-repeat;
}

.counter-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(15,23,42,0.85);
}

.counter-container{
position:relative;
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
text-align:center;
}

.counter-box{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.15);
padding:30px 20px;
border-radius:12px;
backdrop-filter:blur(6px);
transition:0.3s;
}

.counter-box:hover{
transform:translateY(-6px);
background:rgba(255,255,255,0.1);
}

.counter-box i{
font-size:30px;
color:#38BDF8;
margin-bottom:15px;
}

.counter-box h2{
font-size:40px;
color:white;
margin-bottom:8px;
}

.counter-box p{
color:#CBD5F5;
font-size: 20px;
font-weight: 600;
}


/* FLOATING BUTTONS */

.demo-btn{
position:fixed;
right:20px;
bottom:100px;
background:#0284c7;
color:white;
padding:14px 18px;
border-radius:30px;
font-weight:600;
box-shadow:0 10px 20px rgba(0,0,0,.15);
z-index:999;
}

.whatsapp{
position:fixed;
right:20px;
bottom:40px;
background:#25D366;
color:white;
padding:14px;
border-radius:50%;
font-size:20px;
box-shadow:0 10px 20px rgba(0,0,0,.15);
}



/* INTEGRATION LOGOS */

.integrations{
background:#f1f5f9;
}

.integration-logos{
display:flex;
justify-content:center;
gap:60px;
flex-wrap:wrap;
margin-top:40px;
}

.integration-logos img{
height:45px;
opacity:.7;
transition:.3s;
}

.integration-logos img:hover{
opacity:1;
transform:scale(1.1);
}



/* FLOW */

.integration-flow{
display:flex;
align-items:center;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.flow-box{
background:#f1e3e3;
padding:20px;
border-radius:10px;
text-align:center;
width:160px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.flow-box img{
width:50px;
margin-bottom:10px;
}

.flow-arrow{
font-size:26px;
color:#0284c7;
}



.section-subtitle{
margin-bottom:2.5rem;
font-size:20px;
text-align:center;
color:#64748b;
}

.blog-card{
background:white;
border-radius:10px;
overflow:hidden;
border:1px solid #e5e7eb;
transition:0.3s;
}

.blog-card img{
width:100%;
height:200px;
object-fit:cover;
}

.blog-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.blog-content{
padding:18px;
}

.blog-meta{
font-size:13px;
color:#64748b;
margin-bottom:8px;
}

.blog-content h4{
margin:6px 0;
font-size:18px;
}

.blog-content p{
font-size:14px;
color:#475569;
margin-bottom:12px;
}

.blog-tags{
margin-bottom:14px;
}

.blog-tags span{
display:inline-block;
background:#F1F5F9;
color:#0369a1;
font-size:12px;
padding:5px 10px;
border-radius:20px;
margin-right:6px;
}

.blog-btn{
display:inline-block;
font-size:14px;
font-weight:600;
color:#00A1D9;
text-decoration:none;
}

.blog-btn:hover{
text-decoration:underline;
}

/* FOOTER */

.footer{
background:#0f172a;
color:#cbd5f5;
padding:70px 20px;
}

.footer-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:40px;
}

.footer h4{
color:white;
margin-bottom:10px;
}

.footer li{
list-style:none;
margin-bottom:8px;
}

.footer i{
margin-right:6px;
color:#38bdf8;
}

.footer-bottom{
text-align:center;
margin-top:30px;
font-size:13px;
}

.usecase-head{
text-align:center;
margin-bottom:10px;
font-size:18px;
}



.footer{
background:#0f172a;
color:#cbd5e1;
padding:70px 40px 30px;
}

.footer-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:40px;
}

.footer-logo{
width:160px;
margin-bottom:15px;
}

.footer-col h4{
color:white;
margin-bottom:15px;
font-size:16px;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:8px;
font-size:14px;
}

.footer-col ul li a{
color:#cbd5e1;
text-decoration:none;
}

.footer-col ul li a:hover{
color:white;
}

.footer-social a{
color:white;
margin-right:10px;
font-size:18px;
}

.footer-btn{
display:inline-block;
margin-top:10px;
padding:10px 18px;
background:#00A1D9;
color:white;
border-radius:6px;
text-decoration:none;
}

.footer-bottom{
border-top:1px solid #334155;
margin-top:40px;
padding-top:20px;
display:flex;
justify-content:space-between;
flex-wrap:wrap;
}

.footer-bottom-links a{
color:#94a3b8;
margin-left:15px;
text-decoration:none;
font-size:14px;
}

.footer-bottom-links a:hover{
color:white;
}


.cta-section{
margin-top:80px;
background:linear-gradient(135deg,#0f172a,#1e293b);
padding:70px 20px;
text-align:center;
color:white;
}

.cta-container{
max-width:900px;
margin:auto;
}

.cta-section h2{
font-size:32px;
margin-bottom:16px;
}

.cta-section p{
font-size:17px;
color:#cbd5e1;
max-width:700px;
margin:auto;
margin-bottom:30px;
}

.cta-buttons .btn{
margin:8px;
padding:12px 24px;
border-radius:8px;
font-weight:600;
text-decoration:none;
}

.cta-buttons .primary{
background:#00A1D9;
color:white;
}

.cta-buttons .secondary{
border:1px solid #00A1D9;
color:white;
}


/*MOTION GRAPHIC BELOW HERO*/

 .motion-visual {
    padding: 60px 20px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.motion-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Titles */
.section-title {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
    animation: fadeUp 1s ease forwards;
}

.section-subtitle {
    font-size: 20px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1.5s ease forwards;
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Slider container */
.motion-image-slider {
    position: relative;
    width: 740px;  /* match original image width */
    height: 450px; /* match original image height */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Slide styling */
.motion-image-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    animation: crossFade 16s infinite;
}

.motion-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills container nicely */
    transition: transform 1.2s ease;
}

/* Soft zoom and crossfade animation */
.motion-image-slide:nth-child(1) { animation-delay: 0s; }
.motion-image-slide:nth-child(2) { animation-delay: 4s; }
.motion-image-slide:nth-child(3) { animation-delay: 8s; }
.motion-image-slide:nth-child(4) { animation-delay: 12s; }

@keyframes crossFade {
    0% { opacity: 0; transform: scale(1); }
    5% { opacity: 1; transform: scale(1.02); }
    25% { opacity: 1; transform: scale(1.05); }
    30% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .motion-image-slider { width: 600px; height: 365px; }
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 18px; }
}

@media (max-width: 768px) {
    .motion-image-slider { width: 95%; height: auto; aspect-ratio: 740/450; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 16px; }
}



/* HERO */
.page-banner{
background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.7)),url('../images/page-banner1.png') center/cover;
padding:140px 20px;
color:#fff;
text-align:center;
}

/* LAYOUT */
.page-container{
display:grid;
grid-template-columns:3fr 1fr;
gap:50px;
padding:70px 6%;
}

/* CONTENT CARD */
.card-premium{
background:#fff;
border-radius:15px;
padding:30px;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

/* INTEGRATION CARDS */
.integration-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
margin-top:20px;
}
.integration-card{
background:#fff;
border-radius:15px;
padding:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
transition:0.4s;
opacity:0;
transform:translateY(30px);
animation:fadeUp 0.8s forwards;
}
.integration-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}
.integration-card img{
width:160px;
margin-bottom:10px;
}
.integration-card a{
display:inline-block;
margin-top:10px;
color:#0d6efd;
font-weight:600;
text-decoration:none;
}
.integration-card a:hover{
transform:translateX(5px);
}

/* SIDEBAR */
.sidebar{
background:#f9fbff;
border-radius:15px;
padding:25px;
}
.sidebar h4{
background:linear-gradient(135deg,#0d6efd,#6f42c1);
color:#fff;
padding:10px 15px;
border-radius:8px;
margin-bottom:15px;
}
.sidebar ul{
list-style:none;
padding:0;
}
.sidebar ul li{
margin-bottom:12px;
}
.sidebar ul li a{
text-decoration:none;
color:#333;
display:flex;
align-items:center;
gap:8px;
transition:0.3s;
}
.sidebar ul li a:hover{
color:#0d6efd;
transform:translateX(6px);
}

/* CTA */
.cta-box{
background:linear-gradient(135deg,#0f3266,#6f42c1);
color:#fff;
padding:60px;
text-align:center;
border-radius:15px;
margin-top:40px;
}

/* ANIMATION */
@keyframes fadeUp{
to{
opacity:1;
transform:translateY(0);
}
}

@media(max-width:991px){
.page-container{grid-template-columns:1fr;}
.integration-grid{grid-template-columns:1fr;}
}


.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eef2ff, #f9fbff);
    font-family: 'Segoe UI', sans-serif;
}

/* Layout */
.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Left */
.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info p {
    color: #000;
    margin-bottom: 20px;
	line-height: 1.8;
}

.contact-item {
    margin-bottom: 10px;
    font-size: 16px;
}

/* WhatsApp */
.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

/* Trust */
.trust-badges {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-badges span {
    background: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* FORM */
.contact-form {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Floating inputs */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    background: transparent;
}

.input-group label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #777;
    transition: 0.3s;
    background: #fff;
    padding: 0 5px;
}

/* Floating effect */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -8px;
    font-size: 12px;
    color: #007bff;
}

/* Button */
.contact-form button {
    width: 100%;
    padding: 14px;
    background: #007bff;
    border: none;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #0056b3;
}

/* Success */
.form-success {
    display: none;
    margin-top: 15px;
    color: green;
    font-size: 14px;
}

/* Map */
.map-container {
    margin-top: 50px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}


/* MODAL BACKGROUND */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* MODAL BOX */
.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  position: relative;
  animation: fadeIn 0.4s ease;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* FORM */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* ANIMATION */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}


/* PROFILE MODAL */
.profile-modal {
  max-width: 700px;
}

.profile-container {
  display: flex;
  gap: 20px;
  align-items: center;
}

.profile-container img {
  width: 200px;
  border-radius: 10px;
}

.profile-info h2 {
  margin-bottom: 10px;
}

.profile-info h4 {
  color: #666;
  margin-bottom: 10px;
}

/* MOBILE */
@media(max-width:768px){
  .profile-container {
    flex-direction: column;
    text-align: center;
  }

  .profile-container img {
    width: 150px;
  }
}