/* 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.041);
    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: #1a1a1a60;
    color: #fff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #444444;
    opacity: 0.2;
}

.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;
}

/* Contact Section */
.contact-section {
    padding: 80px 30px;
    background: #111;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.contact-form {
    flex: 1;
}

.social-contact {
    flex: 0 0 300px;
    background: rgba(161, 160, 160, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    transition: 0.3s;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:valid,
.form-group textarea:valid {
    border-color: #000000;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #000000;
    background: #111;
    padding: 0 5px;
}

.submit-btn {
    background: #4ecdc4;
    color: #111;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #011092;
    color: white;
}

.social-contact h3 {
    color: #4ecdc4;
    margin-bottom: 25px;
}

.social-contact .social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
}

.social-contact .social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-contact .social-icons i {
    font-size: 20px;
    color: white;
}

.social-contact .social-icons a:hover {
    background: #c20483;
    transform: translateY(-3px);
}

.social-contact p {
    color: #00bedf;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    
    .social-contact {
        flex: none;
        width: 100%;
    }
}