/*=========================================================
    APEX EMPIRE
    Premium Luxury Agency
    Part 1 - Global Design System
=========================================================*/

/*==========================
RESET
==========================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    font-size:16px;
}

body{
    font-family:'Inter',sans-serif;
    background:#050505;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

/*==========================
VARIABLES
==========================*/

:root{

    --black:#050505;
    --black-2:#0d0d0d;
    --black-3:#171717;

    --white:#ffffff;
    --light:#f5f5f5;

    --grey:#b4b4b4;
    --grey-light:#8c8c8c;

    --gold:#D4AF37;
    --gold-light:#f4d46a;
    --gold-dark:#9d7d14;

    --glass:rgba(255,255,255,.04);
    --glass-border:rgba(255,255,255,.08);

    --shadow:
        0 30px 80px rgba(0,0,0,.45);

    --radius:26px;

    --transition:.35s ease;

    --section-space:180px;

}

/*==========================
TEXT
==========================*/

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Space Grotesk',sans-serif;

    font-weight:700;

    line-height:1.08;

}

p{

    color:var(--grey);

    font-size:18px;

}

a{

    text-decoration:none;

    color:inherit;

}

img{

    display:block;

    width:100%;

}

ul{

    list-style:none;

}

/*==========================
CONTAINER
==========================*/

.container{

    width:min(1240px,92%);

    margin:auto;

}

/*==========================
SECTION
==========================*/

section{

    position:relative;

    padding:var(--section-space) 0;

    overflow:hidden;

}

/*==========================
COMMON TITLE
==========================*/

.section-tag{

    display:inline-block;

    margin-bottom:24px;

    color:var(--gold);

    letter-spacing:4px;

    font-size:13px;

    text-transform:uppercase;

}

.section-heading{

    margin-bottom:80px;

}

.section-heading h2,

.statement h2,

.about h2,

.services h2,

.portfolio h2,

.process h2,

.industries h2,

.technology h2,

.testimonials h2,

.global h2,

.cta h2{

    font-size:68px;

    max-width:900px;

}

/*==========================
BUTTONS
==========================*/

.primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 38px;

    border-radius:60px;

    background:var(--gold);

    color:#111;

    font-weight:700;

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:

    0 10px 40px rgba(212,175,55,.35);

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 38px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,.12);

    color:white;

    transition:var(--transition);

}

.secondary-btn:hover{

    border-color:var(--gold);

    color:var(--gold);

}

/*==========================
GLASS
==========================*/

.glass-panel,

.quote-box,

.project-card,

.why-grid article{

    background:var(--glass);

    border:1px solid var(--glass-border);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

/*==========================
BACKGROUND
==========================*/

.bg-grid{

    position:fixed;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),

    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:70px 70px;

    opacity:.35;

    pointer-events:none;

    z-index:-4;

}

.bg-gradient{

    position:fixed;

    width:900px;

    height:900px;

    top:-350px;

    right:-250px;

    background:

    radial-gradient(circle,

    rgba(212,175,55,.18),

    transparent 70%);

    filter:blur(120px);

    pointer-events:none;

    z-index:-3;

}

/*==========================
CURSOR
==========================*/

.cursor-glow{

    width:34px;

    height:34px;

    border-radius:50%;

    position:fixed;

    pointer-events:none;

    background:rgba(212,175,55,.18);

    backdrop-filter:blur(8px);

    transform:translate(-50%,-50%);

    z-index:9999;

}

/*==========================
TEXT SELECTION
==========================*/

::selection{

    background:var(--gold);

    color:#111;

}

/*==========================
SCROLLBAR
==========================*/

::-webkit-scrollbar{

    width:12px;

}

::-webkit-scrollbar-track{

    background:#090909;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(

        var(--gold),

        #8d6d12

    );

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gold-light);

}

/*==========================
HELPERS
==========================*/

.text-center{

    text-align:center;

}

.mt-40{

    margin-top:40px;

}

.mb-40{

    margin-bottom:40px;

}

.hidden{

    display:none;

}

