/*=========================
RESET
=========================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

a{

    text-decoration:none !important;

    color:inherit;

}

ul{

    list-style:none;

}

img{

    max-width:100%;

    display:block;

}

button{

    border:none;

    outline:none;

}

input{

    outline:none;

}

/*=========================
NAVBAR
=========================*/

/*=========================
INNER PAGE NAVBAR
=========================*/

#header.inner-page{

background:#fff;

box-shadow:0 10px 30px rgba(0,0,0,.08);

padding:12px 0;

}

#header.inner-page .nav-menu a{

color:#1e293b;

}

#header.inner-page .logo img{

height:56px;

}

#header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:9999;

padding:18px 0;

transition:.35s;

}

#header.sticky{

background:rgba(255,255,255,.92);

backdrop-filter:blur(18px);

box-shadow:0 10px 30px rgba(0,0,0,.08);

padding:12px 0;

}

.container{

width:min(92%,1400px);

margin:auto;

}

.navbar{

display:flex;

align-items:center;

justify-content:space-between;

}

.logo img{

height:58px;

}

.nav-menu{

display:flex;

gap:35px;

list-style:none;

}

.nav-menu a{

font-family:Poppins,sans-serif;

font-weight:500;

color:#1e293b;

transition:.3s;

position:relative;

}

.nav-menu a:hover,

.nav-menu a.active{

color:#0D6EFD;

}

.nav-menu a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:3px;

background:#0D6EFD;

transition:.3s;

border-radius:20px;

}

.nav-menu a:hover::after,
.nav-menu a.active::after{

width:100%;

}

.nav-right{

display:flex;

align-items:center;

gap:18px;

}

.phone-btn{

display:flex;

align-items:center;

gap:8px;

color:#0D6EFD;

font-weight:600;

}

.demo-btn-red {
    /* Stripe Style Red Gradient - Thoda bright */
    background: linear-gradient(135deg, #FF3333, #FF0055, #D4003C);
    background-size: 200% auto;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
    transition: 0.35s ease-in-out;
    
    /* Strong Red Initial Glow */
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
    
    /* Continuous Pulse + Light Shimmer Effect */
    animation: attentionPulseRed 2s infinite, backgroundShimmer 3s infinite linear;
}

.demo-btn-red:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(212, 0, 60, 0.6), 0 0 30px rgba(255, 100, 150, 0.5);
}

/* --- Smooth Red Pulse Animation --- */
@keyframes attentionPulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7), 0 0 15px rgba(255, 0, 85, 0.4);
    }
    70% {
        /* Wave phlegi bina color warning jaisa dikhe */
        box-shadow: 0 0 0 15px rgba(255, 0, 85, 0), 0 0 25px rgba(255, 100, 150, 0.6);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0), 0 0 15px rgba(255, 0, 85, 0.4);
    }
}

/* --- Slow Background Gradient Shift --- */
@keyframes backgroundShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.lang-btn{

background:#eef5ff;

border:none;

padding:10px 16px;

border-radius:40px;

cursor:pointer;

font-weight:600;

}

.language-dropdown{

position:relative;

}

.lang-menu{

position:absolute;

top:55px;

right:0;

background:#fff;

border-radius:16px;

list-style:none;

width:190px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

display:none;

overflow:hidden;

}

.language-dropdown:hover .lang-menu{

display:block;

}

.lang-menu li a{

display:block;

padding:14px 18px;

color:#333;

}

.lang-menu li a:hover{

background:#f6f8fb;

}

.mobile-toggle{

display:none;

background:none;

border:none;

font-size:28px;

cursor:pointer;

}

@media(max-width:1100px){

.nav-menu,

.phone-btn,

.language-dropdown,

.demo-btn{

display:none;

}

.mobile-toggle{

display:block;

}

}


/*=========================
HERO
=========================*/

