/* ===================================================== */
/* RESET */
/* ===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'DM Sans',Arial,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    width: 100%;
    background:#ffffff;
    overflow-x:hidden;
}



/* ===================================================== */
/* NAVBAR */
/* ===================================================== */

.navbar{

    width:95%;

    margin:0 auto;

    background:white;

    padding:15px 40px;

    border-radius:50px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

    position:absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    z-index:1000;
}

.logo img{
    width:130px;
}

.nav-links{

    display:flex;

    gap:40px;

    list-style:none;
}

.nav-links a{

    text-decoration:none;

    color:#222;

    font-weight:600;

    transition:0.3s;
}

.nav-links a:hover{
    color:#2563eb;
}

.contact-btn{

    background:#2563eb;

    color:white;

    padding:12px 28px;

    border-radius:30px;

    text-decoration:none;

    font-weight:600;

    transition:0.3s;
}

.contact-btn:hover{

    transform:translateY(-3px);
    background:#3b82f6;
}



/* ===================================================== */
/* HERO SECTION */
/* ===================================================== */

.hero{

    min-height:100vh;

 
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    padding-top: 220px;

    background: linear-gradient(135deg, #135995, #2F89FC);
    position:relative;

    overflow:hidden;
}

.hero::before{

    content:'';

    position:absolute;

    inset:0;

    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,0.04) 1px,transparent 1px);

    background-size:60px 60px;

    pointer-events:none;
}

.hero::after{

    content:'';

    position:absolute;

    top:-120px;
    right:-80px;

    width:600px;
    height:600px;

    background:radial-gradient(circle,rgba(37,99,235,0.35) 0%,transparent 70%);

    pointer-events:none;
}

.hero-content{

    text-align:center;

    position:relative;

    z-index:1;
}

.hero-content h1{

    font-family:'Syne',sans-serif;

    font-size:clamp(38px,6vw,72px);

    line-height:1.15;

    margin-bottom:30px;

    color:#ffffff;

    font-weight:800;

    letter-spacing:-0.02em;
}

.hero-content h1 span{
    background:linear-gradient(135deg,#ffffff,#3b82f6);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.hero-content p{

    font-size:20px;

    line-height:1.9;

    color:#ffffff;

    margin-bottom:30px;

    font-weight:300;

    opacity:0.9;
}

/* HERO BUTTONS */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-top:10px;

    flex-wrap:wrap;
}

/* LEARN MORE */

.learn-btn{

    background:#ffffff;

    color:#1d4ed8;

    text-decoration:none;

    padding:16px 38px;

    border-radius:40px;

    font-family:'Syne',sans-serif;

    font-size:16px;

    font-weight:700;

    transition:0.3s;

    box-shadow:0 8px 32px rgba(37,99,235,0.25);
}

.learn-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 40px rgba(255,255,255,0.15);
}

/* DOWNLOAD */

.download-btn{

    background:#ffffff;

    border:1px solid rgba(255,255,255,0.2);

    color:#1d4ed8;

    text-decoration:none;

    padding:16px 38px;

    border-radius:40px;

    font-family:'Syne',sans-serif;

    font-size:16px;

    font-weight:600;

    transition:0.3s;

    backdrop-filter:blur(8px);
}

.download-btn:hover{

    background:rgba(255,255,255,0.15);

    border-color:rgba(255,255,255,0.4);

    transform:translateY(-5px);
}

.dashboard-image{

    position:relative;

    z-index:1;
}

.dashboard-main-image { 
    position: relative;
    z-index: 1;
    width: 80%;
    height: 30%;
    max-height: 40vh;
    max-width: 80vw;
}

.dashboard-image {

    width:1150px;

    max-width:100%;

    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,0.4);

    border:1px solid rgba(255,255,255,0.1);
}



/* ===================================================== */
/* ABOUT SECTION */
/* ===================================================== */

