/*==================================================
  CV LOCAL SEO WEBSITE
  Main Stylesheet
==================================================*/

/*=========================
ROOT VARIABLES
=========================*/

:root{

    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --secondary:#0f172a;

    --accent:#f59e0b;

    --success:#10b981;
    --danger:#ef4444;

    --white:#ffffff;

    --light:#f8fafc;

    --gray:#64748b;

    --dark:#111827;

    --border:#e5e7eb;

    --radius:18px;

    --shadow:
        0 12px 35px rgba(0,0,0,.08);

    --shadow-lg:
        0 20px 60px rgba(0,0,0,.12);

    --transition:.35s ease;

}

/*=========================
RESET
=========================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    color:var(--dark);

    background:var(--white);

    line-height:1.7;

    overflow-x:hidden;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    cursor:pointer;

    border:none;

    background:none;

}

section{

    padding:100px 0;

}

/*=========================
CONTAINER
=========================*/

.container{

    width:min(1150px,92%);

    margin:auto;

}

/*=========================
HEADINGS
=========================*/

h1{

    font-size:64px;

    line-height:1.1;

    font-weight:800;

}

h2{

    font-size:44px;

    font-weight:800;

}

h3{

    font-size:26px;

    font-weight:700;

}

p{

    color:var(--gray);

    font-size:17px;

}

/*=========================
SECTION TITLE
=========================*/

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.section-header span{

    color:var(--primary);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}

.section-header h2{

    margin:15px 0;

}

.section-header p{

    max-width:700px;

    margin:auto;

}

/*=========================
BUTTONS
=========================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:var(--primary);

    color:white;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

    box-shadow:var(--shadow);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-outline:hover{

    background:var(--primary);

    color:white;

}

.btn-nav{

    padding:14px 28px;

    background:var(--primary);

    color:white;

    border-radius:50px;

    transition:var(--transition);

}

.btn-nav:hover{

    background:var(--primary-dark);

}

/*=========================
HELPERS
=========================*/

.center-btn{

    margin-top:50px;

    text-align:center;

}

.text-center{

    text-align:center;

}

.mt-5{

    margin-top:50px;

}
/*==================================================
  HEADER & NAVIGATION
==================================================*/

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(14px);

    box-shadow:0 2px 20px rgba(0,0,0,.05);

    z-index:1000;

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:85px;

}

.logo{

    font-size:32px;

    font-weight:800;

    color:var(--secondary);

}

.logo span{

    color:var(--primary);

}

.navbar ul{

    display:flex;

    align-items:center;

    gap:40px;

}

.navbar a{

    position:relative;

    font-weight:600;

    color:var(--dark);

    transition:var(--transition);

}

.navbar a:hover,

