*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

    font-family:'Inter',sans-serif;

    overflow-x:hidden;

    width:100%;

    min-height:100vh;

    background:#ffffff;

}

html{

    scroll-behavior:smooth;

    overflow-x:hidden;

}

img{

    max-width:100%;

    height:auto;

    display:block;

}

video{

    max-width:100%;

    height:auto;

}

/* ================= NAVBAR ================= */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:80px;

    background:#ffffff;

    box-shadow:
    0 3px 15px rgba(0,0,0,.08);

    z-index:9999;

}

.container{

    width:min(92%,1320px);

    margin:auto;

    padding-inline:15px;

}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:80px;

    gap:20px;

}

.logo img{

    width:auto;

    height:55px;

    max-width:180px;

}

.nav-links{

    display:flex;

    align-items:center;

    list-style:none;

    gap:32px;

    flex-wrap:wrap;

}

.nav-links a{

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    color:#1e293b;

    white-space:nowrap;

    position:relative;

}

.nav-links a::after{

content:"";

position:absolute;

left:0;
bottom:-8px;

width:0;
height:3px;

background:#00bfff;

transition:.3s;

}

.nav-links a:hover::after,
.nav-links .active::after{

width:100%;

}

.nav-links a:hover{

color:#00bfff;

}

.quote-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border-radius:50px;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    color:#fff;

    white-space:nowrap;

    background:
    linear-gradient(
    135deg,
    #00c6ff,
    #6a11cb
    );

}

.menu-toggle{

    display:none;

    width:45px;

    height:45px;

    border:none;

    background:none;

    font-size:24px;

    cursor:pointer;

    color:#0f172a;

}

/* ================= HERO ================= */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    overflow:hidden;

    padding:120px 20px 100px;

}

.hero-video{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;

z-index:1;

}

.overlay{

position:absolute;

width:100%;
height:100%;

background:
rgba(0,0,0,.55);

z-index:2;

}

.hero-content{

    position:relative;

    z-index:3;

    width:100%;

    max-width:1100px;

    margin:auto;

    text-align:center;

    color:#fff;

}
.badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 28px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    color:#00d4ff;

    margin-bottom:35px;

    text-align:center;

}
.hero h1{
    font-size:clamp(3rem,8vw,6rem);

    font-weight:800;

    line-height:1.1;

    margin-bottom:20px;
}

.hero h1 span{

background:
linear-gradient(
135deg,
#00d4ff,
#7b61ff
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero p{
    font-size:clamp(1rem,2vw,1.75rem);

    line-height:1.6;

    max-width:900px;

    margin:auto;

    margin-bottom:40px;
}

.iso-badge{
    width:42px;
    height:42px;
    border:2.5px solid #14c8ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    transform: translateY(-4px);
    margin:0 auto 8px;
    flex-shrink:0;
}

.iso-badge::before{
    content:"";
    position:absolute;
    width:30px;
    height:30px;
    border:1.8px solid #14c8ff;
    border-radius:50%;
}

.iso-badge span{
    position:relative;
    z-index:2;
    font-size:11px;
    font-weight:800;
    color:#14c8ff;
    font-family:'Inter',sans-serif;
    letter-spacing:0.8px;
    line-height:1;
}

/* ================= BUTTONS ================= */

.hero-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:18px 36px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    color:#fff;

    transition:.35s;

    background:linear-gradient(
        135deg,
        #00d4ff,
        #7b61ff
    );

}
.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 36px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    color:#fff;

    border:1px solid rgba(255,255,255,.4);

    background:rgba(255,255,255,.08);

    transition:.35s;

}

/* ================= CARDS ================= */

.cards{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:stretch;

    flex-wrap:wrap;

    gap:24px;

    margin-top:50px;

    width:100%;

    z-index:3;

}

.glass-card{

    flex:1 1 220px;

    max-width:260px;

    min-width:200px;

    padding:35px 20px;

    border-radius:20px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    text-align:center;

    color:#fff;

}

.glass-card i{

font-size:35px;

color:#00d4ff;

margin-bottom:15px;

}

.glass-card h4{

    font-size:18px;

    line-height:1.5;

}

/* ================= SCROLL ================= */

.scroll-indicator{

position:absolute;

bottom:20px;

left:50%;

transform:translateX(-50%);

z-index:4;

}