.about-section{

    width:100vw;

    background:#f8fafc;

    padding:120px 8%;

    display:flex;
    justify-content:centre;
    align-items:flex-start;

    gap:60px;

    border-top:1px solid #e2e8f0;
    border-bottom:1px solid #e2e8f0;
    margin: 0;
    position: relative;
    z-index: 5;
}

.about-left{

    width:50%;

   /* display:flex;
    flex-direction:column;

    gap:16px;*/
}

.feature-card{

    background:white;

    padding:20px 24px;

    border-radius:14px;

    display:flex;
    align-items:center;

    gap:18px;

    box-shadow:0 1px 4px rgba(0,0,0,0.06);

    border:1px solid #e2e8f0;

    transition:0.25s;
}

.feature-card:hover{

    transform:translateY(-3px);

    border-color:rgba(37,99,235,0.3);

    box-shadow:0 6px 24px rgba(37,99,235,0.1);
}

.feature-card img{

    width:52px;
}

.feature-card span{

    font-family:'Syne',sans-serif;

    font-size:15px;

    font-weight:700;

    color:#0f172a;
}

.about-right{
    width:50%;
}

.about-right h2{

    font-family:'Syne',sans-serif;

    font-size:clamp(36px,4vw,56px);

    margin-bottom:24px;

    line-height:1.15;

    letter-spacing:-0.02em;

    color:#0f172a;
}

.about-right span{
    color:#2563eb;
}

.about-right p{

    font-size:16px;

    line-height:1.85;

    color:#64748b;

    margin-bottom:32px;
}

.read-more-btn{

    background:#2563eb;

    color:white;

    padding:13px 32px;

    border-radius:10px;

    text-decoration:none;

    font-family:'Syne',sans-serif;

    font-size:14px;

    font-weight:700;

    transition:0.3s;
}

.read-more-btn:hover{

    background:#3b82f6;

    transform:translateY(-3px);
}



/* ===================================================== */
/* SERVICE SECTION */
/* ===================================================== */

.service-section{

    width:100%;

    min-height:220vh;

    background: linear-gradient(135deg, #135995, #2F89FC);

    padding:120px 6%;
}

.service-card{

    background: #FFF4EE;

    border-radius: 30px;

    padding: 50px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    position: relative;

    overflow: hidden;

    margin-bottom: 40px;

}

.service-card::after{

    content:'';

    position:absolute;

    bottom:0;left:0;right:0;

    height:3px;

    background:linear-gradient(90deg,#3b82f6,#2563eb);

    transform:scaleX(0);

    transform-origin:left;

    transition:transform 0.3s;
}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 16px 48px rgba(37,99,235,0.2);
}

.service-card:hover::after{
    transform:scaleX(1);
}

.service-left{

    width: 55%;

}


.number-circle{

    width:40px;
    height:40px;

    background:#2563eb;

    color:white;

    border-radius:10px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:24px;

    font-family:'Syne',sans-serif;

    font-weight:700;

    font-size:14px;
}

.service-left h2{

    font-family:'Syne',sans-serif;

    font-size:clamp(28px,3vw,48px);

    margin-bottom:20px;

    line-height:1.2;

    color:#0f172a;

    font-weight:800;

    letter-spacing:-0.02em;
}

.service-left p{

    font-size:15px;

    line-height:1.8;

    color:#64748b;
}

service-right{

    width: 35%;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    justify-content: space-between;

    height: 100%;

}
.service-right img{

    width: 280px;

    border-radius: 20px;

}

/* ===================================================== */
/* VIEW MORE BUTTON */
/* ===================================================== */

.info-card{

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-height: 260px;

}



.card-footer{

    width: 100%;

    display: flex;

    justify-content: flex-end;

    margin-top: 25px;

}
.view-more-btn{

    background: white;

    color: #2F89FC;

    padding: 12px 24px;

    border-radius: 14px;

    font-size: 15px;

    font-weight: 600;
    text-decoration: none !important;

}


.view-text{

    background: white;

    color: #2F89FC;

    padding: 10px 22px;

    border-radius: 12px;

    font-size: 14px;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    gap: 6px;
    text-decoration: none !important;
}

/* ===================================================== */
/* SHOWCASE SECTION */
/* ===================================================== */

.showcase-section{

    width:100%;

    min-height:120vh;

    padding:140px 8%;

    background:#f8fafc;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;
}

.showcase-section::before{

    content:"";

    width:500px;
    height:500px;

    background:#dbeafe;

    border-radius:50%;

    position:absolute;

    top:-150px;
    right:-150px;

    filter:blur(80px);

    z-index:0;
}

.showcase-content{

    max-width:950px;

    margin-bottom:80px;

    position:relative;

    z-index:2;
}

.showcase-content h2{

    font-family:'Syne',sans-serif;

    font-size:clamp(36px,5vw,72px);

    margin-bottom:28px;

    line-height:1.15;

    color:#0f172a;

    font-weight:800;

    letter-spacing:-0.02em;
}

.showcase-content span{
    color:#2563eb;
}

.showcase-content p{

    font-size:18px;

    line-height:2;

    color:#64748b;
}

.showcase-image{

    width:100%;

    display:flex;
    justify-content:center;

    position:relative;

    z-index:2;
}

.showcase-image img{

    width:1200px;

    max-width:100%;

    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,0.1);

    border:1px solid #e2e8f0;

    transition:0.4s;
}

