body {
    font-family: 'times new roman', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
}

.navbar-logo strong {
    color: #000;
}

.contact-header {
    /* background: linear-gradient(135deg, #11d1f7 0%, #a8d5a8 100%); */
    /* background: #000; */
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    /* pointer-events: none; */
}

.header-content {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.contact-header h1 {
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-header p {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

#contact-container {
    max-width: 1200px;
    margin: -30px auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: #000;
    border-radius: 20px;
    padding: 40px 30px;
    /* box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1); */
    border: 1px solid #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 10px #fff; */

}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(90deg, #11d1f7, #a8d5a8); */
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px #fff;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #000;
    font-size: 24px;
}

.contact-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.contact-card p {
    color: #aaa;
    margin-bottom: 25px;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #000;
    border: 1px solid #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #028ffa;
    transform: translateX(5px);
}


.contact-item i {
    color: #fff;
    font-size: 20px;
    margin-top: 2px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item span {
    color: #fff;
    font-size: 0.95rem;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #000;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #fff;
    color: #fff;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: #028ffa;
    transform: translateX(5px);
    text-decoration: none;
    color: #fff;
}

.quick-link i:first-child {
    color: #fff;
    font-size: 18px;
}

.quick-link i:last-child {
    margin-left: auto;
    opacity: 0;
    transition: all 0.3s ease;
}

.quick-link:hover i:last-child {
    opacity: 1;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e91e63, #f06292);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.cta-section {
    background: #333;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    pointer-events: none;
  } */

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    /* display: inline-flex; */
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid #fff;
}

.cta-button:hover {
    transform: translateY(-3px);
    text-decoration: none;
    background-color: #028ffa;
    color: #fff;
}

@media (max-width: 768px) {
    .contact-header {
        padding: 40px 15px;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-card {
        padding: 25px 15px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}