/* Custom styles for the card links */
.card {
    transition: transform 0.3s;
}
.card:hover {
    transform: scale(1.05);
}
/* Dark mode styles */
.dark {
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text color */
}
.dark .bg-gray-100 {
    background-color: #1c1c1c; /* Darker background */
}
.dark .border {
    border-color: #4a5568; /* Darker border color */
}
.dark .bg-white {
    background-color: #1c1c1c; /* Dark background for cards */
}
.dark .text-white {
    color: #ffffff; /* Light text color for dark mode */
}
/* Styles for skills buttons */
.skill-button {
    border: 2px dotted transparent; /* Default dotted border */
    transition: border 0.4s ease, color 0.3s, background-color 0.3s; /* Smooth transition */
    border-radius: 0.375rem; /* Rounded corners */
}
.skill-button:hover {
    border-style: solid; /* Change to solid on hover */
    border-width: 2px; /* Solid border width */
}
/* Specific border colors for each skill */
.border-red-500 {
    border-color: #f56565; /* Red border color */
}
.border-blue-500 {
    border-color: #4299e1; /* Blue border color */
}
.border-green-500 {
    border-color: #48bb78; /* Green border color */
}
.border-yellow-500 {
    border-color: #ecc94b; /* Yellow border color */
}
/* Dark mode specific border colors */
.dark .border-red-500 {
    border-color: #ff3d00; /* Highlighted red */
}
.dark .border-blue-500 {
    border-color: #2979ff; /* Highlighted blue */
}
.dark .border-green-500 {
    border-color: #00c853; /* Highlighted green */
}
.dark .border-yellow-500 {
    border-color: #ffd600; /* Highlighted yellow */
}
/* Styles for social media buttons */
.social-button {
    border: 2px dotted transparent; /* Default dotted border */
    border-radius: 50%; /* Circular buttons */
    width: 60px; /* Fixed width */
    height: 60px; /* Fixed height */
    transition: border 0.4s ease, box-shadow 0.3s; /* Transition for border and shadow */
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-button:hover {
    border-style: solid; /* Change to solid on hover */
    border-width: 2px; /* Solid border width */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6); /* Glowing effect */
}

.social-button {
    display: inline-flex;
    padding: 10px;
    border: 2px dotted gray;
    border-radius: 50%;
    transition: border-color 0.4s ease, border-style 0.4s ease, box-shadow 0.4s ease;
}

.social-button:hover {
    border-color: #4A90E2; /* Change to a glowing color on hover */
    border-style: solid;
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.6); /* Adds a glow effect */
}


.social-github {
    border-color: #333; /* GitHub border color */
}
.social-linkedin {
    border-color: #0077b5; /* LinkedIn border color */
}
/* Dark mode social button colors */
.dark .social-github {
    border-color: #ffffff; /* White for dark mode */
}
.dark .social-linkedin {
    border-color: #ffffff; /* White for dark mode */
}
/* Project icons styles */
.project-icons {
    display: none; /* Initially hidden */
    position: absolute;
    top: 4px; /* Adjust position */
    left: 4px; /* Adjust position */
    z-index: 10; /* Bring icons to front */
    transition: opacity 0.3s; /* Smooth opacity transition */
}




.project-card:hover .project-icons {
    display: flex; /* Show on hover */
    opacity: 1; /* Full opacity */
}
.project-icon {
    width: 24px; /* Icon size */
    height: 24px; /* Icon size */
    margin-right: 8px; /* Space between icons */
    transition: transform 0.2s; /* Smooth transform */
}
.project-card:hover .project-icon {
    transform: scale(1.1); /* Scale up on hover */
}

.footer-link {
    transition: color 0.3s;
    font-family: 'Times New Roman', Times, serif;
}

.footer-link:hover {
    color: #4A90E2; /* Change this to your desired hover color */
    font-weight: bold;
}

.footer-icon {
    color: inherit; /* Inherit text color */
    transition: color 0.3s;
    font-size: 1.5rem; /* Adjust icon size as needed */
}

.footer-icon:hover {
    color: #4A90E2; /* Change this to your desired hover color */
}

.role {
    font-weight: bold;
    color: #0094e3; /* Gold color for highlighting */
    padding: 0.2em 0.4em; /* Adds spacing around the text */
    border-radius: 5px; /* Rounds the edges */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-section-heading .role:hover {
    color: #17c7a9; /* Orange color for a hover effect */
}

/* Social Icon Colors  */
.social-icon {
    filter: drop-shadow(0 2px 6px rgba(232, 239, 232, 0.863));
    width: 2rem; /* Adjusts the size of the icons */
    height: 2rem;
    transition: filter 0.3s ease; /* Smooth hover effect */
}

.social-icon:hover {
    filter: drop-shadow(0 2px 8px rgba(255, 140, 0, 0.7)); /* More intense shadow on hover */
}

/* action button style  */
.actionBtn > a > span > img {
  height: 18px;
  width: 18px;
  margin-left: 5px;
  margin-top: 3px;
}

/* .actionBtn > a > img {
    height: 18px;
    width: 18px;

  } */