.hero-section{

position:relative;

padding:170px 0 100px;

background:linear-gradient(135deg,#f7fbff,#edf5ff);

overflow:hidden;

}

.hero-wrapper{

display:grid;

grid-template-columns:1.1fr 1fr;

gap:70px;

align-items:center;

}

.hero-content h1{

font-size:68px;

line-height:1.1;

font-family:Poppins,sans-serif;

margin:25px 0;

color:#08152D;

}

.hero-content h1 span{

color:#0D6EFD;

}

.hero-content p{

font-size:18px;

line-height:1.9;

max-width:620px;

color:#5f6d7b;

margin-bottom:35px;

}

.hero-badge{

display:inline-flex;

gap:10px;

align-items:center;

padding:10px 22px;

border-radius:50px;

background:#e9f3ff;

color:#0D6EFD;

font-weight:600;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:50px;

}

.primary-btn{

padding:16px 34px;

border-radius:50px;

background:#0D6EFD;

color:#fff;

font-weight:600;

}

.secondary-btn{

padding:16px 34px;

border-radius:50px;

border:2px solid #0D6EFD;

color:#0D6EFD;

font-weight:600;

}

.hero-stats{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.hero-stats h2{

font-size:34px;

color:#0D6EFD;

}

.hero-image{

position:relative;

display:flex;

justify-content:center;

}

.phone-card{

width:470px;

height:560px;

background:white;

border-radius:40px;

display:flex;

justify-content:center;

align-items:center;

box-shadow:0 35px 70px rgba(0,0,0,.08);

}

.phone-card img{

width:90%;

animation:floatPhone 4s ease-in-out infinite;

}

.floating-card{

position:absolute;

background:white;

padding:16px 22px;

border-radius:18px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

font-weight:600;

display:flex;

gap:10px;

align-items:center;

}

.floating-card i{

color:#0D6EFD;

}

.card-1{

top:50px;

left:-10px;

}

.card-2{

bottom:150px;

right:-10px;

}

.card-3{

bottom:40px;

left:20px;

}

.hero-bg-circle{

position:absolute;

border-radius:50%;

filter:blur(90px);

opacity:.25;

}

.hero-circle-1{

width:350px;

height:350px;

background:#0D6EFD;

left:-120px;

top:-80px;

}

.hero-circle-2{

width:300px;

height:300px;

background:#6CC4FF;

right:-100px;

bottom:-80px;

}

@keyframes floatPhone{

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

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

}

@media(max-width:991px){

.hero-wrapper{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

}

.phone-card{

width:100%;

max-width:430px;

height:auto;

padding:30px;

}

.floating-card{

display:none;

}

.hero-content h1{

font-size:46px;

}

}

@media(max-width:576px){

.hero-content h1{

font-size:36px;

}

.hero-stats{

grid-template-columns:1fr 1fr;

}

.hero-buttons{

flex-direction:column;

}

}

.hero-image{

opacity:0;

transform:translateY(40px);

animation:heroFade 1s ease forwards;

animation-delay:.3s;

}

.hero-content{

opacity:0;

transform:translateY(30px);

animation:heroFade 1s ease forwards;

}

@keyframes heroFade{

to{

opacity:1;

transform:translateY(0);

}

}

/*=========================
TRUSTED SECTION
=========================*/

.trusted-section{

padding:100px 0;

background:#fff;

}

.section-heading{

max-width:760px;

margin:auto;

text-align:center;

margin-bottom:70px;

}

.section-heading span{

display:inline-block;

padding:10px 22px;

background:#eaf3ff;

border-radius:40px;

font-weight:600;

color:#0D6EFD;

margin-bottom:18px;

}

.section-heading h2{

font-size:46px;

margin-bottom:20px;

color:#08152D;

font-family:Poppins,sans-serif;

}

.section-heading p{

font-size:17px;

color:#667085;

line-height:1.8;

}

.trusted-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.trusted-card{

background:#fff;

padding:40px 30px;

border-radius:22px;

text-align:center;

transition:.4s;

border:1px solid #eef2f7;

}

.trusted-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.trusted-card .icon{

width:90px;

height:90px;

margin:auto;

background:linear-gradient(135deg,#0D6EFD,#49A3FF);

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:34px;

margin-bottom:25px;

}

.trusted-card h3{

font-size:24px;

margin-bottom:15px;

}

.trusted-card p{

color:#667085;

line-height:1.7;

}

@media(max-width:991px){

.trusted-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.trusted-grid{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:34px;

}

}

/*=========================
SOLUTIONS
=========================*/

.solutions-section{

padding:110px 0;

background:#f8fbff;

}

.solutions-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:60px;

}

.solution-card{

background:white;

padding:35px;

border-radius:25px;

box-shadow:0 15px 45px rgba(0,0,0,.06);

transition:.4s;

border:1px solid #edf1f7;

}

.solution-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(13,110,253,.12);

}

.solution-card img{

width:100%;

height:220px;

object-fit:contain;

margin-bottom:25px;

}

.solution-card h3{

font-size:26px;

margin-bottom:15px;

color:#08152D;

}

.solution-card p{

line-height:1.8;

color:#667085;

margin-bottom:25px;

}

.solution-card a{

display:inline-flex;

align-items:center;

gap:8px;

font-weight:600;

color:#0D6EFD;

}

.solution-card a:hover{

gap:14px;

}

@media(max-width:1100px){

.solutions-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.solutions-grid{

grid-template-columns:1fr;

}

}

/*==================================
WORK PROCESS
===================================*/

.work-process{

padding:120px 0;

background:#ffffff;

}

.process-wrapper{

display:flex;

justify-content:center;

align-items:center;

gap:25px;

margin-top:70px;

flex-wrap:wrap;

}

.process-card{

width:260px;

padding:40px 30px;

background:#fff;

border-radius:25px;

box-shadow:0 20px 45px rgba(0,0,0,.06);

text-align:center;

transition:.35s;

position:relative;

}

.process-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 60px rgba(13,110,253,.15);

}

