* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --navy-blue: #2C3E50;
    --coral-orange: #FF8B5A;
    --off-white: #FAFAFA;
    --anthracite-gray: #4A5568;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--anthracite-gray);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    height: 70px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    height: 100%;
}
.logo {
    margin-left: -30px;
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}
.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin-right: 40px;
}
.nav-links a {
    text-decoration: none;
    color: var(--navy-blue);
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--coral-orange);
}
.cta-button {
    background: var(--coral-orange);
    color: white;
    padding: 0 24px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    height: 100%;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
    margin-right: -30px;
}
.cta-button:hover {
    background-color: #ff6b3d;
}
/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero-content {
    margin-top: 120px;
}
.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.625;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-content p {
    font-size: 24px;
    margin-top: 60px;
    margin-left: 120px;
    max-width: 900px;
    opacity: 0.95;
    color: white;
    font-weight: 500;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    white-space: nowrap;
}
/* Services Section (Fusion Offer + Specialities) */
.services-section {
    padding: 52px 0;
    background: white;
}
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 39px;
}
.section-divider {
    margin: 39px 0;
}
.subsection-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 33px;
}
/* Features (Ex-Offer) */
.features-container {
    position: relative;
    margin-bottom: 52px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}
.connection-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98%;
    height: 238px;
    border: 4px solid var(--coral-orange);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}
.feature-card {
    text-align: center;
    padding: 22px 11px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 85%;
    background: white;
    border-radius: 10px;
    position: relative;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--navy-blue);
    margin-bottom: 15px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Specialities */
.specialities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.speciality-card {
    background: white;
    padding: 26px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.speciality-card:hover {
    transform: translateY(-5px);
}
.speciality-icon {
    font-size: 48px;
    margin-bottom: 20px;
}
.speciality-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--navy-blue);
    line-height: 1.4;
}
/* Applications Section (Fusion Applications + Sectors) */
.applications-section {
    padding: 52px 0;
    background: var(--off-white);
}
.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 52px;
}
.application-card {
    background: white;
    padding: 26px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 130px;
}
.application-card:hover {
    transform: translateY(-5px);
}
.application-icon {
    font-size: 48px;
    margin-bottom: 20px;
}
.application-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--navy-blue);
    line-height: 1.4;
}
/* Sectors */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.sector-card {
    height: 204px;
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('industry-bg.jpg') center/cover;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    padding: 20px;
}
.sector-card:hover {
    background: linear-gradient(rgba(255, 139, 90, 0.9), rgba(255, 139, 90, 0.9)), url('industry-bg.jpg') center/cover;
    transform: translateY(-5px);
}
.sector-icon {
    font-size: 48px;
    margin-bottom: 15px;
}
.sector-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
/* Expertise Section */
.expertise-section {
    padding: 52px 0;
    background: white;
}
.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 33px;
    align-items: start;
}
.expertise-column {
    display: flex;
    flex-direction: column;
}
.expertise-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 26px;
}
.expertise-list {
    background: white;
    padding: 26px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}
