
/* Custom CSS Variables for easy color customization */
:root {
    --primary: #0078D4; /* Azure blue */
    --secondary: #005A9E; /* Darker Azure blue */
    --accent: #2C3E50; /* Deep muted blue-gray */
    --background: #F3F3F3; /* Neutral light gray */
    --muted-bg: #E1E1E1; /* Slightly darker gray for contrast */
    --white: #ffffff;
    --text-color: #252525; /* Dark gray for readability */
}

/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0; // sud be zero
}

body {
    font-family: Lato, Montserrat, "IBM Plex Sans", Georgia, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

.btn-custom {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s;
}

    .btn-custom:hover {
        background: var(--secondary);
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

/* Section Headings */
section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--primary);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

/* Contact Form */
input, textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
}

button[type="submit"] {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    button[type="submit"]:hover {
        background: var(--accent);
    }

/* Footer */
footer {
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
}

.short-name {
    display: none;
}
/* Hide short version by default */

@media (max-width: 576px) { /* For small screens */
    .full-name {
        display: none;
    }

    .short-name {
        display: inline;
    }
    /* Show short version */
}
.social-icons a {
    font-size: 24px;
    margin: 0 10px;
    color: #333; /* Default color */
    text-decoration: none;
}

    .social-icons a:hover {
        color: #0073b1; /* LinkedIn blue */
    }