.navbar a.active{

    color:var(--primary);

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.navbar a:hover::after,

.navbar a.active::after{

    width:100%;

}

.menu-btn{

    display:none;

    font-size:26px;

    color:var(--dark);

    cursor:pointer;

}

/*==================================================
  HERO
==================================================*/

.hero{

    padding-top:160px;

    padding-bottom:100px;

    background:linear-gradient(
        135deg,
        #f8fbff 0%,
        #eef5ff 100%
    );

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.hero-content h1{

    margin:20px 0;

}

.hero-content h1 span{

    color:var(--primary);

}

.hero-content p{

    max-width:560px;

    margin-bottom:35px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#dbeafe;

    color:var(--primary);

    padding:10px 18px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.hero-rating{

    display:flex;

    align-items:center;

    gap:20px;

}

.hero-rating div{

    font-size:24px;

}

.hero-rating p{

    max-width:350px;

    font-size:15px;

}

/*==================================================
  HERO IMAGE
==================================================*/

.hero-image{

    position:relative;

}

.hero-image img{

    max-width:480px;

    margin:auto;

    border-radius:30px;

    box-shadow:var(--shadow-lg);

}

/*==================================================
  FLOATING CARDS
==================================================*/

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:12px;

    background:white;

    padding:16px 22px;

    border-radius:18px;

    box-shadow:var(--shadow);

    font-weight:600;

    animation:float 4s ease-in-out infinite;

}

.floating-card i{

    color:var(--primary);

}

.card1{

    top:15%;

    left:-30px;

}

.card2{

    bottom:10%;

    right:-20px;

}

/*==================================================
  ANIMATIONS
==================================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-content{

    animation:fadeUp .8s ease;

}

.hero-image{

    animation:fadeUp 1s ease;

}
/*==================================================
  STATISTICS
==================================================*/

.stats{

    background:var(--secondary);

    color:white;

    padding:70px 0;

}

.stats .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    text-align:center;

}

.stat-box{

    padding:25px;

}

.stat-box h2{

    font-size:52px;

    color:var(--accent);

    margin-bottom:10px;

}

.stat-box p{

    color:#cbd5e1;

    font-size:16px;

}

/*==================================================
  SERVICES
==================================================*/

.services{

    background:var(--light);

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.service-card{

    background:white;

    padding:40px 30px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:var(--transition);

    border:1px solid transparent;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#dbeafe;

    box-shadow:var(--shadow-lg);

}

.service-card i{

    width:75px;

    height:75px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:#eff6ff;

    color:var(--primary);

    font-size:32px;

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:15px;

}

.service-card p{

    margin-bottom:20px;

}

/*==================================================
  WHY CHOOSE ME
==================================================*/

.why{

    background:white;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.why-image img{

    border-radius:25px;

    box-shadow:var(--shadow-lg);

}

.why-content span{

    color:var(--primary);

    font-weight:700;

    text-transform:uppercase;

}

.why-content h2{

    margin:18px 0 25px;

}

.why-content p{

    margin-bottom:30px;

}

.why-content ul{

    margin-bottom:35px;

}

.why-content li{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    font-weight:500;

}

.why-content li i{

    color:var(--success);

    font-size:20px;

}

/*==================================================
  TRUSTED BY
==================================================*/

.trust{

    background:#f8fafc;

    padding:70px 0;

}

.trust h3{

    text-align:center;

    color:var(--gray);

    margin-bottom:40px;

    font-size:18px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

}

.trust-logos{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.trust-logos div{

    background:white;

    padding:25px;

    border-radius:16px;

    text-align:center;

    font-weight:700;

    color:var(--secondary);

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    transition:var(--transition);

}

.trust-logos div:hover{

    transform:translateY(-6px);

    color:var(--primary);

    box-shadow:var(--shadow);

}

/*==================================================
  GENERAL CARD HOVER EFFECT
==================================================*/

.service-card,
.stat-box,
.portfolio-card,
.testimonial-card{

    transition:all .35s ease;

}

.service-card:hover,
.portfolio-card:hover,
.testimonial-card:hover{

    transform:translateY(-10px);

}

/*==================================================
  SIMPLE FADE-IN ANIMATION
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}
/*==================================================
  PORTFOLIO
==================================================*/

.portfolio{

    background:#ffffff;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:30px;

}

.portfolio-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.portfolio-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.portfolio-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.portfolio-card:hover img{

    transform:scale(1.05);

}

.portfolio-content{

    padding:30px;

}

.portfolio-content span{

    display:inline-block;

    background:#eff6ff;

    color:var(--primary);

    padding:6px 14px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}

.portfolio-content h3{

    margin-bottom:15px;

}

.portfolio-content a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--primary);

    font-weight:600;

    margin-top:20px;

}

/*==================================================
  TESTIMONIALS
==================================================*/

.testimonials{

    background:var(--light);

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.testimonial-card{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.stars{

    color:#fbbf24;

    font-size:20px;

    margin-bottom:20px;

}

.client{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:25px;

}

.client img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

}

.client h4{

    margin-bottom:5px;

}

.client small{

    color:var(--gray);

}

/*==================================================
  CTA
==================================================*/

.cta{

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:white;

    text-align:center;

}

.cta h2{

    color:white;

    margin-bottom:20px;

}

.cta p{

    color:#dbeafe;

    max-width:650px;

    margin:0 auto 40px;

}

.cta .btn-primary{

    background:white;

    color:var(--primary);

}

.cta .btn-primary:hover{

    background:#f8fafc;

}

/*==================================================
  FOOTER
==================================================*/

.footer{

    background:#0f172a;

    color:white;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:40px;

}

.footer h2{

    color:white;

    margin-bottom:20px;

}

.footer h2 span{

    color:var(--primary);

}

.footer h3{

    font-size:20px;

    margin-bottom:20px;

}

.footer p{

    color:#cbd5e1;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#cbd5e1;

    transition:var(--transition);

}

.footer ul li a:hover{

    color:white;

    padding-left:6px;

}

.footer-bottom{

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:25px;

    text-align:center;

}

.footer-bottom p{

    color:#94a3b8;

}

/*==================================================
  SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f5f9;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*==================================================
  SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:white;

}

/*==================================================
  BACK TO TOP
==================================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    background:var(--primary);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    box-shadow:var(--shadow);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

}

.back-to-top.active{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-6px);

    background:var(--primary-dark);

}
/*==================================
  FAQ
==================================*/

.faq{

    background:#f8fafc;

}

.faq-list{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:white;

    margin-bottom:20px;

    border-radius:16px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 28px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    background:white;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.35s ease;

}

.faq-answer p{

    padding:0 28px 25px;

}

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-item.active i{

    transform:rotate(45deg);

}
/*==============================
CONTACT
==============================*/

.contact{

background:#fff;

}

.contact-form{

max-width:800px;

margin:auto;

}

.field{

margin-bottom:20px;

}

.field input,
.field textarea,
.field select{

width:100%;

padding:18px;

border:1px solid #dbe4ef;

border-radius:12px;

font-size:16px;

font-family:inherit;

transition:.3s;

background:#fff;

}

.field input:focus,
.field textarea:focus,
.field select:focus{

outline:none;

border-color:var(--primary);

box-shadow:0 0 0 4px rgba(37,99,235,.15);

}

.field textarea{

resize:vertical;

}

.contact-form button{

border:none;

cursor:pointer;

}

.map iframe{

width:100%;

height:450px;

border:none;

display:block;

}