/* =========================================
   VISALWEB HOME PAGE
   ========================================= */


/* =========================================
   HOME PAGE VARIABLES
   ========================================= */

:root {

    --home-orange: #f97316;
    --home-orange-dark: #ea580c;

    --home-blue: #0f4c81;
    --home-blue-dark: #0b1f33;
    --home-blue-light: #60a5fa;

    --home-green: #198754;
    --home-green-light: #22c55e;

    --home-white: #ffffff;

    --home-light-bg: #f8fafc;

    --home-text-dark: #172033;
    --home-text: #334155;
    --home-text-light: #64748b;

    --home-border: #e2e8f0;

    --home-shadow-sm:
        0 4px 15px rgba(15, 76, 129, 0.08);

    --home-shadow-md:
        0 10px 30px rgba(15, 76, 129, 0.10);

    --home-shadow-lg:
        0 20px 50px rgba(15, 76, 129, 0.14);

}


/* =========================================
   COMMON HOME CONTAINER
   ========================================= */

.home-section-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding-left: 30px;

    padding-right: 30px;

}


/* =========================================
   COMMON SECTION HEADING
   ========================================= */

.home-section-heading {

    max-width: 750px;

    margin: 0 auto 50px;

    text-align: center;

}


/* =========================================
   COMMON SECTION LABEL
   ========================================= */

.home-section-label {

    display: inline-block;

    margin-bottom: 12px;

    color: var(--home-orange);

    font-size: 15px;

    font-weight: bold;

    letter-spacing: 1.5px;

}


/* =========================================
   COMMON SECTION TITLE
   ========================================= */

.home-section-title {

    margin: 0 0 20px;

    color: var(--home-blue-dark);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.15;

    font-weight: bold;

}


.home-section-title span {

    color: var(--home-orange);

}


/* =========================================
   COMMON SECTION DESCRIPTION
   ========================================= */

.home-section-description {

    max-width: 700px;

    margin: 0 auto;

    color: var(--home-text-light);

    font-size: 18px;

    line-height: 1.8;

}


/* =========================================
   COMMON BUTTON
   ========================================= */

.home-section-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 22px;

    background: var(--home-orange);

    color: var(--home-white);

    border-radius: 8px;

    text-decoration: none;

    font-size: 17px;

    font-weight: bold;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.home-section-button:hover {

    background: var(--home-orange-dark);

    color: var(--home-white);

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(249, 115, 22, 0.25);

}


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

.hero-section {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fbff 55%,
            #effdf5 100%
        );

    overflow: hidden;

}


/* =========================================
   HERO DECORATIVE CIRCLE - TOP
   ========================================= */

.hero-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    top: -220px;

    right: -160px;

    background:
        rgba(249, 115, 22, 0.08);

    border-radius: 50%;

}


/* =========================================
   HERO DECORATIVE CIRCLE - BOTTOM
   ========================================= */

.hero-section::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    bottom: -180px;

    left: -150px;

    background:
        rgba(25, 135, 84, 0.08);

    border-radius: 50%;

}


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

.hero-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 80px 30px;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 70px;

}


/* =========================================
   HERO CONTENT
   ========================================= */

.hero-content {

    max-width: 650px;

}


/* =========================================
   HERO LABEL
   ========================================= */

.hero-label {

    display: inline-block;

    margin-bottom: 18px;

    padding: 8px 14px;

    background:
        rgba(249, 115, 22, 0.10);

    color: var(--home-orange);

    border-radius: 30px;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 1px;

}


/* =========================================
   HERO TITLE
   ========================================= */

.hero-title {

    margin: 0 0 25px;

    color: var(--home-blue-dark);

    font-size: clamp(48px, 6vw, 78px);

    line-height: 1.02;

    font-weight: bold;

}


.hero-title span {

    display: block;

    color: var(--home-orange);

}


/* =========================================
   HERO DESCRIPTION
   ========================================= */

.hero-description {

    max-width: 620px;

    margin: 0 0 32px;

    color: var(--home-text);

    font-size: 20px;

    line-height: 1.75;

}


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

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

}


/* =========================================
   HERO BUTTON
   ========================================= */

.hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 13px 22px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 17px;

    font-weight: bold;

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

}


/* =========================================
   PRIMARY HERO BUTTON
   ========================================= */

.hero-btn-primary {

    background: var(--home-orange);

    color: var(--home-white);

    box-shadow:
        0 8px 25px rgba(249, 115, 22, 0.20);

}


.hero-btn-primary:hover {

    background: var(--home-orange-dark);

    color: var(--home-white);

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(249, 115, 22, 0.28);

}


