/*==================================================
                TENCRETE
        Premium AI Company Theme
===================================================*/

/*===============================
    GOOGLE FONT
================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

.logo span {
    font-size: 26px;
    font-weight: 800;
}

/*===============================
        ROOT VARIABLES
================================*/

:root{

    --primary:#3B82F6;
    --secondary:#22D3EE;

    --dark:#0B1120;
    --dark-light:#111827;

    --card:#1E293B;

    --white:#ffffff;

    --text:#d1d5db;

    --heading:#f9fafb;

    --border:rgba(255,255,255,.08);

    --gradient:linear-gradient(
        135deg,
        #3B82F6,
        #22D3EE
    );

    --shadow:0 20px 50px rgba(0,0,0,.35);

    --transition:.35s ease;

}

/*===============================
        RESET
================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--dark);

    color:var(--text);

    overflow-x:hidden;

}

/*===============================
        SCROLLBAR
================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#08101d;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--secondary);

}

/*===============================
        TEXT
================================*/

h1,
h2,
h3,
h4,
h5{

    color:var(--heading);

    font-weight:700;

}

p{

    color:var(--text);

    line-height:1.8;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

img{

    max-width:100%;

    display:block;

}

/*===============================
        CONTAINER
================================*/

.container{

width:100%;

max-width:1600px;

padding:0 70px;

margin:auto;

}

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

section{

    padding:100px 0;

    position:relative;

}

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

.primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    background:var(--gradient);

    color:white;

    border-radius:14px;

    font-weight:600;

    transition:var(--transition);

    box-shadow:0 10px 25px rgba(59,130,246,.35);

}

.primary-btn:hover{

    transform:translateY(-4px);

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

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

    border-radius:14px;

    color:white;

    transition:var(--transition);

}

.secondary-btn:hover{

    background:var(--primary);

}

/*===============================
        PAGE HERO
================================*/

.page-hero{

    padding-top:180px;

    text-align:center;

}

.page-hero h1{

    font-size:60px;

    margin-bottom:20px;

}

.page-hero p{

    max-width:750px;

    margin:auto;

    font-size:18px;

}

/*===============================
    GRADIENT TEXT
================================*/

.gradient-text{

    background:var(--gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

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

.glass{

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

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

    backdrop-filter:blur(15px);

    border-radius:20px;

}

/*===============================
        SELECTION
================================*/

::selection{

    background:var(--primary);

    color:white;

}

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

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    transition:all .4s ease;

}

header.scrolled{

    background:rgba(11,17,32,.92);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:0 8px 30px rgba(0,0,0,.25);

}

.navbar{

    width:100%;

    max-width:1600px;

    margin:auto;

    padding:0 70px;

    height:85px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/*=========================
        LOGO
=========================*/

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:28px;

    font-weight:700;

    color:var(--white);

}

.logo i{

    color:var(--secondary);

    font-size:30px;

}

.logo:hover{

    transform:scale(1.03);

    transition:.3s;

}

/*=========================
      NAV LINKS
=========================*/

.nav-links{

    display:flex;

    align-items:center;

    gap:35px;

}

.nav-links li{

    position:relative;

}

.nav-links a{

    color:var(--white);

    font-size:16px;

    font-weight:500;

    transition:.3s;

    position:relative;

}

/* Animated underline */

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gradient);

    transition:.35s;

}

.nav-links a:hover{

    color:var(--secondary);

}

.nav-links a:hover::after{

    width:100%;

}

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

.navbar .primary-btn{

    padding:14px 28px;

    border-radius:12px;

    font-size:15px;

}

/*=========================
      MOBILE MENU ICON
=========================*/

.menu-btn{

    display:none;

    width:48px;

    height:48px;

    border-radius:12px;

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

    border:1px solid rgba(255,255,255,.08);

    color:var(--white);

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.3s;

}

.menu-btn:hover{

    background:var(--primary);

}

.menu-btn i{

    font-size:22px;

}

/* Hide on desktop */

@media(min-width:993px){

    .menu-btn{

        display:none;

    }

}

/*=========================
      HERO SECTION
=========================*/

.hero{

    min-height:100vh;

    padding-top:140px;

    width:100%;

    max-width:1600px;

    padding:170px 70px 80px;

    margin:auto;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:60px;

    position:relative;

}

/* Background glow */

.hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    right:-150px;

    top:-100px;

    background:#2563eb;

    opacity:.15;

    border-radius:50%;

    filter:blur(120px);

    z-index:-1;

}

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

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    border-radius:50px;

    background:rgba(59,130,246,.15);

    color:#8dd9ff;

    margin-bottom:30px;

    border:1px solid rgba(59,130,246,.25);

}

