body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0b0b0e;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: url('https://images.unsplash.com/photo-1618022325802-7e5e732d97a1?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8Zm9uZCUyMG5vaXJ8ZW58MHx8MHx8fDA%3D') repeat;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: slideFadeDown 1s ease-out;
}

header h1 {
    font-size: 3em;
    margin: 0;
    color: #ff007f;
}

header p {
    font-size: 1.2em;
    opacity: 0.85;
    margin-top: 10px;
}

section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
    animation: fadeIn 1s ease-in;
}

section h2 {
    font-size: 2em;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 500;
    color: #ff007f;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 10px auto 0;
    background: #4c1d95;
    border-radius: 2px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: #1b1b1f;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    transition: 0.3s;
    font-size : 1.35em;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

.card h3 {
    margin: 0;
    color: #ff007f;
    font-size: 1.1em;
}

.card p {
    margin: 8px 0 0;
    color: #ccc;
}

footer {
    text-align: center;
    padding: 25px;
    background: #111;
    color: #f2f2f2;
    font-size: 0.9em;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideFadeDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cloud-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 100%;
    background: url('https://svgshare.com/i/12AS.svg') repeat-x;
    background-size: cover;
    animation: moveClouds 120s linear infinite;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #2b2b35;
    color: white;
    padding: 22px 48px;
    margin-top: 35px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    letter-spacing: 1px;
}

.portfolio-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff007f, #ff4a98);
    z-index: -1;
    transition: transform 0.5s ease;
    transform: scaleX(0);
    transform-origin: right;
}

.portfolio-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 0, 127, 0.5);
    color: white;
}

.portfolio-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.portfolio-btn i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.portfolio-btn:hover i {
    transform: translateY(-3px);
}

@keyframes moveClouds {
    0% { transform: translateX(0); }
    100% { transform: translateX(-66%); }
}

.pagination {
    text-align: center;
    margin-top: 30px;
}

.pagination button {
    background: #ff007f;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pagination button:hover:not(:disabled) {
    background: #d6006e;
}

.pagination button:disabled {
    background: #555;
    cursor: default;
}

#page-info {
    display: inline-block;
    margin: 0 15px;
    font-size: 1.1em;
    font-weight: 500;
}
