/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #f4f4f4;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.desktop-nav ul {
    list-style-type: none;
    display: flex;
}

.desktop-nav ul li {
    margin-left: 20px;
}

.desktop-nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #f4f4f4;
    transition: right 0.3s ease-in-out;
    z-index: 1001;
}

.sidebar.open {
    right: 0;
}

.sidebar ul {
    list-style-type: none;
    padding: 40px 20px;
}

.sidebar ul li {
    margin-bottom: 20px;
}

.sidebar ul li a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* Hero section */
.hero {
    background-image: url('hero1.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #ff6b6b;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff5252;
}

/* About section */
.about {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    max-width: 50%;
    border-radius: 10px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Services section */
.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: calc(25% - 30px);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    padding: 20px;
}

.service-card p {
    padding: 0 20px 20px;
}

/* Contact section */
.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    background-color: #ff6b6b;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #ff5252;
}

/* Footer */
footer {
    background-image: url(footer.jpeg);
    color: #050505;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.quick-links ul {
    list-style-type: none;
}

.quick-links ul li {
    margin-bottom: 10px;
}

.quick-links ul li a {
    color: #050505;
    text-decoration: none;
}

.social-links a {
    color: #0a0a0a;
    font-size: 24px;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6b6b;
}

footer p {
    text-align: center;
    margin-top: 20px;
}
.copyright{
    text-align: center;
    maargin-bottom:10px;
  }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fadeIn {
    animation: fadeIn 1s ease-in-out;
}

@keyframes slideIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.slideIn {
    animation: slideIn 0.5s ease-in-out;
}

/* Media queries */
@media screen and (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .about .container {
        flex-direction: column;
    }

    .about-image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .service-card {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 480px) {
    .service-card {
        width: 100%;
    }
}