/* =========================================================
   NEXGEN SKILL
   WEBSITE TEMPLATES - COMPLETE CSS
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        "Poppins",
        Arial,
        Helvetica,
        sans-serif;

    background: #f8fafc;
    color: #111827;
}

/* =========================================================
   WEBSITE TEMPLATES
   HERO + CATEGORY FILTER CSS
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

.template-hero,
.category-section {
    width: 100%;
    font-family: "Poppins", Arial, sans-serif;
}


/* =========================================================
   HERO SECTION
========================================================= */

.template-hero {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 25px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(37, 99, 235, 0.20),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(99, 102, 241, 0.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #020617 0%,
            #0f172a 45%,
            #172554 100%
        );

    color: #ffffff;
}


/* Decorative glow */

.template-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -180px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(59, 130, 246, 0.22),
            transparent 70%
        );

    pointer-events: none;
}


.template-hero::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -150px;
    bottom: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(99, 102, 241, 0.20),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 950px;

    margin: 0 auto;

    text-align: center;
}


/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 9px 18px;

    margin-bottom: 25px;

    border:
        1px solid
        rgba(147, 197, 253, 0.35);

    border-radius: 50px;

    background:
        rgba(59, 130, 246, 0.12);

    color: #93c5fd;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.8px;

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.15);
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero-content h1 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            42px,
            7vw,
            76px
        );

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -2.5px;
}


