/*==========================================
        SHAWCODEX
        STYLE.CSS
        PART 1
==========================================*/


/*==========================================
        GOOGLE FONT
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');


/*==========================================
        RESET
==========================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Inter',sans-serif;

background:#050816;

color:#ffffff;

overflow-x:hidden;

line-height:1.7;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

color:inherit;

}

ul{

list-style:none;

}


/*==========================================
        VARIABLES
==========================================*/

:root{

--primary:#2563EB;

--secondary:#06B6D4;

--purple:#7C3AED;

--dark:#050816;

--dark2:#0B1120;

--card:#111827;

--white:#ffffff;

--text:#CBD5E1;

--border:rgba(255,255,255,.08);

--radius:18px;

--shadow:0 20px 60px rgba(0,0,0,.35);

--transition:.35s ease;

}



/*==========================================
        SCROLLBAR
==========================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#050816;

}

::-webkit-scrollbar-thumb{

background:#2563EB;

border-radius:20px;

}



/*==========================================
        BACKGROUND
==========================================*/

body::before{

content:"";

position:fixed;

top:-250px;

left:-250px;

width:500px;

height:500px;

background:#2563EB;

opacity:.12;

filter:blur(150px);

border-radius:50%;

z-index:-5;

}

body::after{

content:"";

position:fixed;

right:-250px;

bottom:-250px;

width:500px;

height:500px;

background:#7C3AED;

opacity:.10;

filter:blur(160px);

border-radius:50%;

z-index:-5;

}



/*==========================================
        CONTAINER
==========================================*/

.container{

width:90%;

max-width:1280px;

margin:auto;

}



/*==========================================
        BUTTONS
==========================================*/

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 32px;

border-radius:50px;

background:linear-gradient(135deg,#2563EB,#06B6D4);

color:#fff;

font-weight:700;

transition:.35s;

box-shadow:0 10px 30px rgba(37,99,235,.35);

}

.btn:hover{

transform:translateY(-4px);

box-shadow:0 20px 40px rgba(37,99,235,.45);

}



.primary{

display:inline-flex;

padding:16px 36px;

background:#2563EB;

border-radius:50px;

font-weight:700;

transition:.35s;

}

.primary:hover{

transform:translateY(-4px);

background:#1D4ED8;

}



.secondary{

display:inline-flex;

padding:16px 36px;

border:1px solid rgba(255,255,255,.15);

border-radius:50px;

backdrop-filter:blur(12px);

transition:.35s;

}

.secondary:hover{

background:rgba(255,255,255,.08);

}



/*==========================================
        NAVBAR
==========================================*/

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

padding:22px 0;

z-index:999;

background:rgba(5,8,22,.45);

backdrop-filter:blur(18px);

border-bottom:1px solid rgba(255,255,255,.06);

transition:.4s;

}

.navbar .container{

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

display:flex;

align-items:center;

gap:12px;

}

.logo img{

width:42px;

}

.logo span{

font-size:24px;

font-weight:800;

letter-spacing:.5px;

}

.navbar ul{

display:flex;

gap:34px;

}

.navbar ul li a{

font-weight:500;

color:#CBD5E1;

transition:.3s;

position:relative;

}

.navbar ul li a:hover{

color:#fff;

}

.navbar ul li a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

height:2px;

width:0;

background:#2563EB;

transition:.35s;

}

.navbar ul li a:hover::after{

width:100%;

}



/*==========================================
        HERO
==========================================*/

.hero{

padding:170px 0 120px;

position:relative;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:80px;

}

.badge{

display:inline-block;

padding:10px 20px;

background:rgba(37,99,235,.12);

border:1px solid rgba(37,99,235,.3);

border-radius:40px;

margin-bottom:25px;

color:#7DD3FC;

font-size:14px;

}

.hero h1{

font-size:72px;

line-height:1.05;

font-weight:900;

margin-bottom:25px;

}

