<style>
    /* Reset and Base Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #fff;
        background-color: #0f172a;
        scroll-behavior: smooth; /* Smooth scrolling for the entire page */
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Hero Section */
    #hero {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 1));
        color: #fff;
        text-align: center;
        padding: 120px 0 80px;
    }
    #hero h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #f87171;
        animation: slideInDown 1s ease-out;
    }
    #hero p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
        animation: slideInUp 1s ease-out 0.5s both;
    }

    /* Contact Sections */
    section {
        padding: 80px 0;
        background-color: #0f172a;
        transition: background-color 0.3s ease;
    }
    section:nth-child(even) {
        background: linear-gradient(to bottom, #0f172a, #1e293b);
    }
    h3 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #f87171;
    }
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    .contact-card {
        background: #1e293b;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        text-align: center;
        border-left: 4px solid #f87171;
        animation: fadeInUp 1s ease-out;
    }
    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(248, 113, 113, 0.2);
        background: #334155;
    }
    .contact-card i {
        font-size: 3rem;
        color: #f87171;
        margin-bottom: 1rem;
        transition: color 0.3s ease;
    }
    .contact-card:hover i {
        color: #fff;
    }
    .contact-card a {
        color: #fff;
        text-decoration: none;
        display: block;
        margin: 0.5rem 0;
        transition: color 0.3s ease;
    }
    .contact-card a:hover {
        color: #f87171;
    }
    .contact-card h4 {
        color: #f87171;
        margin-bottom: 1rem;
    }

    /* Social Media Section */
    #social {
        text-align: center;
    }
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 2rem;
        flex-wrap: wrap;
    }
    .social-icon {
        width: 60px;
        height: 60px;
        background: #1e293b;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    .social-icon:hover {
        transform: translateY(-10px) scale(1.1);
        box-shadow: 0 10px 25px rgba(248, 113, 113, 0.3);
        background: #f87171;
    }
    .social-icon i {
        font-size: 1.5rem;
        color: #fff;
    }
    .social-icon:hover i {
        color: #0f172a;
    }

    /* Contact Form (Optional Enhancement) */
    #form-section {
        background: linear-gradient(to bottom, #0f172a, #1e293b);
    }
    form {
        max-width: 600px;
        margin: 0 auto;
        background: #1e293b;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    form input, form textarea {
        width: 100%;
        padding: 1rem;
        margin-bottom: 1rem;
        border: none;
        border-radius: 5px;
        background: #334155;
        color: #fff;
        font-size: 1rem;
    }
    form input::placeholder, form textarea::placeholder {
        color: #94a3b8;
    }
    form button {
        width: 100%;
        padding: 1rem;
        background: #f87171;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    form button:hover {
        background: #ef4444;
    }

    /* Animations */
    @keyframes slideInDown {
        from { transform: translateY(-50px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    @keyframes slideInUp {
        from { transform: translateY(50px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    @keyframes fadeInUp {
        from { transform: translateY(30px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    /* Responsive */
    @media (max-width: 768px) {
        #hero h2 {
            font-size: 2rem;
        }
        .contact-grid {
            grid-template-columns: 1fr;
        }
        .social-icons {
            gap: 1rem;
        }
        .social-icon {
            width: 50px;
            height: 50px;
        }
        section {
            padding: 60px 0;
        }
    }

    /* JS Animations Trigger */
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }
</style>