* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #007BFF; /* Blue color */
    color: white;
    padding: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

nav h1 {
    margin: 0;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Hero section styles */
.hero {
    background-image: url('images/1\ \(2\).JPG'); /* Background image URL */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
}

.buttons {
    margin-top: 20px;
}

.buttons button {
    background-color: #007BFF; /* Blue color */
    color: white;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buttons button:hover {
    background-color: #0056b3; /* Darker blue */
}

main {
    padding: 20px;
}

.services {
    background-image: url('images/1\ \(1\).png'); /* Background image URL for services */
    background-size: cover;
    background-position: center;
    padding: 40px;
    color: white;
}

.card-container {
    display: flex;
    justify-content: space-around;
}

/* Flip card styles */
.flip-card {
    background-color: transparent;
    width: 250px;
    height: 300px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.flip-card-front {
    background-color: rgba(255, 255, 255, 0.8);
}

.flip-card-back {
    background-color: #007BFF; /* Blue color */
    color: white;
    transform: rotateY(180deg);
    padding: 20px;
}

.flip-card img {
    width: 100px;
    height: 100px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #007BFF; /* Blue color */
    color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust based on nav height */
        left: 0;
        background-color: #007BFF; /* Blue background */
        width: 100%;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    nav ul li a {
        padding: 10px;
        display: block;
    }
}

@media (max-width: 568px) {
.card-container{
    flex-direction: column;
    
}
.flip-card{
    width: 100%;
    margin-bottom: 10px;
}
}