.hero-content h1 span {
    display: block;

    margin-top: 8px;

    background:
        linear-gradient(
            90deg,
            #60a5fa,
            #818cf8,
            #a78bfa
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-content p {
    max-width: 760px;

    margin: 25px auto 0;

    color: #cbd5e1;

    font-size: 16px;

    line-height: 1.8;

    font-weight: 400;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 35px;

    flex-wrap: wrap;
}


/* Common button */

.hero-btn {
    min-width: 185px;

    min-height: 52px;

    padding: 14px 24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    text-decoration: none;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.primary-btn {
    background:
        linear-gradient(
            135deg,
            #2563eb,
            #4f46e5
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    color: #ffffff;

    box-shadow:
        0 12px 30px
        rgba(37, 99, 235, 0.30);
}


.primary-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 40px
        rgba(37, 99, 235, 0.42);

    background:
        linear-gradient(
            135deg,
            #1d4ed8,
            #4338ca
        );
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.secondary-btn {
    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid
        rgba(255, 255, 255, 0.20);

    color: #ffffff;

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);
}


.secondary-btn:hover {
    transform: translateY(-3px);

    background:
        rgba(255, 255, 255, 0.12);

    border-color:
        rgba(147, 197, 253, 0.45);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.20);
}


/* =========================================================
   CATEGORY SECTION
========================================================= */

.category-section {
    width: 100%;

    padding:
        85px 20px 70px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}


/* =========================================================
   CATEGORY SECTION HEADING
========================================================= */

.section-heading {
    max-width: 750px;

    margin: 0 auto 40px;

    text-align: center;
}


.section-heading > span {
    display: inline-block;

    margin-bottom: 12px;

    color: #2563eb;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.section-heading h2 {
    margin: 0;

    color: #111827;

    font-size:
        clamp(
            30px,
            5vw,
            46px
        );

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -1px;
}


.section-heading p {
    margin:
        14px auto 0;

    color: #64748b;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   CATEGORY BUTTON CONTAINER
========================================================= */

.category-buttons {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin: 0 auto;
}


/* =========================================================
   CATEGORY BUTTON
========================================================= */

.category-btn {
    position: relative;

    min-height: 44px;

    padding:
        10px 18px;

    border:
        1px solid #e2e8f0;

    border-radius: 50px;

    background: #ffffff;

    color: #475569;

    font-family: inherit;

    font-size: 12px;

    font-weight: 650;

    cursor: pointer;

    white-space: nowrap;

    box-shadow:
        0 3px 12px
        rgba(15, 23, 42, 0.04);

    transition:
        all 0.25s ease;
}


/* Hover */

.category-btn:hover {
    color: #2563eb;

    border-color: #93c5fd;

    background: #eff6ff;

    transform:
        translateY(-2px);

    box-shadow:
        0 7px 18px
        rgba(37, 99, 235, 0.10);
}


/* =========================================================
   ACTIVE CATEGORY
========================================================= */

.category-btn.active {
    background:
        linear-gradient(
            135deg,
            #2563eb,
            #4f46e5
        );

    border-color:
        #2563eb;

    color: #ffffff;

    box-shadow:
        0 8px 20px
        rgba(37, 99, 235, 0.25);
}


.category-btn.active:hover {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #1d4ed8,
            #4338ca
        );

    border-color:
        #1d4ed8;

    transform:
        translateY(-2px);
}


/* =========================================================
   BUTTON FOCUS
========================================================= */

.hero-btn:focus,
.category-btn:focus {
    outline:
        2px solid #60a5fa;

    outline-offset: 3px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .template-hero {
        min-height: 560px;

        padding:
            85px 20px;
    }


    .hero-content h1 {
        font-size: 58px;

        letter-spacing: -1.8px;
    }


    .hero-content p {
        font-size: 15px;

        max-width: 680px;
    }


    .category-section {
        padding:
            70px 18px 60px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .template-hero {
        min-height: 590px;

        padding:
            80px 18px;
    }


    .hero-badge {
        padding:
            8px 14px;

        font-size: 9px;

        letter-spacing: 1.3px;
    }


    .hero-content h1 {
        font-size: 42px;

        line-height: 1.12;

        letter-spacing: -1px;
    }


    .hero-content h1 span {
        margin-top: 5px;
    }


    .hero-content p {
        margin-top: 20px;

        font-size: 14px;

        line-height: 1.75;
    }


    .hero-buttons {
        width: 100%;

        flex-direction: column;

        margin-top: 30px;
    }


    .hero-btn {
        width: 100%;

        max-width: 310px;

        min-height: 50px;
    }


    .category-section {
        padding:
            60px 14px 50px;
    }


    .section-heading {
        margin-bottom: 30px;
    }


    .section-heading > span {
        font-size: 9px;

        letter-spacing: 1.4px;
    }


    .section-heading h2 {
        font-size: 32px;
    }


    .section-heading p {
        font-size: 13px;
    }


    .category-buttons {
        gap: 8px;
    }


    .category-btn {
        min-height: 40px;

        padding:
            9px 14px;

        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .template-hero {
        min-height: 570px;

        padding:
            70px 14px;
    }


    .hero-content h1 {
        font-size: 35px;
    }


    .hero-content p {
        font-size: 13px;
    }


    .hero-btn {
        max-width: 290px;

        font-size: 12px;
    }


    .section-heading h2 {
        font-size: 28px;
    }


    .category-btn {
        padding:
            8px 12px;

        font-size: 10px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-btn,
    .category-btn {
        transition: none;
    }

}


/* =========================================================
   WEBSITE TEMPLATES SECTION
========================================================= */

.templates-section {
    width: 100%;
    min-height: 100vh;

    padding: 90px 20px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}


.templates-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.templates-header {
    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}


.templates-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 8px 18px;

    border-radius: 50px;

    background: #eff6ff;

    border: 1px solid #dbeafe;

    color: #2563eb;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.templates-header h2 {
    margin-top: 18px;
    margin-bottom: 15px;

    color: #111827;

    font-size:
        clamp(
            32px,
            5vw,
            52px
        );

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1px;
}


.templates-header h2 span {
    color: #2563eb;
}


.templates-header p {
    max-width: 750px;

    margin: 0 auto;

    color: #64748b;

    font-size: 16px;

    line-height: 1.8;
}


.templates-header p strong {
    color: #2563eb;

    font-weight: 700;
}


/* =========================================================
   TEMPLATE GRID
========================================================= */

.template-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   TEMPLATE CARD
========================================================= */

.template-card {
    position: relative;

    width: 100%;

    min-width: 0;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid #e5e7eb;

    border-radius: 18px;

    box-shadow:
        0 8px 25px
        rgba(
            15,
            23,
            42,
            0.06
        );

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.template-card:hover {
    transform: translateY(-8px);

    border-color: #dbeafe;

    box-shadow:
        0 20px 45px
        rgba(
            15,
            23,
            42,
            0.13
        );
}


/* =========================================================
   TEMPLATE IMAGE
========================================================= */

.template-image {
    position: relative;

    width: 100%;

    height: 280px;

    overflow: hidden;

    background: #e5e7eb;

    cursor: zoom-in;
}


/*
   IMPORTANT:
   Images stay sharp and completely visible.
*/

.template-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: top center;

    image-rendering: auto;

    transition:
        transform 0.5s ease,
        filter 0.3s ease;
}


.template-image:hover img {
    transform: scale(1.035);
}


/* =========================================================
   IMAGE CLICK HINT
========================================================= */

.template-image-hint {
    position: absolute;

    top: 15px;

    right: 15px;

    z-index: 5;

    opacity: 0;

    transform:
        translateY(-6px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

    pointer-events: none;
}


.template-image:hover
.template-image-hint {
    opacity: 1;

    transform:
        translateY(0);
}


.template-image-hint span {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 8px 13px;

    border-radius: 30px;

    background:
        rgba(
            0,
            0,
            0,
            0.72
        );

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;

    backdrop-filter:
        blur(7px);

    -webkit-backdrop-filter:
        blur(7px);
}


/* =========================================================
   IMAGE BOTTOM OVERLAY
========================================================= */

.template-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 3;

    padding:
        55px
        18px
        16px;

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(
                0,
                0,
                0,
                0.72
            ) 100%
        );

    pointer-events: none;
}


.template-overlay span {
    display: inline-flex;

    padding: 6px 10px;

    border-radius: 5px;

    background:
        rgba(
            255,
            255,
            255,
            0.16
        );

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    backdrop-filter:
        blur(5px);
}


/* =========================================================
   TEMPLATE CONTENT
========================================================= */

.template-content {
    width: 100%;

    min-height: 270px;

    padding: 23px;

    display: flex;

    flex-direction: column;

    flex: 1;
}


.template-category {
    display: block;

    margin-bottom: 8px;

    color: #2563eb;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.template-content h3 {
    margin: 0 0 10px;

    color: #111827;

    font-size: 20px;

    line-height: 1.35;

    font-weight: 750;
}


.template-content p {
    margin: 0;

    color: #64748b;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   FEATURES
========================================================= */

.template-features {
    width: 100%;

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 18px;
}


.template-features span {
    display: inline-flex;

    align-items: center;

    padding:
        6px 9px;

    border-radius: 6px;

    background: #f1f5f9;

    border:
        1px solid #e2e8f0;

    color: #475569;

    font-size: 10px;

    font-weight: 650;

    white-space: nowrap;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.template-actions {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 9px;

    margin-top: auto;

    padding-top: 22px;
}


/* =========================================================
   COMMON BUTTON
========================================================= */

.preview-btn,
.get-btn {
    min-width: 0;

    min-height: 44px;

    padding:
        10px 12px;

    border-radius: 9px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.2;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* =========================================================
   PREVIEW BUTTON
========================================================= */

.preview-btn {
    border:
        1px solid #bfdbfe;

    background: #eff6ff;

    color: #2563eb;
}


.preview-btn:hover {
    background: #dbeafe;

    border-color: #93c5fd;

    transform:
        translateY(-2px);
}


.preview-btn:active {
    transform:
        translateY(0);
}


/* =========================================================
   GET WEBSITE BUTTON
========================================================= */

.get-btn {
    border:
        1px solid #2563eb;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    color: #ffffff;

    box-shadow:
        0 5px 15px
        rgba(
            37,
            99,
            235,
            0.20
        );
}


.get-btn:hover {
    background:
        linear-gradient(
            135deg,
            #1d4ed8,
            #1e40af
        );

    transform:
        translateY(-2px);

    box-shadow:
        0 9px 22px
        rgba(
            37,
            99,
            235,
            0.30
        );
}


.get-btn:active {
    transform:
        translateY(0);
}


/* =========================================================
   FULL SCREEN IMAGE MODAL
========================================================= */

.image-modal {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        rgba(
            2,
            6,
            23,
            0.95
        );

    z-index: 99999;

    opacity: 0;

    transition:
        opacity 0.25s ease;
}


.image-modal.active {
    display: flex;

    opacity: 1;
}


/* =========================================================
   MODAL CONTENT
========================================================= */

.image-modal-content {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 14px;
}


/* =========================================================
   FULL IMAGE
========================================================= */

.image-modal img {
    display: block;

    width: auto;
    height: auto;

    max-width: 94vw;

    max-height: 86vh;

    object-fit: contain;

    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 30px 90px
        rgba(
            0,
            0,
            0,
            0.55
        );

    animation:
        imagePreviewIn
        0.3s
        ease
        forwards;
}


@keyframes imagePreviewIn {

    0% {
        opacity: 0;

        transform:
            scale(0.94);
    }

    100% {
        opacity: 1;

        transform:
            scale(1);
    }

}


/* =========================================================
   MODAL CLOSE BUTTON
========================================================= */

.image-modal-close {
    position: fixed;

    top: 18px;

    right: 24px;

    z-index: 100001;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.18
        );

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.12
        );

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 34px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.image-modal-close:hover {
    background:
        rgba(
            255,
            255,
            255,
            0.24
        );

    transform:
        rotate(90deg);
}


.image-modal-close:focus {
    outline: 2px solid #ffffff;

    outline-offset: 3px;
}


/* =========================================================
   MODAL TITLE
========================================================= */

.image-modal-title {
    max-width: 90vw;

    padding:
        9px 20px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );

    border-radius: 30px;

    background:
        rgba(
            255,
            255,
            255,
            0.10
        );

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    text-align: center;

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);
}


/* =========================================================
   TABLET - 1100PX
========================================================= */

@media (max-width: 1100px) {

    .templates-section {
        padding:
            75px 20px;
    }


    .template-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 24px;
    }


    .template-image {
        height: 300px;
    }

}


/* =========================================================
   TABLET - 800PX
========================================================= */

@media (max-width: 800px) {

    .templates-section {
        padding:
            65px 18px;
    }


    .templates-header {
        margin-bottom: 40px;
    }


    .templates-header h2 {
        font-size: 38px;
    }


    .template-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 18px;
    }


    .template-image {
        height: 250px;
    }


    .template-content {
        padding: 20px;
    }


    .template-content h3 {
        font-size: 18px;
    }


    .template-content p {
        font-size: 12px;
    }

}


/* =========================================================
   MOBILE - 650PX
========================================================= */

@media (max-width: 650px) {

    .templates-section {
        padding:
            55px 14px;
    }


    .templates-header {
        margin-bottom: 35px;
    }


    .templates-badge {
        font-size: 10px;

        padding:
            7px 14px;
    }


    .templates-header h2 {
        margin-top: 15px;

        font-size: 32px;

        letter-spacing: -0.5px;
    }


    .templates-header p {
        font-size: 14px;

        line-height: 1.7;
    }


    .template-grid {
        grid-template-columns:
            1fr;

        gap: 22px;
    }


    .template-image {
        height: 270px;
    }


    .template-content {
        min-height: auto;

        padding: 20px;
    }


    .template-content h3 {
        font-size: 20px;
    }


    .template-content p {
        font-size: 13px;
    }


    .template-actions {
        grid-template-columns:
            1fr 1.15fr;

        gap: 8px;
    }


    .preview-btn,
    .get-btn {
        min-height: 46px;

        font-size: 12px;
    }


    /* Modal */

    .image-modal {
        padding: 12px;
    }


    .image-modal img {
        max-width: 100vw;

        max-height: 82vh;

        border-radius: 7px;
    }


    .image-modal-close {
        top: 10px;

        right: 12px;

        width: 46px;

        height: 46px;

        font-size: 30px;
    }


    .image-modal-title {
        max-width: 90%;

        font-size: 12px;

        padding:
            8px 15px;
    }

}


/* =========================================================
   SMALL MOBILE - 420PX
========================================================= */

@media (max-width: 420px) {

    .templates-section {
        padding:
            45px 10px;
    }


    .templates-header h2 {
        font-size: 28px;
    }


    .templates-header p {
        font-size: 13px;
    }


    .template-image {
        height: 230px;
    }


    .template-content {
        padding: 17px;
    }


    .template-content h3 {
        font-size: 18px;
    }


    .template-features span {
        font-size: 9px;

        padding:
            5px 7px;
    }


    .template-actions {
        grid-template-columns:
            1fr;
    }


    .preview-btn,
    .get-btn {
        width: 100%;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.preview-btn:focus,
.get-btn:focus {
    outline:
        2px solid #2563eb;

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition: none !important;

        animation: none !important;
    }

}

/* =========================================================
   CUSTOM WEBSITE CTA SECTION
========================================================= */

.custom-website-section {
    position: relative;

    width: 100%;

    padding: 100px 20px;

    overflow: hidden;

    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.12), transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.12), transparent 35%),
        linear-gradient(135deg, #0f172a, #1e3a8a);

    color: #ffffff;
}


