﻿/* =========================================
   GOOGLE FONT
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================================
   ROOT
========================================= */

:root{

    --primary:#ff8c00;
    --primary2:#ffb000;
    --dark:#0f172a;
    --dark2:#111827;
    --light:#f8fafc;
    --text:#64748b;
    --white:#ffffff;

}

/* =========================================
   RESET
========================================= */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:'Poppins',sans-serif;

    overflow-x:hidden;

    background:#f5f7fb;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    margin:0;
    padding:0;

}

html{

    scroll-behavior:smooth;

}

/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
    #ffb000,
    #ff8c00);

    border-radius:20px;

}

/* =========================================
   HERO SECTION
========================================= */

.materials-hero{

    position:relative;

    padding:150px 0 120px;

    background:
    linear-gradient(
    135deg,
    #0f172a,
    #111827);

    overflow:hidden;

}

/* OVERLAY */

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    rgba(255,176,0,0.15),
    transparent);

}

/* CONTENT */

.materials-hero-content{

    position:relative;

    z-index:5;

    text-align:center;

    color:white;

}

/* BADGE */

.hero-badge{

    display:inline-block;

    padding:12px 30px;

    border-radius:50px;

    background:
    rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.10);

    color:#ffb000;

    font-size:14px;
    font-weight:700;

    margin-bottom:28px;

    letter-spacing:1px;

    backdrop-filter:blur(10px);

}

/* TITLE */

.materials-hero-content h1{

    font-size:78px;

    font-weight:900;

    line-height:1.2;

    margin-bottom:25px;

    font-family:'Montserrat',sans-serif;

}

.materials-hero-content h1 span{

    color:#ffb000;

}

/* TEXT */

.materials-hero-content p{

    max-width:850px;

    margin:auto;

    color:#e2e8f0;

    font-size:20px;

    line-height:2;

}

/* =========================================
   INTRO SECTION
========================================= */

.intro-section{

    padding:100px 0 40px;

    background:#fff;

}

/* =========================================
   SECTION HEADING
========================================= */

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading h2{

    font-size:58px;

    font-weight:900;

    color:#111827;

    margin-bottom:18px;

    font-family:'Montserrat',sans-serif;

}

.section-heading p{

    max-width:850px;

    margin:auto;

    color:#64748b;

    font-size:18px;

    line-height:2;

}

/* =========================================
   MATERIAL SECTION
========================================= */

.materials-section{

    padding:50px 0 120px;

    position:relative;

}

/* CARD */

.material-card{

    background:white;

    border-radius:35px;

    overflow:hidden;

    transition:0.5s;

    height:100%;

    box-shadow:
    0 15px 45px rgba(0,0,0,0.08);

}

/* HOVER */

.material-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(255,176,0,0.18);

}

/* IMAGE */

.material-img{

    overflow:hidden;

    position:relative;

}

.material-img img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:0.7s;

}

.material-card:hover .material-img img{

    transform:scale(1.08);

}

/* CONTENT */

.material-content{

    padding:32px 28px;

}

/* TITLE */

.material-content h3{

    font-size:30px;

    font-weight:800;

    color:#111827;

    margin-bottom:18px;

    font-family:'Montserrat',sans-serif;

}

/* TEXT */

.material-content p{

    color:#64748b;

    line-height:1.9;

    margin-bottom:22px;

    font-size:15px;

}

/* LIST */

.material-content ul li{

    list-style:none;

    position:relative;

    padding-left:24px;

    margin-bottom:12px;

    color:#334155;

    font-size:14px;

    font-weight:500;

}

/* ICON */

.material-content ul li::before{

    content:'✔';

    position:absolute;

    left:0;

    top:0;

    color:#ff8c00;

    font-size:14px;

    font-weight:800;

}

/* =========================================
   CTA SECTION
========================================= */

.materials-cta{

    padding:130px 0;

    background:
    linear-gradient(
    135deg,
    #0f172a,
    #111827);

    position:relative;

    overflow:hidden;

}

/* CTA BOX */

.cta-box{

    position:relative;

    z-index:5;

    text-align:center;

    background:
    rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    padding:80px 50px;

    border-radius:40px;

    backdrop-filter:blur(12px);

}

/* TITLE */

.cta-box h2{

    font-size:62px;

    font-weight:900;

    line-height:1.3;

    margin-bottom:25px;

    color:white;

    font-family:'Montserrat',sans-serif;

}

/* TEXT */

.cta-box p{

    max-width:850px;

    margin:auto;

    color:#e2e8f0;

    font-size:18px;

    line-height:2;

}

/* BUTTONS */

.cta-btns{

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

/* =========================================
   BUTTON
========================================= */

.main-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:16px 38px;

    border-radius:60px;

    background:
    linear-gradient(
    135deg,
    #ff8c00,
    #ffb000);

    color:white;

    font-size:16px;

    font-weight:700;

    transition:0.5s;

    border:none;

    box-shadow:
    0 15px 35px rgba(255,176,0,0.25);

}

/* HOVER */

.main-btn:hover{

    transform:translateY(-5px);

    color:white;

    box-shadow:
    0 20px 45px rgba(255,176,0,0.35);

}

/* OUTLINE BUTTON */

.outline-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:16px 38px;

    border-radius:60px;

    border:2px solid rgba(255,255,255,0.18);

    color:white;

    font-size:16px;

    font-weight:700;

    transition:0.5s;

    background:
    rgba(255,255,255,0.04);

}

/* HOVER */

.outline-btn:hover{

    background:white;

    color:#111827;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .materials-hero-content h1{

        font-size:54px;

    }

    .section-heading h2{

        font-size:42px;

    }

    .cta-box h2{

        font-size:42px;

    }

}

@media(max-width:768px){

    .materials-hero{

        padding:110px 0 80px;

    }

    .materials-hero-content h1{

        font-size:34px;

        line-height:1.4;

    }

    .materials-hero-content p{

        font-size:14px;

        line-height:1.9;

    }

    .hero-badge{

        font-size:11px;

        padding:10px 18px;

    }

    .intro-section{

        padding:70px 0 20px;

    }

    .materials-section{

        padding:30px 0 70px;

    }

    .section-heading{

        margin-bottom:45px;

    }

    .section-heading h2{

        font-size:32px;

        line-height:1.4;

    }

    .section-heading p{

        font-size:14px;

        line-height:1.9;

    }

    .material-card{

        border-radius:25px;

    }

    .material-img img{

        height:220px;

    }

    .material-content{

        padding:24px 20px;

    }

    .material-content h3{

        font-size:24px;

    }

    .material-content p{

        font-size:14px;

        line-height:1.8;

    }

    .material-content ul li{

        font-size:13px;

        line-height:1.7;

    }

    .materials-cta{

        padding:70px 0;

    }

    .cta-box{

        padding:45px 22px;

        border-radius:28px;

    }

    .cta-box h2{

        font-size:32px;

        line-height:1.5;

    }

    .cta-box p{

        font-size:14px;

        line-height:1.9;

    }

    .cta-btns{

        flex-direction:column;

    }

    .main-btn,
    .outline-btn{

        width:100%;

        font-size:14px;

        padding:15px 20px;

    }

}