
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');


:root {
    /* UpLife Academy — brand anchor: purple only; navy reserved for dark bands */
    --color-primary: #683F91;
    --color-primary-dark: #5A357F;
    --color-primary-light: #7B52A8;

    --primary-color: var(--color-primary);
    --primary-color-low: rgba(104, 63, 145, 0.45);
    --primary-color-dark: var(--color-primary-dark);

    --gradient-hero: linear-gradient(135deg, #5A357F 0%, #7B52A8 100%);

    --secondary-color: #9CA3AF;
    --secondary-color-low: rgba(156, 163, 175, 0.45);
    --secondary-color-dark: #6B7280;

    --tertiary-color: #F5F5F7;
    --tertiary-color-low: rgba(245, 245, 247, 0.92);
    --tertiary-color-dark: #E8E8EC;

    --bg-color: #F5F5F7;
    --bg-color-low: rgba(255, 255, 255, 0.78);
    --bg-color-dark: #EBEBEF;

    --text-dark: #1A1A1A;
    --text-dark-low: rgba(107, 114, 128, 0.95);
    --text-dark-dark: #111827;

    --text-light: #FFFFFF;
    --text-light-low: rgba(255, 255, 255, 0.85);
    --text-light-dark: #E8E8ED;

    --button-color: #683F91;
    --button-color-low: rgba(104, 63, 145, 0.5);
    --button-color-dark: #5A357F;

    --card-bg: #FFFFFF;
    --card-bg-low: #F5F5F7;

    --section-dark-bg: #1F3A5F;
    --section-dark-text: #F8FAFC;
    --section-dark-text-muted: rgba(226, 232, 240, 0.88);

    --smoothline-color: var(--bg-color);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--bg-color);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

i {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

button:focus {
    outline: none;
}

button:active {
    outline: none;
}

button:hover {
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}
h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}
h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}
h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}
h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}



body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

section {
    display: flex;
    position: relative;
    height: 100vh;
}



/* Slider Section */


.slider-sec {
    position: relative;
    height: calc(100vh - 170px);
    width: 100%;
    padding: 0 20px;
    margin-top: 160px;
}

.slider-sec .container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: visible;
}

.slider-sec .slider-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 10px;
    overflow: hidden;
}

/* Tawk.to — sabit widget’ı köşeden içeri al (landing / WhatsApp alanı ile hizalı boşluk) */
#tawkchat-container,
#tawkchat-minimized {
    bottom: 32px !important;
    /* Köşeden ~4px daha içeri (hafif sola) */
    right: 45px !important;
}

