/* Custom CSS styles to complement Tailwind CSS */

/* Crop the logo from the first page image for the header */
.logo-img {
    object-position: center 20%;
    /* Adjust based on where logo is in page_01.png */
    clip-path: circle(50% at 50% 50%);
    /* Optional: circular crop */
}

/* Base transitions */
::selection {
    background-color: #88C057;
    color: white;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #134638;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #88C057;
}

/* Card Hover Effects */
.hover-card {
    transition: all 0.4s ease;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover-card:hover .icon-wrapper {
    background-color: #134638;
    color: white;
}