/*==========================================
   PART 1
   RESET + ROOT + NAVBAR
==========================================*/

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

html{
    scroll-behavior:smooth;
}

:root{

    /* Brand Colors (Logo Inspired) */

    --primary:#EF4444;
    --primary-dark:#DC2626;
    --primary-light:#F87171;

    --secondary:#12345B;
    --secondary-light:#234A75;

    --dark:#0F172A;

    --text:#1E293B;
    --text-light:#64748B;

    --white:#ffffff;
    --light:#F8FAFC;
    --section:#F5F7FB;

    --border:#E5E7EB;

    --radius:18px;
    --radius-lg:28px;

    --shadow-sm:0 6px 20px rgba(0,0,0,.06);
    --shadow-md:0 18px 45px rgba(0,0,0,.08);
    --shadow-lg:0 30px 70px rgba(0,0,0,.12);

    --transition:.35s ease;

}

body{

    font-family:"Inter",sans-serif;
    color:var(--text);
    background:var(--white);
    overflow-x:hidden;
    line-height:1.4;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(1280px,92%);
    margin:auto;

}

/*==========================
HEADER
===========================*/

.navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

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

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(15,23,42,.06);

    transition:all .35s ease;

}
/*==========================================
      STICKY NAVBAR
==========================================*/

header.scrolled{

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

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

    border-bottom:1px solid rgba(15,23,42,.04);

}

header.scrolled nav{

    height:78px;

}

header.scrolled .logo img{

    width:200px;

}

nav{

    transition:all .35s ease;

}

.logo img{

    transition:all .35s ease;

}

.nav-links a{

    transition:all .3s ease;

}

.nav-links a:hover{

    transform:translateY(-2px);

}

.navbar .container{

    height:100px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    width:180px;
    height:auto;

}

.nav-links{

    display:flex;
    align-items:center;
    gap: 40px;

}

.nav-links a{

    color:var(--secondary);

    font-size:16px;
    font-weight:600;

    transition:var(--transition);

    position:relative;

}

.nav-links a::after{

    content:"";
    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-links a:hover::after{

    width:100%;

}
/*==========================
        MOBILE MENU BUTTON
===========================*/

.menu-toggle{

    display:none;

    background:none;

    border:none;

    font-size:28px;

    color:var(--secondary);

    cursor:pointer;

    transition:.3s;

}

.menu-toggle:hover{

    color:var(--primary);

}

/*==========================
BUTTON
===========================*/

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 34px;

    border-radius:999px;

    background:linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark));

    color:#fff;

    font-weight:700;

    transition:.35s;

    box-shadow:0 15px 35px rgba(239,68,68,.25);

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 22px 45px rgba(239,68,68,.35);

}

/*==========================
HEADER SPACE
===========================*/

section{

    padding:120px 0;

}

.section-heading span{

    display:inline-block;

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1.5px;

    margin-bottom:15px;

}

.section-heading h2{

    font-size:48px;

    color:var(--secondary);

    margin-bottom:18px;

}

.section-heading p{

    color:var(--text-light);

    margin:auto;

    line-height:1.8;

}
/*==========================================
            PART 2
            HERO SECTION
==========================================*/

.hero{
    padding:170px 0 100px;
    background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
    overflow:hidden;
    position:relative;
}

.hero::before{

    content:"";

    position:absolute;

    top:-180px;
    right:-180px;

    width:500px;
    height:500px;

    background:rgba(239,68,68,.06);

    border-radius:50%;

    filter:blur(80px);

}

.hero .container{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:90px;

}

/*=========================
LEFT
=========================*/

.hero-left{

    position:relative;
    z-index:2;

}

.hero-tag{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#fff5f5;

    color:var(--primary);

    border:1px solid rgba(239,68,68,.15);

    padding:12px 22px;

    border-radius:100px;

    font-size:15px;
    font-weight:600;

    margin-bottom:28px;

}

.hero-left h1{

    font-size:60px;

    line-height:1.08;

    font-weight:800;

    color:var(--secondary);

    letter-spacing:-2px;

    margin-bottom:28px;

}

