/* --- Global & Base Styling --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll from background animation */
    position: relative; /* For background gradient positioning */
}

/* =====================================================================
   CUSTOM SCROLLBAR STYLES (for Chrome, Safari, and Edge)
   ===================================================================== */

/* 1. Scrollbar Track (the background path) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* 2. Scrollbar Track (using a very light green/white track) */
::-webkit-scrollbar-track {
    background: #e8f5e9; /* Light part of your gradient */
    border-radius: 10px;
}

/* 3. Scrollbar Thumb (the draggable part) - Using a complimentary eco-green */
::-webkit-scrollbar-thumb {
    background-color: #007bff; /* A clean, eco-friendly green */
    border-radius: 10px;
    border: 2px solid #e8f5e9; /* Border matching the track */
}

/* 4. Scrollbar Thumb Hover state */
::-webkit-scrollbar-thumb:hover {
    background-color: #3e94f0; /* Lighter green on hover */
}

/* Dynamic Background Gradient */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0f2f7 0%, #e8f5e9 50%, #f0f4c3 100%); /* Soft, eco-friendly gradient */
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    z-index: -1; /* Keep it behind content */
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Container & Layout --- */
.skye-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 25px; /* Adjust padding for new cards */
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to top, let it flow */
    min-height: 100vh; /* Full viewport height on desktop */

    /* Fade-in Animation */
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    position: relative; /* For proper positioning of children if needed */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Top Profile Cards Grid --- */
.top-profile-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns for cards */
    gap: 25px;
    margin-bottom: 40px; /* Space below profile cards */
}

/* --- Profile Card Base Style --- */
.personal-profile-card, .skye-brand-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #007bff; /* Skye's blue border */
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
}

.personal-profile-card:hover, .skye-brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Your Personal Profile Card Specifics */
.profile-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #007bff; /* Blue border around image */
}

.personal-profile-card h3 {
    font-size: 1.6em;
    color: #2c3e50;
    margin: 0 0 5px;
}

.profile-role {
    font-size: 0.95em;
    color: #777;
    margin-bottom: 15px;
}

.profile-contact, .profile-link {
    display: block;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: color 0.2s ease;
}
.profile-contact:hover, .profile-link:hover {
    color: #0056b3;
    text-decoration: underline;
}
.profile-contact .fas, .profile-link .fas {
    margin-right: 8px;
}

/* Skye Ecotech Brand Card Specifics */
.brand-logo {
    max-width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.skye-brand-card h3 {
    font-size: 1.6em;
    color: #2c3e50;
    margin: 0 0 5px;
}

.brand-slogan {
    font-size: 0.95em;
    color: #777;
    margin-bottom: 15px;
}

.brand-link {
    display: inline-flex; /* For icon alignment */
    align-items: center;
    gap: 8px;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}
.brand-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* --- Header Content (Adjusted) --- */
.header-content {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.2em; /* Adjusted for overall compactness */
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px;
}

.lead-text {
    font-size: 1.05em; /* Adjusted for overall compactness */
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Main Details Grid --- */
.main-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    flex-grow: 1;
    align-items: stretch;
}

.detail-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #007bff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.detail-card h2 {
    font-size: 1.4em; /* Adjusted for overall compactness */
    font-weight: 600;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 15px;
}

.detail-card p, .detail-card ul {
    font-size: 0.9em; /* Adjusted for overall compactness */
    color: #444;
    margin-bottom: 15px;
}

.detail-card ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.detail-card li {
    margin-bottom: 7px;
}

.content-link {
    display: block;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.content-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* --- Call to Action (Removed as primary CTA is now Skye Brand Card) --- */
/* You can uncomment and re-integrate if a final button is still desired */
/* .call-to-action {
    text-align: center;
    margin-top: 25px;
}

.primary-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.primary-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
} */


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .skye-container {
        padding: 25px 20px;
    }
    .top-profile-cards-grid {
        grid-template-columns: 1fr; /* Stack profile cards */
        gap: 20px;
        margin-bottom: 30px;
    }
    h1 {
        font-size: 2em;
    }
    .lead-text {
        font-size: 1em;
    }
    .main-details-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for details */
        gap: 18px;
    }
    .detail-card {
        padding: 22px;
    }
    .detail-card h2 {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .skye-container {
        padding: 20px 15px;
        min-height: auto;
    }
    .top-profile-cards-grid {
        margin-bottom: 25px;
    }
    .personal-profile-card h3, .skye-brand-card h3 {
        font-size: 1.5em;
    }
    h1 {
        font-size: 1.7em;
        margin-bottom: 5px;
    }
    .lead-text {
        font-size: 0.95em;
        margin-bottom: 20px;
    }
    .main-details-grid {
        grid-template-columns: 1fr; /* Stack all details cards */
        gap: 15px;
        margin-bottom: 25px;
    }
    .detail-card {
        padding: 20px;
    }
    .detail-card h2 {
        font-size: 1.25em;
    }
    .detail-card p, .detail-card ul, .content-link {
        font-size: 0.88em;
    }
    /* Removed call-to-action is now fully commented out */
}

@media (max-width: 480px) {
    .skye-container {
        padding: 15px 10px;
    }
    .personal-profile-card {
        padding: 20px;
    }
    .profile-image {
        width: 80px;
        height: 80px;
    }
    .personal-profile-card h3, .skye-brand-card h3 {
        font-size: 1.4em;
    }
    h1 {
        font-size: 1.5em;
    }
    .lead-text {
        font-size: 0.9em;
    }
    .detail-card {
        padding: 18px;
    }
    .detail-card h2 {
        font-size: 1.15em;
    }
}