/* Base styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #5e5e5e;
    --accent-color: #ff7f50;
    --text-color: #333;
    --light-text: #fff;
    --container-width: 1200px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.button {
    background-color: #b9ffb9;
    border-radius: 5%;

    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.site-header {
    --background: white;
    background: linear-gradient(90deg, #fffeec, #b9ffb9);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header .logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.main-nav a.active {
    color: var(--accent-color);
    font-weight: bold
}

/* Hero section */
.hero {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Services section */
.services {
    padding: 4rem 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.service-card {
    padding: 2rem;
    text-align: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

/* CTA Container */
.cta-container {
    text-align: center;
    margin-top: 3rem;
    margin: 0 auto;
    width: 50%;
    padding: 1rem;
    /* Or any width */
}

/* Methodology page styles */
.methodology {
    padding: 4rem 0;
}

.methodology-steps {
    max-width: 800px;

}

.step {
    padding: 1rem;
    padding-bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.step h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 1.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.tech-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tech-logo-container p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.tech-logo {
    height: 30px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.tech-logo:hover {
    opacity: 1;
}

/* Contact page styles */
.contact {
    padding: 4rem 0;
}

.contact-content {
    max-width: 800px;
}

.contact-method {
    margin-bottom: 2rem;
}

.contact-method h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

/* Shared contact styles */
.contact-with-avatar,
.contact-with-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

/* Adjust avatar border color for contact page */
.contact .avatar {
    border-color: rgba(0, 0, 0, 0.1);
}

.contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: var(--accent-color);
}

/* Contact Form Styles */
form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

form input,
form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

form button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--light-text);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Style for required field labels */
form label[for*="full-name"]::after,
form label[for*="email"]::after {
    content: " *";
    color: #ff0000;
}

/* Footer styles */
.site-footer {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-content h3 {
    margin-bottom: 1rem;
}

.footer-content a {
    color: var(--light-text);
    text-decoration: none;
}

.contact-with-avatar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-icon img {
    width: 24px;
    height: 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-form {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
}

.custom-form label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

.custom-form input,
.custom-form textarea {
    width: 90%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.custom-form button {
    margin-top: 15px;
    padding: 10px;
    background-color: #ff7f50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.custom-form button:hover {
    background-color: #0156B3;
}

.ghost {
    display: none;
}