.mouse{

width:30px;

height:55px;

border:2px solid white;

border-radius:20px;

position:relative;

}

.mouse::before{

content:"";

position:absolute;

width:6px;

height:10px;

background:white;

left:50%;

top:10px;

transform:translateX(-50%);

border-radius:10px;

animation:scroll 2s infinite;

}

@keyframes scroll{

0%{
opacity:1;
top:10px;
}

100%{
opacity:0;
top:30px;
}

}

@media (max-width:1200px){

    .cards{
        gap:15px;
    }

    .glass-card{
        width:200px;
    }

}

@media (max-width:992px){

    .hero-buttons{
        flex-wrap:wrap;
    }

    .cards{
        width:90%;
    }

}

@media (max-width:768px){

    .cards{
        flex-direction:column;
        align-items:center;
    }

    .glass-card{
        width:100%;
        max-width:320px;
    }

}


/* ================= STATS ================= */

.stats-section{

padding:100px 0;

background:white;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,minmax(180px,1fr));

    gap:30px;

}

.stat-box{

text-align:center;

}

.stat-box h2{

    font-size:clamp(2.8rem,6vw,4.5rem);

    font-weight:800;

    background:linear-gradient(
    135deg,
    #00c6ff,
    #6a11cb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}
.stat-box p{

margin-top:10px;

font-size:18px;

color:#000000;

}

/* ================= CLIENTS ================= */

.clients-section{

padding:100px 0;

background:#f8fafc;

overflow:hidden;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

    font-size:clamp(2.2rem,5vw,3.2rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:15px;

}

.section-title p{

font-size:20px;

color:#000000;

}

.logo-slider{

    width:92%;

    max-width:1450px;

    margin:50px auto 0;

    overflow:hidden;

    position:relative;

    border-radius:24px;

    padding:25px 0;

    background:rgba(255,255,255,.55);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.7);

    box-shadow:0 15px 40px rgba(15,23,42,.08);

}

.logo-slider::before,

.logo-slider::after{

    content:"";

    position:absolute;

    top:0;

    width:35px;

    height:100%;

    z-index:5;

    pointer-events:none;

}

.logo-slider::before{

    left:0;

    background:linear-gradient(
        to right,
        #f8fcff 0%,
        rgba(248,252,255,0) 100%
    );

}

.logo-slider::after{

    right:0;

    background:linear-gradient(
        to left,
        #f8fcff 0%,
        rgba(248,252,255,0) 100%
    );

}

.logo-track{

display:flex;

width:max-content;

gap:30px;

animation:slideLogos 25s linear infinite;

}

.logo-card{

    width:300px;

    min-height:210px;

    padding:30px;

    background:#fff;

    border-radius:25px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

}

.logo-card img{

max-width:150px;

max-height:80px;

object-fit:contain;

margin-bottom:25px;

}

.logo-card h4{

font-size:20px;

text-align:center;

color:#1e293b;

}

@keyframes slideLogos{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* ================= SERVICES ================= */

.services-section{

padding:120px 0;

background:#f8fafc;

}

.services-header{

text-align:center;

margin-bottom:70px;

}

.services-header h2{

    font-size:clamp(2.3rem,5vw,3.6rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:15px;

}

.services-header p{

max-width:700px;

margin:auto;

font-size:18px;

line-height:1.7;

color:#000000;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.service-card{

    background:#fff;

    padding:35px;

    height:100%;

    border-radius:24px;

    border:1px solid #e2e8f0;

    transition:.4s;

    box-shadow:
    0 4px 15px rgba(0,0,0,.04);

}

.service-card:hover{

transform:translateY(-10px);

box-shadow:
0 20px 40px rgba(0,0,0,.12);

}

.service-icon{

width:55px;
height:55px;

border-radius:14px;

display:flex;
justify-content:center;
align-items:center;

margin-bottom:25px;

color:white;

font-size:22px;

}

.blue{
background:#06b6d4;
}

.purple{
background:#7c3aed;
}

.green{
background:#10b981;
}

.indigo{
background:#3b82f6;
}

.orange{
background:#f59e0b;
}

.red{
background:#ef4444;
}

.service-card h3{

font-size:24px;

font-weight:700;

margin-bottom:15px;

color:#0f172a;

}

.service-card p{

font-size:16px;

line-height:1.8;

color:#000000;

margin-bottom:25px;

}

.service-card a{

text-decoration:none;

font-weight:600;

color:#06b6d4;

display:inline-flex;

align-items:center;

gap:8px;

}

.service-card a i{

transition:.3s;

}

.service-card:hover a i{

transform:translateX(5px);

}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .cards{

        flex-direction:column;

        align-items:center;

    }

    .glass-card{

        max-width:350px;

        width:100%;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .logo-card{

        width:260px;

    }

}

@media(max-width:480px){

    .stat-box h2{

        font-size:48px;

    }

    .section-title h2,

    .services-header h2{

        font-size:34px;

    }

}

/* ================= FEATURED PROJECTS ================= */

.featured-projects{

    padding:120px 0;

    background:#ffffff;

}

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.section-header h2{

    font-size:clamp(2.3rem,5vw,3.8rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:15px;

}

.section-header p{

    font-size:18px;

    color:#000000;

}

/* Cards */

.projects-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.project-card{

    position:relative;

    min-height:230px;

    height:100%;

    border-radius:22px;

    overflow:hidden;

    cursor:pointer;

    transition:.5s;

}

.project-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    display:block;

}

.project-card:hover img{

    transform:scale(1.12);

}

.project-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:17px;

    color:white;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.92),
        rgba(0,0,0,.25),
        transparent
    );

}

.location{

    color:#00d4ff;

    font-size:14px;

    margin-bottom:12px;

}

.location i{

    margin-right:5px;

}

.project-overlay h3{

    font-size:clamp(1.6rem,3vw,2.2rem);

    line-height:1.2;

    margin-bottom:8px;

    font-weight:800;

}

.project-overlay p{

    color:#cbd5e1;

    margin-bottom:18px;

}

.project-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:15px;

    font-weight:600;

}

