/*
=========================================================
 SIMPAKA — Simple Path & Knowledge Analytics
 Custom Brand Theme
=========================================================

 Install:
 <link href="assets/css/simpaka.css" rel="stylesheet">

 This stylesheet is designed for the SIMPAKA homepage
 structure: #header, #hero, #about, #why-simpaka,
 #services, #workflow and #cta.
=========================================================
*/

/* =========================================================
   1. BRAND SYSTEM
   ========================================================= */

:root {
    --simpaka-teal: #319F9E;
    --simpaka-teal-dark: #247F7E;
    --simpaka-teal-light: #E8F6F5;

    --simpaka-blue: #14549A;
    --simpaka-blue-dark: #0D3969;
    --simpaka-blue-light: #EAF2FA;

    --simpaka-red: #D62828;
    --simpaka-red-dark: #B51F1F;
    --simpaka-red-light: #FCEAEA;

    --simpaka-gold: #E5AE2F;
    --simpaka-gold-light: #FFF7E2;

    --simpaka-green: #78A96B;
    --simpaka-green-light: #EEF6EB;

    --simpaka-text: #273746;
    --simpaka-muted: #687985;
    --simpaka-heading: #123B5D;

    --simpaka-bg: #F7FAFA;
    --simpaka-white: #FFFFFF;
    --simpaka-border: #E3ECEC;

    --simpaka-shadow:
        0 8px 25px rgba(20, 84, 154, 0.08);

    --simpaka-shadow-hover:
        0 16px 40px rgba(20, 84, 154, 0.15);

    --simpaka-radius: 14px;
}


/* =========================================================
   2. GLOBAL
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--simpaka-text);
    background: #fff;
    overflow-x: hidden;
}

a {
    color: var(--simpaka-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--simpaka-teal);
}

p {
    line-height: 1.75;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.section-bg {
    background:
        linear-gradient(
            180deg,
            #f7fafc 0%,
            #eef8f7 100%
        );
}

.section-title {
    text-align: center;
    padding-bottom: 45px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--simpaka-teal);
    margin-bottom: 10px;
}

.section-title p {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--simpaka-blue-dark);
    margin: 0;
}


/* =========================================================
   3. HEADER
   ========================================================= */

#header {
    height: 82px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 18px rgba(49, 159, 158, 0.12);
    z-index: 997;
    transition: all 0.3s ease;
}

#header .container {
    height: 100%;
}

#header .logo {
    display: flex;
    align-items: center;
}

#header .logo img {
    max-height: 62px;
    width: auto;
    transition: all 0.3s ease;
}

#header .logo:hover img {
    transform: scale(1.03);
}

/* Generic navbar support */
#header .navbar a {
    color: var(--simpaka-blue-dark);
    font-weight: 600;
}

#header .navbar a:hover,
#header .navbar .active,
#header .navbar .active:focus {
    color: var(--simpaka-teal) !important;
}

/* Login / Start button */
#header .navbar .getstarted,
#header .navbar .login-btn,
#header .login-btn {
    background: var(--simpaka-red);
    color: #fff !important;
    border-radius: 6px;
    padding: 10px 24px;
    font-weight: 700;
    border: 2px solid var(--simpaka-red);
}

#header .navbar .getstarted:hover,
#header .navbar .login-btn:hover,
#header .login-btn:hover {
    background: var(--simpaka-red-dark);
    border-color: var(--simpaka-red-dark);
    color: #fff !important;
    transform: translateY(-2px);
}


/* =========================================================
   4. HERO
   ========================================================= */

#hero {
    margin-top: 82px;
}

#hero .carousel-item {
    min-height: 620px;
    background-size: cover;
    background-position: center center;
    position: relative;
}

#hero .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(13, 57, 105, 0.84) 0%,
            rgba(20, 84, 154, 0.57) 45%,
            rgba(49, 159, 158, 0.28) 100%
        );
}

#hero .carousel-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

#hero .container {
    max-width: 1150px;
}

#hero h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: -1px;
}

#hero h2 span {
    color: #65D1CD;
}

#hero p {
    max-width: 800px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 19px;
    margin: 10px 0;
}

#hero p:first-of-type {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