.hero h1 span{

background:linear-gradient(90deg,#2563EB,#06B6D4);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero p{

font-size:20px;

color:#CBD5E1;

margin-bottom:40px;

max-width:620px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:60px;

}

.hero-stats{

display:flex;

gap:60px;

}

.hero-stats h2{

font-size:42px;

color:#06B6D4;

}

.hero-stats p{

font-size:15px;

margin-top:8px;

}



/*==========================================
        GLASS CARD
==========================================*/

.glass-card{

padding:40px;

background:rgba(255,255,255,.05);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.08);

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.35);

transition:.35s;

}

.glass-card:hover{

transform:translateY(-10px);

}

.glass-card h3{

margin-bottom:30px;

font-size:26px;

}

.tech-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

}

.tech-grid span{

padding:12px 18px;

background:rgba(255,255,255,.06);

border-radius:12px;

text-align:center;

transition:.35s;

}

.tech-grid span:hover{

background:#2563EB;

}



/*==========================================
        SECTION
==========================================*/

section{

padding:120px 0;

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title p{

color:#06B6D4;

font-weight:700;

letter-spacing:2px;

margin-bottom:15px;

}

.section-title h2{

font-size:48px;

font-weight:800;

}



/*==========================================
        ANIMATION
==========================================*/

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

.glass-card{

animation:float 5s ease-in-out infinite;

}

/*==========================================
        PART 2
        ABOUT SECTION
==========================================*/

.about{

position:relative;

background:linear-gradient(180deg,#050816,#081122);

overflow:hidden;

}

.about::before{

content:"";

position:absolute;

top:-150px;

right:-120px;

width:350px;

height:350px;

background:#2563EB;

opacity:.08;

filter:blur(140px);

border-radius:50%;

}

.about::after{

content:"";

position:absolute;

bottom:-150px;

left:-120px;

width:320px;

height:320px;

background:#7C3AED;

opacity:.08;

filter:blur(150px);

border-radius:50%;

}

.about-grid{

display:grid;

grid-template-columns:1.2fr .8fr;

gap:70px;

align-items:center;

margin-top:70px;

}

.about h3{

font-size:34px;

font-weight:800;

margin-bottom:25px;

color:#fff;

}

.about p{

font-size:17px;

color:var(--text);

line-height:1.9;

margin-bottom:20px;

}

.about-left{

animation:fadeLeft 1s ease;

}

.about-right{

display:flex;

flex-direction:column;

gap:25px;

animation:fadeRight 1s ease;

}


/*==========================================
        FEATURE CARD
==========================================*/

.feature{

display:flex;

align-items:flex-start;

gap:20px;

padding:28px;

border-radius:22px;

background:rgba(255,255,255,.04);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

transition:var(--transition);

box-shadow:0 12px 35px rgba(0,0,0,.25);

}

.feature:hover{

transform:translateY(-10px);

border-color:#2563EB;

background:rgba(37,99,235,.08);

box-shadow:0 25px 60px rgba(37,99,235,.18);

}

.feature i{

width:62px;

height:62px;

display:flex;

align-items:center;

justify-content:center;

border-radius:18px;

font-size:24px;

background:linear-gradient(135deg,#2563EB,#06B6D4);

color:#fff;

flex-shrink:0;

}

.feature h4{

font-size:22px;

margin-bottom:8px;

font-weight:700;

}

.feature p{

font-size:15px;

color:var(--text);

margin:0;

}


/*==========================================
        SERVICES
==========================================*/

.services{

background:#050816;

position:relative;

overflow:hidden;

}

.services::before{

content:"";

position:absolute;

top:-180px;

left:-150px;

width:400px;

height:400px;

background:#06B6D4;

opacity:.06;

filter:blur(170px);

border-radius:50%;

}

.cards{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:70px;

}


/*==========================================
        SERVICE CARD
==========================================*/

.card{

position:relative;

padding:38px 34px;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

border-radius:26px;

backdrop-filter:blur(18px);

transition:.45s;

overflow:hidden;

box-shadow:0 18px 40px rgba(0,0,0,.25);

}

.card::before{

content:"";

position:absolute;

top:-120px;

right:-120px;

width:220px;

height:220px;

background:linear-gradient(135deg,#2563EB,#06B6D4);

opacity:.08;

border-radius:50%;

transition:.5s;

}

.card:hover::before{

transform:scale(1.6);

opacity:.16;

}

.card:hover{

transform:translateY(-12px);

border-color:#2563EB;

box-shadow:0 30px 70px rgba(37,99,235,.18);

}

.card i{

font-size:42px;

margin-bottom:25px;

background:linear-gradient(135deg,#2563EB,#06B6D4);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.card h3{

font-size:24px;

margin-bottom:18px;

font-weight:700;

}

.card p{

color:var(--text);

font-size:16px;

line-height:1.8;

margin-bottom:25px;

}

.card a{

display:inline-flex;

align-items:center;

gap:8px;

font-weight:600;

color:#06B6D4;

transition:.3s;

}

.card a:hover{

gap:14px;

color:#fff;

}


/*==========================================
        SERVICE TAG
==========================================*/

.service-tag{

display:inline-block;

padding:8px 16px;

border-radius:50px;

background:rgba(37,99,235,.12);

border:1px solid rgba(37,99,235,.25);

font-size:13px;

margin-bottom:18px;

color:#7DD3FC;

}


/*==========================================
        ICON ANIMATION
==========================================*/

.card:hover i{

transform:scale(1.15) rotate(-5deg);

transition:.4s;

}


/*==========================================
        SECTION TITLE
==========================================*/

.services .section-title{

margin-bottom:20px;

}

.services .section-title h2{

margin-top:10px;

}

.services .section-title p{

max-width:650px;

margin:auto;

}


/*==========================================
        KEYFRAMES
==========================================*/

@keyframes fadeLeft{

from{

opacity:0;

transform:translateX(-60px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes fadeRight{

from{

opacity:0;

transform:translateX(60px);

}

to{

opacity:1;

transform:translateX(0);

}

}


/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:1100px){

.about-grid{

grid-template-columns:1fr;

}

.cards{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.cards{

grid-template-columns:1fr;

}

.about h3{

font-size:28px;

}

.feature{

padding:22px;

}

.card{

padding:30px;

}

}

@media(max-width:576px){

.about{

padding:90px 0;

}

.services{

padding:90px 0;

}

.feature{

flex-direction:column;

text-align:center;

}

.feature i{

margin:auto;

}

.card{

text-align:center;

}

}


/*==========================================
        PART 3
        PORTFOLIO
==========================================*/

.portfolio{
    position:relative;
    background:#07101f;
    overflow:hidden;
    padding:120px 0;
}

.portfolio::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:#2563EB;
    filter:blur(180px);
    opacity:.08;
    top:-180px;
    right:-180px;
    border-radius:50%;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.project-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    overflow:hidden;
    transition:.4s;
    backdrop-filter:blur(20px);
}

.project-card:hover{
    transform:translateY(-12px);
    border-color:#2563EB;
    box-shadow:0 20px 60px rgba(37,99,235,.25);
}

.project-image{
    height:240px;
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.project-card:hover img{
    transform:scale(1.08);
}

.project-content{
    padding:28px;
}

.project-category{
    display:inline-block;
    padding:6px 14px;
    background:rgba(37,99,235,.15);
    border-radius:30px;
    color:#7DD3FC;
    font-size:13px;
    margin-bottom:16px;
}

.project-content h3{
    font-size:24px;
    margin-bottom:15px;
}

.project-content p{
    color:#CBD5E1;
    line-height:1.8;
}

.tech-stack{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:25px 0;
}

.tech-stack span{
    background:#111827;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
}

.project-links{
    display:flex;
    gap:15px;
}

.project-links a{
    color:#06B6D4;
    font-weight:600;
}

.project-links a:hover{
    color:#fff;
}


/*==========================================
        TIMELINE
==========================================*/

.process-section{
    position:relative;
    background:#050816;
    padding:120px 0;
}

.timeline{
    position:relative;
    margin-top:80px;
    max-width:950px;
    margin-left:auto;
    margin-right:auto;
}

.timeline::before{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:3px;
    height:100%;
    background:linear-gradient(#2563EB,#06B6D4);
}

.timeline-item{
    width:50%;
    padding:20px 50px;
    position:relative;
}

.timeline-item:nth-child(odd){
    left:0;
    text-align:right;
}

.timeline-item:nth-child(even){
    left:50%;
}

.timeline-number{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#2563EB;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
    position:absolute;
    top:30px;
    right:-30px;
    box-shadow:0 0 25px rgba(37,99,235,.4);
}

.timeline-item:nth-child(even) .timeline-number{
    left:-30px;
}

.timeline-content{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    padding:28px;
    border-radius:20px;
    transition:.4s;
    backdrop-filter:blur(20px);
}

.timeline-content:hover{
    transform:translateY(-8px);
    border-color:#2563EB;
}

.timeline-content i{
    font-size:34px;
    color:#06B6D4;
    margin-bottom:20px;
}

.timeline-content h3{
    margin-bottom:15px;
    font-size:24px;
}

.timeline-content p{
    color:#CBD5E1;
    line-height:1.8;
}


/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:992px){

.portfolio-grid{
    grid-template-columns:repeat(2,1fr);
}

.timeline::before{
    left:30px;
}

.timeline-item{
    width:100%;
    left:0!important;
    text-align:left!important;
    padding-left:90px;
    padding-right:0;
    margin-bottom:40px;
}

.timeline-number{
    left:0!important;
    right:auto;
}

}

@media(max-width:768px){

.portfolio-grid{
    grid-template-columns:1fr;
}

.project-image{
    height:220px;
}

}


/*==========================================
        PART 4
        TECHNOLOGY STACK
==========================================*/

.technology{

    position:relative;

    background:#08111f;

    overflow:hidden;

    padding:120px 0;

}

.marquee{

    width:100%;

    overflow:hidden;

    margin-top:70px;

    position:relative;

}

.marquee::before,

.marquee::after{

    content:"";

    position:absolute;

    top:0;

    width:120px;

    height:100%;

    z-index:5;

}

.marquee::before{

    left:0;

    background:linear-gradient(to right,#08111f,transparent);

}

.marquee::after{

    right:0;

    background:linear-gradient(to left,#08111f,transparent);

}

.marquee-content{

    display:flex;

    gap:25px;

    width:max-content;

    animation:marquee 28s linear infinite;

}

.marquee:hover .marquee-content{

    animation-play-state:paused;

}

.marquee-content span{

    display:flex;

    align-items:center;

    gap:10px;

    padding:16px 28px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:50px;

    white-space:nowrap;

    font-weight:600;

    transition:.35s;

    backdrop-filter:blur(20px);

}

.marquee-content span:hover{

    background:#2563EB;

    transform:translateY(-5px);

}

.marquee-content i{

    font-size:22px;

    color:#06B6D4;

}

@keyframes marquee{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}



/*==========================================
        TESTIMONIALS
==========================================*/

.testimonials{

background:#050816;

padding:120px 0;

position:relative;

overflow:hidden;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:70px;

}

.testimonial-card{

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

border-radius:25px;

padding:35px;

transition:.4s;

backdrop-filter:blur(18px);

position:relative;

overflow:hidden;

}

.testimonial-card::before{

content:"";

position:absolute;

width:220px;

height:220px;

background:#2563EB;

filter:blur(120px);

opacity:.08;

top:-120px;

right:-120px;

}

.testimonial-card:hover{

transform:translateY(-12px);

border-color:#2563EB;

box-shadow:0 25px 60px rgba(37,99,235,.2);

}

.stars{

font-size:22px;

letter-spacing:3px;

color:#FFD700;

margin-bottom:20px;

}

.testimonial-card p{

color:#CBD5E1;

line-height:1.9;

margin-bottom:30px;

}

.client{

display:flex;

align-items:center;

gap:18px;

}

.client img{

width:65px;

height:65px;

border-radius:50%;

object-fit:cover;

border:3px solid rgba(37,99,235,.5);

}

.client h4{

font-size:18px;

margin-bottom:4px;

}

.client span{

font-size:14px;

color:#94A3B8;

}



/*==========================================
        TESTIMONIAL SLIDER READY
==========================================*/

.testimonial-grid{

transition:.5s;

}



/*==========================================
        HOVER EFFECT
==========================================*/

.testimonial-card:hover img{

transform:scale(1.08);

transition:.4s;

}

.testimonial-card:hover .stars{

transform:scale(1.08);

}



/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:1100px){

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.testimonial-grid{

grid-template-columns:1fr;

}

.marquee-content{

gap:15px;

}

.marquee-content span{

padding:14px 20px;

font-size:15px;

}

.client{

flex-direction:column;

text-align:center;

}

}

@media(max-width:480px){

.marquee::before,

.marquee::after{

display:none;

}

.testimonial-card{

padding:28px;

}

.client img{

width:58px;

height:58px;

}

}


/*==========================================
        PART 5
        FAQ SECTION
==========================================*/

.faq{

    background:#07101f;

    padding:120px 0;

    position:relative;

}

.faq-container{

    max-width:900px;

    margin:70px auto 0;

}

.faq-item{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

    backdrop-filter:blur(15px);

    transition:.35s;

}

.faq-item:hover{

    border-color:#2563EB;

}

.faq-question{

    width:100%;

    padding:24px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:none;

    border:none;

    color:#fff;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

}

.faq-question i{

    color:#06B6D4;

    transition:.3s;

}

.faq-answer{

    display:none;

    padding:0 30px 25px;

}

.faq-answer p{

    color:#CBD5E1;

    line-height:1.8;

}


/*==========================================
        CTA
==========================================*/

.cta{

    padding:120px 0;

    background:#050816;

}

.cta-box{

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    border-radius:30px;

    padding:70px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    box-shadow:0 25px 80px rgba(37,99,235,.25);

}

.cta-content span{

    color:#E0F2FE;

    font-weight:700;

    letter-spacing:2px;

}

.cta-content h2{

    font-size:48px;

    margin:20px 0;

}

.cta-content p{

    color:#E2E8F0;

    max-width:650px;

}

.cta-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    padding:18px 34px;

    background:#fff;

    color:#111827;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-5px);

}

.btn-secondary{

    padding:18px 34px;

    border:1px solid rgba(255,255,255,.3);

    border-radius:50px;

    color:#fff;

    transition:.35s;

}

.btn-secondary:hover{

    background:rgba(255,255,255,.15);

}


/*==========================================
        FOOTER
==========================================*/

.footer{

    background:#020617;

    padding:100px 0 30px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:60px;

    margin-bottom:20px;

}

.footer-column h3{

    font-size:28px;

    margin-bottom:20px;

}

.footer-column h4{

    margin-bottom:22px;

    font-size:20px;

}

.footer-column p{

    color:#94A3B8;

    line-height:1.8;

}

.footer-column ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-column ul li{

    color:#94A3B8;

}

.footer-column ul li a{

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#06B6D4;

    padding-left:8px;

}


/*==========================================
        SOCIAL
==========================================*/

.footer-social{

    display:flex;

    gap:16px;

    margin-top:25px;

}

.footer-social a{

    width:46px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    transition:.35s;

}

.footer-social a:hover{

    background:#2563EB;

    transform:translateY(-6px);

}

.footer-social i{

    font-size:18px;

}


/*==========================================
        FOOTER BOTTOM
==========================================*/

.footer hr{

    border:none;

    height:1px;

    background:rgba(255,255,255,.08);

    margin:60px 0 30px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#94A3B8;

}

.footer-links{

    display:flex;

    gap:30px;

}

.footer-links a{

    color:#94A3B8;

    transition:.3s;

}

.footer-links a:hover{

    color:#fff;

}


/*==========================================
        BACK TO TOP
==========================================*/

.back-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:#2563EB;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(37,99,235,.35);

    transition:.35s;

    z-index:999;

}

.back-top:hover{

    transform:translateY(-6px);

}


/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:1100px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

.cta-box{

flex-direction:column;

text-align:center;

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.cta-content h2{

font-size:34px;

}

.cta-box{

padding:45px 30px;

}

.faq-question{

font-size:16px;

}

}

@media(max-width:480px){

.footer-links{

flex-direction:column;

gap:15px;

}

.cta-buttons{

justify-content:center;

}

.btn-primary,

.btn-secondary{

width:100%;

text-align:center;

}

}


/*==========================================
        PART 6
        RESPONSIVE & ANIMATIONS
==========================================*/


/*==========================================
        GLOBAL ANIMATIONS
==========================================*/

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(60px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

@keyframes fadeDown{

0%{
opacity:0;
transform:translateY(-60px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

@keyframes fadeLeft{

0%{
opacity:0;
transform:translateX(-60px);
}

100%{
opacity:1;
transform:translateX(0);
}

}

@keyframes fadeRight{

0%{
opacity:0;
transform:translateX(60px);
}

100%{
opacity:1;
transform:translateX(0);
}

}

@keyframes zoomIn{

0%{
opacity:0;
transform:scale(.8);
}

100%{
opacity:1;
transform:scale(1);
}

}

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.05);
}

100%{
transform:scale(1);
}

}

@keyframes rotateGlow{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}


/*==========================================
        SCROLL REVEAL
==========================================*/

.reveal{

opacity:0;

transform:translateY(60px);

transition:1s ease;

}

.reveal.active{

opacity:1;

transform:translateY(0);

}


/*==========================================
        IMAGE HOVER
==========================================*/

img{

transition:.5s;

}

img:hover{

transform:scale(1.03);

}


/*==========================================
        LINK EFFECT
==========================================*/

a{

transition:.35s;

}

a:hover{

opacity:.95;

}


/*==========================================
        BUTTON EFFECT
==========================================*/

.btn,
.btn-primary,
.btn-secondary{

position:relative;

overflow:hidden;

}

.btn::before,
.btn-primary::before,
.btn-secondary::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:rgba(255,255,255,.18);

transform:skewX(-25deg);

transition:.6s;

}

.btn:hover::before,
.btn-primary:hover::before,
.btn-secondary:hover::before{

left:120%;

}


/*==========================================
        CARD EFFECT
==========================================*/

.card,
.project-card,
.feature,
.testimonial-card,
.timeline-content{

transition:.45s;

}

.card:hover,
.project-card:hover,
.feature:hover,
.testimonial-card:hover,
.timeline-content:hover{

transform:translateY(-10px);

}


/*==========================================
        ICON EFFECT
==========================================*/

i{

transition:.35s;

}

.card:hover i,
.feature:hover i{

transform:rotate(-8deg) scale(1.15);

}


/*==========================================
        GLASS EFFECT
==========================================*/

.glass{

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

}


/*==========================================
        SHADOW
==========================================*/

.shadow{

box-shadow:0 20px 60px rgba(0,0,0,.3);

}


/*==========================================
        GRADIENT TEXT
==========================================*/

.gradient-text{

background:linear-gradient(90deg,#2563EB,#06B6D4,#7C3AED);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}


/*==========================================
        SPACING
==========================================*/

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

.pt-5{padding-top:50px;}
.pb-5{padding-bottom:50px;}


/*==========================================
        TEXT
==========================================*/

.text-center{

text-align:center;

}

.text-right{

text-align:right;

}

.text-left{

text-align:left;

}


/*==========================================
        FLEX
==========================================*/

.flex{

display:flex;

}

.flex-center{

display:flex;

justify-content:center;

align-items:center;

}

.flex-between{

display:flex;

justify-content:space-between;

align-items:center;

}


/*==========================================
        GRID
==========================================*/

.grid-2{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:40px;

}

.grid-3{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.grid-4{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}


/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:1200px){

.container{

width:92%;

}

.hero h1{

font-size:58px;

}

}

@media(max-width:992px){

.hero-grid,
.about-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons,
.hero-stats{

justify-content:center;

}

.navbar ul{

gap:18px;

}

.grid-4{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

section{

padding:90px 0;

}

.hero{

padding-top:140px;

}

.hero h1{

font-size:46px;

}

.hero p{

font-size:17px;

}

.section-title h2{

font-size:34px;

}

.navbar{

padding:18px 0;

}

.navbar ul{

display:none;

}

.grid-3{

grid-template-columns:1fr;

}

.grid-2{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.hero h1{

font-size:38px;

}

.hero-buttons{

flex-direction:column;

}

.hero-stats{

flex-direction:column;

gap:25px;

}

.btn,
.primary,
.secondary{

width:100%;

justify-content:center;

}

.logo span{

font-size:22px;

}

.section-title h2{

font-size:30px;

}

}

@media(max-width:400px){

.hero h1{

font-size:32px;

}

.hero p{

font-size:15px;

}

.section-title h2{

font-size:26px;

}

}


/*==========================================
        END OF STYLE.CSS
==========================================*/

/*==========================================
        SHAWCODEX BUTTON
==========================================*/

.sc-btn-primary{

display:inline-flex;
align-items:center;
justify-content:center;
gap:12px;

padding:16px 34px;

border-radius:999px;

background:linear-gradient(135deg,#2563EB,#06B6D4);

color:#fff;

font-weight:700;

text-decoration:none;

transition:
transform .35s,
box-shadow .35s;

box-shadow:
0 12px 30px rgba(37,99,235,.30);

position:relative;

overflow:hidden;

}

.sc-btn-primary:hover{

transform:translateY(-4px);

box-shadow:
0 24px 50px rgba(37,99,235,.45);

}

.sc-btn-primary:active{

transform:translateY(-2px) scale(.98);

}

.sc-btn-primary::before{

content:"";

position:absolute;

left:-120%;

top:0;

width:100%;

height:100%;

background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,.35),
transparent
);

transition:.7s;

}

.sc-btn-primary:hover::before{

left:130%;

}



/* ===========================
   NAVBAR
=========================== */

.navbar{
    width:100%;
    padding:20px 0;
}

.navbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:45px;
    height:45px;
}

.logo span{
    font-size:30px;
    font-weight:700;
    color:#fff;
}

.navbar ul{
    display:flex;
    gap:25px;
    list-style:none;
}

.navbar ul li a{
    color:#fff;
    text-decoration:none;
}

/* ===========================
   BUTTON
=========================== */

.sc-btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:15px 30px;

    border-radius:999px;
    text-decoration:none;

    color:#fff;
    font-weight:700;

    background:linear-gradient(135deg,#2563EB,#06B6D4);

    box-shadow:0 12px 30px rgba(37,99,235,.30);

    transition:.35s;
    white-space:nowrap;
}

.sc-btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 40px rgba(37,99,235,.40);
}

.mobile-text{
    display:none;
}

/* ===========================
   TABLET
=========================== */

@media (max-width:992px){

    .navbar ul{
        display:none;
    }

    .logo span{
        font-size:26px;
    }

    .logo img{
        width:40px;
        height:40px;
    }

    .sc-btn-primary{
        padding:13px 22px;
        font-size:15px;
    }

}

/* ===========================
   MOBILE
=========================== */

@media (max-width:576px){

    .navbar{
        padding:15px 0;
    }

    .navbar .container{
        gap:10px;
    }

    .logo img{
        width:36px;
        height:36px;
    }

    .logo span{
        font-size:22px;
    }

    .desktop-text{
        display:none;
    }

    .mobile-text{
        display:inline;
    }

    .sc-btn-primary{
        padding:10px 16px;
        font-size:14px;
        gap:8px;
    }

}

/* ===========================
   EXTRA SMALL
=========================== */

@media (max-width:400px){

    .logo span{
        font-size:18px;
    }

    .logo img{
        width:32px;
        height:32px;
    }

    .sc-btn-primary{
        padding:9px 14px;
        font-size:13px;
    }

}
