/* ------------------------------------------- */
/* Technology Page Styles */
/* ------------------------------------------- */

.technology-section {
    padding: 30px 0;
    background-color: #ffffff;
}

.technology-section h1 {
    color: #007bff;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
}

.technology-section h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.technology-card {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.technology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
    background-color: #ffffff;
    border-color: #007bff;
}

.tech-head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 80px 30px 80px 30px;
    color: #e9f7ff;
    background: linear-gradient(135deg,
            rgba(0, 123, 255, 0.381),
            rgba(40, 167, 70, 0.379)),
        url("../assets/tech-bg.png") center/cover no-repeat;
    font-size: 20px;
    text-align: center;
}

.tech-head h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: white;
}

.tech-icon {
    width: 160px;
    height: 160px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.1));
    object-fit: contain;
}

.technology-card h2 {
    font-size: 1.4em;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: none;
}

.technology-card p {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
}

.technology-section ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.technology-section ul li {
    font-size: 1.05em;
    padding: 15px 20px;
    background-color: #eaf8ed;
    border-left: 5px solid #28a745;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    color: #444;
    font-weight: 500;
}

.technology-section ul li:before {
    content: "✔️";
    margin-right: 10px;
    color: #28a745;
    font-weight: bold;
}

.cta-text {
    text-align: center;
    font-size: 1.4em;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 30px;
    background-color: #e9f7ff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-text a {
    color: #0590e7;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-bottom 0.3s;
}

.cta-text a:hover {
    color: #508ae6;
    border-bottom-color: #5082e6;
}

/* ------------------------------------------- */
/* Hire Us Page Styles */
/* ------------------------------------------- */

.hire-us-section {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.hire-us-section h1 {
    font-size: 3em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text {
    font-size: 1.25em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
}

.intro-text strong {
    color: #007bff;
    font-weight: 700;
}

.hire-us-section h2 {
    font-size: 2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.service-list,
.why-hire-us {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.service-list ul,
.why-hire-us ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-list li,
.why-hire-us li {
    font-size: 1.1em;
    padding: 15px;
    background-color: #e9f7ff;
    border-left: 5px solid #007bff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    color: #444;
}

.why-hire-us li {
    border-left: 5px solid #28a745;
    background-color: #eaf8ed;
}

.service-list strong,
.why-hire-us strong {
    color: #2c3e50;
    font-weight: 700;
}

.contact-us {
    text-align: center;
    padding: 50px 40px;
    background: #e9f7ff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-us h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-us p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #555;
}

.contact-us a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.contact-us a:hover {
    text-decoration: underline;
}

.hire-button {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
}

.hire-button:last-of-type {
    background-color: #007bff;
}

.hire-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
}

.hire-button:last-of-type:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

/* ------------------------------------------- */
/* Portfolio Page Styles */
/* ------------------------------------------- */

.portfolio-section {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.portfolio-section h1 {
    font-size: 3em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-info {
    padding: 25px;
}

.project-info h2 {
    font-size: 1.6em;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: left;
}

.project-info p {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
}

.industry {
    display: inline-block;
    background-color: #e0f7fa;
    color: #007bff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-section {
    text-align: center;
    padding: 50px 40px;
    background: #e9f7ff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
}

.cta-section h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

.cta-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #555;
}

.cta-section a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.cta-section a:hover {
    text-decoration: underline;
}

/* ------------------------------------------- */
/* Career Page Styles */
/* ------------------------------------------- */

.career-hero {
    background: linear-gradient(135deg,
            rgba(0, 123, 255, 0.8),
            rgba(40, 167, 69, 0.6)),
        url("../assets/career-background.png") center/cover no-repeat;
    color: white;
    padding: 120px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
}

.hero-content span {
    color: #ffd700;
}

.hero-content p {
    font-size: 1.25em;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.career-values {
    background: #f4f7f6;
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.career-values article {
    padding: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.career-values article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.career-values h3 {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.career-values p {
    font-size: 1em;
    line-height: 1.5;
    color: #555;
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.job-card {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    background: white;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.job-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.job-card h3 {
    font-size: 1.7em;
    margin-top: 0;
    margin-bottom: 5px;
    color: #2c3e50;
}

.job-card p {
    color: #555;
    font-weight: 600;
    margin-bottom: 15px;
}

.job-card ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.job-card li {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
    color: #444;
}

.job-card li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.apply-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.apply-btn:hover {
    background-color: #0056b3;
}

.career-cta {
    text-align: center;
    background: #e9f7ff;
    padding: 40px 15px;
    margin-top: 40px;
    border-radius: 10px;
}

.career-cta h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.career-cta p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #555;
}

.career-seo {
    padding: 30px 15px;
    background: #fdfdfd;
    text-align: justify;
    font-size: 0.95em;
    color: #666;
    border-top: 1px solid #eee;
}

.career-seo h2 {
    font-size: 1.5em;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

.career-seo strong {
    color: #007bff;
    font-weight: 700;
}

/* ------------------------------------------- */
/* Blog Page Styles */
/* ------------------------------------------- */

.blog-hero {
    padding: 15px 80px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 0 15px 15px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.blog-hero h1 {
    font-size: 3.2em;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.highlight {
    color: #007bff;
}

.blog-list .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h2 {
    font-size: 1.5em;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 10px;
    color: #2c3e50;
    text-align: left;
}

.blog-content p {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.read-btn {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
}

.read-btn:hover {
    border-bottom: 2px solid #007bff;
}

.blog-cta {
    text-align: center;
    padding: 40px;
    margin: 60px auto 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.blog-cta h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.blog-cta p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
}

/* ------------------------------------------- */
/* Schedule Meeting Page Styles */
/* ------------------------------------------- */

.schedule-meeting-section {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.schedule-meeting-section h1 {
    font-size: 2.8em;
    color: #007bff;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

.schedule-meeting-section h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-top: 45px;
    margin-bottom: 20px;
    text-align: center;
}

.schedule-meeting-section ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 700px;
}

.schedule-meeting-section ul li {
    font-size: 1.05em;
    margin-bottom: 12px;
    color: #444;
    padding-left: 25px;
    position: relative;
}

.schedule-meeting-section ul li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.meeting-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.meeting-form label {
    display: block;
    font-size: 1em;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: bold;
}

.meeting-form input[type="text"],
.meeting-form input[type="email"],
.meeting-form input[type="tel"],
.meeting-form input[type="date"],
.meeting-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    outline: none;
    margin-bottom: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.meeting-form input:focus,
.meeting-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.meeting-form textarea {
    resize: vertical;
    min-height: 120px;
}

.meeting-form button[type="submit"] {
    display: block;
    width: 100%;
    background-color: #28a745;
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.meeting-form button[type="submit"]:hover {
    background-color: #218838;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .technology-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .technology-section h1,
    .hire-us-section h1,
    .portfolio-section h1,
    .blog-hero h1,
    .schedule-meeting-section h1 {
        font-size: 2.2em;
    }

    .technology-grid,
    .service-list ul,
    .why-hire-us ul,
    .projects-grid,
    .values-grid,
    .job-listings,
    .blog-list .container {
        grid-template-columns: 1fr;
    }

    .meeting-form {
        padding: 30px 20px;
    }
}