.process-icon{

width:90px;

height:90px;

background:linear-gradient(135deg,#0D6EFD,#4DA3FF);

margin:auto;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:35px;

color:#fff;

margin-bottom:25px;

}

.process-card span{

display:block;

color:#0D6EFD;

font-weight:600;

margin-bottom:10px;

}

.process-card h3{

font-size:24px;

margin-bottom:15px;

color:#08152D;

}

.process-card p{

line-height:1.8;

color:#667085;

}

.process-arrow{

font-size:35px;

color:#0D6EFD;

}

@media(max-width:1200px){

.process-arrow{

display:none;

}

}

/*==================================
FEATURED PRODUCT
===================================*/

.featured-product{

padding:120px 0;

background:#f8fbff;

}

.featured-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.section-badge{

display:inline-block;

padding:10px 22px;

background:#eaf3ff;

border-radius:50px;

font-weight:600;

color:#0D6EFD;

margin-bottom:25px;

}

.featured-content h2{

font-size:52px;

line-height:1.2;

margin-bottom:25px;

}

.featured-content h2 span{

display:block;

color:#0D6EFD;

}

.featured-content p{

line-height:1.9;

color:#667085;

margin-bottom:35px;

font-size:18px;

}

.feature-list{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-bottom:40px;

}

.feature-item{

display:flex;

align-items:center;

gap:10px;

font-weight:500;

}

.feature-item i{

color:#0D6EFD;

}

.feature-buttons{

display:flex;

gap:18px;

}

.product-image-box{

background:white;

padding:40px;

border-radius:30px;

box-shadow:0 30px 70px rgba(0,0,0,.08);

display:flex;

justify-content:center;

align-items:center;

}

.product-image-box img{

width:100%;

max-width:420px;

transition:.5s;

}

.product-image-box:hover img{

transform:scale(1.08);

}

@media(max-width:991px){

.featured-wrapper{

grid-template-columns:1fr;

}

.feature-list{

grid-template-columns:1fr;

}

.featured-content{

text-align:center;

}

.feature-buttons{

justify-content:center;

}

}

/*==================================
INSTALLATION SHOWCASE
===================================*/

.installation-section{

padding:120px 0;

background:#fff;

}

.installation-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.install-card{

position:relative;

overflow:hidden;

border-radius:25px;

height:450px;

cursor:pointer;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.install-card img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.install-card:hover img{

transform:scale(1.08);

}

.install-overlay{

position:absolute;

left:0;

bottom:0;

width:100%;

padding:35px;

background:linear-gradient(transparent,rgba(0,0,0,.9));

color:white;

}

.install-overlay span{

display:inline-block;

padding:8px 18px;

background:rgba(255,255,255,.18);

backdrop-filter:blur(10px);

border-radius:30px;

margin-bottom:15px;

font-size:14px;

}

.install-overlay h3{

font-size:28px;

margin-bottom:18px;

}

.install-overlay a{

display:inline-flex;

align-items:center;

gap:10px;

color:white;

font-weight:600;

}

.install-overlay a:hover{

gap:16px;

}

@media(max-width:991px){

.installation-grid{

grid-template-columns:1fr;

}

.install-card{

height:380px;

}

}


/*==================================
STATS
===================================*/

.stats-section{

padding:120px 0;

background:linear-gradient(135deg,#08152D,#0D6EFD);

color:#fff;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-bottom:80px;

}

.stat-box{

text-align:center;

padding:40px;

border-radius:20px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(15px);

}

.stat-box h2{

font-size:55px;

margin-bottom:10px;

}

.stat-box span{

opacity:.9;

}

.cta-box{

max-width:850px;

margin:auto;

text-align:center;

}

.cta-box h2{

font-size:48px;

margin-bottom:20px;

}

.cta-box p{

font-size:18px;

line-height:1.8;

margin-bottom:35px;

opacity:.92;

}

@media(max-width:991px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.stats-grid{

grid-template-columns:1fr;

}

.cta-box h2{

font-size:34px;

}

}


/*==================================
FOOTER
===================================*/

.footer{

background:#08152D;

color:#fff;

padding:90px 0 25px;

position:relative;

overflow:hidden;

}

.footer::before{

content:"";

position:absolute;

width:350px;

height:350px;

background:rgba(13,110,253,.12);

border-radius:50%;

top:-180px;

right:-100px;

filter:blur(40px);

}

.footer::after{

content:"";

position:absolute;

width:250px;

height:250px;

background:rgba(77,163,255,.12);

border-radius:50%;

left:-80px;

bottom:-100px;

filter:blur(40px);

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.5fr;

gap:50px;

position:relative;

z-index:2;

}

.footer-logo{

width:220px;

margin-bottom:25px;

}

.footer p{

color:rgba(255,255,255,.75);

line-height:1.9;

font-size:15px;

}

.footer h3{

font-size:22px;

margin-bottom:25px;

color:#fff;

}

.footer ul{

list-style:none;

padding:0;

margin:0;

}

.footer ul li{

margin-bottom:15px;

}

.footer ul li a{

color:rgba(255,255,255,.75);

transition:.35s;

display:inline-block;

}

.footer ul li a:hover{

color:#4DA3FF;

transform:translateX(6px);

}

.footer-contact p{

display:flex;

align-items:center;

gap:12px;

margin-bottom:16px;

}

.footer-contact i{

width:40px;

height:40px;

background:rgba(255,255,255,.08);

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

color:#4DA3FF;

}

.footer-social{

display:flex;

gap:15px;

margin-top:30px;

}

.footer-social a{

width:45px;

height:45px;

display:flex;

justify-content:center;

align-items:center;

background:rgba(255,255,255,.08);

border-radius:50%;

color:#fff;

transition:.35s;

font-size:18px;

}

.footer-social a:hover{

background:#0D6EFD;

transform:translateY(-6px);

}

.footer hr{

border:none;

height:1px;

background:rgba(255,255,255,.1);

margin:60px 0 25px;

}

.copyright{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:15px;

color:rgba(255,255,255,.7);

font-size:14px;

position:relative;

z-index:2;

}

.footer-bottom-links{

display:flex;

gap:25px;

}

.footer-bottom-links a{

color:rgba(255,255,255,.7);

transition:.3s;

}

.footer-bottom-links a:hover{

color:#4DA3FF;

}

@media(max-width:992px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer{

text-align:center;

}

.footer-grid{

grid-template-columns:1fr;

}

.footer-contact p{

justify-content:center;

}

.footer-social{

justify-content:center;

}

.copyright{

flex-direction:column;

}

.footer-bottom-links{

justify-content:center;

flex-wrap:wrap;

}

}


/*==================================
FLOATING BUTTONS
===================================*/

.whatsapp-btn,
.call-btn,
#topBtn{

position:fixed;

right:25px;

width:60px;

height:60px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

color:#fff;

text-decoration:none;

box-shadow:0 15px 35px rgba(0,0,0,.18);

transition:.35s;

z-index:999;

}

.whatsapp-btn{

bottom:30px;

background:#25D366;

}

.call-btn{

bottom:105px;

background:#0D6EFD;

}

#topBtn{

bottom:180px;

background:#08152D;

border:none;

cursor:pointer;

opacity:0;

visibility:hidden;

}

#topBtn.show{

opacity:1;

visibility:visible;

}