/* =========================================
   SECONDARY HERO BUTTON
   ========================================= */

.hero-btn-secondary {

    background: var(--home-white);

    color: var(--home-blue);

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

}


.hero-btn-secondary:hover {

    background: var(--home-blue);

    color: var(--home-white);

    border-color: var(--home-blue);

    transform: translateY(-3px);

}


/* =========================================
   HERO VISUAL
   ========================================= */

.hero-visual {

    position: relative;

    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================
   HERO CARD
   ========================================= */

.hero-card {

    position: absolute;

    width: 260px;

    padding: 28px;

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

    border:
        1px solid rgba(15, 76, 129, 0.08);

    border-radius: 18px;

    box-shadow: var(--home-shadow-lg);

    text-align: center;

    animation:
        hero-card-float 5s ease-in-out infinite;

}


/* =========================================
   HERO CARD ONE
   ========================================= */

.hero-card:nth-child(1) {

    top: 20px;

    left: 50%;

    transform: translateX(-50%);

}


/* =========================================
   HERO CARD TWO
   ========================================= */

.hero-card-two {

    left: 0;

    bottom: 20px;

    animation-delay: 1s;

}


/* =========================================
   HERO CARD THREE
   ========================================= */

.hero-card-three {

    right: 0;

    bottom: 80px;

    animation-delay: 2s;

}


/* =========================================
   HERO CARD ICON
   ========================================= */

.hero-card-icon {

    width: 65px;

    height: 65px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(249, 115, 22, 0.10);

    color: var(--home-orange);

    border-radius: 15px;

    font-size: 27px;

}


/* =========================================
   HERO CARD TWO ICON
   ========================================= */

.hero-card:nth-child(2)
.hero-card-icon {

    background:
        rgba(25, 135, 84, 0.10);

    color: var(--home-green);

}


/* =========================================
   HERO CARD THREE ICON
   ========================================= */

.hero-card:nth-child(3)
.hero-card-icon {

    background:
        rgba(15, 76, 129, 0.10);

    color: var(--home-blue);

}


/* =========================================
   HERO CARD TITLE
   ========================================= */

.hero-card h3 {

    margin: 0 0 10px;

    color: var(--home-blue-dark);

    font-size: 22px;

}


/* =========================================
   HERO CARD DESCRIPTION
   ========================================= */

.hero-card p {

    margin: 0;

    color: var(--home-text-light);

    font-size: 15px;

    line-height: 1.6;

}


/* =========================================
   HERO FLOAT ANIMATION
   ========================================= */

@keyframes hero-card-float {

    0%,
    100% {

        margin-top: 0;

    }

    50% {

        margin-top: -10px;

    }

}


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

.intro-section {

    padding: 100px 0;

    background: var(--home-white);

}


/* =========================================
   OUTCOMES GRID
   ========================================= */

.outcomes-grid {

    margin-top: 55px;

    display: grid;

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

    gap: 22px;

}


/* =========================================
   OUTCOME CARD
   ========================================= */

.outcome-card {

    padding: 30px 24px;

    background: var(--home-white);

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

    border-radius: 14px;

    text-align: center;

    box-shadow: var(--home-shadow-sm);

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

}


.outcome-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(249, 115, 22, 0.35);

    box-shadow: var(--home-shadow-md);

}


/* =========================================
   OUTCOME ICON
   ========================================= */

.outcome-icon {

    width: 62px;

    height: 62px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(249, 115, 22, 0.10);

    color: var(--home-orange);

    border-radius: 14px;

    font-size: 25px;

}


.outcome-card:nth-child(2)
.outcome-icon {

    background:
        rgba(15, 76, 129, 0.10);

    color: var(--home-blue);

}


.outcome-card:nth-child(3)
.outcome-icon {

    background:
        rgba(25, 135, 84, 0.10);

    color: var(--home-green);

}


.outcome-card:nth-child(4)
.outcome-icon {

    background:
        rgba(96, 165, 250, 0.12);

    color: var(--home-blue-light);

}


/* =========================================
   OUTCOME TITLE
   ========================================= */

.outcome-card h3 {

    margin: 0 0 10px;

    color: var(--home-blue-dark);

    font-size: 21px;

}


/* =========================================
   OUTCOME DESCRIPTION
   ========================================= */

.outcome-card p {

    margin: 0;

    color: var(--home-text-light);

    font-size: 15px;

    line-height: 1.6;

}


/* =========================================
   SERVICES PREVIEW
   ========================================= */

.services-preview {

    padding: 100px 0;

    background: var(--home-light-bg);

}


/* =========================================
   SERVICES GRID
   ========================================= */

.services-grid {

    display: grid;

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

    gap: 25px;

}


