/* ================= HERO ================= */

.services-hero {
    min-height: 100vh;

    background:
        linear-gradient(rgba(20,22,40,0.88), rgba(20,22,40,0.88)),
        url("https://www.transparenttextures.com/patterns/stardust.png");

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 120px 20px;
}

.services-hero-content {
    max-width: 900px;
}

.services-tag,
.section-tag {
    color: #f4a261;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.services-hero-content h1 {
    color: #fff;

    font-size: 72px;
    line-height: 1.1;

    margin-bottom: 25px;

    font-family: 'Playfair Display', serif;
}

.services-hero-content p {
    color: #ddd;

    line-height: 1.8;
    font-size: 17px;

    max-width: 750px;
    margin: auto auto 30px;
}

.services-btn {
    display: inline-block;

    padding: 14px 30px;

    background: #ff3d00;
    color: #fff;

    text-decoration: none;

    border-radius: 6px;

    transition: 0.3s;
}

.services-btn:hover {
    background: #d93400;
}

/* ================= INTRO ================= */

.services-intro {
    padding: 100px 60px;

    background:
        linear-gradient(rgba(244,239,231,0.92), rgba(244,239,231,0.92)),
        url("https://as2.ftcdn.net/v2/jpg/15/34/34/33/1000_F_1534343373_2iL69ib0BalQA7qNvC1nLe7foTiCKZFJ.jpg");
}

.services-intro-container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    gap: 60px;
}

.services-intro-left,
.services-intro-right {
    width: 50%;
}

.service-floating-img {
    width: 100%;

    animation: floatService 5s ease-in-out infinite;
}

@keyframes floatService {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.services-intro-right h2 {
    font-size: 56px;
    margin: 15px 0 20px;

    line-height: 1.2;

    font-family: 'Playfair Display', serif;
}

.services-intro-right p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* ================= EXPERTISE ================= */

.expertise-section {
    padding: 100px 60px;

    background:
        linear-gradient(rgba(20,22,40,0.96), rgba(20,22,40,0.96)),
        url("https://www.transparenttextures.com/patterns/stardust.png");

    text-align: center;
}

.expertise-heading h2 {
    color: #fff;

    font-size: 56px;
    margin-bottom: 60px;

    font-family: 'Playfair Display', serif;
}

.expertise-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.expertise-card {
    background: rgba(255,255,255,0.05);

    padding: 40px 30px;

    border-radius: 20px;

    color: #fff;

    transition: 0.4s;
}

.expertise-card:hover {
    transform: translateY(-10px);

    background: rgba(255,255,255,0.08);
}

.expertise-card img {
    width: 60px;
    margin-bottom: 20px;
}

.expertise-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.expertise-card p {
    color: #bbb;
    line-height: 1.7;
}

/* ================= SKILLS ================= */

.skills-section {
    padding: 100px 20px;

    background:
        linear-gradient(rgba(244,239,231,0.92), rgba(244,239,231,0.92)),
        url("https://as2.ftcdn.net/v2/jpg/15/34/34/33/1000_F_1534343373_2iL69ib0BalQA7qNvC1nLe7foTiCKZFJ.jpg");

    text-align: center;
}

.skills-heading h2 {
    font-size: 56px;
    margin-bottom: 50px;

    font-family: 'Playfair Display', serif;
}

.skills-wrapper {
    max-width: 1100px;
    margin: auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.skill-box {
    padding: 16px 28px;

    background: #1c1c2e;
    color: #fff;

    border-radius: 40px;

    transition: 0.3s;
}

.skill-box:hover {
    background: #ff3d00;
}

/* ================= CONSULTANCY ================= */

.consultancy-section {
    padding: 120px 20px;

    background:
        linear-gradient(rgba(20,22,40,0.96), rgba(20,22,40,0.96)),
        url("https://www.transparenttextures.com/patterns/stardust.png");

    text-align: center;
}

.consultancy-box {
    max-width: 950px;
    margin: auto;
}

.consultancy-box h2 {
    color: #fff;

    font-size: 56px;
    margin: 20px 0;

    line-height: 1.3;

    font-family: 'Playfair Display', serif;
}

.consultancy-box p {
    color: #bbb;

    line-height: 2;
    font-size: 17px;
}

/* ================= CTA ================= */

.services-cta {
    padding: 100px 20px;

    background:
        linear-gradient(rgba(244,239,231,0.92), rgba(244,239,231,0.92)),
        url("https://as2.ftcdn.net/v2/jpg/15/34/34/33/1000_F_1534343373_2iL69ib0BalQA7qNvC1nLe7foTiCKZFJ.jpg");

    text-align: center;
}

.services-cta-content h2 {
    font-size: 60px;
    margin-bottom: 20px;

    font-family: 'Playfair Display', serif;
}

.services-cta-content p {
    color: #555;

    margin-bottom: 30px;
    line-height: 1.8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .services-intro-container {
        flex-direction: column;
        text-align: center;
    }

    .services-intro-left,
    .services-intro-right {
        width: 100%;
    }

    .services-hero-content h1,
    .services-intro-right h2,
    .expertise-heading h2,
    .skills-heading h2,
    .consultancy-box h2,
    .services-cta-content h2 {
        font-size: 42px;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-intro,
    .expertise-section {
        padding: 80px 20px;
    }
}

@media (max-width: 600px) {

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .services-hero-content h1,
    .services-intro-right h2,
    .expertise-heading h2,
    .skills-heading h2,
    .consultancy-box h2,
    .services-cta-content h2 {
        font-size: 32px;
    }

    .skill-box {
        width: 100%;
    }
}