/*=========================================================
PART 02
NAVIGATION + INTRO + HERO
=========================================================*/

/*==========================
NAVBAR
==========================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    padding:22px 0;

    transition:.4s ease;

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    background:rgba(5,5,5,.35);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.header.scrolled{

    padding:16px 0;

    background:rgba(5,5,5,.88);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    font-family:'Space Grotesk',sans-serif;

    font-size:30px;

    font-weight:700;

    color:#fff;

    letter-spacing:.5px;

}

.logo span{

    color:var(--gold);

}

nav{

    display:flex;

    align-items:center;

    gap:42px;

}

nav a{

    position:relative;

    color:#d7d7d7;

    font-size:15px;

    font-weight:500;

    transition:.3s ease;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.35s ease;

}

nav a:hover{

    color:#fff;

}

nav a:hover::after{

    width:100%;

}

.nav-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:60px;

    background:var(--gold);

    color:#111;

    font-weight:700;

    transition:.35s;

}

.nav-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 35px rgba(212,175,55,.35);

}

/*==========================
INTRO
==========================*/

.intro{

    position:relative;

    height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

}

.intro-content{

    z-index:2;

}

.intro p{

    color:var(--gold);

    letter-spacing:6px;

    text-transform:uppercase;

    font-size:13px;

    margin-bottom:28px;

}

.intro h1{

    font-size:clamp(70px,10vw,150px);

    color:#fff;

    letter-spacing:6px;

    text-transform:uppercase;

}

.intro .line{

    width:160px;

    height:3px;

    background:linear-gradient(to right,transparent,var(--gold),transparent);

    margin:40px auto 0;

    border-radius:50px;

}

/*==========================
HERO
==========================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:120px;

}

.hero-wrapper{

    display:grid;

    grid-template-columns:1.15fr .85fr;

    align-items:center;

    gap:90px;

}

.hero-left{

    position:relative;

}

.small-title{

    display:inline-block;

    margin-bottom:25px;

    color:var(--gold);

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:13px;

}

.hero-left h2{

    font-size:clamp(52px,6vw,96px);

    line-height:1.03;

    margin-bottom:35px;

    text-transform:uppercase;

}

.hero-left h2 span{

    color:#ffffff;

}

.hero-left h2 strong{

    color:var(--gold);

}

.hero-left p{

    max-width:650px;

    font-size:19px;

    color:var(--grey);

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.stats{

    display:flex;

    gap:60px;

    margin-top:70px;

    flex-wrap:wrap;

}

.stats div{

    position:relative;

}

.stats div::before{

    content:"";

    position:absolute;

    left:-18px;

    top:8px;

    width:2px;

    height:42px;

    background:rgba(212,175,55,.45);

}

.stats div:first-child::before{

    display:none;

}

.stats h3{

    font-size:42px;

    color:var(--gold);

    margin-bottom:6px;

}

.stats span{

    color:#9f9f9f;

    font-size:15px;

}

/*==========================
RIGHT PANEL
==========================*/

.hero-right{

    position:relative;

}

.glass-panel{

    position:relative;

    padding:42px;

    overflow:hidden;

}

.glass-panel::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        145deg,

        rgba(255,255,255,.08),

        transparent 60%

    );

    pointer-events:none;

}

.panel-top{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:35px;

    color:#bdbdbd;

    letter-spacing:2px;

    font-size:12px;

    text-transform:uppercase;

}

.live-dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#1aff72;

    box-shadow:0 0 18px #1aff72;

}

.service-list{

    display:flex;

    flex-direction:column;

}