.project-footer i{

    color:#00d4ff;

    transition:.4s;

}

.project-card:hover .project-footer i{

    transform:translateX(8px);

}

/* Button */

.projects-btn{

    text-align:center;

    margin-top:55px;

}

.projects-btn a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    padding:18px 36px;

    border-radius:50px;

    color:#0f172a;

    border:1px solid #dbe2ea;

    background:white;

    font-weight:600;

    transition:.4s;

}

.projects-btn a:hover{

    background:
    linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    color:white;

    border-color:transparent;

}

.hidden-card{

    opacity:0;

    transform:translateY(60px);

}

.hidden-card.show{

    opacity:1;

    transform:translateY(0);

    transition:.8s ease;

}

/* ================= WHY IMPCON ================= */

.why-impcon {

    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;

}

.why-header {

    text-align: center;
    margin-bottom: 80px;

}

.why-header h2{

    font-size:clamp(2.3rem,5vw,3.5rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:15px;

}

.why-header p {

    max-width: 700px;
    margin: auto;
    color: #000000;
    line-height: 1.8;

}

/* Timeline */

.timeline {

    position: relative;
    max-width: 1200px;
    margin: auto;

}

.timeline::before {

    content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width: 4px;
    height: 100%;

    transform: translateX(-50%);

    background: linear-gradient(
        to bottom,
        #00c6ff,
        #6a11cb
    );

}

/* Items */

.timeline-item {

    position: relative;
    width: 50%;
    margin-bottom: 60px;

}

.timeline-item.left {

    padding-right: 25px;

}

.timeline-item.right {

    margin-left: 50%;
    padding-left: 25px;

}

/* Year Circle */

.year {

    position: absolute;

    top: 50%;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    font-size: 12px;
    font-weight: 700;

    background: linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transform: translateY(-50%);

    z-index: 100;

    box-shadow:
    0 0 0 8px rgba(0,198,255,.15);

}

.timeline-item.left .year{

    right:-148px;

}

.timeline-item.right .year{

    left:-148px;

}

/* Card */

.timeline-card{

    background:#fff;

    width:100%;

    max-width:100%;

    padding:35px;

    border-radius:30px;

    box-shadow:
    0 10px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.timeline-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.15);

}

.icon-box {

    width: 55px;
    height: 55px;

    border-radius: 14px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    color: white;

    margin-bottom: 20px;

}

.icon-box i {

    font-size: 22px;

}