#hero .btn-get-started {
    display: inline-block;
    margin-top: 25px;
    padding: 13px 32px;

    background: var(--simpaka-red);
    color: #fff;

    border-radius: 6px;
    border: 2px solid var(--simpaka-red);

    font-weight: 700;
    font-size: 15px;

    box-shadow:
        0 8px 22px rgba(214, 40, 40, 0.25);

    transition: all 0.3s ease;
}

#hero .btn-get-started:hover {
    background: var(--simpaka-red-dark);
    border-color: var(--simpaka-red-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px rgba(214, 40, 40, 0.35);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 56px;
    height: 56px;

    top: 50%;
    transform: translateY(-50%);

    margin: 0 20px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    transition: all 0.3s ease;
}

#hero .carousel-control-prev:hover,
#hero .carousel-control-next:hover {
    background: rgba(49, 159, 158, 0.85);
}

#hero .carousel-indicators {
    bottom: 25px;
}

#hero .carousel-indicators button,
#hero .carousel-indicators li {
    width: 30px;
    height: 4px;
    border: 0;
    border-radius: 5px;
}


/* =========================================================
   5. ABOUT
   ========================================================= */

#about {
    background: #fff;
}

#about h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--simpaka-blue-dark);
    margin-bottom: 8px;
}

#about h3 {
    font-size: 21px;
    font-weight: 600;
    color: var(--simpaka-teal);
    margin-bottom: 25px;
}

#about p {
    color: var(--simpaka-text);
}

#about strong {
    color: var(--simpaka-blue);
}

#about ul {
    padding: 0;
    margin: 25px 0;
    list-style: none;
}

#about ul li {
    position: relative;
    padding: 7px 0 7px 30px;
    font-size: 15px;
}

#about ul li i {
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--simpaka-teal);
    font-size: 18px;
}

#about .fst-italic {
    border-left: 4px solid var(--simpaka-teal);
    padding: 15px 20px;
    background: var(--simpaka-teal-light);
    border-radius: 0 8px 8px 0;
    color: var(--simpaka-blue-dark);
}


/* =========================================================
   6. WHY SIMPAKA
   ========================================================= */

#why-simpaka {
    position: relative;
}

#why-simpaka .box {
    height: 100%;
    background: #fff;
    padding: 38px 30px;

    border-radius: var(--simpaka-radius);
    border: 1px solid var(--simpaka-border);

    box-shadow: var(--simpaka-shadow);

    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

#why-simpaka .box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--simpaka-teal),
            var(--simpaka-blue)
        );
}

#why-simpaka .box:hover {
    transform: translateY(-8px);
    box-shadow: var(--simpaka-shadow-hover);
    border-color: rgba(49, 159, 158, 0.25);
}

#why-simpaka .box span {
    display: inline-flex;

    width: 52px;
    height: 52px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--simpaka-teal-light);
    color: var(--simpaka-teal);

    font-size: 18px;
    font-weight: 800;

    margin-bottom: 22px;
}

#why-simpaka .box h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--simpaka-blue-dark);
    margin-bottom: 15px;
}

#why-simpaka .box p {
    color: var(--simpaka-muted);
    margin-bottom: 0;
}

#why-simpaka .box:nth-child(2) span {
    background: var(--simpaka-blue-light);
    color: var(--simpaka-blue);
}

#why-simpaka .box:nth-child(3) span {
    background: var(--simpaka-gold-light);
    color: var(--simpaka-gold);
}


/* =========================================================
   7. SERVICES / FEATURES
   ========================================================= */

#services {
    background: #fff;
}

#services .icon-box {
    position: relative;

    min-height: 210px;

    background: #fff;

    padding: 32px 30px 30px 95px;

    border: 1px solid var(--simpaka-border);
    border-radius: var(--simpaka-radius);

    box-shadow:
        0 5px 20px rgba(20, 84, 154, 0.055);

    transition: all 0.35s ease;
}

#services .icon-box:hover {
    transform: translateY(-6px);

    box-shadow: var(--simpaka-shadow-hover);

    border-color: rgba(49, 159, 158, 0.25);
}

#services .icon-box > i {
    position: absolute;

    left: 28px;
    top: 32px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--simpaka-teal-light);
    color: var(--simpaka-teal);

    font-size: 25px;

    transition: all 0.35s ease;
}

#services .icon-box:hover > i {
    background: var(--simpaka-teal);
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}

#services .icon-box h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

#services .icon-box h4 a {
    color: var(--simpaka-blue-dark);
}

