/*
LumaCoding Main Styles
*/


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{

    font-family:'Inter',sans-serif;
    background:#fff;
    color:#111;

}


img{

    max-width:100%;
    display:block;

}


.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}


/* ==========================
   BUTTONS
========================== */


.primary{

    background:#111;
    color:#fff;
    padding:15px 35px;
    border-radius:30px;
    text-decoration:none;
    display:inline-block;
    font-size:14px;

}


.secondary{

    border:1px solid #111;
    color:#111;
    padding:15px 35px;
    border-radius:30px;
    text-decoration:none;
    display:inline-block;
    font-size:14px;

}



/* ==========================
   HERO
========================== */


.hero{

    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:120px;

    background:
    radial-gradient(circle at 20% 20%,#dfffba,transparent 25%),
    #fff;

}


.hero .container{

    display:flex;
    align-items:center;

}


.hero-content{

    width:55%;

}


.hero h1{

    font-size:72px;
    line-height:1.05;
    font-weight:900;

}


.hero h1 span{

    background:#b6ff00;
    padding:0 10px;

}


.hero p{

    margin-top:25px;
    max-width:550px;
    color:#666;
    line-height:1.7;
    font-size:17px;

}



.hero-buttons{

    display:flex;
    gap:20px;
    margin-top:40px;

}


.hero-image{

    width:45%;

}


.glass{

    width:350px;
    height:350px;
    margin:auto;

    background:
    linear-gradient(145deg,#fff,#b6ff00);

    border-radius:50%;

    animation:float 5s infinite alternate;

}



@keyframes float{

from{

transform:translateY(0);

}


to{

transform:translateY(-25px);

}


}



/* ==========================
 SERVICES
========================== */


.services{

    padding:100px 0;

}



.section-title{

    text-align:center;
    margin-bottom:60px;

}


.section-title h2{

    font-size:50px;
    font-weight:800;

}


.section-title span{

    background:#b6ff00;
    padding:5px 12px;

}



.service-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}



.service-card{

    padding:40px 30px;
    border-radius:20px;

    background:#fff;

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);

    transition:.3s;

}


.service-card:hover{

    transform:translateY(-10px);

}



.icon{

    font-size:35px;
    margin-bottom:25px;

}


.service-card h3{

    font-size:22px;
    margin-bottom:15px;

}


.service-card p{

    color:#666;
    line-height:1.7;
    font-size:15px;

}



/* ==========================
 STATS
========================== */


.stats{

    background:#050505;
    color:white;
    padding:80px 0;

}



.stats-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;

}



.stat h3{

    font-size:55px;
    color:#b6ff00;

}



.stat p{

    color:#ddd;
    margin-top:10px;

}



/* ==========================
 ABOUT
========================== */


.about{

    padding:100px 0;
    background:#fafafa;

}



.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}



.about-box img{

    border-radius:25px;

}



.small-title{

    font-size:14px;
    margin-bottom:20px;

}



.about-content h2{

    font-size:48px;
    line-height:1.1;
    margin-bottom:25px;

}



.about-content h2 span{

    background:#b6ff00;
    padding:5px;

}



.about-content p{

    color:#666;
    line-height:1.8;
    margin-bottom:35px;

}



/* ==========================
 RESPONSIVE
========================== */


@media(max-width:900px){


.hero .container{

    flex-direction:column;

}


.hero-content,
.hero-image{

    width:100%;

}


.hero h1{

    font-size:45px;

}


.service-grid{

    grid-template-columns:1fr;

}


.stats-grid{

    grid-template-columns:1fr 1fr;

}


.about-grid{

    grid-template-columns:1fr;

}


}

/* ==========================
   WHY CHOOSE US
========================== */


.why{

    background:#050505;
    color:white;
    padding:100px 0;

}


.why-header{

    text-align:center;
    margin-bottom:60px;

}


.why-header h2{

    font-size:48px;

}


.why-header span{

    background:#b6ff00;
    color:#111;
    padding:5px;

}



.why-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}



.why-card{

    border:1px solid #333;
    padding:35px 25px;
    border-radius:20px;

}



.why-card h3{

    color:#b6ff00;
    font-size:40px;

}



.why-card h4{

    margin:20px 0;

}



.why-card p{

    color:#aaa;
    line-height:1.7;

}





/* ==========================
 PROCESS
========================== */