.hero-left p{

    font-size:18px;

    color:var(--text-light);

    line-height:1.9;

    max-width:580px;

    margin-bottom:35px;

}

/*=========================
LIST
=========================*/

.hero-left ul{

    display:grid;

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

    gap:18px;

    margin-bottom:45px;

}

.hero-left li{

    display:flex;
    align-items:center;
    gap:12px;

    background:#fff;

    padding:16px 18px;

    border-radius:14px;

    box-shadow:var(--shadow-sm);

    font-weight:600;

    color:var(--secondary);

}

.hero-left li i{

    color:var(--primary);

}

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

.hero-btn{

    display:flex;

    align-items:center;

    gap:18px;

    margin-top: 10px;

    flex-wrap:wrap;

}

.btn-outline{

    padding:15px 34px;

    border-radius:999px;

    border:2px solid var(--primary);

    color:var(--primary);

    font-weight:700;

    transition:.35s;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/*=========================
RIGHT
=========================*/

.hero-right{

    display:flex;
    justify-content:flex-end;
    align-items:center;
    position:relative;
    flex: 1;

}

.hero-right::before{

    content:"";

    position:absolute;

    width: 620px;
    height:470px;

    background:linear-gradient(
    135deg,
    rgba(239,68,68,.08),
    rgba(18,52,91,.08));

    border-radius:50%;

    z-index:0;

}

.hero-right img{

    position:relative;
    z-index:2;

    width: 100%;
    max-width: 650px;
    height: auto;

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

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


/*=========================
ANIMATION
=========================*/

@keyframes float{

0%{
transform:translateY(0);
}

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

100%{
transform:translateY(0);
}

}

/*=========================
TABLET
=========================*/

@media(max-width:992px){

.hero{
padding:150px 0 90px;

}

.hero .container{

grid-template-columns:1fr;

text-align:center;

}

.hero-left{

order:2;

}

.hero-right{

order:1;

margin-bottom:40px;

}

.hero-left p{

margin:auto auto 35px;

}

.hero-left ul{

grid-template-columns:1fr 1fr;

}

.hero-btn{

justify-content:center;

}

.hero-right img{

max-width:480px;

}

}

/*=========================
MOBILE
=========================*/

@media(max-width:768px){

.hero{

padding:130px 0 70px;

}

.hero-left h1{

font-size:40px;

letter-spacing:-1px;

}

.hero-left p{

font-size:16px;

}

.hero-left ul{

grid-template-columns:1fr;

}

.hero-btn{

flex-direction:column;

}

.btn,
.btn-outline{

width:100%;

}

.hero-right img{

max-width:340px;

}

}

@media(max-width:480px){

.hero-left h1{

font-size:34px;

}

.hero-tag{

font-size:13px;

padding:10px 16px;

}

}

/*==========================================
            PART 3
     TRUSTED + SERVICES
==========================================*/

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

.trusted{
    padding:70px 0;
    background:var(--white);
}

.trusted .section-heading{
    text-align:center;
    margin-bottom:50px;
}

.trusted .section-heading p{
    font-size:18px;
    font-weight:600;
    color:var(--text-light);
    letter-spacing:.5px;
}

.trusted-logos{

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:80px;

}

.trusted-logos img{

    height:42px;
    width:auto;

    opacity:.59;

    transition:var(--transition);

}

.trusted-logos img:hover{

    opacity:1;
    filter:none;
    transform:translateY(-6px) scale(1.08);

}


/*==========================================
            SERVICES
==========================================*/

.services{

    padding:100px 0;
    background:linear-gradient(180deg,#ffffff,#f8fafc);

}

.services .section-heading{

    max-width:760px;
    margin:0 auto 70px;
    text-align:center;

}

.services .section-heading span{

    display:inline-block;

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:16px;

}

.services .section-heading h2{

    font-size:46px;

    line-height:1.2;

    color:var(--secondary);

    margin-bottom:18px;

}

.services .section-heading p{

    font-size:18px;

    color:var(--text-light);

    line-height:1.9;

}

/* Grid */

.services-grid{

    display:grid;

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

    gap:30px;

    align-items:stretch;

}

/* Card */

.service-card{

    background:#fff;

    padding:40px 35px;

    border-radius:22px;

    border:1px solid rgba(15,23,42,.06);

    box-shadow:0 10px 35px rgba(15,23,42,.05);

    transition:all .35s ease;

    display:flex;

    flex-direction:column;

    height:100%;

    position:relative;

    overflow:hidden;

}

/* Top Border Animation */

.service-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
    90deg,
    var(--primary),
    var(--primary-dark));

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

/* Hover */

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(15,23,42,.10);

}

/* Icon */

.service-card i{

    width:72px;
    height:72px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:rgba(239,68,68,.08);

    color:var(--primary);

    border-radius:18px;

    font-size:30px;

    margin-bottom:28px;

    transition:.35s;

}

.service-card:hover i{

    background:var(--primary);

    color:#fff;

    transform:rotate(-8deg) scale(1.08);

}

/* Heading */

.service-card h3{

    font-size:24px;

    color:var(--secondary);

    margin-bottom:16px;

}

/* Paragraph */

.service-card p{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:28px;

    flex:1;

}

/* Link */

.service-card a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--primary);

    font-weight:700;

    transition:.3s;

}

