* {
    padding: 0;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen;
}

h1{
    font-size: 2rem!important;
}



.marquee-div {
    background-color: red;
    padding: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Marquee text styling */
.marquee {
    display: flex;
    align-items: center;
    font-size: large;
    font-weight: bold;
    color: white;
    overflow: hidden;
}

/* Styling for the marquee list */
.marquee ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Style each list item */
.marquee ul li {
    margin-right: 30px;
    /* Space between items */
}

/* Adding the sparkle icon as a bullet */
.marquee ul li:before {
    content: "✨ ";
    margin-right: 5px;
}

.Home {
    display: flex;
    height: 500px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url(/uploads/images/home-background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.511);
    animation: home-background-anim 2s ease 0s 1 reverse backwards;
}

/* home background animation */

@keyframes home-background-anim {
	0% {
		background-position: center top;
		background-size: 100%;
	}

	100% {
		background-position: center top;
		background-size: 150%;
	}
}

.Home div h1 {
    color: white;
    font-size: 45px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.Home div p {
    word-wrap: wrap;
    margin-top: 15px;
    color: white;
}


.aboutus {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.ab-in {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.aboutus h1 {
    font-family: 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff4040;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.aboutus p {
    margin-top: 15px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    font-size: 1rem;
    color: #dddddd;
    margin-bottom: 20px;
}

.learn-more {
    color: #ffffff;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #ff4040;
    padding: 10px 20px;
    transition: background-color 0.3s, transform 0.3s;
}

.learn-more:hover {
    background-color: #ff6666;
    transform: translateY(-3px);
    cursor: pointer;
}

.ab-out {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50px 10px 10px 150px;
    animation: about-us-image-anim 3s ease;
    transition: transform 0.3s;
    box-shadow: 0 8px 20px rgba(255, 64, 64, 0.2);
}

.about-image img:hover {
    transform: scale(1.05);
}

@keyframes about-us-image-anim {
    0% {
        border-radius: 15px;
    }
    100% {
        border-radius: 50px 10px 10px 150px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .aboutus {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 80%;
        border-radius: 30px;
    }
}


.services {
    padding: 60px 20px;
    background-color: #1a1a1a;
    text-align: center;
}

.services h1 {
    font-size: 2.5rem;
    color: #ff4040;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-item {
    background-color: #222;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 30px;
    width: 280px;
    box-shadow: 0 4px 15px rgba(255, 64, 64, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 64, 64, 0.5);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-item p {
    font-size: 0.95rem;
    color: #dddddd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.explore-more {
    background-color: #ff4040;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.explore-more:hover {
    background-color: #ff6666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 90%;
    }
}

.recent-projects {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.recent-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.recent-title h1 {
    color: #333;
    font-family: 'Arial', sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
}

.recent-title a {
    text-decoration: none;
    color: white;
    background-color: red;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.recent-title a:hover {
    background-color: #b30000;
}

.projects {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.project-item {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 3px solid #ff4747;
}

.project-content {
    padding: 20px;
    text-align: center;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #222;
    font-weight: bold;
}

.project-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.project-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.explore-project-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #ff4747;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.explore-project-btn:hover {
    background-color: #e53d3d;
}



    .static-of-product {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 30px;
        gap: 20px;
        background-color: #1a1a1a;
        color: #ffffff;
    }
    
    .static-image img {
        width: 100%;
        max-width: 350px;
        border-radius: 10px 150px 150px 10px;
        animation: static-image-anim 2s ease 1s forwards, after-static-get-in 3s ease 3s forwards;
        box-shadow: 0 8px 20px rgba(255, 64, 64, 0.3);
        transition: transform 0.3s;
    }
    
    .static-image img:hover {
        transform: scale(1.05);
    }
    
    @keyframes static-image-anim {
        0% {
            transform: translateX(-3000px);
        }
        100% {
            transform: translateX(0);
        }
    }
    
    @keyframes after-static-get-in {
        0% {
            border-radius: 10px 10px 10px 10px;
        }
        100% {
            border-radius: 10px 150px 150px 10px;
        }
    }
    
    .static-details {
        font-family: 'Arial', sans-serif;
        flex: 1;
        padding: 20px;
    }
    
    .static-details h1 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #ff4040;
        margin-bottom: 15px;
    }
    
    .static-details p {
        margin: 10px 0 20px;
        font-size: 1rem;
        color: #dddddd;
        line-height: 1.6;
    }
    
    .static-box {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-around;
    }
    
    .static {
        text-align: center;
        flex: 1;
        min-width: 100px;
        padding: 15px;
        border-radius: 10px;
        background-color: #2a2a2a;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s, background-color 0.3s;
    }
    
    .static:hover {
        transform: translateY(-5px);
        background-color: #3a3a3a;
    }
    
    .static h3 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #ff4040;
        margin-bottom: 5px;
    }
    
    .static h5 {
        font-size: 1rem;
        font-weight: 500;
        color: #ffffff;
    }
    
.client-reviews {
    padding: 50px 20px;
    background-color: #111;
    text-align: center;
}

.section-header {
    font-size: 2rem;
    color: red;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-item {
    background-color: #1a1a1a;
    border: 1px solid #7f0000;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.7);
}

.review-text p {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 20px;
}

.client-info {
    text-align: left;
    border-top: 1px solid #333;
    padding-top: 10px;
}

.client-info h3 {
    font-size: 1.1rem;
    color: white;
    margin: 5px 0;
}

.client-info span {
    font-size: 0.9rem;
    color: #888;
}
.article-section{
    padding: 15px;
    height: auto;
    gap: 10px;
    display: flex;
    flex-direction: column;

}
.article-section h1{
    color: red;
    text-align: center;
}
.article-item {
    gap: 20px;
    display: flex;
    flex-direction: row;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Article Image */
  .article-image img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
  }
  
  /* Article Content */
  .article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .article-title {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
  }
  
  .article-desc {
    font-size: 1rem;
    color: #666;
    margin: 0;
  }
  
  /* Article Meta (Author & Timestamp) */
  .article-meta {
    font-size: 0.875rem;
    color: #999;
    display: flex;
    gap: 15px;
  }
  
  .author,
  .timestamp {
    display: inline-block;
  }
  
  /* Article Tags */
  .article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  
  .tag {
    background-color: #fae0e0;
    color: #790000;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 4px;
    text-transform: uppercase;
  }

.contact-section {
    display: flex;
    padding: 40px;
    padding-top: 100px !important;
    background-color: black;
    color: white;
    justify-content: space-between;
}

.contact-content {
    flex: 1;
    max-width: 45%;
}

.contact-content h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: red;
    font-weight: bold;
}

.contact-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: white;
}

.contact-form {
    flex: 1;
    max-width: 45%;
    background-color: black;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px red;
}

.contact-form h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: red;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px red solid;
    border-radius: 5px;
    background-color: black;
    color: white;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #7f0000;
}