.showcase-image img:hover{

    transform:translateY(-10px);

    box-shadow:0 32px 80px rgba(37,99,235,0.15);
}



/* ===================================================== */
/* PROCESS SECTION */
/* ===================================================== */

.process-section{

    width:100%;

    /*padding:140px 8%;*/

    background:#ffffff;

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    text-align:left;
}

.process-top{
    width: 100%;
    max-width: 1100px;
    margin: auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    gap: 22px;
    padding: 40px 20px;
}

.process-top h2{
    font-size: 38px;
    font-weight: 700;
    color: #2457ff;
}

.process-top h3{
    font-size: 42px;
    line-height: 1.5;
    font-weight: 400;
    color: #111;

    max-width: 1000px;
}

.process-top h3 span{
    color: #2457ff;
    font-weight: 700;
}

.process-top p{
    font-size: 24px;
    line-height: 1.9;
    color: #444;

    max-width: 950px;
}

.process-image-box{

    width:100%;

    background:#f8fafc;

    padding:40px;

    border-radius:20px;

    border:1px solid #e2e8f0;

    box-shadow:0 4px 20px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.process-image-box img{

    width:100%;

    border-radius:14px;
}

a:-webkit-any-link {
  text-decoration: none;
}

/* ===================================================== */
/* CONTACT SECTION */
/* ===================================================== */

.contact-section{

    width:100%;

    padding:140px 8%;

    background:#f8fafc;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:80px;

    position:relative;
    z-index: 1;
}

.contact-left{

    width:50%;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 60px;
}

.contact-left h2{

    font-family:'Syne',sans-serif;

    font-size:clamp(36px,4vw,60px);

    margin-bottom:40px;

    color:#0f172a;

    font-weight:800;

    letter-spacing:-0.02em;
}

.contact-left h2 span{

    color:#2563eb;
}

.contact-info{

    margin-bottom:36px;
}

.contact-info h3{

    font-size:13px;

    font-weight:600;

    letter-spacing:0.08em;

    text-transform:uppercase;

    color:#94a3b8;

    margin-bottom:8px;
}

.contact-info p{

    font-family:'Syne',sans-serif;

    font-size:20px;

    line-height:1.6;

    color:#0f172a;

    font-weight:600;
}

.contact-right{

    width:50%;

    position:relative;

    display:flex;
    justify-content:center;
}

.contact-right::before{

    content:"";

    width:220px;
    height:220px;

    background:#2563eb;

    border-radius:24px;

    position:absolute;

    top:-30px;
    right:-30px;

    z-index:0;

    opacity:0.15;
}

.contact-form{

    width:100%;

    background:white;

    padding:44px;

    border-radius:20px;

    box-shadow:0 8px 32px rgba(0,0,0,0.08);

    border:1px solid #e2e8f0;

    position:relative;

    z-index:2;
}

.input-row{

    display:flex;

    gap:20px;

    margin-bottom:20px;
}

.input-box{

    width:100%;

    display:flex;
    flex-direction:column;
}

.input-box label{

    font-size:13px;

    font-weight:600;

    margin-bottom:8px;

    color:#0f172a;

    letter-spacing:0.02em;
}

.input-box input,
.input-box textarea{

    width:100%;

    padding:14px 16px;

    border:1px solid #e2e8f0;

    border-radius:10px;

    outline:none;

    font-size:15px;

    color:#0f172a;

    transition:0.3s;

    background:#f8fafc;
}

.input-box input:focus,
.input-box textarea:focus{

    border-color:#2563eb;

    background:#ffffff;

    box-shadow:0 0 0 3px rgba(37,99,235,0.08);
}

.input-box textarea{

    height:140px;

    resize:none;
}

.checkbox-row{

    display:flex;
    align-items:center;

    gap:12px;

    margin:24px 0;
}

.checkbox-row p{

    font-size:14px;

    color:#64748b;
}

.contact-form button{

    background:#2563eb;

    color:white;

    border:none;

    padding:14px 36px;

    border-radius:10px;

    font-family:'Syne',sans-serif;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:0.3s;
}

.contact-form button:hover{

    background:#3b82f6;

    transform:translateY(-2px);
}



/* ===================================================== */
/* FOOTER */
/* ===================================================== */

.footer{

    width:100%;

    background: linear-gradient(135deg, #135995, #2F89FC);

    padding:70px 8%;

    display:flex;
    justify-content:space-between;

    flex-wrap:wrap;

    gap:50px;

    border-top:1px solid rgba(255,255,255,0.06);
}

.footer-left img{

    width:150px;

    margin-bottom:20px;
}

.footer-left p{

    color: #ffffff;

    font-size:15px;

    line-height:1.8;

    max-width:280px;
}

.footer-center,
.footer-right{

    display:flex;
    flex-direction:column; 

    gap:12px;
}

.footer h3{

    font-family:'Syne',sans-serif;

    color:white;

    font-size:16px;

    font-weight:700;

    letter-spacing:0.04em;

    margin-bottom:8px;
}

.footer a{

    color:#ffffff;

    text-decoration:none;

    font-size:15px;

    transition:0.2s;
}

.footer a:hover{

    color:#ffffff;
}



/* ===================================================== */
/* READMORE PAGE */
/* ===================================================== */

.cards-page{

    width:100%;

    min-height:100vh;

    padding:120px 8%;

    background:linear-gradient(135deg,#135995,#2F89FC);
}

.cards-page h1{

    font-family:'Syne',sans-serif;

    text-align:center;

    font-size:clamp(36px,5vw,64px);

    color:#ffffff;

    margin-bottom:64px;

    font-weight:800;

    letter-spacing:-0.02em;
}

.info-card-link{
    text-decoration:none;
}

.info-card{

    width:100%;

    background:white;

    padding:40px 48px;

    border-radius:18px;

    margin-bottom:24px;

    box-shadow:0 2px 8px rgba(0,0,0,0.06);

    border:1px solid #e2e8f0;

    transition:0.25s;
}

.info-card:hover{

    transform:translateY(-4px);

    box-shadow:0 8px 32px rgba(37,99,235,0.12);

    border-color:rgba(37,99,235,0.2);
}

.info-card img{

    width:60px;

    margin-bottom:20px;
}

.info-card h2{

    font-family:'Syne',sans-serif;

    font-size:clamp(22px,3vw,36px);

    color:#0f172a;

    margin-bottom:16px;

    font-weight:700;

    letter-spacing:-0.01em;
}

.info-card p{

    font-size:15px;

    line-height:1.85;

    color:#64748b;
}



/* ===================================================== */
/* DETAIL PAGES */
/* ===================================================== */

.details-page{

    width:100%;

    padding:0;

    background:#ffffff;

    overflow-x:hidden;
}

.details-page::before{
    display:none;
}

.details-container{

    width:100%;

    max-width:100%;

    margin:0;

    background:transparent;

    backdrop-filter:none;

    padding:80px 8%;

    border-radius:0;

    box-shadow:none;

    position:relative;

    z-index:2;
}

.details-container img{

    width:64px;

    margin-bottom:24px;
}

.details-container h1{

    font-family:'Syne',sans-serif;

    font-size:clamp(32px,5vw,60px);

    line-height:1.15;

    color:#0f172a;

    margin-bottom:40px;

    font-weight:800;

    letter-spacing:-0.02em;
}



/* ===================================================== */
/* SEO CONTENT */
/* ===================================================== */

.seo-content{
    margin-top:24px;
}

.intro-text{

    font-size:16px;

    line-height:1.85;

    color:#64748b;

    margin-bottom:48px;

    max-width:900px;
}



/* ===================================================== */
/* SEO BOX */
/* ===================================================== */

.seo-box{

    background:#ffffff;

    padding:2rem;

    border-radius:14px;

    margin-bottom:16px;

    border:1px solid rgba(0,0,0,0.07);

    border-bottom:3px solid #2563eb;

    box-shadow:0 2px 8px rgba(0,0,0,0.05);

    transition:0.25s;
}

.seo-box:hover{

    transform:translateY(-4px);

    box-shadow:0 8px 32px rgba(37,99,235,0.15);

    border-color:rgba(37,99,235,0.35);
}

.seo-box h2{

    font-family:'Syne',sans-serif;

    font-size:18px;

    color:#0f172a;

    margin-bottom:10px;

    font-weight:700;

    letter-spacing:-0.01em;
}

.seo-box p{

    font-size:14px;

    line-height:1.75;

    color:#64748b;

    margin-bottom:0;
}



/* ===================================================== */
/* FEATURE GRID */
/* ===================================================== */

.feature-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:16px;

    margin-bottom:40px;
}

.feature-item{

    background:#ffffff;

    padding:1.5rem;

    border-radius:14px;

    box-shadow:0 1px 4px rgba(0,0,0,0.06);

    transition:0.25s;

    border:1px solid rgba(0,0,0,0.07);

    position:relative;

    overflow:hidden;
}

.feature-item::after{

    content:'';

    position:absolute;

    bottom:0;left:0;right:0;

    height:3px;

    background:linear-gradient(90deg,#3b82f6,#2563eb);

    transform:scaleX(0);

    transform-origin:left;

    transition:transform 0.3s;
}

.feature-item:hover{

    transform:translateY(-4px);

    box-shadow:0 8px 32px rgba(37,99,235,0.15);

    border-color:rgba(37,99,235,0.2);
}

.feature-item:hover::after{
    transform:scaleX(1);
}

.feature-item h3{

    font-family:'Syne',sans-serif;

    font-size:15px;

    color:#0f172a;

    margin-bottom:8px;

    font-weight:700;
}

.feature-item p{

    font-size:13px;

    line-height:1.7;

    color:#64748b;
}



/* ===================================================== */
/* BENEFITS SECTION */
/* ===================================================== */

.benefits-section{

    background: linear-gradient(135deg, #135995, #2F89FC);

    padding:3rem;

    border-radius:20px;

    margin-top:2rem;

    box-shadow:0 8px 32px rgba(37,99,235,0.25);

    position:relative;

    overflow:hidden;
}

.benefits-section::before{

    content:'';

    position:absolute;

    inset:0;

    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);

    background-size:40px 40px;

    pointer-events:none;
}

.benefits-section h2{

    font-family:'Syne',sans-serif;

    color:white;

    font-size:clamp(20px,3vw,28px);

    margin-bottom:1.5rem;

    font-weight:800;

    letter-spacing:-0.02em;

    position:relative;

    z-index:1;
}

.benefits-section ul{

    padding-left:0;

    list-style:none;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:12px;

    position:relative;

    z-index:1;
}

.benefits-section li{

    font-size:14px;

    line-height:1.5;

    margin-bottom:0;

    padding:0.85rem 1rem;

    background:rgba(255,255,255,0.07);

    border:1px solid rgba(255,255,255,0.1);

    border-radius:10px;

    display:flex;

    align-items:center;

    gap:10px;

    color:rgba(255,255,255,0.85);

    font-weight:500;
}

.benefits-section li::before{

    content:'✓';

    color:#10b981;

    font-weight:700;

    flex-shrink:0;

    font-size:14px;
}



/* ===================================================== */
/* ENTERPRISE CTA */
/* ===================================================== */

.enterprise-cta{

    width:100%;

    padding:5rem 8%;

    margin-top:2rem;

    border-radius:20px;

    text-align:center;

    background:linear-gradient(135deg,#163060,#0a1628);

    color:white;

    box-shadow:0 8px 32px rgba(37,99,235,0.25);

    position:relative;

    overflow:hidden;
}

.enterprise-cta::before{

    content:'';

    position:absolute;

    inset:0;

    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,0.04) 1px,transparent 1px);

    background-size:50px 50px;

    pointer-events:none;
}

.enterprise-cta::after{

    content:'';

    position:absolute;

    top:50%;left:50%;

    transform:translate(-50%,-50%);

    width:500px;height:300px;

    background:radial-gradient(ellipse,rgba(59,130,246,0.25) 0%,transparent 70%);

    pointer-events:none;
}

.enterprise-cta h2{

    font-family:'Syne',sans-serif;

    font-size:clamp(28px,4vw,52px);

    margin-bottom:16px;

    font-weight:800;

    letter-spacing:-0.02em;

    position:relative;

    z-index:1;
}

.enterprise-cta p{

    font-size:17px;

    margin-bottom:36px;

    line-height:1.8;

    color:#93c5fd;

    font-weight:300;

    position:relative;

    z-index:1;
}

.cta-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:white;

    color:#163060;

    padding:14px 36px;

    border-radius:12px;

    text-decoration:none;

    font-family:'Syne',sans-serif;

    font-size:15px;

    font-weight:700;

    transition:0.3s;

    box-shadow:0 8px 32px rgba(0,0,0,0.2);

    position:relative;

    z-index:1;
}

.cta-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 16px 48px rgba(0,0,0,0.25);
}