.service-card a:hover{

    gap:14px;

}


/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

.services-grid{

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

}   
.services .section-heading h2{

font-size:40px;

}

}

@media(max-width:768px){

.trusted{

padding:60px 0;

}

.trusted-logos{

gap:35px;

}

.trusted-logos img{

height:34px;

}

.services{

padding:80px 0;

}

.services-grid{

grid-template-columns:1fr;

}

.services .section-heading h2{

font-size:34px;

}

.service-card{

padding: 30px;

}

}

@media(max-width:480px){

.services .section-heading h2{

font-size:30px;

}

.service-card h3{

font-size:22px;

}

.service-card{

padding:28px 22px;

}

}

/*==========================================
            PART 4
            ABOUT SECTION
==========================================*/

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

.about{

    padding:90px 0;

    background:#fff;

}

.about .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

/*=====================
IMAGE
=====================*/

.about-left{

    position:relative;

}

.about-left img{

    width:100%;

    border-radius:28px;

    box-shadow:0 30px 70px rgba(15,23,42,.12);

    transition:.4s;

}

.about-left:hover img{

    transform:scale(1.02);

}

/* Floating Experience Card */

.about-left::after{

    content:"3+ Years Experience";

    position:absolute;

    bottom:30px;

    right:-20px;

    background:#fff;

    color:var(--secondary);

    font-weight:700;

    padding:18px 28px;

    border-radius:18px;

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

    border-left:5px solid var(--primary);

}

/*=====================
CONTENT
=====================*/

.about-right span{

    display:inline-block;

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:18px;

}

.about-right h2{

    font-size:46px;

    line-height:1.2;

    color:var(--secondary);

    margin-bottom:22px;

}

.about-right p{

    font-size:17px;

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:20px;

}

/*=====================
FEATURE BOXES
=====================*/

.about-item{

    display:flex;

    gap:18px;

    padding:22px;

    margin-top:20px;

    background:#fff;

    border:1px solid rgba(15,23,42,.06);

    border-radius:18px;

    box-shadow:0 8px 25px rgba(15,23,42,.05);

    transition:.35s;

}

.about-item:hover{

    transform:translateY(-6px);

    box-shadow:0 22px 45px rgba(15,23,42,.10);

}

.about-item i{

    width:58px;

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:16px;

    background:rgba(239,68,68,.08);

    color:var(--primary);

    font-size:22px;

    flex-shrink:0;

    transition:.35s;

}

.about-item:hover i{

    background:var(--primary);

    color:#fff;

}

.about-item h4{

    font-size:20px;

    color:var(--secondary);

    margin-bottom:8px;

}