.whatsapp-btn:hover,
.call-btn:hover,
#topBtn:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,.25);

}

.whatsapp-btn i{

animation:whatsappPulse 1.8s infinite;

}

@keyframes whatsappPulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.15);

}

100%{

transform:scale(1);

}

}

@media(max-width:768px){

.whatsapp-btn,
.call-btn,
#topBtn{

width:52px;

height:52px;

font-size:20px;

right:15px;

}

.whatsapp-btn{

bottom:20px;

}

.call-btn{

bottom:85px;

}

#topBtn{

bottom:150px;

}

}

/*==================================
DASHBOARD
===================================*/

.dashboard-section{

padding:130px 0;

background:#ffffff;

}

.dashboard-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.dashboard-content h2{

font-size:52px;

line-height:1.2;

margin:20px 0;

color:#08152D;

}

.dashboard-content p{

font-size:18px;

line-height:1.9;

color:#667085;

margin-bottom:40px;

}

.dashboard-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-bottom:40px;

}

.dashboard-item{

background:#f7fbff;

padding:18px 20px;

border-radius:16px;

display:flex;

align-items:center;

gap:15px;

font-weight:600;

transition:.35s;

}

.dashboard-item:hover{

transform:translateX(8px);

background:#0D6EFD;

color:#fff;

}