.expertise-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: var(--off-white);
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.expertise-item:hover {
    transform: translateX(5px);
}
.expertise-item:last-child {
    margin-bottom: 0;
}
.expertise-icon {
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
}
.expertise-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--navy-blue);
    font-size: 16px;
}
/* Footer */
footer {
    background: var(--navy-blue);
    color: white;
    padding: 20px 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-left {
    display: flex;
    flex-direction: column;
}
.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
    margin-bottom: 5px;
}
.footer-tagline {
    color: var(--coral-orange);
    font-size: 14px;
    font-weight: 500;
}
.footer-right {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .logo {
        margin-left: 0;
        height: calc(100% - 10px);
        padding: 5px 0;
    }
    .cta-button {
        margin-right: 0;
    }
    .hero-content {
        margin-top: 60px;
    }
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.4;
    }
    .hero-content p {
        font-size: 18px;
        margin-top: 30px;
        margin-left: 0;
        white-space: normal;
        max-width: 600px;
    }
    .section-title {
        font-size: 28px;
    }
    .subsection-title {
        font-size: 24px;
    }
    .applications-grid {
        grid-template-columns: 1fr;
    }
    .specialities-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .connection-overlay {
        display: none;
    }
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .feature-card h3 {
        font-size: 18px;
        min-height: auto;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .connection-overlay {
        height: 298px;
    }
}* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
 :root {
     --navy-blue: #2C3E50;
     --coral-orange: #FF8B5A;
     --off-white: #FAFAFA;
     --anthracite-gray: #4A5568;
 }
 body {
     font-family: 'Inter', sans-serif;
     line-height: 1.6;
     color: var(--anthracite-gray);
 }
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }
 /* Header */
 header {
     position: fixed;
     top: 0;
     width: 100%;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     z-index: 1000;
     padding: 0;
     height: 70px;
     box-shadow: 0 2px 20px rgba(0,0,0,0.1);
 }
 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 10px;
     height: 100%;
 }
 .logo {
     margin-left: -30px;
     display: flex;
     align-items: center;
     height: 100%;
     text-decoration: none;
 }
 .logo img {
     height: 100%;
     width: auto;
     object-fit: contain;
     transition: transform 0.3s ease;
 }
 .logo img:hover {
     transform: scale(1.05);
 }
 .nav-links {
     display: flex;
     list-style: none;
     gap: 40px;
     margin-right: -80px;
 }
 .nav-links a {
     text-decoration: none;
     color: var(--navy-blue);
     font-weight: 500;
     transition: color 0.3s ease;
 }
 .nav-links a:hover {
     color: var(--coral-orange);
 }
 .nav-links a.active {
     color: var(--coral-orange);
     font-weight: 600;
 }
 .cta-button {
     background: var(--coral-orange);
     color: white;
     padding: 12px 24px;
     border-radius: 6px;
     text-decoration: none;
     font-weight: 600;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     margin-right: -30px;
 }
 .cta-button:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(255, 139, 90, 0.3);
 }
 /* Main Content */
  /* Hero Section Mission */
 .mission-hero {
      background: url('hero-bg-narrow.jpg') center/cover no-repeat;
      color: white;
      padding: 100px 0;
      text-align: center;
 }
 .mission-hero h1 {
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     font-size: 42px;
     margin-bottom: 20px;
     text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
 }
 .mission-hero p {
     font-size: 20px;
     opacity: 0.9;
     max-width: 1000px;
     margin: 0 auto;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
 }
 /* Mission Section */
 .mission-section {
     padding: 20px 0 20px 0;
     background: white;
     display: flex;
     align-items: center;
     min-height: 400px;
 }
 .mission-container {
     max-width: 1100px;
     margin: 0 auto;
     width: 100%;
 }
 .mission-card {
     background: white;
     padding: 40px 40px;
     border-radius: 20px;
     box-shadow: 0 20px 40px rgba(0,0,0,0.1);
     margin-bottom: 0;
     position: relative;
     overflow: hidden;
 }
 .mission-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 5px;
     background: linear-gradient(90deg, var(--coral-orange), var(--navy-blue));
 }
 .mission-item {
     margin-bottom: 15px;
 }
 .mission-item:last-child {
     margin-bottom: 0;
 }
 .mission-item h2 {
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     font-size: 28px;
     color: var(--navy-blue);
     margin-bottom: 5px;
     display: flex;
     align-items: center;
     gap: 15px;
 }
 .mission-icon {
     font-size: 32px;
     color: var(--coral-orange);
 }
 .mission-item p {
     font-size: 18px;
     line-height: 1.4;
     color: var(--anthracite-gray);
     text-align: justify;
     padding-left: 47px;
     max-width: 1000px;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }
 .mission-item:first-child p {
     white-space: normal;
     line-height: 1.3;
     max-height: 2.6em;
 }
 .mission-item:nth-child(3) p {
     white-space: normal;
     line-height: 1.3;
     max-height: 2.6em;
 }
        /* Hero Section Contact */
        .contact-hero {
            background: url('hero-bg-narrow.jpg') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        .contact-hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 42px;
            margin-bottom: 20px;
        }
        .contact-hero p {
            font-size: 20px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        /* Contact Section */
        .contact-section {
            padding: 20px 0;
            background: white;
        }
        .contact-container {
            max-width: 1050px;
            margin: 0 auto;
            text-align: center;
        }
        .contact-card {
            background: white;
            padding: 10px 15px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--coral-orange), var(--navy-blue));
        }
        .contact-info h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 36px;
            color: var(--navy-blue);
            margin-bottom: 20px;
        }
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 500px;
            margin: 0 auto;
        }
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 10px;
            background: var(--off-white);
            border-radius: 10px;
            transition: all 0.3s ease;
            border-left: 4px solid var(--coral-orange);
        }
        .contact-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            background: white;
        }
        .contact-icon {
            font-size: 28px;
            color: var(--coral-orange);
            min-width: 40px;
        }
        .contact-text {
            text-align: left;
            flex-grow: 1;
        }
        .contact-label {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 14px;
            color: var(--anthracite-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }
        .contact-value {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 18px;
            color: var(--navy-blue);
        }
        .contact-value a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .contact-value a:hover {
            color: var(--coral-orange);
        }
        /* Call to Action */
        .contact-cta {
            margin-top: 40px;
            padding: 10px;
            background: linear-gradient(135deg, var(--coral-orange), #ff6b3d);
            border-radius: 15px;
            color: white;
            text-align: center;
        }
        .contact-cta h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 650;
            font-size: 27px;
            margin-bottom: 15px;
        }
        .contact-cta p {
            font-size: 18px;
            opacity: 0.95;
            line-height: 1.8;
        }

 /* Highlight Box */
 .highlight-box {
     background: linear-gradient(135deg, var(--coral-orange), #ff6b3d);
     color: white;
     padding: 26px;
     border-radius: 15px;
     text-align: left;
     margin-top: 40px;
     display: flex;
     align-items: center;
     gap: 20px;
     height: 65%;
 }
 .highlight-box h3 {
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     font-size: 28px;
     margin-bottom: 0;
     color: var(--navy-blue);
     white-space: nowrap;
 }
 .highlight-box p {
     font-size: 20px;
     opacity: 0.95;
     line-height: 1.2;
     font-weight: 500;
     padding-left: 0 !important;
     margin: 0;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }
 .highlight-box .italic-text {
     font-style: italic;
 }
 /* Footer */
 footer {
     background: var(--navy-blue);
     color: white;
     padding: 5px 0;
 }
 .footer-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }
 .footer-left {
     display: flex;
     flex-direction: column;
 }
 .footer-logo {
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     font-size: 20px;
     color: white;
     margin-bottom: 5px;
 }
 .footer-tagline {
     color: var(--coral-orange);
     font-size: 14px;
     font-weight: 500;
 }
 .footer-right {
     color: rgba(255, 255, 255, 0.7);
     font-size: 14px;
 }
 /* Mobile Responsive */
 @media (max-width: 768px) {
     .nav-links {
         display: none;
     }
     .logo {
         margin-left: 0;
         height: calc(100% - 10px);
         padding: 5px 0;
     }
     .cta-button {
         margin-right: 0;
         padding: 10px 20px;
         font-size: 14px;
     }
     .mission-hero h1 {
         font-size: 28px;
         line-height: 1.4;
     }
     .mission-hero p {
         font-size: 18px;
         padding: 0 20px;
         white-space: normal;
         max-width: 600px;
     }
     .mission-card {
         margin: 0 20px 40px 20px;
         padding: 40px 20px;
     }
     .mission-item h2 {
         font-size: 24px;
         flex-direction: column;
         text-align: center;
         gap: 10px;
     }
     .mission-item p {
         padding-left: 0;
         text-align: left;
         font-size: 16px;
         white-space: normal;
         max-height: none;
     }
     .highlight-box {
         margin: 40px 20px 0 20px;
         padding: 30px 20px;
         flex-direction: column;
         text-align: center;
         gap: 10px;
     }
     .highlight-box h3 {
         font-size: 20px;
         white-space: normal;
     }
     .highlight-box p {
         font-size: 16px;
         white-space: normal;
     }
     .footer-content {
         flex-direction: column;
         text-align: center;
         gap: 20px;
     }
 }