/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Section */
header {
    background-color: #007bff;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.header-content h1 {
    margin: 0;
    font-size: 2.5em;
}

.header-content p {
    margin-top: 10px;
    font-size: 1.2em;
}

/* Services Section */
#services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 0;
}

.service {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 15px;
    padding: 20px;
    text-align: center;
    width: 280px;
}

.service img {
    max-width: 100px;
    margin-bottom: 15px;
}

.service h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service p {
    font-size: 1em;
    color: #555;
}

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}
/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-image: url('Images/bg/experience_bg.jpg'); /* Update the path if needed */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Header Section */
header {
    background-color: #461f72; /* Semi-transparent overlay */
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 20px;
}

.header-content h1 {
    margin: 0;
    font-size: 2.5em;
}

.header-content p {
    margin-top: 10px;
    font-size: 1.2em;
}

/* Services Section */
#services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 0;
}

.service {
    background-color: linear-gradient(to right, #7436bb 0.01%, #b520a3 100%);
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 15px;
    padding: 20px;
    text-align: center;
    width: 280px;
}

.service img {
    max-width: 100px;
    margin-bottom: 15px;
}

.service h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service p {
    font-size: 1em;
    color: #555;
}

/* Footer Section */
footer {
    background-color: rgba(51, 51, 51, 0.8); /* Semi-transparent overlay */
    color: white;
    padding: 20px;
    text-align: center;
}
/* Get Started Button Section */
#get-started {
    text-align: center;
    margin: 40px 0;
}

.get-started-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    color: white;
    background: linear-gradient(to right, #7436bb 0.01%, #b520a3 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.get-started-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.get-started-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
}

.get-started-btn:hover::before {
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
}