.dashboard-item:hover i{

color:#fff;

}

.dashboard-item i{

font-size:22px;

color:#0D6EFD;

}

.dashboard-image{

text-align:center;

}

.dashboard-image img{

width:100%;

max-width:650px;

border-radius:25px;

box-shadow:0 35px 70px rgba(0,0,0,.08);

transition:.5s;

}

.dashboard-image img:hover{

transform:translateY(-10px);

}

@media(max-width:992px){

.dashboard-wrapper{

grid-template-columns:1fr;

}

.dashboard-content{

text-align:center;

}

.dashboard-features{

grid-template-columns:1fr;

}

}


/*==================================
TESTIMONIALS
===================================*/

.testimonial-section{

padding:120px 0;

background:#f8fbff;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:60px;

}

.testimonial-card{

background:#fff;

padding:40px;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.06);

transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-12px);

box-shadow:0 35px 70px rgba(13,110,253,.12);

}

.stars{

font-size:22px;

color:#FFC107;

margin-bottom:25px;

}

.testimonial-card p{

line-height:1.9;

color:#667085;

margin-bottom:35px;

}

.client{

display:flex;

align-items:center;

gap:18px;

}

.client img{

width:65px;

height:65px;

border-radius:50%;

object-fit:cover;

}

.client h4{

margin-bottom:5px;

}