.about-item p{

    margin:0;

    font-size:15px;

}

/*=========================
      BUTTON
=========================*/

.about-btn{

    margin-top:40px;

}

/*=========================
      TABLET
=========================*/

@media(max-width:992px){

.about .container{

grid-template-columns:1fr;

gap:60px;

}

.about-left{

order:1;
max-width: 650px;
margin: auto;
}

.about-right{

order:2;

text-align:center;

}

.about-left::after{

right:20px;

}

.about-item{

text-align:left;

}

}

/*=========================
      MOBILE
=========================*/

@media(max-width:768px){

.about{

padding:90px 0;

}

.about-right h2{

font-size:34px;

}

.about-right p{

font-size:16px;

}

.about-item{

padding: 20px;
text-align: left;

}

.about-item h4{

font-size:20px;

}

.about-left::after{

position:static;

display:inline-block;

margin-top:20px;
font-size: 14px;
padding: 14px 18px;

}

}

@media(max-width:480px){

.about-right h2{

font-size:30px;

}

.about-item{

flex-direction:column;

align-items:center;

text-align:center;

}

.about-item i{

margin-bottom:10px;

}

}
/*==========================================
            PART 5
        PORTFOLIO SECTION
==========================================*/

/*==========================================
              PORTFOLIO
==========================================*/

.portfolio{

    padding:100px 0;
    padding-top: 80px;
    background:linear-gradient(180deg,#f8fafc 0%,#ffffff 100%);

}

.portfolio .section-heading{

    max-width:760px;
    margin:0 auto 70px;
    text-align:center;

}

.portfolio-grid{

    display:grid;

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

    gap:35px;

}

/*=========================
CARD
=========================*/

.portfolio-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid rgba(15,23,42,.06);

    box-shadow:0 10px 35px rgba(15,23,42,.06);

    transition:.4s;

    display:flex;

    flex-direction:column;

    height:100%;

}

.portfolio-card:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 70px rgba(15,23,42,.12);

}

/*=========================
IMAGE
=========================*/

.portfolio-card{

    position:relative;

}

.portfolio-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.6s;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

/* Overlay */

.portfolio-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

    to top,

    rgba(15,23,42,.28),

    transparent 60%);

    opacity:0;

    transition:.35s;

    z-index:1;

}

.portfolio-card:hover::before{

    opacity:1;

}

/*=========================
CONTENT
=========================*/

.portfolio-content{

    padding:32px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.portfolio-content span{

    display:inline-block;

    width:max-content;

    background:rgba(239,68,68,.08);

    color:var(--primary);

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

}

.portfolio-content h3{

    font-size:26px;

    color:var(--secondary);

    margin-bottom:16px;

}

.portfolio-content p{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:25px;

    flex:1;

}

/*=========================
TECH TAGS
=========================*/

.portfolio-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:28px;

}

.portfolio-tags span{

    background:#f8fafc;

    color:var(--secondary);

    border:1px solid rgba(15,23,42,.08);

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;

    font-weight:600;

}

/*=========================
BUTTON
=========================*/

.portfolio-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:700;

    color:var(--primary);

    transition:.35s;

}

.portfolio-content a:hover{

    gap:16px;

    color:var(--secondary);

}

/*=========================
        Responsive
=========================*/

@media(max-width:992px){

.portfolio-grid{

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

}

.portfolio .section-heading h2{

font-size:40px;

}

}

@media(max-width:768px){

.portfolio{

padding:80px 0;

}

.portfolio-grid{

    grid-template-columns:1fr;

}

.portfolio-card img{

    height:220px;

}

.portfolio-content{

    padding:26px;

}

.portfolio-image img{

height:220px;

}

}

