/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

h1, h2, h3 {
    color: #333;
}

/* Container */
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #444;
    color: #fff;
    padding-top: 10px;
    min-height: 70px;
    border-bottom: #ff6600 3px solid;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
}

header .logo {
    float: left;
}

header nav {
    float: right;
    margin-top: 10px;
}

/* Showcase */
#showcase {
    min-height: 400px;
    background: url('coverpage.webp') no-repeat center center/cover;
    text-align: center;
    color: #fff;
}

#showcase h1 {
    margin-top: 100px;
    font-size: 55px;
    margin-bottom: 10px;
    color: #ff6600;
}

#showcase p {
    font-size: 20px;
}

/* Main Content */
#main-content {
    padding: 20px;
    background: #fff;
    margin-top: 20px;
}

#main-content h2 {
    color: #333;
}

#main-content p {
    color: #666;
}

/* Buttons */
.button {
    display: inline-block;
    color: #fff;
    background: #ff6600;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.button:hover {
    background: #cc5200;
}

/* Services Section */
#services {
    padding: 20px 0;
    text-align: center;
}

.service-item {
    display: inline-block;
    width: 30%;
    margin: 10px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: scale(1.05);
}

.service-item h3 {
    color: #ff6600;
}

.service-item p {
    color: #333;
}

/* Blog Section */
.blogs .blog-item {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.blogs .blog-item h3 {
    margin-bottom: 10px;
    color: #ff6600;
}

.blogs .blog-item p {
    margin-bottom: 10px;
    color: #333;
}

.blogs .blog-item .read-more {
    display: inline-block;
    color: #fff;
    background: #ff6600;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.blogs .blog-item .read-more:hover {
    background: #cc5200;
}

/* Footer */
footer {
    background: #444;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

footer p {
    margin: 0;
}

footer a {
    color: #ff6600;
    text-decoration: none;
}

\