.client span{

color:#667085;

font-size:14px;

}

/*==================================
ABOUT HERO
===================================*/

.about-hero{

padding:170px 0 120px;

background:linear-gradient(135deg,#f8fbff,#edf5ff);

}

.about-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.about-content h1{

font-size:64px;

line-height:1.15;

margin:25px 0;

color:#08152D;

}

.about-content h1 span{

color:#0D6EFD;

}

.about-content p{

font-size:18px;

line-height:1.9;

color:#667085;

margin-bottom:35px;

}

.about-image img{

width:100%;

max-width:560px;

margin:auto;

display:block;

animation:floatPhone 5s ease-in-out infinite;

}

/*========================*/

.company-intro{

padding:120px 0;

background:#fff;

}

.intro-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.intro-image img{

width:100%;

border-radius:25px;

box-shadow:0 30px 60px rgba(0,0,0,.08);

}

.intro-content h2{

font-size:46px;

margin:20px 0;

}

.intro-content p{

line-height:1.9;

margin-bottom:35px;

color:#667085;

}

.intro-list{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.intro-list div{

display:flex;

align-items:center;

gap:10px;

font-weight:600;

}

.intro-list i{

color:#0D6EFD;

}

@media(max-width:992px){

.about-wrapper,

.intro-wrapper{

grid-template-columns:1fr;

}

.about-content,

.intro-content{

text-align:center;

}

.intro-list{

grid-template-columns:1fr;

}

}

@media(max-width:991px){

.testimonial-grid{

grid-template-columns:1fr;

}

}

/*==================================
WHY CHOOSE US
===================================*/

.why-section{

padding:130px 0;

background:#fff;

}

.why-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.why-image{

text-align:center;

}

.why-image img{

max-width:480px;

width:100%;

animation:floatPhone 5s ease-in-out infinite;

filter:drop-shadow(0 35px 70px rgba(0,0,0,.12));

}

.why-content h2{

font-size:48px;

margin:20px 0;

line-height:1.2;

color:#08152D;

}

.why-content>p{

font-size:17px;

line-height:1.9;

color:#667085;

margin-bottom:40px;

}

.why-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:22px;

}

.why-item{

display:flex;

gap:18px;

padding:22px;

background:#f8fbff;

border-radius:18px;

transition:.35s;

border:1px solid #eef4fb;

}

.why-item:hover{

background:#0D6EFD;

transform:translateY(-8px);

}

.why-item:hover i,

.why-item:hover h4,

.why-item:hover p{

color:#fff;

}

.why-item i{

font-size:28px;

color:#0D6EFD;

margin-top:4px;

transition:.35s;

}

.why-item h4{

margin-bottom:8px;

font-size:18px;

color:#08152D;

transition:.35s;

}

.why-item p{

font-size:14px;

line-height:1.7;

color:#667085;

transition:.35s;

margin:0;

}

@media(max-width:992px){

.why-wrapper{

grid-template-columns:1fr;

}

.why-content{

text-align:center;

}

.why-grid{

grid-template-columns:1fr;

}

}

/*==================================
TIMELINE
===================================*/

.timeline-section{

padding:120px 0;

background:linear-gradient(135deg,#08152D,#0D6EFD);

color:#fff;

}

.timeline{

max-width:900px;

margin:80px auto 0;

position:relative;

}

.timeline::before{

content:"";

position:absolute;

left:50%;

top:0;

transform:translateX(-50%);

width:4px;

height:100%;

background:rgba(255,255,255,.25);

}

.timeline-item{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:80px;

position:relative;

}

.timeline-item:nth-child(even){

flex-direction:row-reverse;

}

.timeline-year{

width:130px;

height:130px;

background:#fff;

color:#0D6EFD;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:30px;

font-weight:700;

box-shadow:0 20px 40px rgba(0,0,0,.25);

z-index:2;

}

.timeline-content{

width:42%;

background:rgba(255,255,255,.08);

backdrop-filter:blur(15px);

padding:35px;

border-radius:22px;

transition:.35s;

}

.timeline-content:hover{

background:rgba(255,255,255,.15);

transform:translateY(-8px);

}

.timeline-content h3{

font-size:28px;

margin-bottom:15px;

}

.timeline-content p{

line-height:1.9;

opacity:.9;

}

@media(max-width:991px){

.timeline::before{

left:40px;

}

.timeline-item,

.timeline-item:nth-child(even){

flex-direction:column;

align-items:flex-start;

padding-left:90px;

}

.timeline-year{

width:80px;

height:80px;

font-size:22px;

position:absolute;

left:0;

}

.timeline-content{

width:100%;

margin-top:20px;

}

}

/*==================================
CORE VALUES
===================================*/

.values-section{

padding:120px 0;

background:#f8fbff;

}

.values-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:70px;

}

.value-card{

background:#fff;

padding:45px 35px;

border-radius:24px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.06);

transition:.35s;

border:1px solid #eef2f7;

}

