/*==================================================
    DAF Studios
    AI Native EdTech
==================================================*/

:root{

    --primary:#111827;
    --secondary:#3B82F6;
    --accent:#14B8A6;

    --white:#ffffff;
    --black:#000000;

    --text:#4B5563;
    --heading:#111827;

    --border:#E5E7EB;

    --surface:#F8FAFC;
    --surface2:#F1F5F9;

    --radius:22px;
    --radius-sm:14px;

    --shadow:0 20px 60px rgba(15,23,42,.08);

    --transition:.35s ease;

    --container:1280px;

}


/*==================================================
    RESET
==================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;
    color:var(--text);
    background:var(--white);
    font-size:16px;
    line-height:1.75;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;
    margin:0;
    padding:0;

}

section{

    position:relative;

}

.py-120{

    padding:120px 0;

}

.container{

    max-width:var(--container);

}


/*==================================================
    TYPOGRAPHY
==================================================*/

h1,h2,h3,h4,h5,h6{

    color:var(--heading);
    font-weight:700;
    line-height:1.15;

}

.display-2{

    font-size:4.5rem;
    letter-spacing:-2px;

}

.section-title{

    font-size:3rem;
    line-height:1.2;
    letter-spacing:-1px;

}

.section-description{

    max-width:720px;
    margin:auto;
    margin-top:20px;
    font-size:1.15rem;

}

.section-label{

    display:inline-flex;

    align-items:center;

    gap:8px;

    font-size:.82rem;

    letter-spacing:2px;

    text-transform:uppercase;

    color:var(--secondary);

    font-weight:700;

}

.section-label::before{

    content:"";

    width:30px;

    height:2px;

    background:var(--secondary);

}


/*==================================================
    HEADER
==================================================*/

.site-header{

    position:fixed;

    width:100%;

    left:0;

    top:0;

    z-index:999;

    transition:.35s;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border-bottom:1px solid transparent;

}

.site-header.scrolled{

    border-color:#ececec;

    box-shadow:0 10px 40px rgba(0,0,0,.05);

}

.navbar{

    min-height:84px;

}

.nav-link{

    color:#374151;

    font-weight:500;

    margin-left:18px;

}

.nav-link:hover{

    color:var(--secondary);

}

.nav-link.active{

    color:var(--secondary);

}


/*==================================================
    BUTTONS
==================================================*/

.btn{

    border-radius:100px;

    padding:15px 34px;

    font-weight:600;

    transition:var(--transition);

}

.btn-dark{

    background:var(--primary);

    border:none;

}

.btn-dark:hover{

    transform:translateY(-3px);

    background:#000;

}

.btn-outline-dark{

    border:1px solid var(--primary);

}

.btn-outline-dark:hover{

    background:var(--primary);

}


/*==================================================
    HERO
==================================================*/

.hero{

    padding-top:120px;

    background:
    radial-gradient(circle at top right,#E0F2FE 0%,transparent 35%),
    radial-gradient(circle at bottom left,#ECFEFF 0%,transparent 30%),
    #fff;

}

.hero-label{

    display:inline-block;

    padding:10px 18px;

    background:#EEF6FF;

    color:var(--secondary);

    border-radius:100px;

    font-size:.8rem;

    font-weight:700;

    letter-spacing:1px;

}

.hero p{

    font-size:1.2rem;

    max-width:640px;

}

.text-gradient{

    background:linear-gradient(90deg,#2563EB,#14B8A6);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}


/*==================================================
    CARDS
==================================================*/

.glass-card,

.tech-card,

.impact-card,

.contact-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:42px;

    transition:.35s;

    height:100%;

}

.glass-card:hover,

.tech-card:hover,

.impact-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.icon-box,

.tech-icon{

    width:68px;

    height:68px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:25px;

    background:#EEF6FF;

    color:var(--secondary);

}


/*==================================================
    PRODUCTS
==================================================*/

.product-card{

    background:var(--white);

    border:1px solid var(--border);

    border-radius:32px;

    padding:70px;

    margin-bottom:40px;

}

.product-badge{

    display:inline-block;

    background:#EEF6FF;

    color:var(--secondary);

    padding:8px 18px;

    border-radius:100px;

    font-size:.8rem;

    font-weight:700;

}

.product-card h3{

    font-size:2.3rem;

    margin-top:18px;

}

.product-list{

    margin-top:30px;

}

.product-list li{

    margin-bottom:14px;

    padding-left:30px;

    position:relative;

}

.product-list li::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--accent);

    position:absolute;

    left:0;

    top:12px;

}


/*==================================================
    IMPACT
==================================================*/

.impact-number{

    display:block;

    font-size:3rem;

    font-weight:800;

    color:#D6E8FF;

    margin-bottom:10px;

}


/*==================================================
    CONTACT
==================================================*/

.contact-item{

    display:flex;

    gap:18px;

    margin-top:32px;

}

.contact-item i{

    font-size:24px;

    color:var(--secondary);

}

.form-control{

    border-radius:16px;

    border:1px solid var(--border);

    padding:18px 20px;

    min-height:58px;

    box-shadow:none;

}

.form-control:focus{

    border-color:var(--secondary);

    box-shadow:none;

}


/*==================================================
    CTA
==================================================*/

.cta-wrapper{

    background:linear-gradient(135deg,#0F172A,#1E293B);

    color:#fff;

    border-radius:36px;

    padding:70px;

}

.cta-wrapper h2{

    color:#fff;

    font-size:2.8rem;

}

.cta-wrapper p{

    opacity:.85;

    margin-top:15px;

}


/*==================================================
    FOOTER
==================================================*/

.footer{

    background:#0F172A;

    color:#CBD5E1;

    padding:90px 0 40px;

}

.footer h6{

    color:#fff;

    margin-bottom:22px;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#CBD5E1;

}

.footer-links a:hover{

    color:#fff;

}

.social-links{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-links a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

}

.social-links a:hover{

    background:var(--secondary);

}


/*==================================================
    SCROLL TO TOP
==================================================*/

.scroll-top{

    position:fixed;

    right:35px;

    bottom:35px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

}

.scroll-top.show{

    opacity:1;

    visibility:visible;

}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:991px){

    .display-2{

        font-size:3rem;

    }

    .section-title{

        font-size:2.2rem;

    }

    .hero{

        text-align:center;

    }

    .hero img{

        margin-top:60px;

    }

    .product-card{

        padding:45px;

    }

    .cta-wrapper{

        padding:50px 35px;

        text-align:center;

    }

}

@media(max-width:576px){

    .display-2{

        font-size:2.4rem;

    }

    .section-title{

        font-size:1.8rem;

    }

    .py-120{

        padding:80px 0;

    }

    .product-card{

        padding:30px;

    }

}