#services .icon-box h4 a:hover {
    color: var(--simpaka-teal);
}

#services .icon-box p {
    color: var(--simpaka-muted);
    font-size: 14px;
    margin-bottom: 0;
}

/* Feature color variations */
#services .icon-box:nth-child(2) > i {
    background: var(--simpaka-blue-light);
    color: var(--simpaka-blue);
}

#services .icon-box:nth-child(3) > i {
    background: var(--simpaka-gold-light);
    color: var(--simpaka-gold);
}

#services .icon-box:nth-child(4) > i {
    background: var(--simpaka-teal-light);
    color: var(--simpaka-teal);
}

#services .icon-box:nth-child(5) > i {
    background: var(--simpaka-red-light);
    color: var(--simpaka-red);
}

#services .icon-box:nth-child(6) > i {
    background: var(--simpaka-blue-light);
    color: var(--simpaka-blue);
}

#services .icon-box:nth-child(7) > i {
    background: var(--simpaka-gold-light);
    color: var(--simpaka-gold);
}

#services .icon-box:nth-child(8) > i {
    background: var(--simpaka-teal-light);
    color: var(--simpaka-teal);
}


/* =========================================================
   8. WORKFLOW
   ========================================================= */

#workflow {
    overflow: hidden;
}

#workflow .icon-box {
    background: #fff;

    padding: 28px 15px;
    min-height: 180px;

    border: 1px solid var(--simpaka-border);
    border-radius: 14px;

    box-shadow:
        0 6px 22px rgba(20, 84, 154, 0.06);

    transition: all 0.35s ease;

    position: relative;
}

#workflow .icon-box:hover {
    transform: translateY(-7px);

    box-shadow: var(--simpaka-shadow-hover);

    border-color: var(--simpaka-teal);
}

#workflow .icon-box i {
    color: var(--simpaka-teal);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

#workflow .icon-box:hover i {
    transform: scale(1.12);
}

#workflow .icon-box h4 {
    color: var(--simpaka-blue-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

#workflow .icon-box p {
    color: var(--simpaka-muted);
    font-size: 13px;
    margin: 0;
}

#workflow .icon-box::after {
    content: "";
    position: absolute;

    top: 12px;
    right: 12px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--simpaka-yellow, #E5AE2F);
}

#workflow .col-lg-2:nth-child(1) .icon-box i {
    color: var(--simpaka-green);
}

#workflow .col-lg-2:nth-child(2) .icon-box i {
    color: var(--simpaka-blue);
}

#workflow .col-lg-2:nth-child(3) .icon-box i {
    color: var(--simpaka-teal);
}

#workflow .col-lg-2:nth-child(4) .icon-box i {
    color: var(--simpaka-gold);
}

#workflow .col-lg-2:nth-child(5) .icon-box i {
    color: var(--simpaka-red);
}

#workflow .col-lg-2:nth-child(6) .icon-box i {
    color: var(--simpaka-teal);
}


/* =========================================================
   9. CTA
   ========================================================= */

#cta {
    position: relative;

    padding: 65px 0;

    background:
        linear-gradient(
            120deg,
            var(--simpaka-blue-dark),
            var(--simpaka-blue),
            var(--simpaka-teal-dark)
        );

    color: #fff;
    overflow: hidden;
}

#cta::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -150px;
    top: -200px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);
}

#cta::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -120px;
    bottom: -150px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);
}

#cta .container {
    position: relative;
    z-index: 2;
}

#cta h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

#cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

#cta .cta-btn {
    display: inline-block;

    padding: 13px 30px;

    background: #fff;

    color: var(--simpaka-blue-dark);

    border-radius: 6px;
    border: 2px solid #fff;

    font-weight: 700;

    transition: all 0.3s ease;
}

#cta .cta-btn:hover {
    background: var(--simpaka-gold);
    border-color: var(--simpaka-gold);
    color: #fff;

    transform: translateY(-3px);
}


/* =========================================================
   10. FOOTER
   ========================================================= */

#footer {
    background: #082B4A;
    color: rgba(255, 255, 255, 0.75);
}

#footer a {
    color: rgba(255, 255, 255, 0.78);
}

#footer a:hover {
    color: var(--simpaka-teal);
}

#footer h3,
#footer h4,
#footer h5 {
    color: #fff;
}

#footer .footer-top {
    background: #082B4A;
}

