body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #001f3f, #005f99);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #000000, #001f3f);
    padding: 15px 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.logo {
    width: 100px;
    height: auto;
    border-radius: 10px;
}

.header-content {
    text-align: center;
    flex: 1;
    /* color: #000000; */
}

h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0;
}


nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

nav ul li {
    background: none !important;
    padding: 0;
}

nav ul li a {
    padding: 10px;
    display: inline-block
}
    /* text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s;
} */

nav ul li a:hover {
    color: #00bfff;
}

/* Home Section */
.home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex: 1;
   


}

.home-content {
    flex: 1;
    text-align: right;
    padding-right: 20px;
    background: rgba(0, 0, 50, 0.8);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.home-images {
    flex: 1;
    padding-left: 20px;
    display: flex;
    justify-content: flex-start;
    background: rgba(0, 0, 50, 0.8);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.home-images img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    background: rgba(0, 0, 50, 0.8);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
    justify-content: center;
}

.service {
    background: rgba(0, 0, 50, 0.8);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.service img {
    width: 100%;
    max-width: 80px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.service:hover img {
    transform: scale(1.1);
}

.service h3 {
    margin: 5px 0;
    color: #00bfff;
}
/* Specific Styles for Sections */
section {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    width: 80%;
    text-align: center;
}

h3 {
    color: #00bfff;
    margin-bottom: 15px;
    font-size: 22px;
}

nav ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0;
    list-style: none;
    justify-content: center;
    align-items: center;
}

nav ul li {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

nav ul li:hover {
    transform: scale(1.05);
}

nav ul li a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    display: block;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    nav ul {
        grid-template-columns: repeat(1, 1fr);
    }
}


footer {
    text-align: center;
    padding: 15px;
    background: linear-gradient(to right, #000000, #001f3f);
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        flex-direction: column;
        padding-top: 10px;
    }
    
    nav ul li {
        margin: 10px 0;
    }

    .home {
        flex-direction: column;
        text-align: center;
    }

    .home-content {
        text-align: center;
        padding-right: 0;
    }

    .home-images {
        padding-left: 0;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}