.timeline-card h3{

    font-size:clamp(1.5rem,3vw,2rem);

    margin-bottom:15px;

    color:#0f172a;

}

.timeline-card p {

    color: #000000;
    line-height: 1.8;

}

/* Scroll Animation */

.reveal{

    opacity:0;

}

.timeline-item.left.reveal{

    transform:translateX(-120px);

}

.timeline-item.right.reveal{

    transform:translateX(120px);

}
.timeline-item.active{

    opacity:1;

    transform:translateX(0);

    transition:all .9s ease;

}
/* ================= MOBILE WHY IMPCON ================= */

@media (max-width: 992px){

    /* Hide center line */
    .timeline::before{
        display:none;
    }

    /* Hide years */
    .year{
        display:none;
    }

    /* Reset timeline items */
    .timeline-item,
    .timeline-item.left,
    .timeline-item.right{

        width:100%;

        margin:0 0 30px;

        padding:0;

    }

    /* Full-width cards */
    .timeline-card{

        width:100%;

        max-width:100%;

        padding:30px;

        border-radius:24px;

    }

    /* Disable left/right animations */
    .timeline-item.left.reveal,
    .timeline-item.right.reveal{

        transform:translateY(40px);

    }

    .timeline-item.active{

        transform:translateY(0);

    }

}
/* ================= MOBILE TIMELINE FIX ================= */

@media (max-width:768px){

    .timeline{

        width:100%;

    }

    .timeline::before{

        left:28px;

        transform:none;

    }

    .timeline-item{

        width:100%;

        margin-left:0 !important;

        padding-left:80px !important;

        padding-right:0 !important;

    }

    .timeline-item.left,
    .timeline-item.right{

        margin-left:0;

    }

    .year{

        left:0 !important;

        right:auto !important;

        top:45px;

        transform:none;

    }

    .timeline-card{

        width:100%;

        max-width:100%;

        padding:25px;

    }

}

/* ================= FEATURED PROJECTS RESPONSIVE ================= */

@media (max-width:992px){

    .projects-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:768px){

    .projects-grid{

        grid-template-columns:1fr;

    }

    .project-card{

        min-height:340px;

    }

}

/* ================= TIMELINE RESPONSIVE ================= */

@media (max-width:992px){

    .timeline::before{

        left:30px;

        transform:none;

    }

    .timeline-item{

        width:100%;

        margin-left:0;

        padding-left:90px !important;

        padding-right:0 !important;

    }

    .timeline-item.right{

        margin-left:0;

    }

    .year{

        left:0 !important;

        right:auto !important;

        transform:translateY(-50%);

    }

    .timeline-card{

        max-width:100%;

        width:100%;

    }

}

@media (max-width:576px){

    .why-header h2,

    .section-header h2{

        font-size:34px;

    }

    .timeline-card{

        padding:25px;

    }

}

/* ================= TECHNOLOGY ================= */

.technology-section{

    padding:120px 0;

    background:
    linear-gradient(
        135deg,
        #eaf9ff,
        #f2ecff
    );

}

.technology-header{

    text-align:center;

    margin-bottom:70px;

}

.technology-header h2{

    font-size:clamp(2.2rem,5vw,3.6rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:15px;

}

.technology-header p{

    font-size:18px;

    color:#000000;

}

/* Grid */

.technology-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

@media(max-width:992px){

    .technology-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .technology-grid{

        grid-template-columns:1fr;

    }

}

/* Card */

.tech-card{

    background:#fff;

    border-radius:22px;

    padding:35px 20px;

    text-align:center;

    height:100%;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    border:1px solid #e2e8f0;

    transition:.4s;

}

.tech-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 20px 35px rgba(0,0,0,.12);

}

/* Icon */

.tech-icon{

    width:60px;
    height:60px;

    margin:auto;

    border-radius:16px;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;

    font-size:24px;

    margin-bottom:20px;

}

.cyan{
background:#06b6d4;
}

.purple{
background:#7c3aed;
}

.green{
background:#10b981;
}

.orange{
background:#f59e0b;
}

.red{
background:#ef4444;
}

.blue{
background:#3b82f6;
}

.violet{
background:#8b5cf6;
}

.pink{
background:#ec4899;
}