.hero h1{

    font-size:64px;

    line-height:1.15;

    margin-bottom:25px;

}

.hero p{

    font-size:18px;

    margin-bottom:35px;

    max-width:650px;

}

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

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:45px;

    flex-wrap:wrap;

}

/*=========================
      STATISTICS
=========================*/

.hero-stats{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.stat-card{

    width:160px;

    padding:22px;

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

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border-radius:18px;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:#3B82F6;

}

.stat-card h2{

    color:var(--secondary);

    font-size:34px;

    margin-bottom:8px;

}

.stat-card p{

    font-size:14px;

}

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

.hero-right{

    position:relative;

}

.dashboard-card{

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

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:24px;

    padding:30px;

    box-shadow:var(--shadow);

}

.dashboard-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:20px;

}

.status{

    color:#00ff9d;

    font-size:14px;

    font-weight:600;

}

#salesChart{

    width:100%;

    height:320px;

}

/*=========================
     FLOATING KPI CARDS
=========================*/

.floating-card{

    position:absolute;

    padding:18px 22px;

    border-radius:18px;

    background:rgba(30,41,59,.9);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 12px 30px rgba(0,0,0,.35);

    backdrop-filter:blur(18px);

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

}

.floating-card h4{

    font-size:14px;

    margin-bottom:8px;

    color:#cbd5e1;

}

.floating-card h2{

    color:var(--secondary);

}

.revenue{

    top:-25px;

    left:-35px;

}

.accuracy{

    right:-30px;

    top:70px;

}

.growth{

    bottom:-25px;

    right:20px;

}

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

.services{

    background:#0d1527;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--secondary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

    font-weight:600;

}

.section-title h2{

    font-size:48px;

    margin-top:12px;

}

.section-title p{

    max-width:700px;

    margin:20px auto 0;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.service-card{

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

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:35px;

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    width:200px;

    height:200px;

    background:var(--gradient);

    top:-150px;

    right:-120px;

    opacity:.15;

    border-radius:50%;

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:var(--primary);

    box-shadow:0 25px 50px rgba(0,0,0,.35);

}

.service-card:hover::before{

    transform:scale(1.5);

}

.service-card i{

    font-size:50px;

    color:var(--secondary);

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:15px;

}

.service-card ul{

    margin-top:25px;

}

.service-card li{

    margin-bottom:12px;

    color:#cbd5e1;

}

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

.about{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:25px;

    box-shadow:var(--shadow);

}

.about-content h2{

    font-size:48px;

    margin-bottom:20px;

}

.about-content p{

    margin-bottom:20px;

}

.about-features{

    margin-top:35px;

    display:grid;

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

    gap:20px;

}

.feature{

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

    padding:20px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

}

.feature i{

    color:var(--secondary);

    font-size:28px;

    margin-bottom:15px;

}

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

.portfolio{

    background:#0d1527;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.project-card{

    overflow:hidden;

    border-radius:25px;

    background:#182236;

    transition:.35s;

}

.project-card img{

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-content{

    padding:30px;

}

.project-content h3{

    margin-bottom:15px;

}

.project-content p{

    margin-bottom:20px;

}

/*==================================================
                PRICING
==================================================*/

.pricing-info{
    padding:100px 0;
}

.pricing-content{
    max-width:750px;
    margin:0 auto;
    text-align:center;
}

.pricing-badge{
    display:inline-block;
    padding:10px 20px;
    border:1px solid rgba(40,190,255,.35);
    border-radius:30px;
    color:var(--secondary);
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.pricing-content h2{
    font-size:42px;
    margin-bottom:20px;
}

.pricing-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.pricing-content .primary-btn{
    display:inline-block;
}

/*==================================================
            TESTIMONIALS
==================================================*/

.testimonials{

    background:#0d1527;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:30px;

}

.testimonial-card{

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

    padding:35px;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.08);

}

.testimonial-card img{

    width:70px;

    height:70px;

    border-radius:50%;

    margin-bottom:20px;

}

.stars{

    color:#FFD43B;

    margin:18px 0;

}

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

.faq{

    max-width:900px;

    margin:auto;

}

.faq-item{

    margin-bottom:20px;

    border-radius:18px;

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

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

}

.faq-question{

    padding:22px 28px;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-weight:600;

}

.faq-answer{

    padding:0 28px;

    max-height:0;

    overflow:hidden;

    transition:.35s;

}

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

.contact-cta{

    text-align:center;

    background:linear-gradient(135deg,#111827,#0B1120);

    border-radius:30px;

    padding:80px 50px;

    border:1px solid rgba(255,255,255,.08);

}

.contact-cta h2{

    font-size:48px;

    margin-bottom:20px;

}

.contact-cta p{

    max-width:700px;

    margin:0 auto 40px;

}

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

footer{

    background:#060b15;

    padding:80px 0 30px;

}

.footer-grid{

    width:100%;

    max-width:1600px;

    padding:0 70px;

    margin:auto;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-grid h2{

    margin-bottom:20px;

}

.footer-grid h3{

    margin-bottom:20px;

}

.footer-grid ul li{

    margin-bottom:14px;

}

.footer-grid a{

    transition:.3s;

}

.footer-grid a:hover{

    color:var(--secondary);

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-icons a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

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

    transition:.35s;

}

.social-icons a:hover{

    background:var(--primary);

    transform:translateY(-5px);

}

.footer-bottom{

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

    margin-top:60px;

    padding-top:25px;

    text-align:center;

    color:#94a3b8;

}

/*==================================================
            CONSULTATION FORM
==================================================*/

.contact-form{
    padding:100px 0;
    background:#0B1120;
}

.contact-form .container{
    max-width:800px;
    margin:auto;
}

.contact-form form{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:20px;
    padding:45px;
    display:flex;
    flex-direction:column;
    gap:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;
    padding:16px 20px;

    background:#111827;

    color:#fff;

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    font-size:16px;

    outline:none;

    transition:.35s;

}

.contact-form textarea{

    resize:none;

    min-height:180px;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#94A3B8;

}

.contact-form select{

    color:#CBD5E1;

}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{

    border-color:#22D3EE;

    box-shadow:0 0 20px rgba(34,211,238,.25);

}

.contact-form button{

    margin-top:10px;

    padding:18px;

    background:linear-gradient(90deg,#2563EB,#22D3EE);

    color:#fff;

    font-size:17px;

    font-weight:700;

    border:none;

    border-radius:14px;

    cursor:pointer;

    transition:.35s;

}

.contact-form button:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(34,211,238,.35);

}

.contact-form button:active{

    transform:scale(.98);

}
/*==================================================
                CONTACT HERO
==================================================*/

.page-hero{

    padding:180px 0 90px;

    text-align:center;

    background:linear-gradient(180deg,#0B1120,#111827);

}

.page-hero h1{

    font-size:56px;

    color:#fff;

    margin-bottom:20px;

}

.page-hero p{

    color:#94A3B8;

    font-size:20px;

    max-width:700px;

    margin:auto;

}

/*==================================================
                TENCRETE TEAM SECTION
==================================================*/

.team-section {
    padding: 100px 0;
}

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

.section-heading h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #94a3b8;
    font-size: 17px;
}


/* TEAM GRID */

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 950px;
    margin: 0 auto;
}


/* TEAM CARD */

.team-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);

    border-color: rgba(34, 211, 238, 0.5);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25);
}