@media(max-width:480px){

.portfolio .section-heading h2{

font-size:30px;

}

.portfolio-content h3{

font-size:22px;

}

.portfolio-content{

padding:22px;

}

}
/*==========================================
        TESTIMONIALS
==========================================*/
/*
.testimonials{

    padding:120px 0;

    background:var(--white);

}

.testimonials .section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.testimonials .section-heading span{

    display:inline-block;

    color:var(--primary);

    font-size:15px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:15px;

}

.testimonials .section-heading h2{

    font-size:48px;

    color:var(--secondary);

    margin-bottom:20px;

}

.testimonials .section-heading p{

    color:var(--text-light);

    font-size:18px;

    line-height:1.8;

}

/* Grid */
/*
.testimonial-grid{

    display:grid;

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

    gap:30px;

}

/* Card 

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

/* Quote

.testimonial-card::before{

    content:"❝";

    position:absolute;

    top:20px;

    right:25px;

    font-size:70px;

    color:rgba(239,68,68,.08);

}

/* Stars 

.stars{

    display:flex;

    gap:4px;

    margin-bottom:20px;

    color:#FBBF24;

    font-size:18px;

}

/* Review 

.review{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:30px;

    font-size:16px;

}

/* Client 

.client{

    display:flex;

    align-items:center;

    gap:15px;

}

.client img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid var(--primary);

}

.client h4{

    font-size:18px;

    color:var(--secondary);

    margin-bottom:4px;

}

.client span{

    color:var(--text-light);

    font-size:14px;

}

/*==========================================
        RESPONSIVE
==========================================

@media(max-width:992px){

.testimonial-grid{

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

}

}

@media(max-width:768px){

.testimonials{

padding:80px 0;

}

.testimonial-grid{

grid-template-columns:1fr;

}

.testimonials .section-heading h2{

font-size:34px;

}

.testimonial-card{

padding:28px;

}

}

@media(max-width:480px){

.testimonials .section-heading h2{

font-size:30px;

}

.client{

flex-direction:column;

text-align:center;

}

}*/
/*==========================================
            PART 6
      PROCESS + CTA + FAQ
==========================================*/


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

.process{

    padding:120px 0;
    background:linear-gradient(180deg,#ffffff,#f8fafc);

}

.process .section-heading{

    text-align:center;
    max-width:760px;
    margin:0 auto 70px;

}

.process .section-heading span{

    color:var(--primary);
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;

}

.process .section-heading h2{

    font-size:48px;
    color:var(--secondary);
    margin:18px 0;

}

.process .section-heading p{

    color:var(--text-light);
    font-size:18px;
    line-height:1.9;

}

.process-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.process-card{

    background:#fff;

    padding:40px 30px;

    border-radius:22px;

    border:1px solid rgba(15,23,42,.06);

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

    position:relative;

}

.process-card:hover{

    transform:translateY(-12px);
    box-shadow:0 35px 80px rgba(15,23,42,.15);

}
.process-card i{

    font-size:40px;


}

.process-number{

    width:58px;

    height:58px;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark));

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    font-size:22px;

}

.process-icon{

    width:82px;
    height:82px;

    margin:auto auto 25px;

    border-radius:20px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#fff5f5;

    color:var(--primary);

    font-size:32px;

    transition:.35s;

}

.process-card:hover .process-icon{

    background:var(--primary);

    color:#fff;

    transform:rotate(-8deg);

}

.process-card h3{

    font-size:24px;
    color:var(--secondary);
    margin-bottom:16px;

}

.process-card p{

    color:var(--text-light);
    line-height:1.8;

}

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

.cta{

    padding:120px 0;

    background:linear-gradient(135deg,
    var(--secondary),
    #244b7d);

    color:#fff;

    text-align:center;

}

.cta-content{

    max-width:820px;
    margin:auto;

}

.cta-content span{

    display:inline-block;

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

    padding:12px 22px;

    border-radius:100px;

    font-size:14px;
    font-weight:600;

    margin-bottom:22px;

}

.cta-content h2{

    font-size:52px;
    line-height:1.15;

    margin-bottom:25px;

}

.cta-content p{

    font-size:18px;
    line-height:1.9;

    opacity:.9;

    margin-bottom:40px;

}

.cta-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}

.cta .btn{

    background:#fff;
    color:var(--secondary);
    padding:18px 28px;
    font-size:16px;

}