.service-list div{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:20px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.service-list div:hover{

    transform:translateX(8px);

    border-color:rgba(212,175,55,.35);

}

.service-list span{

    color:#ededed;

    font-size:17px;

}

.service-list strong{

    color:var(--gold);

    font-size:18px;

}

/*==========================
SCROLL INDICATOR
==========================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

}

.scroll-down span{

    font-size:11px;

    letter-spacing:4px;

    color:#888;

}

.scroll-line{

    width:2px;

    height:70px;

    background:linear-gradient(

        to bottom,

        var(--gold),

        transparent

    );

}

/*==========================
BACKGROUND DECORATION
==========================*/

.hero::before{

    content:"";

    position:absolute;

    right:-250px;

    top:50%;

    width:650px;

    height:650px;

    border-radius:50%;

    background:radial-gradient(circle,

    rgba(212,175,55,.12),

    transparent 70%);

    filter:blur(90px);

    pointer-events:none;

}

.hero::after{

    content:"";

    position:absolute;

    left:-180px;

    bottom:-180px;

    width:500px;

    height:500px;

    background:radial-gradient(circle,

    rgba(255,255,255,.04),

    transparent 70%);

    filter:blur(90px);

    pointer-events:none;

}

/*=========================================================
PART 03
STATEMENT + ABOUT
=========================================================*/

/*==========================
SECTION 02
BRAND STATEMENT
==========================*/

.statement{

    position:relative;

    padding:220px 0;

    overflow:hidden;

}

.statement::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    left:-300px;

    top:-250px;

    border-radius:50%;

    background:radial-gradient(circle,

    rgba(212,175,55,.12),

    transparent 70%);

    filter:blur(90px);

}

.statement::after{

    content:"";

    position:absolute;

    right:-250px;

    bottom:-250px;

    width:550px;

    height:550px;

    border-radius:50%;

    background:radial-gradient(circle,

    rgba(255,255,255,.04),

    transparent 70%);

    filter:blur(120px);

}

.statement-top{

    margin-bottom:100px;

}

.statement h2{

    font-size:clamp(56px,5vw,82px);

    max-width:900px;

    line-height:1.05;

}

.statement h2 span{

    color:var(--gold);

}

.statement-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.statement-left{

    position:relative;

}

.statement-left p{

    font-size:21px;

    line-height:2;

    color:#b9b9b9;

}

.quote-box{

    position:relative;

    padding:65px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:32px;

    overflow:hidden;

    transition:.4s ease;

}

.quote-box:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.25);

    box-shadow:

    0 35px 90px rgba(0,0,0,.45);

}

.quote-box::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background:linear-gradient(

    var(--gold),

    transparent

    );

}

.quote-box::after{

    content:"";

    position:absolute;

    right:-120px;

    top:-120px;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    filter:blur(60px);

}

.quote-box h3{

    font-size:34px;

    margin-bottom:22px;

    color:white;

}

.quote-box h4{

    font-size:46px;

    color:var(--gold);

    line-height:1.15;

}

/*==========================
SECTION 03
ABOUT
==========================*/

.about{

    padding:220px 0;

    background:linear-gradient(

    to bottom,

    transparent,

    rgba(255,255,255,.015),

    transparent

    );

}

.about-grid{

    display:grid;

    grid-template-columns:.9fr 1.1fr;

    gap:100px;

    align-items:start;

}

.about-left{

    position:sticky;

    top:150px;

}

.about-left h2{

    font-size:clamp(50px,5vw,78px);

    line-height:1.08;

    margin-top:20px;

}

.about-right{

    display:flex;

    flex-direction:column;

    gap:40px;

}

.about-right p{

    font-size:20px;

    line-height:2;

    color:#bdbdbd;

}

.about-right p:first-child{

    position:relative;

    padding-left:35px;

}

.about-right p:first-child::before{

    content:"";

    position:absolute;

    left:0;

    top:14px;

    width:18px;

    height:3px;

    background:var(--gold);

}

.about-feature{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:50px;

}

.about-card{

    padding:35px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    transition:.35s ease;

}

.about-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.25);

    background:rgba(255,255,255,.05);

}

.about-card h3{

    font-size:22px;

    margin-bottom:12px;

    color:white;

}

.about-card p{

    font-size:16px;

    line-height:1.8;

}

/*==========================
LUXURY DIVIDER
==========================*/

