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

/*=========================================================
                    CSS VARIABLES
=========================================================*/

:root{

    --primary:#5B8DEF;
    --secondary:#7F5AF0;
    --accent:#00C9A7;

    --success:#22C55E;
    --warning:#F59E0B;
    --danger:#EF4444;

    --dark:#0F172A;
    --dark-light:#1E293B;

    --white:#FFFFFF;
    --light:#F8FAFC;
    --gray:#64748B;

    --gradient-primary:linear-gradient(135deg,#5B8DEF,#7F5AF0);
    --gradient-secondary:linear-gradient(135deg,#00C9A7,#5B8DEF);
    --gradient-bg:linear-gradient(135deg,#0F172A,#172554,#1E3A8A);

    --shadow:0 15px 40px rgba(15,23,42,.12);

    --transition:.35s ease;

}

/*=========================================================
                        RESET
=========================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#F4F7FB;

    color:var(--dark);

    overflow-x:hidden;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/*=========================================================
                REUSABLE CLASSES
=========================================================*/

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:2.5rem;

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:var(--gray);

    line-height:1.8;

}

/*=========================================================
                        HEADER
=========================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(15,23,42,.75);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:85px;

}

/*=========================================================
                        LOGO
=========================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--white);

    font-size:1.45rem;

    font-weight:700;

}

.logo i{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:15px;

    background:var(--gradient-primary);

}

/*=========================================================
                    NAVIGATION
=========================================================*/

.nav-links{

    display:flex;

    gap:30px;

}

.nav-links a{

    color:var(--white);

    font-weight:500;

    transition:var(--transition);

}

.nav-links a:hover,
.nav-links .active{

    color:#8BD3FF;

}

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

.hero{

    min-height:60vh;

    background:var(--gradient-bg);

    display:flex;

    align-items:center;

    padding-top:120px;

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(91,141,239,.12);

    top:-140px;

    left:-120px;

}

.hero::after{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    border-radius:50%;

    background:rgba(127,90,240,.15);

    right:-100px;

    bottom:-120px;

}

.hero-container{

    display:grid;

    grid-template-columns:1.4fr .8fr;

    gap:60px;

    align-items:center;

    position:relative;

    z-index:2;

}

.hero-tag{

    display:inline-block;

    padding:12px 25px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    color:var(--white);

    margin-bottom:25px;

}

.hero-content h1{

    font-size:3.5rem;

    color:var(--white);

    line-height:1.2;

    margin-bottom:20px;

}

.hero-content span{

    color:#8BD3FF;

}

.hero-content p{

    color:#D6E4F5;

    line-height:1.9;

    max-width:620px;

}

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

.hero-card{

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:28px;

    padding:40px;

    text-align:center;

    color:var(--white);

    box-shadow:var(--shadow);

    animation:float 4s ease-in-out infinite;

}

.card-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:22px;

    background:var(--gradient-primary);

    font-size:2rem;

}

.hero-card h3{

    color:#CBD5E1;

    margin-bottom:15px;

}

.hero-card h2{

    font-size:2.4rem;

    margin-bottom:12px;

}

.hero-card p{

    color:#8BD3FF;

}

/*=========================================================
                GOAL CATEGORY CARDS
=========================================================*/

.goal-categories{

    background:var(--light);

}

.goal-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.goal-card{

    background:var(--white);

    border-radius:25px;

    padding:35px;

    text-align:center;

    color:var(--dark);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.goal-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(91,141,239,.20);

}

.goal-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:22px;

    background:var(--gradient-primary);

    font-size:2.5rem;

    color:var(--white);

}

.goal-card h3{

    margin-bottom:15px;

}

.goal-card p{

    color:var(--gray);

    line-height:1.8;

}

/*=========================================================
                    HOW IT WORKS
=========================================================*/

.planning-process{

    background:linear-gradient(135deg,#EEF5FF,#FFFFFF);

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.process-card{

    background:var(--white);

    padding:35px;

    border-radius:24px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.process-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(91,141,239,.18);

}

.process-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:var(--gradient-secondary);

    color:var(--white);

    font-size:2rem;

}

.process-card h3{

    margin-bottom:15px;

    color:var(--dark);

}

.process-card p{

    color:var(--gray);

    line-height:1.8;

}

/*=========================================================
                PLANNER OVERVIEW TABLE
=========================================================*/

.planner-overview{

    background:var(--light);

}

.planner-table{

    overflow-x:auto;

    background:var(--white);

    border-radius:25px;

    box-shadow:var(--shadow);

}

.planner-table table{

    width:100%;

    border-collapse:collapse;

}

.planner-table thead{

    background:var(--gradient-primary);

    color:var(--white);

}

.planner-table th{

    padding:20px;

    font-size:1rem;

    text-align:left;

}

.planner-table td{

    padding:18px 20px;

    border-bottom:1px solid #E2E8F0;

    color:var(--gray);

    transition:var(--transition);

}

.planner-table tbody tr:hover{

    background:#F8FAFC;

}

.planner-table tbody tr:last-child td{

    border-bottom:none;

}

/*=========================================================
                    QUICK LINKS
=========================================================*/

.quick-links{

    background:linear-gradient(135deg,#F8FAFC,#EEF5FF);

}

.links-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:28px;

}

.tool-card{

    background:var(--white);

    border-radius:24px;

    padding:35px 20px;

    text-align:center;

    color:var(--dark);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.tool-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(91,141,239,.18);

}

.tool-card i{

    width:80px;

    height:80px;

    margin:0 auto 20px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:var(--gradient-primary);

    color:var(--white);

    font-size:2rem;

}

.tool-card h3{

    font-size:1.15rem;

}

/*=========================================================
                        FOOTER
=========================================================*/

.footer{

    background:#0F172A;

    color:#CBD5E1;

    text-align:center;

    padding:35px 0;

}

.footer p{

    font-size:.95rem;

}

/*=========================================================
                    RESPONSIVE DESIGN
=========================================================*/

@media (max-width:1100px){

    .hero-container{

        grid-template-columns:1fr;

    }

    .hero-card{

        max-width:450px;

        margin:40px auto 0;

    }

}

@media (max-width:900px){

    .header .container{

        flex-direction:column;

        gap:20px;

        height:auto;

        padding:20px 0;

    }

    .nav-links{

        flex-wrap:wrap;

        justify-content:center;

        gap:18px;

    }

    .hero{

        padding-top:180px;

    }

}

@media (max-width:768px){

    section{

        padding:70px 0;

    }

    .hero-content h1{

        font-size:2.6rem;

    }

    .section-title h2{

        font-size:2rem;

    }

    .planner-table{

        font-size:.9rem;

    }

}

@media (max-width:576px){

    .container{

        width:92%;

    }

    .hero-content h1{

        font-size:2.2rem;

    }

    .goal-card,
    .process-card,
    .tool-card{

        padding:25px;

    }

    .planner-table th,
    .planner-table td{

        padding:14px;

    }

}

/*=========================================================
                END OF goal-planner.css
=========================================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}