.about-hero {
    background: linear-gradient(rgba(8,15,35,0.75), rgba(8,15,35,0.75)),
    url("../images/about-image.jpg");
    background-size: cover;
    background-position: center;
    padding: 160px 0 120px;
    text-align: center;
}

.about-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    color: #2563eb;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-hero-content p {
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-hero-content h1 {
    color: #fff;

}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.breadcrumb a,
.breadcrumb p,
.breadcrumb span {
    color: #fff;
    font-size: 15px;
}

.company-story {
    padding: 110px 0;
    background: #f8fafc;
}

.company-story-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    margin: 0 80px;
}

.story-content {
    max-width: 650px;
}

.story-content h2 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 20px;
}

.story-image {
    display: flex;
    justify-content: flex-end;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    max-width: 550px;
    display: block;
    margin-left: auto;
}

.mission-vision {
    padding: 110px 0;
    background: #fff;
    margin: 0 80px;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading h2 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 20px;
}

.section-heading p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
}

.mission-vision-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mission-card {
    background: #f8fafc;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    transition: 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mission-card h3 {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 20px;
}

.mission-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
}

.industries {
    padding: 110px 0;
    background: #f8fafc;
}

.industries-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 0 80px;
}

.industry-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    transition: 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
}

.process {
    padding: 110px 0;
    background: #fff;
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 0 80px;
}

.process-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    transition: 0.4s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-card span {
    display: inline-block;
    font-size: 38px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 24px;
    color: #0f172a;
    margin-bottom: 15px;
}

.process-card p{
    color: #64748b;
    line-height: 1.8;
    font-size: 15px;
}

.footer {
  background: #0f172a;
  padding: 70px 80px 30px;
}

.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  max-width: 180px;
}

.footer-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-menu a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-menu a:hover {
  color: #3b82f6;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 15px;
  margin: 0;
}

@media (max-width:991px) {
    .about-hero {
        padding: 140px 0 100px;
    }

    .about-hero-content h1 {
        font-size: 42px;
    }

    .company-story-wrapper,
    .mission-vision-wrapper,
    .process-wrapper {
        grid-template-columns: 1fr;
    }

    .industries-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-story-wrapper,
    .mission-vision-wrapper,
    .industries-wrapper,
    .process-wrapper {
        margin: 0 20px;
    }

    .story-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .story-content h2,
    .section-heading h2 {
        font-size: 34px;
    }

    .mission-card,
    .process-card,
    .industry-card {
        padding: 35px 25px;
    }

    .footer-wrapper {
    flex-direction: column;
    text-align: center;
    }

    .footer-menu {
    justify-content: center;
    }
}

@media (max-width: 768px) {
    .about.hero {
        padding: 130px 0 90px;
    }

    .about-hero-content h1{
        font-size: 40px;
        line-height: 1.3;
    }

    .about-hero-content p{
        font-size: 16px;
        line-height: 1.6;
    }

    .company-story-wrapper,
    .mission-vision-wrapper,
    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 0 20px;
    }

    .industries-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 0 20px;
    }

    .story-content {
        width: 100%;
    }

    .story-content h2,
    .section-heading h2 {
        font-size: 34px;
        line-height: 1.4;
    }

    .story-image {
        justify-content: center;
    }

    .story-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .mission-card,
    .industry-card,
    .process-card {
        padding: 35px 25px;
    }

    .section-heading {
        margin: 0 auto 70px;
        padding: 0 20px;
    }

    .process-card span {
        font-size: 34px;
    }

    .process-card h3,
    .mission-card h3,
    .industry-card h3 {
        font-size: 24px;
    }

    .footer {
    padding: 60px 20px 25px;
    }

    .footer-menu {
    gap: 18px;
    }

}

@media (max-width: 576px) {
    .about-hero {
        padding: 110px 0 70px;
    }

    .about-hero-content h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .about-hero-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .breadcrumb {
        flex-wrap: wrap;
        gap: 6px;
    }

    .company-story-wrapper,
    .mission-vision-wrapper,
    .industries-wrapper,
    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0;
    }

    .story-content,
    .section-heading {
        text-align: center;
    }

    .story-content p,
    .section-heading p,
    .mission-card p,
    .process-card p {
        font-size: 15px;
    }

    .mission-card,
    .industry-card,
    .process-card {
        padding: 25px 20px;
    }

    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin: 0 auto 20px;
    }

    .process-card span {
        font-size: 30px;
    }

    .process-card h3,
    .mission-card h3,
    .industry-card h3 {
        font-size: 22px;
    }

    .industry-card i {
        font-size: 30px;
    }

    .footer-menu {
    flex-direction: column;
    gap: 15px;
    }

    .footer-logo img {
    max-width: 150px;
    }

    .footer-bottom p {
    font-size: 14px;
    }
}


