/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header Styles */
header {
    background: #333;
    color: #fff;
    /* padding: 1rem 0; */
    text-align: center;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /* Add text shadow for depth */
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}


/* Section Styles */
section {
    /* padding: 2rem 0; */
}

h2 {
    margin-top: 0;
    color: #333;
}

.project {
    border: 1px solid #ddd;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 4px;
}

.project h3 {
    margin-top: 0;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 0.5rem 0;
    font-weight: bold;
}

form input,
form textarea {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

form button {
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    background: #333;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
}

form button:hover {
    background: #555;
}

#social img {
    height: 20px;
    width: auto;
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    /* position: absolute; */
    bottom: 0;
    width: 100%;
}

/* Experiences */
#experience {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#experience .slider {
    display: flex;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px;
}

#experience .slide {
    min-width: 100%;
    transition: transform 0.5s ease;
    padding: 20px;
}

#experience #experiencebutton {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    border-radius: 50%;
}

#experience .prev {
    left: 10px;
}

#experience .next {
    right: 10px;
}

.accordion-button {
    background-color: #ffffff;
    color: #000;
}

.accordion-button:not(.collapsed) {
    background-color: #e0e7ff;
    /* A light blue when expanded */
    color: #1d4ed8;
    /* Dark blue text */
}

/* For WebKit browsers (Chrome, Safari) */
.scrollable::-webkit-scrollbar {
    width: 12px;
    /* Width of the scrollbar */
}

.scrollable::-webkit-scrollbar-track {
    background: transparent;
    /* Background of the scrollbar track */
}

.scrollable::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #7e22ce, #ec4899, #f43f5e);
    /* Gradient for the scrollbar thumb */
    border-radius: 10px;
    /* Optional: rounding the corners */
}

.scrollable::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to right, #6b21a8, #d63d75, #f43f5e);
    /* Darker gradient on hover */
}

/* For Firefox */
.scrollable {
    scrollbar-width: thin;
    /* Thin scrollbar */
    scrollbar-color: #7e22ce #ffffff;
    /* Thumb color and track color */
}



/* Skills  */
/* Animations for title and paragraph */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.6s ease forwards;
}

/* Animation for skill items */
@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-in {
    animation: slide-in 0.6s ease forwards;
}

/* Apply delay for each skill */
.animate-slide-in:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-slide-in:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-slide-in:nth-child(3) {
    animation-delay: 0.3s;
}

.animate-slide-in:nth-child(4) {
    animation-delay: 0.4s;
}

.animate-slide-in:nth-child(5) {
    animation-delay: 0.5s;
}

.animate-slide-in:nth-child(6) {
    animation-delay: 0.6s;
}

.animate-slide-in:nth-child(7) {
    animation-delay: 0.7s;
}

.animate-slide-in:nth-child(8) {
    animation-delay: 0.8s;
}

.animate-slide-in:nth-child(9) {
    animation-delay: 0.9s;
}

.animate-slide-in:nth-child(10) {
    animation-delay: 1.0s;
}

.animate-slide-in:nth-child(11) {
    animation-delay: 1.1s;
}

.animate-slide-in:nth-child(12) {
    animation-delay: 1.2s;
}

.animate-slide-in:nth-child(13) {
    animation-delay: 1.3s;
}

.animate-slide-in:nth-child(14) {
    animation-delay: 1.4s;
}

.animate-slide-in:nth-child(15) {
    animation-delay: 1.5s;
}

.animate-slide-in:nth-child(16) {
    animation-delay: 1.6s;
}

.animate-slide-in:nth-child(17) {
    animation-delay: 1.7s;
}

.animate-slide-in:nth-child(18) {
    animation-delay: 1.8s;
}

.icon-html {
    color: #E34F26;
}

.icon-js {
    color: #F7DF1E;
}

.icon-php {
    color: #4F5B93;
}

.icon-mysql {
    color: #4479A1;
}

.icon-laravel {
    color: #FF2D55;
}

.icon-drupal {
    color: #007C92;
}

.icon-wordpress {
    color: #21759B;
}

.icon-bootstrap {
    color: #563D7C;
}

.icon-tailwind {
    color: #1572B6;
}

.icon-react {
    color: #61DAFB;
}

.icon-responsive {
    color: #000;
}

.icon-google {
    color: #E04E39;
}

.icon-photoshop {
    color: #F3000F;
}

.icon-office {
    color: #0078D4;
}

.icon-git {
    color: #F1502F;
}

.icon-vscode {
    color: #F1502F;
}

.icon-cpanel {
    color: #007D5B;
}

.icon-pencil {
    color: #C89D58;
}

/* src/index.css or your custom CSS file */
/* src/index.css or your custom CSS file */
/* @keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
} */