.tech-card h3{

    font-size:clamp(1.1rem,2vw,1.35rem);

    font-weight:700;

    color:#0f172a;

}

/* Highlight Box */

.technology-highlight{

    margin-top:50px;

    text-align:center;

    padding:30px;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        rgba(0,212,255,.12),
        rgba(123,97,255,.15)
    );

    border:1px solid rgba(0,212,255,.2);

    font-size:clamp(1rem,2vw,1.35rem);

    color:#334155;

    font-weight:500;

}

.technology-highlight span{

    font-weight:800;

    color:#00bfff;

}

.hidden-tech{

    opacity:0;

    transform:
    translateY(50px);

}

.show-tech{

    opacity:1;

    transform:
    translateY(0);

    transition:
    .8s ease;

}
/* ================= TESTIMONIALS ================= */

.testimonials-section{

    padding:120px 0;

    background:#f8fafc;

}

.testimonials-header{

    text-align:center;

    margin-bottom:60px;

}

.testimonials-header h2{

    font-size:clamp(2.2rem,5vw,3.6rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:15px;

}

.testimonials-header p{

    font-size:20px;

    color:#000000;

}

/* Slider */

.testimonial-slider{

    position:relative;

    max-width:1100px;

    margin:auto;

    z-index:100;

}

/* Card */

.testimonial-card{

    display:none;

    background:#fff;

    border:1px solid #e2e8f0;

    border-radius:28px;

    padding:45px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

}

.testimonial-card.active-testimonial{

    display:block;

    animation:fadeIn .6s ease;

}

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* Quote */

.quote-icon{

    font-size:45px;

    color:#c4f1ff;

    margin-bottom:20px;

}

/* Text */

.testimonial-text{

    font-size:clamp(1.2rem,2.5vw,2rem);

    line-height:1.7;

    color:#334155;

    margin-bottom:40px;

}

/* Client */

.client-info{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

.client-avatar{

    width:65px;

    height:65px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:
    linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    color:white;

    font-size:24px;

    font-weight:700;

}

.client-info h4{

    font-size:22px;

    color:#0f172a;

    margin-bottom:5px;

}

.client-info span{

    display:block;

    color:#000000;

    font-size:15px;

}

.client-info p{

    color:#00bfff;

    font-weight:600;

    margin-top:5px;

}

/* Controls */

.testimonial-controls{

    position:relative;

    z-index:1000;

    margin-top:40px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.testimonial-controls button{

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:#f1f5f9;

    color:#334155;

    font-size:18px;

    transition:.3s;

}

.testimonial-controls button:hover{

    background:
    linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    color:#fff;

}

/* Dots */

.testimonial-dots{

    display:flex;

    gap:10px;

}

.dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#d1d5db;

    transition:.3s;

}

.active-dot{

    width:28px;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

}

/* ================= TECHNOLOGY & TESTIMONIAL RESPONSIVE ================= */

@media (max-width:992px){

    .technology-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:768px){

    .technology-grid{

        grid-template-columns:1fr;

    }

    .testimonial-card{

        padding:30px 25px;

    }

    .testimonial-text{

        font-size:18px;

        line-height:1.8;

    }

    .client-info{

        flex-direction:column;

        align-items:flex-start;

    }

    .testimonial-controls{

        gap:15px;

    }

}

@media (max-width:480px){

    .technology-header h2,

    .testimonials-header h2{

        font-size:32px;

    }

    .technology-highlight{

        padding:20px;

        font-size:16px;

    }

    .testimonial-card{

        padding:25px 20px;

    }

    .client-avatar{

        width:50px;

        height:50px;

        font-size:18px;

    }

}

/* ================= CTA SECTION ================= */

.cta-section{

    padding:120px 0;

    background:
    linear-gradient(
        135deg,
        #edf9ff,
        #f4f0ff
    );

}

.cta-content{

    text-align:center;

}

.cta-content h2{

    font-size:clamp(2.3rem,5vw,4rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:20px;

}

.cta-content p{

    max-width:800px;

    margin:auto;

    font-size:clamp(1rem,2vw,1.5rem);

    line-height:1.6;

    color:#000000;

    margin-bottom:55px;

}

/* Buttons */

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:25px;

    margin-bottom:60px;

}

.cta-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:18px 36px;

    border-radius:60px;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    transition:.4s;

}

.primary-btn{

    color:#fff;

    background:
    linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

}

.primary-btn i{

    margin-left:10px;

}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 20px 35px rgba(0,198,255,.25);

}