.section-divider{

    width:120px;

    height:2px;

    background:linear-gradient(

    to right,

    var(--gold),

    transparent

    );

    margin:80px auto;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:1100px){

.statement-content{

grid-template-columns:1fr;

gap:60px;

}

.about-grid{

grid-template-columns:1fr;

gap:60px;

}

.about-left{

position:relative;

top:0;

}

.about-feature{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.statement{

padding:140px 0;

}

.about{

padding:140px 0;

}

.statement h2,

.about-left h2{

font-size:46px;

}

.statement-left p,

.about-right p{

font-size:18px;

line-height:1.9;

}

.quote-box{

padding:40px;

}

.quote-box h3{

font-size:28px;

}

.quote-box h4{

font-size:36px;

}

}

@media(max-width:576px){

.statement h2,

.about-left h2{

font-size:36px;

}

.statement-left p,

.about-right p{

font-size:16px;

}

.quote-box{

padding:30px;

}

.quote-box h3{

font-size:22px;

}

.quote-box h4{

font-size:28px;

}

}

/*=========================================================
PART 04
SERVICES + PORTFOLIO
=========================================================*/

/*==========================
SERVICES
==========================*/

.services{

    position:relative;

    padding:220px 0;

}

.services::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-280px;

    top:-180px;

    border-radius:50%;

    background:radial-gradient(circle,

    rgba(212,175,55,.08),

    transparent 70%);

    filter:blur(90px);

}

.services h2{

    margin-bottom:90px;

}

/* Grid */

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

/* Card */

.services article{

    position:relative;

    padding:50px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    transition:.45s ease;

    overflow:hidden;

    cursor:pointer;

}

/* Gold Line */

.services article::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:linear-gradient(

    var(--gold),

    transparent

    );

    opacity:.7;

}

/* Glow */

.services article::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    right:-120px;

    top:-120px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    filter:blur(60px);

    opacity:0;

    transition:.45s;

}

.services article:hover{

    transform:translateY(-12px);

    border-color:rgba(212,175,55,.25);

    background:rgba(255,255,255,.05);

    box-shadow:0 40px 90px rgba(0,0,0,.45);

}

.services article:hover::after{

    opacity:1;

}

.services h3{

    font-size:34px;

    margin-bottom:25px;

    color:white;

    transition:.35s;

}

.services article:hover h3{

    color:var(--gold);

}

.services p{

    font-size:18px;

    line-height:1.9;

    color:#bfbfbf;

}

/*==========================
PORTFOLIO
==========================*/

.portfolio{

    position:relative;

    padding:220px 0;

}

.portfolio h2{

    margin-bottom:90px;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/* Project */

.portfolio article{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    background:#0b0b0b;

    border:1px solid rgba(255,255,255,.08);

    transition:.45s;

    min-height:520px;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:45px;

}

/* Placeholder image */

.portfolio article::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    rgba(0,0,0,.1),

    rgba(0,0,0,.75)

    ),

    url("../images/project-placeholder.jpg");

    background-size:cover;

    background-position:center;

    transition:1s;

    z-index:0;

}

.portfolio article>*{

    position:relative;

    z-index:2;

}

.portfolio article:hover{

    transform:translateY(-15px);

    border-color:rgba(212,175,55,.25);

    box-shadow:0 40px 100px rgba(0,0,0,.55);

}

.portfolio article:hover::before{

    transform:scale(1.08);

}

.portfolio span{

    display:inline-block;

    color:var(--gold);

    letter-spacing:3px;

    font-size:12px;

    margin-bottom:18px;

    text-transform:uppercase;

}

.portfolio h3{

    font-size:34px;

    margin-bottom:18px;

}

.portfolio p{

    color:#d0d0d0;

    font-size:17px;

    line-height:1.8;

}

/* View Button */

.project-link{

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:28px;

    color:white;

    font-weight:600;

    transition:.35s;

}

.project-link::after{

    content:"→";

    transition:.35s;

}

.project-link:hover{

    color:var(--gold);

}