/* AVATAR */

.team-avatar {
    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

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

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #2563eb,
        #22d3ee
    );

    color: white;

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

    box-shadow:
        0 10px 30px rgba(34, 211, 238, 0.2);
}


/* NAME */

.team-card h3 {
    font-size: 25px;
    margin-bottom: 8px;
}


/* ROLE */

.team-role {
    display: block;

    margin-bottom: 20px;

    color: #22d3ee;

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


/* DESCRIPTION */

.team-card p {
    color: #94a3b8;

    line-height: 1.8;

    margin-bottom: 25px;
}


/* SOCIAL LINKS */

.team-links {
    display: flex;

    justify-content: center;

    gap: 15px;
}

.team-links a {
    width: 42px;
    height: 42px;

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

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    color: #cbd5e1;

    font-size: 18px;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.team-links a:hover {
    background: #22d3ee;

    color: #0f172a;

    transform: translateY(-3px);
}


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

@media (max-width: 768px) {

    .team-section {
        padding: 70px 20px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .team-card {
        padding: 30px 20px;
    }

}

.team-phone {
    margin: 10px 0 20px;
    color: #cbd5e1;
    font-size: 15px;
}

.team-phone i {
    color: #22d3ee;
    margin-right: 8px;
}

/* =========================================
   BLOG PAGE
========================================= */

.blog-hero {
    text-align: center;
}

.blog-hero p {
    max-width: 750px;
    margin: 20px auto 0;
}


/* =========================================
   BLOG SECTION
========================================= */

.blog-section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(40, 170, 255, 0.12);
    border: 1px solid rgba(40, 170, 255, 0.25);
    color: #39c6ff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: 42px;
    margin-bottom: 18px;
}

.section-heading p {
    color: #aebbd0;
    line-height: 1.8;
}


/* =========================================
   BLOG GRID
========================================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


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

.blog-card {
    background: #151d2c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(42, 188, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}


/* =========================================
   BLOG ICON
========================================= */

.blog-icon {
    height: 180px;

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

    background:
        linear-gradient(
            135deg,
            rgba(40, 110, 255, 0.22),
            rgba(25, 200, 255, 0.10)
        );
}

.blog-icon i {
    font-size: 60px;
    color: #29c5ff;
}


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

.blog-content {
    padding: 30px;
}

.blog-category {
    color: #29c5ff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content h3 {
    font-size: 22px;
    line-height: 1.4;
    margin: 14px 0;
}

.blog-content p {
    color: #aebbd0;
    line-height: 1.7;
    font-size: 15px;
}


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

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 25px;
    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-footer span {
    color: #8492a8;
    font-size: 13px;
}

.blog-footer a {
    color: #29c5ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.blog-footer a i {
    margin-left: 6px;
    transition: 0.3s;
}

.blog-footer a:hover i {
    transform: translateX(5px);
}


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

.blog-cta {
    padding: 90px 20px;
    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(30, 100, 255, 0.12),
            rgba(25, 200, 255, 0.08)
        );
}

.blog-cta h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.blog-cta p {
    color: #aebbd0;
    margin-bottom: 30px;
}

/* =========================================
   BLOG ARTICLE
========================================= */

.article-hero {
    padding: 170px 20px 100px;
    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(30, 90, 255, 0.12),
            rgba(20, 200, 255, 0.05)
        );
}