.cta .btn:hover{

    background:var(--primary);
    color:#fff;

}

.cta .btn-outline{

    border:2px solid #fff;
    color:#fff;

}

.cta .btn-outline:hover{

    background:#fff;
    color:var(--secondary);

}

/*==========================================
                FAQ
==========================================*/

.faq{

    padding:120px 0;

    background:#f8fafc;

}

.faq .section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}
.faq-container{

    max-width:900px;
    margin: auto;

}

.faq-item{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    margin-bottom:20px;

    border:1px solid rgba(15,23,42,.06);

    box-shadow:0 8px 25px rgba(15,23,42,.05);

    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-4px);
    box-shadow: 18px 45px rgba(15,23,42,.08);

}

.faq-question{

    width:100%;

    padding:24px 30px;

    background:none;

    border:none;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:18px;

    font-weight:700;

    color:var(--secondary);

}

.faq-question i{

    color:var(--primary);

    transition:.35s;

}

.faq-item.active .faq-question i{

    transform:rotate(180deg);

}

.faq-answer{

    padding: 0 ;

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-answer p{

    padding:0 30px 28px;

    color:var(--text-light);

    line-height:1.9;

}



/*==========================================
            RESPONSIVE
==========================================*/

@media(max-width:992px){

.process-grid{

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

}
.testimonial-grid{

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

}

.cta-content h2{

font-size:42px;

}

}

@media(max-width:768px){


.testimonial-card,
.process,
.cta,
.faq{

padding:80px 0;

}

.testimonial-grid,
.process-grid{

grid-template-columns:1fr;

}

.process .section-heading h2,
.cta-content h2{

font-size:34px;

}

.faq-question{

font-size:17px;
padding:22px;

}

.faq-answer p{

padding:0 22px 22px;

}

.cta-buttons{

flex-direction:column;

}

.cta .btn,
.cta .btn-outline{

width:100%;

}

}

@media(max-width:480px){

.process-card{

padding:28px 22px;

}

.process .section-heading h2,
.cta-content h2{

font-size:30px;

}

}
/*==========================================
            PART 7
   CONTACT + FOOTER + RESPONSIVE
==========================================*/


/*==========================================
            CONTACT
==========================================*/

.contact{
    padding:120px 0;
    background:#fff;
}

.contact .section-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 70px;
}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

/* Contact Info */

.contact-info{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.info-box{

    display:flex;
    gap:20px;

    padding:28px;

    background:#fff;

    border:1px solid rgba(15,23,42,.06);

    border-radius:22px;

    transition:.35s;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.info-box:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(15,23,42,.10);


}

.info-box i{

    width:60px;
    height:60px;

    border-radius:18px;

    background:rgba(239,68,68,.08);

    color:var(--primary);

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:24px;

    flex-shrink:0;

}

.info-box h3{

    font-size:22px;
    color:var(--secondary);
    margin-bottom:8px;

}

.info-box p{

    color:var(--text-light);
    line-height:1.8;

}

/* Contact Form */

.contact-form{

    background:#fff;

    padding:40px;

    border-radius:24px;

    border:1px solid rgba(15,23,42,.06);

    box-shadow:var(--shadow-md);

}

.contact-form form{

    display:flex;
    flex-direction:column;
    gap:22px;

}

.input-group{

    position:relative;

}

.input-group i{

    position:absolute;

    top:50%;
    left:20px;

    transform:translateY(-50%);

    color:var(--primary);

}

.textarea-group i{

    top:28px;

    transform:none;

}

.input-group input,
.input-group select,
.textarea-group textarea{

    width:100%;

    padding:18px 20px 18px 58px;

    border:1px solid var(--border);

    border-radius:16px;

    font-size:16px;

    font-family:inherit;

    transition:var(--transition);

}

.input-group input:focus,
.input-group select:focus,
.textarea-group textarea:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(239,68,68,.12);

}

.textarea-group textarea{

    min-height:170px;

    resize:none;

}