.process{

    padding:100px 0;

}



.process-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

}



.process-card{

    text-align:center;
    padding:35px;
    border-radius:20px;
    background:#f8f8f8;

}



.process-card div{

    height:70px;
    width:70px;

    margin:auto;

    border-radius:50%;
    background:#b6ff00;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:25px;
    font-weight:800;

}



.process-card h3{

    margin:25px 0 15px;

}



.process-card p{

    color:#666;
    line-height:1.6;

}





/* ==========================
 INDUSTRIES
========================== */


.industries{

    padding:100px 0;
    background:#fafafa;

}



.industry-grid{

    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;

}



.industry-grid div{

    background:#fff;
    padding:35px 15px;
    text-align:center;

    border-radius:20px;

    box-shadow:0 10px 30px #eee;

    font-size:35px;

}



.industry-grid h3{

    font-size:15px;
    margin-top:15px;

}





/* ==========================
 TEAM
========================== */


.team{

    padding:100px 0;

}



.team-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}



.member{

    text-align:center;

}



.member img{

    width:100%;
    border-radius:20px;

}



.member h3{

    margin-top:20px;

}



.member p{

    color:#777;

}





/* ==========================
 BLOG
========================== */


.blog{
    background:#fafafa;

}



.blog-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}



.blog-card{

    background:white;
    border-radius:20px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}



.blog-card img{

    width:100%;
    height:230px;
    object-fit:cover;

}



.blog-content{

    padding:25px;

}



.blog-content small{

    color:#555;

}



.blog-content h3{

    font-size:22px;
    margin:15px 0;

}



.blog-content p{

    color:#666;
    line-height:1.6;

}



.blog-content a{

    display:inline-block;
    margin-top:20px;

    color:#111;
    font-weight:600;

}




@media(max-width:900px){


.why-grid,
.process-grid,
.team-grid,
.blog-grid{

    grid-template-columns:1fr;

}


.industry-grid{

    grid-template-columns:repeat(2,1fr);

}


}

/* ==========================
 TESTIMONIAL
========================== */


.testimonial{

    padding:100px 0;

}



.testimonial-box{

    background:#050505;
    color:white;

    padding:70px;

    border-radius:30px;

    display:flex;
    gap:50px;

    align-items:center;

}



.quote{

    font-size:100px;
    color:#b6ff00;

}



.testimonial h2{

    font-size:45px;

}



.testimonial h2 span{

    background:#b6ff00;
    color:#111;
    padding:5px;

}



.review{

    margin:25px 0;
    color:#ccc;
    line-height:1.7;

}



.stars{

    color:#b6ff00;

}





/* ==========================
 FAQ
========================== */


.faq{

    padding:100px 0;
    background:#fafafa;

}



.faq-list{

    max-width:850px;
    margin:auto;

}



.faq-item{

    background:#fff;

    border-bottom:1px solid #ddd;

    padding:25px;

    cursor:pointer;

}



.faq-item h3{

    display:flex;
    justify-content:space-between;

    font-size:18px;

}



.faq-item p{

    display:none;

    margin-top:20px;

    color:#666;

    line-height:1.7;

}



.faq-item.active p{

    display:block;

}





/* ==========================
 CTA
========================== */


.cta{

    background:#050505;

    color:white;

    padding:90px 0;

    text-align:center;

}



.cta h2{

    font-size:60px;

}



.cta h2 span{

    background:#b6ff00;
    color:#111;

    padding:5px;

}



.cta p{

    margin:25px;

}





/* ==========================
 NEWSLETTER
========================== */


.newsletter{

    background:#b6ff00;

    padding:60px 0;

}



.newsletter .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}



.newsletter h2{

    font-size:40px;

}



.newsletter h2 span{

    background:#111;

    color:#fff;

    padding:5px;

}



.subscribe{

    display:flex;

    background:#fff;

    border-radius:40px;

    padding:8px;

}



.subscribe input{

    border:none;

    outline:none;

    padding:15px 25px;

}



.subscribe button{

    border:none;

    background:#111;

    color:white;

    width:50px;

    height:50px;

    border-radius:50%;

}




@media(max-width:900px){


.testimonial-box{

    flex-direction:column;

}


.newsletter .container{

    flex-direction:column;

    gap:30px;

}


.cta h2{

    font-size:40px;

}


}