#footer .footer-info h3 {
    color: #fff;
}

#footer .social-links a {
    background: rgba(49, 159, 158, 0.18);
    color: #fff;
    border: 1px solid rgba(49, 159, 158, 0.3);
}

#footer .social-links a:hover {
    background: var(--simpaka-teal);
    border-color: var(--simpaka-teal);
}


/* =========================================================
   11. BACK TO TOP
   ========================================================= */

.back-to-top {
    background: var(--simpaka-teal) !important;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: var(--simpaka-blue) !important;
    transform: translateY(-3px);
}


/* =========================================================
   12. BUTTONS
   ========================================================= */

.btn-simpaka {
    display: inline-block;

    padding: 12px 28px;

    background: var(--simpaka-teal);
    color: #fff;

    border: 2px solid var(--simpaka-teal);
    border-radius: 6px;

    font-weight: 700;

    transition: all 0.3s ease;
}

.btn-simpaka:hover {
    background: var(--simpaka-teal-dark);
    border-color: var(--simpaka-teal-dark);
    color: #fff;

    transform: translateY(-2px);
}

.btn-simpaka-red {
    display: inline-block;

    padding: 12px 28px;

    background: var(--simpaka-red);
    color: #fff;

    border: 2px solid var(--simpaka-red);
    border-radius: 6px;

    font-weight: 700;

    transition: all 0.3s ease;
}

.btn-simpaka-red:hover {
    background: var(--simpaka-red-dark);
    border-color: var(--simpaka-red-dark);
    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   13. CARDS / GENERAL COMPONENTS
   ========================================================= */

.simpaka-card {
    background: #fff;

    border: 1px solid var(--simpaka-border);
    border-radius: var(--simpaka-radius);

    box-shadow: var(--simpaka-shadow);

    transition: all 0.3s ease;
}

.simpaka-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--simpaka-shadow-hover);
}

.simpaka-teal {
    color: var(--simpaka-teal) !important;
}

.simpaka-blue {
    color: var(--simpaka-blue) !important;
}

.simpaka-red {
    color: var(--simpaka-red) !important;
}

.simpaka-gold {
    color: var(--simpaka-gold) !important;
}

.simpaka-green {
    color: var(--simpaka-green) !important;
}


/* =========================================================
   14. SELECTION
   ========================================================= */

::selection {
    background: var(--simpaka-teal);
    color: #fff;
}


/* =========================================================
   15. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #edf3f3;
}

::-webkit-scrollbar-thumb {
    background: var(--simpaka-teal);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--simpaka-blue);
}


/* =========================================================
   16. MOBILE
   ========================================================= */

@media (max-width: 991px) {

    #header {
        height: 72px;
    }

    #header .logo img {
        max-height: 52px;
    }

    #hero {
        margin-top: 72px;
    }

    #hero .carousel-item {
        min-height: 560px;
    }

    #hero h2 {
        font-size: 40px;
    }

    #hero p {
        font-size: 17px;
    }

    #hero p:first-of-type {
        font-size: 20px;
    }

    section {
        padding: 65px 0;
    }

    .section-title p {
        font-size: 28px;
    }

    #about h2 {
        font-size: 36px;
    }
}


@media (max-width: 767px) {

    #hero .carousel-item {
        min-height: 600px;
    }

    #hero h2 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    #hero p {
        font-size: 15px;
    }

    #hero p:first-of-type {
        font-size: 18px;
    }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 42px;
        height: 42px;
        margin: 0 8px;
    }

    #services .icon-box {
        padding-left: 85px;
    }

    #workflow .icon-box {
        margin-bottom: 20px;
    }

    #cta {
        text-align: center;
    }

    #cta .cta-btn-container {
        margin-top: 25px;
    }

    #cta h3 {
        font-size: 25px;
    }
}


/* =========================================================
   17. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    #header .logo img {
        max-width: 180px;
    }

    #hero h2 {
        font-size: 28px;
    }

    #hero .btn-get-started {
        padding: 11px 24px;
    }

    #about h2 {
        font-size: 31px;
    }

    .section-title p {
        font-size: 24px;
    }

    #services .icon-box {
        padding: 28px 22px 25px 78px;
    }

    #services .icon-box > i {
        left: 22px;
    }
}


/* =========================================================
   END SIMPAKA CSS
   ========================================================= */
