/* General Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: Arial, Helvetica, sans-serif;
line-height: 1.6;
background-color: #f4f6f8;
color: #333;
}

/* Header */
header {
background-color: #1e293b;
color: white;
padding: 15px 30px;

display: flex;
justify-content: space-between;
align-items: center;

position: sticky;
top: 0;

}

.logo h1 {
font-size: 1.8rem;
}

/* Navigation */
.nav-links {
display: flex;
list-style: none;
gap: 20px;
}

.nav-links a {
text-decoration: none;
color: white;
padding: 8px 12px;
border-radius: 5px;

transition: background-color 0.3s;

}

/* Rollover Effect */
.nav-links a:hover,
.nav-links a.active {
background-color: #2563eb;
}

/* Hero Section */
.hero {
background: linear-gradient(rgba(0,0,0,.5),
rgba(0,0,0,.5)),
url("../images/custom-pc.jpg");

background-size: cover;
background-position: center;

min-height: 450px;

display: flex;
justify-content: center;
align-items: center;

text-align: center;
color: white;
padding: 20px;

}

.hero-text {
max-width: 700px;
}

.hero h2 {
font-size: 2.5rem;
margin-bottom: 15px;
}

.hero p {
margin-bottom: 25px;
}

/* Buttons */
.cta-button {
display: inline-block;
background-color: #2563eb;
color: white;
text-decoration: none;

padding: 12px 25px;
border-radius: 5px;
border: none;
cursor: pointer;

transition: background-color 0.3s;

}

.cta-button:hover {
background-color: #1d4ed8;
}

/* Sections */
section {
padding: 50px 10%;
}

section h2 {
text-align: center;
margin-bottom: 25px;
color: #1e293b;
}

/* Services Cards */
.service-container,
.service-details {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.service-card,
.service-box {
flex: 1;
min-width: 250px;

background: white;
padding: 20px;

border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,.1);

}

.service-card h3,
.service-box h3 {
margin-bottom: 15px;
color: #2563eb;
}

.service-card ul,
.service-box ul,
.service-box ol {
margin-left: 20px;
}

.service-card li,
.service-box li {
margin-bottom: 8px;
}

/* Featured Section */
.featured-content {
display: flex;
gap: 30px;
align-items: center;
flex-wrap: wrap;
}

.featured-content img {
width: 100%;
max-width: 500px;

border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,.15);

}

.featured-text {
flex: 1;
}

/* Pricing Table */
table {
width: 100%;
border-collapse: collapse;
background: white;
}

th,
td {
border: 1px solid #ccc;
padding: 12px;
text-align: left;
}

th {
background-color: #2563eb;
color: white;
}

tr:nth-child(even) {
background-color: #f8fafc;
}

/* Gallery */
.gallery-container {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.gallery-container img {
width: 300px;
max-width: 100%;

border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,.15);

transition: transform .3s;

}

.gallery-container img:hover {
transform: scale(1.05);
}

/* Multimedia */
.video-container {
display: flex;
justify-content: center;
}

.video-container iframe {
width: 100%;
max-width: 800px;
height: 450px;
}

/* Contact Page */
.contact-container {
max-width: 700px;
margin: auto;

background: white;
padding: 25px;

border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,.1);

}

.contact-intro {
text-align: center;
margin-bottom: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 10px;

border: 1px solid #ccc;
border-radius: 5px;

}

/* Footer */
footer {
background-color: #1e293b;
color: white;
text-align: center;
padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {

header {
    flex-direction: column;
    gap: 15px;
}

.nav-links {
    flex-direction: column;
    text-align: center;
}

.hero h2 {
    font-size: 2rem;
}

.service-container,
.service-details,
.featured-content {
    flex-direction: column;
}

.video-container iframe {
    height: 300px;
}

}

