body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #a1c4fd, #c2e9fb);
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 40px 0;
    text-align: center;
    position: relative;
}
header h1 {
    margin: 0;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
header p {
    margin: 10px 0 0;
    font-size: 1.2em;
}
.contact-info {
    margin-top: 10px;
    font-size: 1em;
}
.contact-info p {
    margin: 5px 0;
}
nav {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}
nav a:hover {
    color: rgba(244, 208, 63, 1.0);
}
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px;
/*    perspective: 10px;*/
    flex-grow: 1;
}
.service-card {
    width: 300px;
    height: 300px;
    margin: 50px;
/*    position: relative;*/
    perspective: 400px;
}
.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}
.service-card-front, .service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 30px;
    background-color: white;
}
.service-card-front {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4a90e2;
    color: white;
}
.service-card-back {
    background-color: #f7f7f7;
    transform: rotateY(180deg);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
h2 {
    font-size: 1.8em;
    margin-top: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.headingtext {
    display:flex;
    direction:row;
    flex-wrap:wrap;
    justify-content:center;
    column-gap:3px;
}
ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    margin: 0;
}
li {
    padding: 10px 0;
    font-size: 1.1em;
}
footer {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-content p {
    margin: 5px 0;
}
