@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* Laptop */
@media (max-width:1200px){
    .cards{
        grid-template-columns:repeat(3,1fr);
    }
}

/* Tablet */
@media (max-width:768px){
    .cards{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media (max-width:576px){
    .cards{
        grid-template-columns:1fr;
    }
}
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}
/* Colors */

Background: #F8FAFC;

Cards: #FFFFFF;

Border: #E5E7EB;

Primary: #2563EB;

Hover: #1D4ED8;

Text: #111827;

Secondary Text: #6B7280;

/* Scrollbar */

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

::-webkit-scrollbar-thumb{
background:#3b82f6;
border-radius:20px;
}

::-webkit-scrollbar-track{
background:#111;
}

/* Links */

a{
text-decoration:none;
color:white;
}

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

header{

position:sticky;

top:0;

z-index:999;

background:rgba(15,15,15,.95);

backdrop-filter:blur(15px);

border-bottom:1px solid #222;

}

.navbar{

width:92%;

max-width:1400px;

margin:auto;

height:80px;

display:flex;

justify-content:space-between;

align-items:center;

}

.logo a{

font-size:32px;

font-weight:800;

}

.logo span{

color:#3b82f6;

}

/* Search */

.search-box{

width:520px;

display:flex;

background:#171717;

border:1px solid #2b2b2b;

border-radius:50px;

overflow:hidden;

transition:.3s;

}

.search-box:hover{

border-color:#3b82f6;

}

.search-box input{

flex:1;

background:none;

border:none;

outline:none;

padding:16px 22px;

color:white;

font-size:15px;

}

.search-box button{

width:70px;

background:#3b82f6;

border:none;

cursor:pointer;

color:white;

font-size:18px;

}

/* Login */

.login{

padding:12px 24px;

border-radius:40px;

background:#3b82f6;

font-weight:600;

transition:.3s;

}

.login:hover{

background:#2563eb;

transform:translateY(-2px);

}

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

.hero{

width:92%;

max-width:1400px;

margin:70px auto 50px;

text-align:center;

}

.hero h1{

font-size:58px;

font-weight:800;

margin-bottom:15px;

}

.hero p{

color:#bdbdbd;

font-size:18px;

max-width:700px;

margin:auto;

line-height:1.8;

}

/* Filter Buttons */

.filter-buttons{

margin-top:45px;

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:15px;

}

.filter-buttons button{

background:#171717;

border:1px solid #333;

color:white;

padding:12px 25px;

border-radius:40px;

cursor:pointer;

transition:.3s;

font-size:15px;

}

.filter-buttons button:hover{

background:#3b82f6;

border-color:#3b82f6;

}

.filter-buttons .active{

background:#3b82f6;

border-color:#3b82f6;

}

/* ==========================
         GALLERY
========================== */

.gallery{

width:92%;

max-width:1450px;

margin:auto;

padding-bottom:80px;

}

.cards{

display:grid;

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

gap:28px;

}



/* =====================================
   SK Graphics - style.css (Part 2)
====================================== */

/* SVG CARD */

#svg-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

@media (max-width:1200px){
    #svg-container{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:768px){
    #svg-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:576px){
    #svg-container{
        grid-template-columns:1fr;
    }
}

/* SVG CARD */

.card{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    overflow:hidden;
    transition:all .35s ease;
    position:relative;
    box-shadow:0 4px 12px rgba(0,0,0,.06);
}

.card:hover{
    transform:translateY(-8px);
    border-color:#2563eb;
    box-shadow:0 15px 35px rgba(37,99,235,.18);
}

.card img{
    width:100%;
    height:280px;
    object-fit:contain;
    background:#ffffff;
    padding:20px;
    transition:.35s ease;
}

.card:hover img{
    transform:scale(1.05);
}

.card h3{
    color:#111827;
    font-size:18px;
    font-weight:600;
    padding:18px 20px 8px;
}

.download-btn{
    display:block;
    margin:15px 20px 20px;
    padding:13px;
    text-align:center;
    background:#2563eb;
    color:#ffffff;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.download-btn:hover{
    background:#1d4ed8;
}


/* DOWNLOAD BUTTON */

.download-btn{
    display:block;
    margin:15px 20px 20px;
    text-align:center;
    background:#3b82f6;
    color:#fff;
    padding:13px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.download-btn:hover{
    background:#2563eb;
}

.download-btn i{
    margin-right:8px;
}

/* LOAD MORE */

.load-more{
    text-align:center;
    margin:60px 0;
}

.load-more button{
    padding:15px 45px;
    background:#171717;
    color:#fff;
    border:1px solid #333;
    border-radius:50px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.load-more button:hover{
    background:#3b82f6;
    border-color:#3b82f6;
}

/* FOOTER */

footer{
    background:#080808;
    border-top:1px solid #1d1d1d;
    padding:45px 20px;
}

.footer{
    max-width:1400px;
    margin:auto;
    text-align:center;
}

.footer h2{
    font-size:28px;
    margin-bottom:10px;
}

.footer p{
    color:#a1a1aa;
    margin-top:8px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .navbar{
        flex-wrap:wrap;
        height:auto;
        padding:15px 0;
        gap:15px;
    }

    .search-box{
        width:100%;
        order:3;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:16px;
    }

  .cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}
}

@media(max-width:576px){

    .logo a{
        font-size:26px;
    }

    .hero{
        margin-top:40px;
    }

    .hero h1{
        font-size:34px;
    }

    .filter-buttons{
        gap:10px;
    }

    .filter-buttons button{
        padding:10px 18px;
        font-size:14px;
    }

    .card img{
        height:220px;
    }

    .download-btn{
        padding:12px;
        font-size:15px;
    }
}
.loader{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 0;
}

.spinner{
    width:45px;
    height:45px;
    border:4px solid #e5e7eb;
    border-top:4px solid #2563eb;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}