.secondary-btn{

    color:#0f172a;

    background:#fff;

    border:1px solid #dbe2ea;

}

.secondary-btn:hover{

    background:#f8fafc;

    transform:translateY(-5px);

}

/* Contact */

.cta-contact{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.contact-box{

    background:#fff;

    border-radius:24px;

    padding:45px;

    border:1px solid #e2e8f0;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

    transition:.4s;

}

.contact-box:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 35px rgba(0,0,0,.12);

}

.contact-icon{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    color:#00bfff;

    font-size:34px;

}

.contact-box h4{

    font-size:26px;

    color:#000000;

    margin-bottom:15px;

}

.contact-box p{

    font-size:clamp(1.1rem,2vw,2rem);

    font-weight:700;

    color:#0f172a;

    margin:0;

    word-break:break-word;

}

/* Animation */

.contact-box{

    opacity:0;

    transform:translateY(50px);

}

.contact-box.show-cta{

    opacity:1;

    transform:translateY(0);

    transition:.8s ease;

}

.cta-btn{

    opacity:1;

    transform:none;

}

.callback-card{

    display:block;

    text-decoration:none;

    color:inherit;

}

/* ================= FOOTER ================= */

.footer{

    background:#1e293b;

    color:#cbd5e1;

    padding:90px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr repeat(3,1fr);

    gap:50px;

}

.footer-column h3{

    font-size:28px;

    color:#ffffff;

    margin-bottom:28px;

    font-weight:700;

}

/* Logo */

.footer-logo{

    display:inline-block;

    margin-bottom:25px;

}

.footer-logo img{

    width:100%;

    max-width:190px;

    height:auto;

}

/* About */

.footer-about p{

    line-height:1.9;

    margin-bottom:35px;

    color:#94a3b8;

    font-size:17px;

}

/* Contact */

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.contact-item i{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    color:#ffffff;

    flex-shrink:0;

}

.contact-item a,
.contact-item span{

    color:#cbd5e1;

    text-decoration:none;

    line-height:1.8;

    transition:.3s;

}

.contact-item a:hover{

    color:#00d4ff;

}

/* Links */

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:18px;

}

.footer-column ul li a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

    position:relative;

}

.footer-column ul li a:hover{

    color:#00d4ff;

    padding-left:8px;

}

/* Social */

.footer-social{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:35px;

}

.footer-social a{

    width:50px;

    height:50px;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s;

}

.footer-social a:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 30px rgba(0,198,255,.35);

}

/* Bottom */

.footer-bottom{

    margin-top:70px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.12);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#94a3b8;

}

.footer-bottom-links{

    display:flex;

    gap:25px;

}

.footer-bottom-links a{

    color:#94a3b8;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom-links a:hover{

    color:#00d4ff;

}

/* Responsive */

@media(max-width:1100px){

    .footer-grid{

        grid-template-columns:1fr 1fr;

        gap:50px;

    }

}

@media(max-width:768px){

    .footer{

        padding:70px 0 25px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:45px;

    }

    .footer-column h3{

        font-size:24px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .footer-bottom-links{

        flex-wrap:wrap;

        justify-content:center;

    }

}

/* Responsive */

@media(max-width:992px){

    .cta-content h2{

        font-size:48px;

    }

    .cta-content p{

        font-size:20px;

    }

    .cta-contact{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .cta-buttons{

        flex-direction:column;

        align-items:center;

    }

    .cta-btn{

        width:100%;

        max-width:350px;

    }

    .contact-box p{

        font-size:24px;

    }

}

@media (max-width:992px){

    .menu-toggle{

        display:flex;
        justify-content:center;
        align-items:center;

    }

    .quote-btn{

        display:none;

    }

    .nav-links{

        position:absolute;

        top:80px;

        left:0;

        width:100%;

        background:#fff;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:30px 0;

        box-shadow:0 10px 25px rgba(0,0,0,.1);

        transform:translateY(-120%);

        opacity:0;

        visibility:hidden;

        transition:.35s;

    }

    .nav-links.active{

        transform:translateY(0);

        opacity:1;

        visibility:visible;

    }

}