﻿/* ==========================================================
   GPTTips Enterprise Website v1.0
   Author : GPTTips
   Website: https://gpttips.org
========================================================== */

/* ===========================
   GOOGLE FONTS
=========================== */

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

/* ===========================
   ROOT COLORS
=========================== */

:root{

    --primary:#00C853;
    --primary-dark:#009624;

    --secondary:#00B8FF;

    --accent:#9AFD4D;

    --dark:#071320;

    --dark-light:#10253D;

    --white:#FFFFFF;

    --light:#F7FAFC;

    --gray:#64748B;

    --border:#E8EEF3;

    --shadow:0 10px 35px rgba(0,0,0,.08);

    --radius:18px;

}

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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

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

    background:var(--light);

    color:#1E293B;

    line-height:1.7;

}

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

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

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

a{

    text-decoration:none;

    transition:.3s;

}

/* ===========================
   IMAGES
=========================== */

img{

    width:100%;

    display:block;

}

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

.btn-start{

    background:var(--primary);

    color:white;

    padding:14px 28px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

    display:inline-block;

}

.btn-start:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

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

.header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

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

    backdrop-filter:blur(18px);

    z-index:999;

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

}

/* ===========================
   NAVBAR
=========================== */

.navbar{

    height:85px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

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

.logo img{

    height:55px;

    width:auto;

}

/* ===========================
   MENU
=========================== */

.menu{

    display:flex;

    list-style:none;

    gap:35px;

}

.menu li a{

    color:#233548;

    font-weight:600;

    font-size:15px;

}

.menu li a:hover{

    color:var(--primary);

}

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

.hero{

    padding-top:160px;

    padding-bottom:120px;

    background:

    linear-gradient(135deg,#071320,#0F2338);

    color:white;

}

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

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

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

.hero h1{

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

    font-size:62px;

    line-height:1.1;

    margin-bottom:25px;

}

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

.hero p{

    font-size:20px;

    color:#DCE7F5;

    margin-bottom:35px;

}

/* ===========================
   CARDS
=========================== */

.card{

    background:white;

    border-radius:var(--radius);

    padding:30px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

}

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

section{

    padding:90px 0;

}

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

.section-title{

    text-align:center;

    font-size:42px;

    font-family:'Poppins';

    margin-bottom:15px;

}

.section-subtitle{

    text-align:center;

    color:var(--gray);

    margin-bottom:55px;

}

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

footer{

    background:#071320;

    color:white;

    padding:80px 0;

}

.hero-badge{

display:inline-block;

padding:10px 18px;

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

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

border-radius:50px;

color:white;

margin-bottom:25px;

font-size:14px;

}

.hero h1 span{

color:#00C853;

}

.btn-group{

display:flex;

gap:18px;

margin-top:35px;

}

.btn-outline{

padding:14px 28px;

border-radius:50px;

border:2px solid white;

color:white;

font-weight:700;

}

.btn-outline:hover{

background:white;

color:#071320;

}

.hero-stats{

display:flex;

gap:50px;

margin-top:55px;

}

.hero-stats h3{

font-size:34px;

color:#00C853;

}

.hero-stats span{

color:#d7e4ef;

}

.robot-card{

background:white;

padding:40px;

border-radius:30px;

box-shadow:0 30px 60px rgba(0,0,0,.25);

}

/* ===========================================
   FEATURED AI TOOLS
=========================================== */

.featured-tools{

    background:#F7FAFC;

}

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-tag{

    display:inline-block;

    background:#E8FFF1;

    color:#00C853;

    padding:10px 20px;

    border-radius:40px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}

.tool-grid{

    display:grid;

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

    gap:30px;

}

.tool-card{

    background:white;

    border-radius:22px;

    padding:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid #E8EEF3;

}

.tool-card:hover{

    transform:translateY(-10px);

    border-color:#00C853;

}

.tool-icon{

    font-size:42px;

    margin-bottom:20px;

}

.tool-card h3{

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

    margin-bottom:15px;

}

.tool-card p{

    color:#64748B;

    margin-bottom:20px;

    line-height:1.6;

}

.tool-card a{

    color:#00C853;

    font-weight:700;

}

.featured-card{

    background:linear-gradient(135deg,#00C853,#00B8FF);

    color:white;

}

.featured-card p,

.featured-card a{

    color:white;

}

/*=========================================
 LEARNING PATHS
=========================================*/

.learning-paths{

    background:white;

}

.path-grid{

    display:grid;

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

    gap:30px;

}

.path-card{

    background:white;

    border-radius:24px;

    padding:35px;

    border:1px solid #E8EEF3;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.path-card:hover{

    transform:translateY(-8px);

    border-color:#00C853;

}

.path-icon{

    width:72px;

    height:72px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#E8FFF1;

    font-size:34px;

    margin-bottom:25px;

}

.path-card h3{

    font-family:Poppins;

    margin-bottom:15px;

}

.path-card p{

    color:#64748B;

    margin-bottom:20px;

    line-height:1.7;

}

.path-card a{

    color:#00C853;

    font-weight:700;

}

.featured-path{

    background:linear-gradient(135deg,#00C853,#00B8FF);

    color:white;

}

.featured-path p,

.featured-path a{

    color:white;

}

/*=========================================
 WHY GPTTIPS
=========================================*/

.why-gpttips{

    background:#F7FAFC;

}

.why-grid{

    display:grid;

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

    gap:30px;

}

.why-card{

    background:white;

    border-radius:24px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    border:1px solid #E8EEF3;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

    border-color:#00C853;

}

.why-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#E8FFF1;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

}

.why-card h3{

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

    margin-bottom:15px;

}

.why-card p{

    color:#64748B;

    line-height:1.7;

}

.featured-why{

    background:linear-gradient(135deg,#00C853,#00B8FF);

    color:white;

}

.featured-why p{

    color:white;

}
/*=========================================
 FEATURED TUTORIALS
=========================================*/

.featured-tutorials{

    background:white;

}

.tutorial-grid{

    display:grid;

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

    gap:35px;

}

.tutorial-card{

    background:white;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.tutorial-card:hover{

    transform:translateY(-10px);

}

.tutorial-image{

    height:220px;

    background:linear-gradient(135deg,#00C853,#00B8FF);

    position:relative;

}

.tutorial-badge{

    position:absolute;

    top:20px;

    left:20px;

    padding:8px 18px;

    border-radius:30px;

    background:white;

    font-size:13px;

    font-weight:700;

}

.tutorial-content{

    padding:30px;

}

.tutorial-content small{

    color:#00C853;

    font-weight:700;

}

.tutorial-content h3{

    margin:12px 0;

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

}

.tutorial-content p{

    color:#64748B;

    line-height:1.7;

}

.tutorial-footer{

    display:flex;

    justify-content:space-between;

    margin-top:25px;

    align-items:center;

}

.tutorial-footer a{

    color:#00C853;

    font-weight:700;

}

.tutorial-button{

    text-align:center;

    margin-top:60px;

}
/*=========================================
LATEST AI NEWS
=========================================*/

.latest-news{

background:#F7FAFC;

}

.news-layout{

display:grid;

grid-template-columns:2fr 1fr;

gap:40px;

}

.featured-news{

background:white;

border-radius:24px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.featured-news-image{

height:280px;

background:linear-gradient(135deg,#00C853,#00B8FF);

}

.featured-news-content{

padding:35px;

}

.news-category{

background:#E8FFF1;

color:#00C853;

padding:8px 18px;

border-radius:30px;

font-size:13px;

font-weight:700;

}

.featured-news h3{

margin:20px 0;

font-family:Poppins;

font-size:32px;

}

.featured-news p{

color:#64748B;

line-height:1.8;

margin-bottom:25px;

}

.featured-news a{

color:#00C853;

font-weight:700;

}

.news-list{

display:flex;

flex-direction:column;

gap:20px;

}

.news-item{

background:white;

padding:25px;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,.06);

border-left:5px solid #00C853;

}

.news-item span{

font-weight:700;

color:#00C853;

display:block;

margin-bottom:10px;

}

.news-item p{

color:#64748B;

line-height:1.6;

}
/*=========================================
 COMMUNITY
=========================================*/

.community{

padding:100px 0;

background:linear-gradient(135deg,#071320,#0E2743);

color:white;

}

.community-box{

text-align:center;

max-width:900px;

margin:auto;

}

.community h2{

font-size:48px;

font-family:Poppins;

margin:25px 0;

}

.community p{

color:#D7E4EF;

font-size:18px;

line-height:1.8;

max-width:700px;

margin:auto;

margin-bottom:45px;

}

.newsletter-form{

display:flex;

justify-content:center;

gap:20px;

margin-bottom:60px;

flex-wrap:wrap;

}

.newsletter-form input{

width:420px;

padding:18px 22px;

border:none;

border-radius:60px;

font-size:16px;

}

.newsletter-form button{

background:#00C853;

color:white;

padding:18px 35px;

border:none;

border-radius:60px;

font-weight:700;

cursor:pointer;

}

.newsletter-form button:hover{

background:#009624;

}

.community-stats{

display:flex;

justify-content:center;

gap:70px;

margin-top:30px;

}

.community-stats h3{

font-size:42px;

color:#9AFD4D;

margin-bottom:10px;

}

.community-stats span{

color:#D7E4EF;

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

.footer{

background:#04111F;

padding:80px 0 30px;

color:white;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:40px;

margin-bottom:40px;

}

.footer-logo{

height:60px;

width:auto;

margin-bottom:20px;

}

.footer h4{

margin-bottom:20px;

font-family:Poppins;

}

.footer ul{

list-style:none;

padding:0;

}

.footer ul li{

margin-bottom:12px;

}

.footer a{

color:#D7E4EF;

}

.footer a:hover{

color:#00C853;

}

.social-icons{

display:flex;

gap:15px;

}

.social-icons a{

width:45px;

height:45px;

display:flex;

align-items:center;

justify-content:center;

background:#10253D;

border-radius:50%;

font-size:18px;

}

.social-icons a:hover{

background:#00C853;

color:white;

}

.footer hr{

border:none;

height:1px;

background:#1E3A56;

margin:30px 0;

}

.copyright{

text-align:center;

color:#94A3B8;

}