.article-hero .container {
    max-width: 950px;
    margin: auto;
}

.article-category {
    display: inline-block;

    padding: 8px 18px;

    border-radius: 30px;

    color: #29c5ff;

    background: rgba(40, 170, 255, 0.12);

    border: 1px solid rgba(40, 170, 255, 0.25);

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

.article-hero h1 {
    font-size: 58px;
    line-height: 1.15;

    margin: 25px auto;

    max-width: 950px;
}

.article-intro {
    max-width: 780px;

    margin: auto;

    color: #aebbd0;

    font-size: 19px;

    line-height: 1.8;
}

.article-meta {
    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 30px;

    color: #8492a8;

    font-size: 14px;
}


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

.article-section {
    padding: 100px 20px;
}

.article-container {
    max-width: 850px;

    margin: auto;
}

.article-container p {
    color: #b8c4d6;

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 25px;
}

.article-container h2 {
    font-size: 32px;

    margin-top: 55px;
    margin-bottom: 20px;
}

.article-container h3 {
    font-size: 22px;

    margin-top: 35px;
    margin-bottom: 15px;
}


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

.article-cta {
    margin-top: 80px;

    padding: 50px 40px;

    text-align: center;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(30, 100, 255, 0.15),
            rgba(25, 200, 255, 0.08)
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-cta h2 {
    margin-top: 0;
    font-size: 32px;
}

.article-cta p {
    margin-bottom: 30px;
}

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

.portfolio-section{
    padding:100px 0;
}

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

.portfolio-section .section-heading h2{
    font-size:48px;
    margin:20px 0;
}

.portfolio-section .section-heading p{
    font-size:18px;
    line-height:1.8;
}


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

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.portfolio-card{
    padding:40px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    transition:.35s;
}

.portfolio-card:hover{
    transform:translateY(-8px);
    border-color:var(--secondary);
    background:rgba(255,255,255,.06);
}

.portfolio-icon{
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:rgba(40,190,255,.10);
    color:var(--secondary);
    font-size:28px;
    margin-bottom:25px;
}

.portfolio-category{
    color:var(--secondary);
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.portfolio-card h3{
    font-size:28px;
    margin:12px 0 15px;
}

.portfolio-card p{
    font-size:16px;
    line-height:1.8;
}


/* =========================================
   CLIENT PRIVACY
========================================= */

.portfolio-privacy{
    padding:100px 0;
}

.privacy-content{
    display:grid;
    grid-template-columns:100px 1fr;
    gap:40px;
    align-items:start;
    max-width:1000px;
    margin:auto;
    padding:55px;
    border-radius:28px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.privacy-icon{
    width:75px;
    height:75px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    background:rgba(40,190,255,.10);
    color:var(--secondary);
    font-size:30px;
}

.privacy-content h2{
    font-size:38px;
    margin:20px 0;
}

.privacy-content p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:15px;
}


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

.portfolio-cta{
    padding:100px 0;
}

.portfolio-cta-content{
    text-align:center;
    max-width:750px;
    margin:auto;
}

.portfolio-cta-content h2{
    font-size:44px;
    margin:20px 0;
}

.portfolio-cta-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}