/* ===================================================== */
/* DOWNLOAD PAGE */
/* ===================================================== */

.download-page{

    width:100%;

    min-height:100vh;

    padding:120px 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:80px;

    background:#f8fafc;
}

.download-left{

    width:45%;
}

.download-title{

    display:flex;
    align-items:center;

    gap:20px;

    margin-bottom:28px;
}

.download-title img{

    width:64px;
}

.download-title h1{

    font-family:'Syne',sans-serif;

    font-size:clamp(32px,4vw,56px);

    color:#0f172a;

    font-weight:800;

    letter-spacing:-0.02em;
}

.download-title span{

    color:#2563eb;
}

.download-left p{

    font-size:17px;

    line-height:1.8;

    color:#64748b;

    margin-bottom:32px;
}

.download-file-btn{

    display:inline-block;

    background:#2563eb;

    color:white;

    text-decoration:none;

    padding:14px 36px;

    border-radius:12px;

    font-family:'Syne',sans-serif;

    font-size:15px;

    font-weight:700;

    margin-bottom:40px;

    transition:0.3s;
}

.download-file-btn:hover{

    background:#3b82f6;

    transform:translateY(-4px);
}

.download-features{

    list-style:none;
}

.download-features li{

    font-size:15px;

    color:#0f172a;

    margin-bottom:18px;

    position:relative;

    padding-left:32px;

    font-weight:500;
}

