/* --- home.css --- */

/* ... (keep existing styles) ... */

/* Refine Transitions for Smoothness */

/* Styling for the cards (applied to the <a> tag) */
.our-services .service-card-style {
    display: block;
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smoother easing */
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    color: inherit;
    text-decoration: none;
}

.our-services .service-card-style:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12); /* Slightly increased shadow */
    transform: translateY(-5px); /* Slightly more lift */
    color: inherit;
    text-decoration: none;
}

.our-services .card-arrow-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    stroke: #555;
    stroke-width: 1.5;
    transition: transform 0.2s ease-in-out, stroke 0.2s ease-in-out; /* Smoother easing */
}

.our-services .service-card-style:hover .card-arrow-icon {
   transform: scale(1.15) translateX(3px); /* Add slight horizontal move */
   stroke: var(--secondary-color); /* Use theme color on hover */
}


.university {
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; (Defined in base) ensure ease-in-out if needed */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Make sure transition is smooth */
    padding: 20px;
    border-radius: 15px;
    background-color: #ffffff;
    height: 100%; /* Ensure consistent height for alignment */
}

/* --- value.css --- */

/* ... (keep existing styles) ... */

/* Individual Value Item Styling */
.value-item {
    /* ... (keep existing styles) ... */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smoother easing */
    /* ... */
}


/* --- footer.css --- */

/* ... (keep existing styles) ... */

/* Add smooth transitions to footer links and social icons */
footer .footer-link {
    transition: color 0.3s ease-in-out, padding-left 0.3s ease-in-out; /* Smooth transition for color and padding */
    position: relative; /* Needed for potential pseudo-elements */
    display: inline-block; /* Ensure transform works correctly */
}

footer .footer-link:hover {
    color: var(--light-color); /* Brighter white on hover */
    text-decoration: none;
    padding-left: 5px; /* Slight indent effect */
}

footer .social-icon-link img {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out; /* Transition for icon */
}

footer .social-icon-link:hover img {
    transform: scale(1.15); /* Scale up icon */
    opacity: 0.85; /* Slightly fade */
}

