﻿/* Place Your Custom Styles Here */
.signature-section {
    text-align: center; 
    font-family: 'Arial', sans-serif; 
    margin-top: 20px;
}

/* Initial style for the image */
.media-container .bg-image-holder {
    transition: transform 0.3s ease-in-out; 
    position: relative; /* Make sure your image holder is relatively positioned */
}

/* Effect when the mouse is hovered over the media container */
.media-container:hover .bg-image-holder {
    transform: translateY(-10px); /* This will make the image move upwards by 10 pixels */
}

/* Initial style for the button */
.custom-button {
    background-color: transparent;
    color: #FFF; /* White text */
    padding: 10px 20px; /* Padding for the button */
    border: 1px solid white; /* Border for the button */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Hand cursor on hover */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for color changes */
    font-size: 0.85em;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none; /* To remove the underline from the link */
}

/* Hover effect for the button */
.custom-button:hover {
    background-color: #FFF; /* White background */
    color: #000; /* Dark text */
}

h1, h2{
    color:#daa520;
}

.experiences-section {
    padding: 50px 20px;
}
.experiences-container {
    width: 80%;
    margin: auto;
}
.experience {
    background-color: #405be8;
    color: #fff;
    border-radius: 10px;
    margin: 20px 0;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.experience img {
    width: 250px;
    margin-right: 20px;
    border-radius: 10px;
}
.experience h3 {
    margin-top: 0;
    font-weight: 700;
}
.experience-image {
    display: flex;
    align-items: center;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .experience {
        flex-direction: column;
    }
    .experience img {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0px;
    }
    
}