.contact-form .btn{
    width:240px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#ff5b5b,#ef4444);
    color:#fff;

    border:none;
    border-radius:999px;

    font-size:16px;
    font-weight:700;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(239,68,68,.25);
    transition:.35s;
}

.contact-form .btn:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(239,68,68,.35);
}

/* Screen Reader Only */
.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}
#result{
    margin-top:15px;
    text-align:center;
    font-weight:600;
    font-size:15px;
}

#submitBtn:disabled{
    opacity:.7;
    cursor:not-allowed;
}
/* ===============================
   Contact Form Messages
================================== */

.form-message{
    margin-top:20px;
    text-align:center;
}

.message-box{
    padding:16px 20px;
    border-radius:14px;
    font-size:15px;
    line-height:1.7;
    font-weight:500;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    animation:fadeIn .3s ease;
}

.form-message.success .message-box{
    background:#ecfdf5;
    color:#166534;
    border:1px solid #bbf7d0;
}

.form-message.error .message-box{
    background:#fef2f2;
    color:#991b1b;
    border:1px solid #fecaca;
}

#submitBtn:disabled{
    opacity:.8;
    cursor:not-allowed;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

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

.footer{

    background:var(--secondary);

    color:#fff;

    padding:90px 0 30px;

    position:relative;

    overflow:hidden;

}
.footer::before{

    content:"";

    position:absolute;

    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

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

}
.footer .container{

    position:relative;

    z-index:2;
}


.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;

    margin-bottom:60px;

}

.footer-logo{

    width:190px;

    margin-bottom:22px;

}

.footer-col h3{

    font-size:22px;

    margin-bottom:22px;

    color:#fff;

}

.footer-col p{

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

    line-height:1.9;

    max-width:380px;

}

.footer-col ul{

    display:flex;

    flex-direction:column;

    gap:14px;


}

.footer-col ul li{

    display:flex;
    align-items:center;
    gap:10px;

}

.footer-col ul li i{

    color:var(--primary);

}

.footer-col ul li a{

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

    transition:.35s;

}

.footer-col ul li a:hover{

    color:#fff;

    padding-left:8px;


}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:28px;

}

.footer-social a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

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

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--primary);

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    margin-top:40px;

    padding-top:28px;

    text-align:center;

}

.footer-bottom p{

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


}



/*==========================================
        GLOBAL RESPONSIVE
==========================================*/

@media(max-width:1200px){

.container{

width:min(95%,1180px);

}

}

@media(max-width:992px){

.contact-wrapper{

grid-template-columns:1fr;

}

.footer-grid{

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

}

.hero .container,
.about .container{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

section{

padding:80px 0;

}

.container{

width:92%;

}

.hero{

padding-top:130px;

}

.hero-left,
.hero-right,
.about-left,
.about-right{

text-align:center;

}

.hero-btn,
.cta-buttons{

justify-content:center;

flex-direction:column;

}

.btn,
.btn-outline{

width:100%;

}

.hero-left ul{

grid-template-columns:1fr;

}

.services-grid,
.portfolio-grid,
.process-grid,
.footer-grid{

grid-template-columns:1fr;

}

.contact-form{

padding:30px;

}

.contact-form button{

width:100%;

}

.footer{

text-align:center;

}
.footer-grid{

    grid-template-columns:1fr;

    gap:40px;

}
.footer-about p{

    margin:auto;

}


.footer-social{

justify-content:center;

}

.footer-col ul li{

justify-content:center;

}

.info-box{

flex-direction:column;
align-items:center;
text-align:center;

}

}

/*==========================
      SMALL MOBILE
===========================*/

@media (max-width:480px){

/* Navbar */

.navbar .container{

    height:65px;
    padding:0 15px;

}

.logo img{

    width:60px;
    height:auto;

}

.menu-toggle{

    font-size:24px;

}

.nav-links{

    top:65px;

}

.nav-links a{

    padding:16px;
    font-size:15px;

}

/* Hero */

.hero{

    padding-top:100px;

}

.hero-left h1{

    font-size:30px;
    line-height:1.2;

}

.hero-left p{

    font-size:15px;

}

.hero-btn{

    flex-direction:column;
    gap:15px;

}

.btn,
.btn-outline{

    width:100%;

}

}

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

@media (max-width:768px){

.menu-toggle{

    display:block;

}
.logo img{

    width:120px;

}


.navbar .btn{

    display:none;

}

.navbar .container{

    position:relative;

}

.nav-links{

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#fff;

    display:flex;

    flex-direction:column;

    align-items:center;

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
    
    gap: 18px;

}

.nav-links.active{

    max-height:450px;

}

.nav-links a{

    width:100%;

    text-align:center;

    padding:18px;

    border-bottom:1px solid #eee;

}

}

/*==========================================
      FINAL UI POLISH
==========================================*/

/* Better Section Spacing */

section{

    padding:120px 0;

}
/* Images */

img{

    display:block;

    max-width:100%;

}

/* Better Selection */

::selection{

    background:var(--primary);

    color:#fff;

}

/* Premium Cards */

.service-card,
.portfolio-card,
.process-card,
.testimonial-card,
.contact-form,
.info-box,
.faq-item{

    transition:all .35s ease;

}

/* Better Hover */

.service-card:hover,
.portfolio-card:hover,
.process-card:hover,
.testimonial-card:hover,
.info-box:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(15,23,42,.12);

}

