/*
IT Services Website Template Styles
Author: SOLO Builder
*/

/* Base Styles & Variables */
:root {
    --primary-color: #1a73e8; /* Google Blue */
    --secondary-color: #f1f3f4; /* Google Gray */
    --dark-color: #202124; /* Google Dark */
    --light-color: #ffffff;
    --text-color: #5f6368; /* Google Text Gray */
    --heading-color: #202124;
    --border-color: #dadce0;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --font-family: "Inter", sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: var(--light-color);
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    color: var(--heading-color);
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--light-color);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.logo-link {
    color: inherit;
    text-decoration: none;
}

.logo-link:hover {
    color: inherit;
    text-decoration: none;
}

.nav-menu {
    display: flex;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
    /* background-color: var(--secondary-color); */
    
    padding: 15rem 0;
    background: #1A73E8;
    background: linear-gradient(180deg,rgba(26, 115, 232, 1) 0%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin-right: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    font-size: 12rem;
    color: var(--primary-color);
}

.hero-graphic img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
        /* font-size: 12rem; */
    color: var(--primary-color);
    /* opacity: 0.8; */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #1565c0; /* Darker Blue */
}

.btn-secondary {
    background-color: var(--light-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
}

/* Services Overview */
.services-overview,
.additional-services,
.additional-industries {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.services-grid,
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card,
.industry-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover,
.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-icon,
.industry-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3,
.industry-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

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

.cta-content h2 {
    font-size: 2rem;
    color: var(--light-color);
    margin-bottom: 1rem;
}

.cta-content .btn-primary {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.cta-content .btn-primary:hover {
    background-color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul li a {
    color: #bdc1c6; /* Lighter Gray */
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--light-color);
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #bdc1c6;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--light-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--text-color);
    padding-top: 1rem;
}

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

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

/* Service Detail & Industry Detail */
.service-detail,
.industry-detail {
    padding: 4rem 0;
}

.alt-bg {
    background-color: var(--secondary-color);
}

.service-detail-content,
.industry-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.service-detail-content.reverse,
.industry-content.reverse {
    flex-direction: row-reverse;
}

.service-detail-text,
.industry-text {
    flex: 1;
}

.service-detail-image,
.industry-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon-large,
.industry-icon-large {
    font-size: 12rem;
    color: var(--primary-color);
    /* opacity: 0.8; */
}

.service-icon-large img,
.industry-icon-large img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-detail h2,
.industry-header h2 {
    font-size: 2rem;
    /* margin-bottom: 1rem; */
}

.industry-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.industry-header i {
    font-size: 2rem;
    color: var(--primary-color);
}


.service-features,
.industry-solutions {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.solution-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.solution-content {
    flex: 1;
}

.solution-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.solution-content p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Contact Page */
.contact-info {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-method {
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-section {
    padding: 4rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    flex: 1;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-family);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    margin-right: 0.8rem;
    transition: background-color 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-message {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

/* About Page */
.company-overview {
    padding: 4rem 0;
}

.overview-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.overview-text {
    flex: 1;
}

.overview-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.overview-graphic {
    font-size: 15rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.mission-values {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.mission-section {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.leadership-team {
    padding: 4rem 0;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.member-photo {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.member-title {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-social a {
    font-size: 1.2rem;
    margin: 0 0.5rem;
}

.certifications-partnerships {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.certifications-section {
    margin-bottom: 3rem;
}

.certifications-grid,
.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.cert-icon,
.partner-logo {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container,
    .service-detail-content,
    .industry-content,
    .overview-content {
        flex-direction: column;
        text-align: center;
    }

    .service-detail-content.reverse,
    .industry-content.reverse {
        flex-direction: column-reverse;
    }

    .hero-content,
    .service-detail-text,
    .industry-text,
    .overview-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: var(--light-color);
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-toggle {
        display: block;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Careers Page Styles */
.careers-intro {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.intro-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.benefit-item p {
    color: var(--text-color);
    margin-bottom: 0;
}

.open-positions {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.position-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.position-header h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin: 0;
}

.position-type {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.position-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--primary-color);
}

.position-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background-color: #e8f0fe;
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.position-card .btn {
    width: 100%;
    text-align: center;
}

/* Position Detail Page Styles */
.position-details {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.position-info {
    max-width: 800px;
    margin: 0 auto;
}

.position-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.meta-item i {
    color: var(--primary-color);
}

.position-description h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.position-description h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: var(--heading-color);
}

.position-description p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.position-description ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.position-description li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--text-color);
}

.apply-section {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    margin-top: 3rem;
}

.apply-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.apply-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .position-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .position-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