.download-features li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#2563eb;

    font-weight:bold;
}

.download-right{

    width:50%;

    display:flex;
    justify-content:center;
}

.download-right img{

    width:100%;

    max-width:700px;
}



/* ===================================================== */
/* MOBILE APP SECTION */
/* ===================================================== */

.mobile-app-section{

    width:100%;

    min-height:100vh;

    padding:120px 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:80px;

    background:#f8fafc;
}

.mobile-app-left{

    width:45%;
}

.mobile-app-left img{

    width:100%;
}

.mobile-app-right{

    width:50%;
}

.mobile-app-title{

    display:flex;
    align-items:center;

    gap:20px;

    margin-bottom:20px;
}

.mobile-app-title img{

    width:64px;
}

.mobile-app-title h1{

    font-family:'Syne',sans-serif;

    font-size:clamp(32px,4vw,56px);

    color:#0f172a;

    font-weight:800;

    letter-spacing:-0.02em;
}

.mobile-app-title span{

    color:#2563eb;
}

.mobile-app-right p{

    font-size:17px;

    color:#64748b;

    margin-bottom:32px;

    line-height:1.8;
}

.mobile-buttons{

    display:flex;

    gap:16px;

    margin-bottom:48px;

    flex-wrap:wrap;
}

.mobile-download-btn{

    background:#2563eb;

    color:white;

    text-decoration:none;

    padding:13px 28px;

    border-radius:12px;

    font-family:'Syne',sans-serif;

    font-size:15px;

    font-weight:700;

    transition:0.3s;
}