/* Buttons */

.btn,
.btn-outline{

    transition:all .35s ease;

}

.btn:hover{

    transform:translateY(-4px);

}

.btn-outline:hover{

    transform:translateY(-4px);

}

/* Better Radius */

.service-card,
.portfolio-card,
.process-card,
.testimonial-card,
.contact-form,
.info-box,
.faq-item{

    border-radius:22px;

}

/* Premium Shadows */

.service-card,
.portfolio-card,
.process-card,
.testimonial-card{

    box-shadow:
    0 8px 30px rgba(15,23,42,.05);

}

/* Headings */

.section-heading{

    margin-bottom:70px;

}

.section-heading span{

    font-size:14px;

    letter-spacing:2px;

}

.section-heading h2{

    line-height:1.15;

}

.section-heading p{

    margin-top:15px;

}

html{
    scroll-behavior:smooth;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

*{
    -webkit-tap-highlight-color:transparent;
}
html,
body {
    overflow-x: hidden;
    width: 100%;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    overflow-x: hidden;
}

.review-popup{
position:fixed;
bottom:20px;
right:20px;
z-index:9999;
animation:slideUp .7s;
}

.review-box{
width:260px;
padding:18px;
background:rgba(255,255,255,.95);
backdrop-filter:blur(12px);
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,.18);
text-align:center;
position:relative;
}

.google-logo{
width:28px;
height:auto;
margin-bottom:8px;
}

.review-box h4{
margin:5px 0;
font-size:18px;
font-weight:700;
}

.stars{
color:#FFC107;
font-size:22px;
letter-spacing:2px;
margin:8px 0;
}

.review-box p{
font-size:14px;
color:#666;
margin-bottom:15px;
line-height:1.4;
}

.review-box a{
display:inline-block;
padding:10px 18px;
background:#4285F4;
color:#fff;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.review-box a:hover{
background:#1b66d1;
}

.close-review{
position:absolute;
top:8px;
right:10px;
border:none;
background:none;
font-size:22px;
cursor:pointer;
color:#777;
}

/* Mobile */
@media (max-width:768px){

.review-popup{
bottom:12px;
right:12px;
}

.review-box{
width:200px;
padding:12px;
border-radius:14px;
}

.google-logo{
width:22px;
}

.review-box h4{
font-size:16px;
}

.stars{
font-size:18px;
margin:6px 0;
}

.review-box p{
font-size:12px;
margin-bottom:10px;
}

.review-box a{
padding:8px 12px;
font-size:13px;
}

.close-review{
font-size:18px;
top:6px;
right:8px;
}

}

@keyframes slideUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}