.project-link:hover::after{

    transform:translateX(8px);

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:1100px){

.services-grid{

grid-template-columns:1fr;

}

.portfolio-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.services,

.portfolio{

padding:140px 0;

}

.services article{

padding:35px;

}

.services h3{

font-size:28px;

}

.portfolio article{

min-height:420px;

padding:35px;

}

.portfolio h3{

font-size:28px;

}

}

@media(max-width:576px){

.services h3{

font-size:24px;

}

.services p,

.portfolio p{

font-size:16px;

}

.portfolio article{

min-height:360px;

}

}

/*=========================================================
PART 05
WHY US + PROCESS
=========================================================*/

/*==========================
WHY US
==========================*/

.why-us{

    position:relative;

    padding:220px 0;

    overflow:hidden;

}

.why-us::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    left:-250px;

    top:-180px;

    border-radius:50%;

    background:radial-gradient(circle,

    rgba(212,175,55,.08),

    transparent 70%);

    filter:blur(90px);

}

.why-us h2{

    margin-bottom:90px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.why-grid article{

    position:relative;

    padding:50px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    transition:.45s ease;

    overflow:hidden;

}

.why-grid article::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(

    90deg,

    var(--gold),

    transparent

    );

}

.why-grid article:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.25);

    background:rgba(255,255,255,.05);

    box-shadow:0 35px 80px rgba(0,0,0,.45);

}

.why-grid h3{

    font-size:32px;

    margin-bottom:22px;

    color:white;

}

.why-grid p{

    color:#bdbdbd;

    font-size:18px;

    line-height:1.9;

}

/*==========================
PROCESS
==========================*/

.process{

    position:relative;

    padding:220px 0;

}

.process h2{

    margin-bottom:100px;

}

.timeline{

    position:relative;

    display:flex;

    flex-direction:column;

    gap:45px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:52px;

    top:0;

    bottom:0;

    width:2px;

    background:linear-gradient(

        var(--gold),

        rgba(255,255,255,.1)

    );

}

.step{

    position:relative;

    display:grid;

    grid-template-columns:120px 1fr;

    gap:40px;

    align-items:flex-start;

}

.step span{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#111;

    border:2px solid rgba(212,175,55,.25);

    color:var(--gold);

    font-family:'Space Grotesk';

    font-size:24px;

    font-weight:700;

    z-index:2;

}

.step h3{

    font-size:34px;

    margin-bottom:15px;

}

.step p{

    color:#bdbdbd;

    font-size:18px;

    line-height:1.9;

    max-width:650px;

}

.step:hover span{

    background:var(--gold);

    color:#111;

    transform:scale(1.08);

    transition:.35s;

}

.step:hover h3{

    color:var(--gold);

    transition:.35s;

}

/*==========================
PROCESS CONNECTOR
==========================*/

.step:not(:last-child)::after{

    content:"";

    position:absolute;

    left:34px;

    bottom:-45px;

    width:2px;

    height:45px;

    background:rgba(212,175,55,.25);

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:992px){

.why-grid{

grid-template-columns:1fr;

}

.timeline::before{

left:34px;

}

.step{

grid-template-columns:80px 1fr;

gap:25px;

}

.step span{

width:55px;

height:55px;

font-size:20px;

}

.step h3{

font-size:28px;

}

}

@media(max-width:768px){

.why-us,

.process{

padding:140px 0;

}

.why-grid article{

padding:35px;

}

.why-grid h3{

font-size:26px;

}

.step h3{

font-size:24px;

}

.step p{

font-size:16px;

}

}

@media(max-width:576px){

.timeline::before{

display:none;

}

.step{

grid-template-columns:1fr;

}

.step span{

margin-bottom:15px;

}

.step:not(:last-child)::after{

display:none;

}

}

/*=========================================================
PART 06
INDUSTRIES • TECHNOLOGY • TESTIMONIALS
GLOBAL • CTA • FOOTER
=========================================================*/

/*====================================
INDUSTRIES
====================================*/

.industries{

    position:relative;

    padding:220px 0;

}

