:root {
    --primary-color: ;
    --secondary-color: ;
    --accent-color: ;
    --tertiary-color: ;
    --font-1: font1;
    --font-2: font2;
    /* --font-3: font3; */

    --padding: ;
}




.bg-gradient {
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(120, 40, 200, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 180, 200, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(200, 50, 150, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.contact .container {
    position: relative;

}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.contact-info {
    position: relative;
    text-align: center;
    max-width: min(800px, 90%);
}

.section-tag {
    display: inline-block;
    color: #00d9ff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d9ff, transparent);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.contact h1 {
    font-size: 56px;
    font-weight: 800;
    background: var(--primary-color);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    /* animation: gradientFlow 3s ease infinite; */
}

@keyframes gradientFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.subtitle {
    color: #a0a0b0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: var(--font-3);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d9ff, #7b2cbf);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) rotate(5deg);
    border-color: #00d9ff;
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.3);
}

.social-link:hover::before {
    opacity: 0.3;
}

.social-link:active {
    transform: translateY(-3px) rotate(5deg) scale(0.95);
}

.social-link svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}

.info-cards {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 30px;
    transition: all 0.3s ease;
    flex: 0 1 auto;
    position: relative;
    overflow: hidden;

    box-shadow: 3px 3px 0px rgb(236, 242, 235);
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 217, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.info-card:hover::after {
    left: 100%;
}

.info-card h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    color: whitesmoke   ;
    font-size: 16px;

    font-family: var(--font-3);
}

.form-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.3s backwards;
        box-shadow: 3px 3px 0px rgb(236, 242, 235);

}

/* .form-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #00d9ff, #7b2cbf, #ff006e);
            border-radius: 24px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
            animation: rotateBorder 4s linear infinite;
        } */

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-container:hover::before {
    opacity: 0.15;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    position: relative;
    font-family: var(--font-3);
}

input:focus,
textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
    transform: translateY(-2px);
}

input:hover:not(:focus),
textarea:hover:not(:focus) {
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(255, 255, 255, 0.07);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #00d9ff, #7b2cbf);
    border: none;
    border-radius: 12px;
    padding: 18px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--primary-color);
    color: var(--secondary-color) !important;
    color: black;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .info-cards {
        flex-direction: column;
        align-items: stretch;
    }
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: #7b2cbf;
    top: -150px;
    right: -150px;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: #00d9ff;
    bottom: -100px;
    left: -100px;
    animation-delay: -3s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 20px);
    }
}