/* =========================================
   SERVICE CARD
   ========================================= */

.service-card {

    position: relative;

    padding: 32px 28px;

    background: var(--home-white);

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

    border-radius: 15px;

    box-shadow: var(--home-shadow-sm);

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

}


.service-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(249, 115, 22, 0.30);

    box-shadow: var(--home-shadow-md);

}


/* =========================================
   SERVICE ICON
   ========================================= */

.service-icon {

    width: 60px;

    height: 60px;

    margin-bottom: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(249, 115, 22, 0.10);

    color: var(--home-orange);

    border-radius: 14px;

    font-size: 25px;

}


.service-card:nth-child(2)
.service-icon,
.service-card:nth-child(5)
.service-icon {

    background:
        rgba(15, 76, 129, 0.10);

    color: var(--home-blue);

}


.service-card:nth-child(3)
.service-icon,
.service-card:nth-child(6)
.service-icon {

    background:
        rgba(25, 135, 84, 0.10);

    color: var(--home-green);

}


/* =========================================
   SERVICE TITLE
   ========================================= */

.service-card h3 {

    margin: 0 0 12px;

    color: var(--home-blue-dark);

    font-size: 22px;

}


/* =========================================
   SERVICE DESCRIPTION
   ========================================= */

.service-card p {

    margin: 0 0 20px;

    color: var(--home-text-light);

    font-size: 16px;

    line-height: 1.7;

}


/* =========================================
   SERVICE LINK
   ========================================= */

.service-card a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--home-orange);

    text-decoration: none;

    font-size: 16px;

    font-weight: bold;

    transition:
        gap 0.3s ease,
        color 0.3s ease;

}


.service-card a:hover {

    color: var(--home-orange-dark);

    gap: 12px;

}


/* =========================================
   SERVICES BUTTON
   ========================================= */

.services-button {

    margin-top: 45px;

    text-align: center;

}


/* =========================================
   WHY VISALWEB
   ========================================= */

.why-section {

    padding: 100px 0;

    background: var(--home-white);

}


/* =========================================
   WHY CONTENT
   ========================================= */

.why-content {

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    align-items: center;

    gap: 80px;

}


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

.why-text {

    max-width: 520px;

}


.why-text .section-title {

    font-size:
        clamp(34px, 4vw, 48px);

}


.why-text > p {

    margin: 0 0 30px;

    color: var(--home-text-light);

    font-size: 18px;

    line-height: 1.8;

}


/* =========================================
   WHY FEATURES
   ========================================= */

.why-features {

    display: grid;

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

    gap: 20px;

}


/* =========================================
   WHY FEATURE
   ========================================= */

.why-feature {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 24px;

    background: var(--home-light-bg);

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

    border-radius: 13px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.why-feature:hover {

    transform: translateY(-5px);

    box-shadow: var(--home-shadow-sm);

}


/* =========================================
   WHY FEATURE ICON
   ========================================= */

.why-feature-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    background:
        rgba(249, 115, 22, 0.10);

    color: var(--home-orange);

    border-radius: 11px;

    font-size: 20px;

}


/* =========================================
   WHY FEATURE TITLE
   ========================================= */

.why-feature h3 {

    margin: 0 0 6px;

    color: var(--home-blue-dark);

    font-size: 19px;

}


/* =========================================
   WHY FEATURE DESCRIPTION
   ========================================= */

.why-feature p {

    margin: 0;

    color: var(--home-text-light);

    font-size: 14px;

    line-height: 1.6;

}


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

.industries-section {

    padding: 100px 0;

    background: var(--home-light-bg);

}


/* =========================================
   INDUSTRIES GRID
   ========================================= */

.industries-grid {

    display: grid;

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

    gap: 20px;

}


/* =========================================
   INDUSTRY CARD
   ========================================= */

.industry-card {

    min-height: 150px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 15px;

    background: var(--home-white);

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

    border-radius: 14px;

    text-align: center;

    box-shadow: var(--home-shadow-sm);

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

}


.industry-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(249, 115, 22, 0.30);

    box-shadow: var(--home-shadow-md);

}


/* =========================================
   INDUSTRY ICON
   ========================================= */

.industry-card i {

    color: var(--home-orange);

    font-size: 30px;

}


.industry-card:nth-child(2n) i {

    color: var(--home-blue);

}


.industry-card:nth-child(3n) i {

    color: var(--home-green);

}


/* =========================================
   INDUSTRY NAME
   ========================================= */

.industry-card span {

    color: var(--home-blue-dark);

    font-size: 17px;

    font-weight: bold;

}


/* =========================================
   FINAL CTA
   ========================================= */

