/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000000;
    color: white;
}

/* Navbar */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff6600;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    background: url('https://source.unsplash.com/1600x900/?man,portrait') no-repeat center center/cover;
    padding: 0 50px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 span {
    color: #c54205ef;
}

.hero p {
    font-size: 18px;
    margin: 20px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #7600a5b6;
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 15px;
    transition: 0.3s;
}

.btn:hover {
    background: #ffffff77;
}

.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #020096e1;
    color: #e4e4e4;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #000000be;
    color: rgb(231, 231, 233);
}

h2 {

    font-family: 'poppins', sans-serif;
    font-size: 30px;
    text-transform:
    uppercase ;
    text-align:center;
    background: linear-gradient(to right, #fc72ff, #Bf68ff, #487bff,
    #8f68ff, #fc72ff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradiant 2.5s linear infinite;
}
@keyframes animate-gradiant{
    to{
        background-position: 200%;
    }
}

.site-footer {
    background-color: #000000a6;
    color: #ffffff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 0px solid #444444;
    opacity: 0.5;
}

.copyright {
    font-size: 0.9em;
    color: #ccc;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.social-icons a:hover {
    opacity: 0.8;
}




/* Design Sections */
.design-sections {
    padding: 80px 30px;
    background: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    margin: 50px 0;
    background: linear-gradient(to right, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.design-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.design-item:hover {
    transform: translateY(-5px);
}

.design-item img {
    width: 18%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}


.logo-grid .design-item img {
    height: 180px;
    width: 273PX;
    background: #fff; /* For logo presentations */
    padding: 1px;
}

.design-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    transition: bottom 0.3s ease;
}

.design-item:hover .design-info {
    bottom: 0;
}

.design-info h3 {
    color: #4ecdc4;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.design-info p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 300px) {
    .design-grid {
        grid-template-columns: 1fr;
    }
    
    .design-item img {
        height: 100px;
    }
    
    .logo-grid .design-item img {
        height: 100px;
    }
}