.industries::before{

    content:"";

    position:absolute;

    right:-250px;

    bottom:-180px;

    width:700px;

    height:700px;

    border-radius:50%;

    background:radial-gradient(circle,

    rgba(212,175,55,.08),

    transparent 70%);

    filter:blur(120px);

}

.industries h2{

    margin-bottom:80px;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.industry-grid div{

    position:relative;

    padding:38px;

    text-align:center;

    border-radius:24px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    font-family:'Space Grotesk';

    font-size:22px;

    font-weight:600;

}

.industry-grid div:hover{

    transform:translateY(-10px);

    color:var(--gold);

    border-color:rgba(212,175,55,.25);

    background:rgba(255,255,255,.05);

}

/*====================================
TECHNOLOGY
====================================*/

.technology{

    padding:220px 0;

}

.technology h2{

    margin-bottom:80px;

}

.tech-grid{

    display:flex;

    flex-wrap:wrap;

    gap:22px;

}

.tech-grid span{

    padding:18px 34px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,.08);

    background:#111;

    color:#fff;

    transition:.35s;

    font-weight:600;

}

.tech-grid span:hover{

    background:var(--gold);

    color:#111;

    border-color:var(--gold);

    transform:translateY(-5px);

}

/*====================================
TESTIMONIALS
====================================*/

.testimonials{

    position:relative;

    padding:220px 0;

}

.testimonials h2{

    margin-bottom:80px;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.testimonial-grid article{

    position:relative;

    padding:45px;

    border-radius:30px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.testimonial-grid article:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.25);

}

.testimonial-grid article::before{

    content:"“";

    position:absolute;

    top:15px;

    right:25px;

    font-size:90px;

    color:rgba(212,175,55,.08);

    font-family:serif;

}

.testimonial-grid p{

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

}

.testimonial-grid h4{

    color:var(--gold);

}

/*====================================
GLOBAL
====================================*/

.global{

    text-align:center;

    padding:220px 0;

}

.global p{

    max-width:800px;

    margin:35px auto;

    font-size:20px;

}

.map{

    margin-top:70px;

    height:450px;

    border-radius:35px;

    background:

    linear-gradient(rgba(255,255,255,.03),

    rgba(255,255,255,.03));

    border:1px solid rgba(255,255,255,.08);

}

/*====================================
CTA
====================================*/

.cta{

    text-align:center;

    padding:260px 0;

    position:relative;

}

.cta::before{

    content:"";

    position:absolute;

    width:900px;

    height:900px;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:radial-gradient(circle,

    rgba(212,175,55,.12),

    transparent 70%);

    filter:blur(120px);

}

.cta h2{

    font-size:clamp(56px,6vw,96px);

    margin-bottom:25px;

}

.cta p{

    max-width:650px;

    margin:0 auto 50px;

    font-size:22px;

}

.cta .primary-btn{

    font-size:18px;

    padding:22px 48px;

}

/*====================================
FOOTER
====================================*/

footer{

    padding:90px 0 40px;

    border-top:1px solid rgba(255,255,255,.08);

    background:#070707;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    margin-bottom:60px;

}

footer h3{

    font-size:34px;

    margin-bottom:20px;

}

footer h4{

    margin-bottom:20px;

    color:var(--gold);

}

footer p{

    color:#9b9b9b;

}

footer ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

footer li{

    list-style:none;

}

footer a{

    color:#bfbfbf;

    transition:.3s;

}

footer a:hover{

    color:var(--gold);

    padding-left:8px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    text-align:center;

    color:#888;

    font-size:14px;

}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:1100px){

.industry-grid{

grid-template-columns:repeat(2,1fr);

}

.testimonial-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.industries,
.technology,
.testimonials,
.global,
.cta{

padding:140px 0;

}

.industry-grid{

grid-template-columns:1fr;

}

.tech-grid{

justify-content:center;

}

.global p{

font-size:18px;

}

.cta p{

font-size:18px;

}

}

@media(max-width:576px){

.tech-grid span{

width:100%;

text-align:center;

}

.cta h2{

font-size:42px;

}

footer{

text-align:center;

}

footer ul{

align-items:center;

}

}