.home-cta-section {

    position: relative;

    padding: 100px 30px;

    background:
        linear-gradient(
            135deg,
            var(--home-blue-dark),
            var(--home-blue)
        );

    overflow: hidden;

    text-align: center;

}


/* =========================================
   CTA DECORATIVE CIRCLE
   ========================================= */

.home-cta-section::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    top: -180px;

    left: -100px;

    background:
        rgba(249, 115, 22, 0.15);

    border-radius: 50%;

}


.home-cta-section::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    right: -100px;

    bottom: -160px;

    background:
        rgba(34, 197, 94, 0.12);

    border-radius: 50%;

}


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

.home-cta-container {

    position: relative;

    z-index: 2;

    max-width: 750px;

    margin: 0 auto;

}


/* =========================================
   CTA LABEL
   ========================================= */

.home-cta-container .section-label {

    color: #fb923c;

}


/* =========================================
   CTA TITLE
   ========================================= */

.home-cta-container h2 {

    margin: 0 0 20px;

    color: var(--home-white);

    font-size:
        clamp(38px, 5vw, 58px);

    line-height: 1.15;

}


.home-cta-container h2 span {

    color: #fb923c;

}


/* =========================================
   CTA DESCRIPTION
   ========================================= */

.home-cta-container p {

    max-width: 650px;

    margin: 0 auto 32px;

    color: #dbeafe;

    font-size: 18px;

    line-height: 1.8;

}


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

.home-cta-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 25px;

    background: var(--home-orange);

    color: var(--home-white);

    border-radius: 8px;

    text-decoration: none;

    font-size: 17px;

    font-weight: bold;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.home-cta-button:hover {

    background: var(--home-orange-dark);

    color: var(--home-white);

    transform: translateY(-3px);

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

}


/* =========================================
   LARGE TABLET
   ========================================= */

@media (max-width: 1050px) {

    .hero-container {

        grid-template-columns: 1fr;

        gap: 50px;

        text-align: center;

    }


    .hero-content {

        max-width: 750px;

        margin: 0 auto;

    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-buttons {

        justify-content: center;

    }


    .hero-visual {

        max-width: 650px;

        width: 100%;

        margin: 0 auto;

    }


    .outcomes-grid {

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

    }


    .why-content {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .why-text {

        max-width: 750px;

        margin: 0 auto;

        text-align: center;

    }


    .industries-grid {

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

    }

}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 800px) {

    .home-section-container {

        padding-left: 22px;

        padding-right: 22px;

    }


    .hero-container {

        padding:
            70px 22px;

    }


    .services-grid {

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

    }


    .why-features {

        grid-template-columns: 1fr;

    }


    .industries-grid {

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

    }

}


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

@media (max-width: 600px) {

    .home-section-container {

        padding-left: 18px;

        padding-right: 18px;

    }


    .hero-section {

        min-height: auto;

    }


    .hero-container {

        padding:
            60px 18px 70px;

    }


    .hero-label {

        font-size: 12px;

        letter-spacing: 0.8px;

    }


    .hero-title {

        font-size: 47px;

    }


    .hero-description {

        font-size: 17px;

    }


    .hero-buttons {

        flex-direction: column;

        width: 100%;

    }


    .hero-btn {

        width: 100%;

    }


    .hero-visual {

        min-height: 470px;

    }


    .hero-card {

        width: 230px;

        padding: 24px;

    }


    .hero-card-two {

        left: 0;

    }


    .hero-card-three {

        right: 0;

    }


    .intro-section,
    .services-preview,
    .why-section,
    .industries-section {

        padding: 70px 0;

    }


    .home-section-title {

        font-size: 36px;

    }


    .home-section-description {

        font-size: 17px;

    }


    .outcomes-grid {

        grid-template-columns: 1fr;

        margin-top: 40px;

    }


    .services-grid {

        grid-template-columns: 1fr;

    }


    .why-feature {

        padding: 20px;

    }


    .industries-grid {

        grid-template-columns: 1fr;

    }


    .industry-card {

        min-height: 130px;

    }


    .home-cta-section {

        padding:
            75px 18px;

    }


    .home-cta-container h2 {

        font-size: 38px;

    }


    .home-cta-container p {

        font-size: 17px;

    }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 400px) {

    .hero-title {

        font-size: 41px;

    }


    .hero-card {

        width: 205px;

        padding: 20px;

    }


    .hero-card h3 {

        font-size: 19px;

    }


    .hero-card p {

        font-size: 14px;

    }


    .hero-card-two {

        left: -5px;

    }


    .hero-card-three {

        right: -5px;

    }


    .home-section-title {

        font-size: 32px;

    }

}