.mobile-download-btn:hover{

    background:#3b82f6;

    transform:translateY(-4px);
}

.windows-download-btn{

    border:1px solid #2563eb;

    color:#2563eb;

    text-decoration:none;

    padding:13px 28px;

    border-radius:12px;

    font-family:'Syne',sans-serif;

    font-size:15px;

    font-weight:700;

    transition:0.3s;
}

.windows-download-btn:hover{

    background:#2563eb;

    color:white;

    transform:translateY(-4px);
}

.mobile-features{

    list-style:none;
}

.mobile-features li{

    font-size:15px;

    color:#0f172a;

    margin-bottom:18px;

    position:relative;

    padding-left:32px;

    font-weight:500;
}

.mobile-features li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#2563eb;

    font-weight:bold;
}



/* ===================================================== */
/* MOBILE RESPONSIVE */
/* ===================================================== */

@media (max-width:900px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:16px;
    }

    .about-section{
        flex-direction:column;
    }

    .about-left,
    .about-right{
        width:100%;
    }

    .feature-card span{
        font-size:14px;
    }

    .about-right h2{
        font-size:36px;
    }

    .about-right p{
        font-size:15px;
    }

    .service-card{
        flex-direction:column;
        height:auto;
        gap:40px;
    }

    .service-left,
    .service-right{
        width:100%;
    }

    .service-left h2{
        font-size:28px;
    }

    .service-left p{
        font-size:15px;
    }

    .service-right img{
        width:100%;
    }

    .showcase-content h2{
        font-size:32px;
    }

    .showcase-content p{
        font-size:16px;
    }

    .process-top h3{
        font-size:12px;
    }

    .process-top h2{
        font-size:28px;
    }

    .process-top h4{
        font-size:16px;
    }

    .process-top p{
        font-size:15px;
    }

    .process-image-box{
        padding:16px;
    }

    .cards-page{
        padding:80px 6%;
    }

    .cards-page h1{
        font-size:32px;
    }

    .info-card{
        padding:28px;
    }

    .info-card h2{
        font-size:24px;
    }

    .info-card p{
        font-size:15px;
    }

    .details-page{
        padding:0;
    }

    .details-container{
        padding:60px 6%;
    }

    .details-container h1{
        font-size:32px;
    }

    .intro-text{
        font-size:15px;
    }

    .seo-box{
        padding:1.25rem;
    }

    .seo-box h2{
        font-size:16px;
    }

    .seo-box p{
        font-size:13px;
    }

    .feature-item{
        padding:1.25rem;
    }

    .feature-item h3{
        font-size:14px;
    }

    .feature-item p{
        font-size:13px;
    }

    .benefits-section{
        padding:2rem;
    }

    .benefits-section ul{
        grid-template-columns:1fr;
    }

    .benefits-section h2{
        font-size:20px;
    }

    .benefits-section li{
        font-size:13px;
    }

    .contact-section{
        flex-direction:column;
    }

    .contact-left,
    .contact-right{
        width:100%;
    }

    .contact-left h2{
        font-size:32px;
    }

    .enterprise-cta{
        padding:3rem 6%;
    }

    .enterprise-cta h2{
        font-size:28px;
    }

    .enterprise-cta p{
        font-size:15px;
    }

    .download-page{
        flex-direction:column;
        padding:80px 6%;
    }

    .download-left,
    .download-right{
        width:100%;
    }

    .download-title h1{
        font-size:32px;
    }

    .download-left p{
        font-size:15px;
    }

    .mobile-app-section{
        flex-direction:column;
        padding:80px 6%;
    }

    .mobile-app-left,
    .mobile-app-right{
        width:100%;
    }

    .mobile-app-title h1{
        font-size:32px;
    }

    .mobile-app-right p{
        font-size:15px;
    }
}

