/* Basic Reset & Smooth Scroll */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #eef2f7;
    margin: 0;
    padding: 0;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    padding: 30px 20px;
    color: #fff;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
}

header h2 {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

nav ul {
    padding: 0;
    margin: 15px auto 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: #fff;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: rgba(255,255,255,0.2);
}

.logo-container {
    display: flex;              /* Align logo and text in a row */
    align-items: center;        /* Keep everything vertically aligned */
    justify-content: center;    /* Center the whole block horizontally */
    text-align: center;         /* Ensure text is centered */
    padding: 20px 0;            /* Add padding for spacing */
}

.logo {
    width: 80px;      /* Adjust size as needed */
    height: auto;
    margin-right: 15px;  /* Space between logo and text */
}

.logo-text h1 {
    margin: 0;
    font-size: 2rem; /* Adjust size as needed */
}

.logo-text h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: normal;
}

/* Section Styles */
section {
    background: #fff;
    margin: 40px auto;
    padding: 40px;
    width: 80%;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-10px);
}

section h3 {
    border-bottom: 3px solid #00d2ff;
    display: inline-block;
    margin-bottom: 15px;
}

section h4 {
    color: #007bff;
    margin-bottom: 20px;
}

section h5 {
    color: #35495e;
}

section ul {
    margin-top: 20px;
}

section li {
    margin-bottom: 15px;
}

/* Contact Form */
form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: border-color 0.3s;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

button {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    text-align: center;
    background-color: #282c34;
    color: #fff;
    padding: 20px;
}

footer ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin-top: 10px;
}

footer ul li a {
    color: #00d2ff;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #fff;
}
.service-img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

#services ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}
.services-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-box {
    flex: 1;
    min-width: 260px;
    max-width: 350px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-box h5 {
    margin-top: 15px;
    color: #007bff;
}

.service-box p {
    padding: 0 15px 15px;
    color: #555;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.msp-services-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.msp-box {
    flex: 1;
    min-width: 260px;
    max-width: 350px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.msp-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.msp-box h5 {
    margin-top: 15px;
    margin-left: 15px;
    color: #007bff;
}

.msp-box ul {
    padding: 10px 25px 20px 35px;
    color: #555;
    list-style-type: disc;
}

.msp-box ul li {
    margin-bottom: 8px;
}

.msp-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
