/* Breadcrumb */
.breadcrumb {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.breadcrumb-content {
    text-align: center;
}

.breadcrumb h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.breadcrumb-nav {
    font-size: 1rem;
}

.breadcrumb-nav a {
    color: #bdc3c7;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: #ffffff;
}

.separator {
    margin: 0 0.5rem;
    color: #95a5a6;
}

.current {
    color: var(--secondary-color-600);
}

/* Company Introduction */
.company-intro {
    padding: 4rem 0;
    background-color: #ffffff;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.image-placeholder {
    width: 300px;
    height: 200px;
    background-color: #f8fafc;
    border: 2px dashed #e2e8f0;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #64748b;
}

.placeholder-icon {
    width: 3rem;
    height: 3rem;
}

/* Mission & Vision */
.mission-vision {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-4px);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--secondary-color-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon svg {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
    stroke: #fefefe;
}

.mission-card h3,
.vision-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Core Values */
.core-values {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background-color: #f8fafc;
    border: 2px solid var(--secondary-color-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--secondary-color-600);
    stroke: var(--secondary-color-600);
}

.value-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Main Services */
.main-services {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

.service-icon {
    width: 3rem;
    height: 3rem;
    color: var(--secondary-color-600);
}

.service-header h3 {
    color: #2c3e50;
    margin: 0;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-right: 1.5rem;
}

.service-content li:last-child {
    border-bottom: none;
}

.service-content li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--secondary-color-600);
    font-weight: bold;
}

/* Our Team */
.our-team {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 1rem;
    transition: transform 0.2s ease;
}

.team-member:hover {
    transform: translateY(-4px);
}

.member-avatar {
    width: 5rem;
    height: 5rem;
    background-color: var(--secondary-color-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.avatar-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #ffffff;
}

.member-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.position {
    color: var(--secondary-color-600);
    font-weight: 600;
    margin-bottom: 1rem;
}

.experience {
    font-size: 0.9rem;
    line-height: 1.5;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color-600);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
}

/* Key Projects */
.key-projects {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.project-card {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f5f9;
}

.project-image .image-placeholder {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    background-color: #f1f5f9;
}

.project-info {
    padding: 1.5rem;
}

.project-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.project-type {
    color: var(--secondary-color-600);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-details {
    margin-bottom: 1rem;
}

.project-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.spec {
    background-color: #f8fafc;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

/* Certifications */
.certifications {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.cert-item {
    text-align: center;
    padding: 2rem;
    border: 2px solid #f1f5f9;
    border-radius: 1rem;
    transition: all 0.2s ease;
}

.cert-item:hover {
    border-color: var(--secondary-color-600);
    transform: translateY(-4px);
}

.cert-icon {
    width: 4rem;
    height: 4rem;
    background-color: #f8fafc;
    border: 2px solid var(--secondary-color-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cert-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: var(--secondary-color-600);
}

.cert-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.cert-item p {
    font-size: 0.9rem;
}


/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-logo img{
    width: 8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo i {
    width: 2rem;
    height: 2rem;
    color: var(--secondary-color-600);
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.contact-info {
    space-y: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--secondary-color-600);
}

.contact-item span ,.contact-item a{
    color: #bdc3c7;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    color: #95a5a6;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .breadcrumb {
        padding: 2rem 0 1rem;
    }
    
    .company-intro,
    .mission-vision,
    .core-values,
    .main-services,
    .our-team,
    .key-projects,
    .certifications {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}