/* SLIDER CSS STARTS HERE */
/* ===================================================== */
/* NEW 3 IMAGE CAROUSEL */
/* ===================================================== */

/* ===================================================== */
/* SLIDER CSS */
/* ===================================================== */

.slider-container{

    width:100%;

    height: 650px;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;
    position: relative;
    margin-top:  80px;
    margin-bottom: 120px;
    margin-top: -60px;
    z-index: 10;
}

.slider-track{

    width:1000px;

    height:500px;

    position:relative;
    gap: 40px;
}

.slider-track img{

    position:absolute;

    top:50%;
    transform:translate(-50%);

    border-radius:25px;

    transition:1s ease;
    padding:20px;
    width: 500px;
    height: 650px;
    object-fit: contain;
    transition: o.5s;
 
}



/* LEFT */

#left-img{

    left:0;

    width: 320px;

    opacity:0.7;

    transform:translateY(-50%) scale(0.85);

    z-index:1;
}



/* CENTER */

#center-img{

    left:50%;

    width:450px;

    opacity:1;

    transform:translate(-50%,-50%);

    z-index:3;
}



/* RIGHT */

#right-img{

    right:0;

    width: 360px;

    opacity:0.7;

    transform:translateY(-50%) scale(0.85);

    z-index:1;
}
/* MOBILE NAVBAR FIX */