.value-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(13,110,253,.15);

}

.value-icon{

width:90px;

height:90px;

margin:auto;

background:linear-gradient(135deg,#0D6EFD,#49A3FF);

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

color:white;

margin-bottom:25px;

}

.value-card h3{

font-size:26px;

margin-bottom:15px;

color:#08152D;

}

.value-card p{

color:#667085;

line-height:1.8;

}

@media(max-width:992px){

.values-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.values-grid{

grid-template-columns:1fr;

}

}

/*==================================
ABOUT CTA
===================================*/

.about-cta{

padding:120px 0;

background:linear-gradient(135deg,#08152D,#0D6EFD);

}

.about-cta-box{

max-width:900px;

margin:auto;

text-align:center;

color:#fff;

}

.about-cta-box span{

display:inline-block;

padding:10px 22px;

background:rgba(255,255,255,.15);

border-radius:40px;

margin-bottom:20px;

}

.about-cta-box h2{

font-size:52px;

margin-bottom:25px;

line-height:1.2;

}

.about-cta-box p{

font-size:18px;

line-height:1.9;

opacity:.95;

margin-bottom:40px;

}

.about-cta .hero-buttons{

justify-content:center;

}

@media(max-width:768px){

.about-cta-box h2{

font-size:36px;

}

}

/*==================================
SOLUTIONS HERO
===================================*/

.solutions-hero{

padding:170px 0 120px;

background:linear-gradient(135deg,#f7fbff,#edf5ff);

}

.solutions-hero-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.solutions-content h1{

font-size:62px;

line-height:1.15;

margin:25px 0;

color:#08152D;

}

.solutions-content p{

font-size:18px;

line-height:1.9;

color:#667085;

margin-bottom:35px;

}

.solutions-image img{

width:100%;

max-width:600px;

display:block;

margin:auto;

animation:floatPhone 5s ease-in-out infinite;

}

/*==================================
SERVICE GRID
===================================*/

.solution-services{

padding:120px 0;

background:#fff;

}

.service-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:60px;

}

.service-card{

background:#fff;

padding:35px;

border-radius:24px;

box-shadow:0 20px 50px rgba(0,0,0,.06);

transition:.35s;

border:1px solid #edf2f7;

text-align:center;

}

.service-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 60px rgba(13,110,253,.12);

}

.service-card img{

width:100%;

height:200px;

object-fit:contain;

margin-bottom:25px;

}

.service-card h3{

font-size:24px;

margin-bottom:15px;

color:#08152D;

}

.service-card p{

line-height:1.8;

color:#667085;

}

@media(max-width:992px){

.solutions-hero-wrapper{

grid-template-columns:1fr;

text-align:center;

}

.service-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.service-grid{

grid-template-columns:1fr;

}

.solutions-content h1{

font-size:42px;

}

}

/*==================================
WORKFLOW
===================================*/

.solution-process{

padding:120px 0;

background:#f8fbff;

}

.process-flow{

display:flex;

justify-content:center;

align-items:center;

gap:25px;

margin-top:70px;

flex-wrap:wrap;

}

.flow-card{

width:320px;

background:white;

padding:35px;

border-radius:25px;

text-align:center;

position:relative;

box-shadow:0 20px 50px rgba(0,0,0,.06);

transition:.35s;

}

.flow-card:hover{

transform:translateY(-10px);

}

.flow-number{

position:absolute;

top:20px;

right:20px;

width:45px;

height:45px;

border-radius:50%;

background:#0D6EFD;

color:white;

display:flex;

justify-content:center;

align-items:center;

font-weight:700;

}

.flow-card img{

height:170px;

object-fit:contain;

margin:auto;

margin-bottom:25px;

}

.flow-card h3{

margin-bottom:15px;

}

.flow-card p{

line-height:1.8;

color:#667085;

}

.flow-arrow{

font-size:35px;

color:#0D6EFD;

}

/*==================================
WHY SOLUTION
===================================*/

.why-solution{

padding:120px 0;

background:white;

}

.why-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.why-left img{

width:100%;

border-radius:30px;

box-shadow:0 30px 70px rgba(0,0,0,.08);

}

.why-right h2{

font-size:48px;

margin:25px 0;

}

.why-right p{

line-height:1.9;

margin-bottom:35px;

color:#667085;

}

.benefit-list{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.benefit-list div{

display:flex;

gap:10px;

align-items:center;

padding:16px;

background:#f8fbff;

border-radius:14px;

}

.benefit-list i{

color:#0D6EFD;

}

@media(max-width:992px){

.why-wrapper{

grid-template-columns:1fr;

}

.benefit-list{

grid-template-columns:1fr;

}

.flow-arrow{

display:none;

}

}
/*==================================
INDUSTRIES
===================================*/

.industries-section{

padding:120px 0;

background:#f8fbff;

}

.industry-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.industry-card{

background:white;

padding:40px;

border-radius:25px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.06);

transition:.35s;

}

.industry-card:hover{

transform:translateY(-10px);

}

.industry-card i{

font-size:45px;

color:#0D6EFD;

margin-bottom:25px;

}

.industry-card h3{

margin-bottom:15px;

}

/*==================================
TABLE
===================================*/

.comparison-section{

padding:120px 0;

background:white;

}

.comparison-table{

overflow:auto;

margin-top:60px;

}

.comparison-table table{

width:100%;

border-collapse:collapse;

background:white;

border-radius:20px;

overflow:hidden;

box-shadow:0 20px 50px rgba(0,0,0,.06);

}

.comparison-table th{

background:#0D6EFD;

color:white;

padding:22px;

}

.comparison-table td{

padding:20px;

text-align:center;

border-bottom:1px solid #eef2f7;

}

.comparison-table tr:hover{

background:#f8fbff;

}

/*==================================
CTA
===================================*/

.solution-cta{

padding:120px 0;

background:linear-gradient(135deg,#08152D,#0D6EFD);

}

.cta-content{

max-width:850px;

margin:auto;

text-align:center;

color:white;

}

.cta-content h2{

font-size:52px;

margin-bottom:25px;

}

.cta-content p{

font-size:18px;

line-height:1.9;

margin-bottom:40px;

opacity:.9;

}

.cta-content .hero-buttons{

justify-content:center;

}

@media(max-width:992px){

.industry-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.industry-grid{

grid-template-columns:1fr;

}

.cta-content h2{

font-size:36px;

}

}