/* Decorative glow */

.custom-website-section::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    top: -120px;
    left: -120px;

    border-radius: 50%;

    background: rgba(59, 130, 246, 0.15);

    filter: blur(80px);
}


.custom-website-section::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -100px;
    bottom: -120px;

    border-radius: 50%;

    background: rgba(147, 51, 234, 0.15);

    filter: blur(80px);
}


/* =========================================================
   CONTENT
========================================================= */

.custom-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;
}


/* =========================================================
   ICON
========================================================= */

.custom-icon {
    font-size: 70px;

    margin-bottom: 20px;

    animation: rocketFloat 3s ease-in-out infinite;
}


@keyframes rocketFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* =========================================================
   HEADING
========================================================= */

.custom-content h2 {
    margin-bottom: 15px;

    font-size: clamp(34px, 5vw, 54px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.custom-content p {
    max-width: 620px;

    margin: auto;

    color: #dbeafe;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   SERVICES
========================================================= */

.custom-services {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin: 35px 0;
}


.custom-services span {
    padding: 10px 16px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.18);

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    backdrop-filter: blur(8px);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.custom-services span:hover {
    transform: translateY(-4px);

    background: rgba(255, 255, 255, 0.18);

    border-color: rgba(255, 255, 255, 0.35);
}


/* =========================================================
   CTA BUTTON
========================================================= */

.custom-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 240px;

    padding: 16px 30px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #dbeafe
        );

    color: #1d4ed8;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    box-shadow:
        0 12px 35px rgba(255, 255, 255, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.custom-btn:hover {
    transform: translateY(-4px);

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #ffffff
        );

    box-shadow:
        0 18px 45px rgba(255, 255, 255, 0.28);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .custom-website-section {
        padding: 80px 20px;
    }

    .custom-content h2 {
        font-size: 38px;
    }

    .custom-content p {
        font-size: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .custom-website-section {
        padding: 70px 16px;
    }

    .custom-icon {
        font-size: 55px;
    }

    .custom-content h2 {
        font-size: 30px;
    }

    .custom-content p {
        font-size: 14px;
    }

    .custom-services {
        gap: 8px;
    }

    .custom-services span {
        font-size: 11px;

        padding: 8px 12px;
    }

    .custom-btn {
        width: 100%;
    }

}