@media screen and (max-width:768px){

    .navbar{

        padding:15px 20px;

        border-radius:25px;

        flex-wrap:wrap;

        justify-content:center;

        gap:15px;
    }

    .logo img{
        width:180px;
    }

    .nav-links{

        display:flex;

        flex-wrap:wrap;

        justify-content:center;

        align-items:center;

        gap:12px;
    }

    .nav-links a{

        font-size:14px;
    }

    .contact-btn{

        padding:10px 16px;

        font-size:14px;
    }

}
/* CURRENT CLIENTS SECTION */

.clients-section{

    width:100%;

    padding:60px 20px;

    background:#f3f5f9;
    text-align: center;
}

.clients-section h2{

    text-align:center;
    font-family: 'Poppins', sans-serif;

    font-size:40px;

    font-weight:700;

    color:#111;

    margin-bottom:45px;
}

.clients-slider{

    display:flex;

    justify-content: center;

    gap:20px;
    flex-wrap:wrap;
}

.client-card{

    

    background:#ffffff;

    border-radius:14px;

    padding:18px 35px;

    font-size:20px;

    font-weight:600;

    color:#111;

    box-shadow:0 6px 18px rgba(0,0,0,0.06);

    transition:0.3s ease;
    justify-content: center;
    align-items: center;
}

.client-card:hover{

    transform:translateY(-5px);
}
.client-card img{
    width:80px;
    height: 80px;
    object-fit: contain;
}