/* Root Variables */
:root {
    --primary-blue: #003d7a;
    --secondary-blue: #0066cc;
    --light-blue: #e8f4ff;
    --primary-green: #7ec131;
    --dark-green: #5a9015;
    --light-green: #f1f8e8;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --white: #ffffff;
    --bg-light: #f5f5f5;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    z-index: 1100;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-dropdown {
    position: relative;
    z-index: 1200;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--white);
    font: inherit;
    cursor: pointer;
    padding: 0;
}

.language-toggle i {
    transition: transform 0.3s ease;
}

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    color: var(--text-dark);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
    min-width: 150px;
    display: none;
    z-index: inherit;
}

.language-menu li {
    width: 100%;
}

.language-menu a {
    display: block;
    padding: 8px 16px;
    color: inherit;
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.language-menu a:hover,
.language-menu a:focus-visible {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.language-dropdown:hover .language-menu,
.language-dropdown:focus-within .language-menu,
.language-dropdown.open .language-menu {
    display: block;
}

.language-dropdown:hover .language-toggle i,
.language-dropdown:focus-within .language-toggle i,
.language-dropdown.open .language-toggle i {
    transform: rotate(180deg);
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
}

.top-bar-item i {
    font-size: 14px;
}

.top-bar-item .item-label {
    white-space: nowrap;
}

a.top-bar-item:hover,
a.top-bar-item:focus-visible {
    color: var(--primary-green);
}

.top-bar-right a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.top-bar-right a:hover {
    color: var(--primary-green);
}

/* Header / Navigation */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.logo-text h1 {
    font-size: 24px;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1;
}

.logo-text span {
    font-size: 12px;
    color: var(--text-gray);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon,
.search-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-secondary-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-primary-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-small {
    padding: 8px 20px;
    font-size: 13px;
}

/* Hero Section */
.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background-color: #000;
    padding: 140px 0;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--primary-green);
    font-weight: 500;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-note {
    font-size: 14px;
    font-style: italic;
    opacity: 0.9;
}

.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-pagination span {
    width: 40px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-pagination span.active {
    background-color: var(--white);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
    z-index: 3;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
    background-color: rgba(255, 255, 255, 0.35);
    outline: none;
    transform: translateY(-50%) scale(1.05);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

.hero-mobile-arrows {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 12px;
    z-index: 4;
}

.hero-mobile-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(24, 79, 187, 0.2);
    background-color: rgba(255, 255, 255, 0.92);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.hero-mobile-arrow:focus-visible,
.hero-mobile-arrow:hover {
    background-color: var(--white);
    transform: translateY(-2px);
}

/* Quick Facts */
.quick-facts {
    padding: 80px 0;
    background-color: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fact-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.fact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.fact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--secondary-blue)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.fact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.fact-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-blue);
}

/* COVID Banner */
.covid-banner {
    background: linear-gradient(
        135deg,
        var(--primary-green),
        var(--dark-green)
    );
    padding: 30px;
    margin: 60px auto;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(126, 193, 49, 0.3);
}

.banner-ribbon {
    position: absolute;
    top: -15px;
    left: 40px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 8px 30px;
    font-weight: 700;
    border-radius: 5px;
    font-size: 14px;
}

.banner-content {
    text-align: center;
    color: var(--white);
    padding-top: 20px;
}

.banner-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.banner-content p {
    margin-bottom: 15px;
    opacity: 0.95;
}

.banner-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.banner-link:hover {
    opacity: 0.8;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
}

.section-subtitle {
    color: var(--primary-green);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    font-style: italic;
}

.section-title {
    font-size: 38px;
    color: var(--primary-blue);
    line-height: 1.3;
    font-weight: 700;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-left p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.about-image-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.about-image-main img,
.about-image-small img,
.about-image-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-image-small {
    position: relative;
}

.price-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 90%;
}

.price-badge h3 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.price-badge p {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
}

.price {
    font-size: 28px;
    color: var(--primary-green);
    font-weight: 700;
    margin-top: 10px;
}

.price span {
    font-size: 14px;
    color: var(--text-gray);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--light-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-blue);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-blue);
}

/* Partnership Section */
.partnership-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.partnership-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.partnership-gallery {
    position: relative;
    min-height: 420px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.gallery-secondary {
    position: absolute;
    bottom: -30px;
    right: 40px;
    width: 45%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.gallery-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.partnership-stats {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--white);
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: left;
    max-width: 190px;
}

.partnership-stats strong {
    font-size: 36px;
    color: var(--primary-blue);
    display: block;
    line-height: 1;
}

.partnership-stats span {
    font-size: 13px;
    color: var(--text-gray);
    display: block;
    margin-top: 6px;
}

.partnership-details .section-title {
    margin-bottom: 20px;
}

.partnership-details .section-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.partnership-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.partnership-highlights li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.partnership-highlights i {
    font-size: 26px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.partnership-highlights h3 {
    margin-bottom: 6px;
    color: var(--primary-blue);
    font-size: 18px;
}

.partnership-highlights p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 14px;
}

.partnership-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.process-card {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.process-number {
    font-size: 80px;
    font-weight: 700;
    color: rgba(0, 61, 122, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
}

.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--light-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
}

.process-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.process-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 14px;
}

.process-cta {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.process-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--secondary-blue)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    flex-shrink: 0;
}

.process-cta p {
    color: var(--text-gray);
    line-height: 1.8;
}

.process-cta a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), #00274d);
    color: var(--white);
}

.industries-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.industries-left .section-subtitle {
    color: var(--primary-green);
}

.industries-left .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.industries-description {
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.95;
}

.industries-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.industry-card {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.industry-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.industry-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: var(--white);
}

.industry-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.industries-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.industries-meta div {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.industries-meta strong {
    display: block;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 4px;
}

.industries-meta span {
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-left {
    position: relative;
}

.why-us-left img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
}

.why-us-right h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.why-us-right > p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.why-us-grid {
    display: grid;
    gap: 25px;
}

.why-us-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.why-us-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.why-us-card h4 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.why-us-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* About LCS Section */
.about-lcs-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-lcs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-lcs-left p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-item i {
    font-size: 28px;
    color: var(--primary-blue);
}

.value-item span {
    font-weight: 600;
    color: var(--primary-blue);
}

.about-lcs-right img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: block;
    object-fit: cover;
}

.about-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 120%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.benefit-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(
        135deg,
        var(--primary-green),
        var(--dark-green)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.benefit-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background-color: var(--white);
}

.certifications-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cert-logo {
    padding: 20px 40px;
    background-color: var(--bg-light);
    border-radius: 10px;
    font-weight: 700;
    color: var(--primary-blue);
    border: 2px solid var(--border-color);
}

.clients-marquee {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    padding: 20px 0;
}

.clients-marquee::before,
.clients-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: clients-marquee 28s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes clients-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    flex: 0 0 auto;
    padding: 16px 32px;
    background-color: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 90px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.client-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition:
        opacity 0.3s ease,
        filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation: none;
    }
}

/* Footer */
.footer {
    background-color: #001e3c;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-text h3 {
    color: var(--white);
    font-size: 24px;
}

.footer-logo .logo-text span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-blue);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-green);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-green);
    margin-top: 3px;
}

.regional-note {
    margin-top: 20px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

/* Inner Page Layouts */
.inner-hero {
    background: linear-gradient(
        135deg,
        rgba(0, 61, 122, 0.94),
        rgba(0, 102, 204, 0.88)
    );
    color: var(--white);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.inner-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(126, 193, 49, 0.3),
        transparent 55%
    );
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-green);
}

.inner-hero-content {
    max-width: 720px;
}

.inner-hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.inner-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.inner-hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.inner-hero .btn-link,
.page-section.cta-section .btn-link {
    color: var(--white);
}

.inner-hero .btn-link:hover,
.page-section.cta-section .btn-link:hover {
    color: var(--primary-green);
}

.page-section {
    padding: 80px 0;
}

.page-section.alt-bg {
    background-color: var(--bg-light);
}

.page-section.cta-section {
    background: linear-gradient(
        135deg,
        rgba(0, 61, 122, 0.92),
        rgba(0, 102, 204, 0.88)
    );
    color: var(--white);
}

.section-intro {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-intro.left {
    text-align: left;
    margin: 0 0 50px;
}

.section-subtitle {
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.page-section.alt-bg .section-title,
.page-section.cta-section .section-title {
    color: inherit;
}

.section-description {
    color: var(--text-gray);
    line-height: 1.8;
}

.page-section.alt-bg .section-description {
    color: rgba(26, 26, 26, 0.75);
}

.page-section.cta-section .section-description {
    color: rgba(255, 255, 255, 0.85);
}

.content-grid {
    display: grid;
    gap: 40px;
}

.content-grid.two-column {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.content-grid.three-column {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.content-grid.two-column .content-block,
.content-grid.three-column .content-block {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.page-section.alt-bg .content-block:not(.highlight-box) {
    background-color: var(--white);
}

.content-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.content-block p {
    color: var(--text-gray);
}

.highlight-box {
    border: 1px solid rgba(0, 61, 122, 0.15);
    background: linear-gradient(135deg, #ffffff, #f5f9ff);
}

.checklist {
    list-style: none;
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.checklist li {
    position: relative;
    padding-left: 24px;
    color: var(--text-gray);
}

.checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-green);
    font-size: 12px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: rgba(0, 61, 122, 0.08);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

.timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 25px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(var(--primary-blue), var(--secondary-blue));
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 50%;
}

.timeline-content {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.cards-grid {
    display: grid;
    gap: 25px;
}

.cards-grid.three {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cards-grid.four {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card,
.resource-card,
.certification-card,
.news-card,
.contact-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.info-card:hover,
.resource-card:hover,
.certification-card:hover,
.news-card:hover,
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(0, 61, 122, 0.1),
        rgba(0, 102, 204, 0.2)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 18px;
}

.info-card h3,
.resource-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.info-card p,
.resource-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.certification-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.certification-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.certification-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.page-section.cta-section .cta-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px 45px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #f5f9ff);
    gap: 25px;
}

.page-section.cta-section .cta-card {
    background: transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.cta-content h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.cta-content p {
    color: inherit;
    max-width: 540px;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-card {
    display: grid;
    gap: 35px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.feature-media img {
    border-radius: 14px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 61, 122, 0.1);
    border-radius: 20px;
    padding: 6px 14px;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content h2 {
    font-size: 32px;
    margin: 16px 0;
    color: var(--primary-blue);
}

.feature-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 18px;
}

.feature-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.news-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.news-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.news-card p {
    color: var(--text-gray);
    margin-bottom: 18px;
}

.news-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.news-card a i {
    margin-right: 6px;
}

.resource-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.resource-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 12px;
}

.resource-card a:hover {
    color: var(--primary-green);
}

.step-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    position: relative;
}

.step-number {
    position: absolute;
    top: -18px;
    left: 30px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--primary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-card h3 {
    margin-top: 20px;
    font-size: 20px;
    color: var(--primary-blue);
}

.step-card p {
    color: var(--text-gray);
    margin-top: 10px;
}

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

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.contact-header i {
    font-size: 24px;
    color: var(--primary-green);
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.contact-list li {
    display: flex;
    gap: 10px;
    color: var(--text-gray);
}

.contact-list li i {
    color: var(--primary-blue);
    margin-top: 4px;
}

.contact-card a {
    text-decoration: none;
    color: var(--primary-blue);
}

.contact-wrapper {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.contact-form {
    background-color: var(--white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-blue);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    font-size: 15px;
    transition:
        border 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #d9534f;
    box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.15);
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 12px;
}

.map-section .section-intro {
    text-align: center;
}

.map-placeholder {
    margin-top: 30px;
    background: linear-gradient(
        135deg,
        rgba(0, 61, 122, 0.08),
        rgba(0, 102, 204, 0.1)
    );
    border-radius: 16px;
    padding: 80px 20px;
    text-align: center;
    color: var(--primary-blue);
    display: grid;
    gap: 12px;
    place-items: center;
}

.map-placeholder i {
    font-size: 42px;
}

.map-placeholder p {
    max-width: 460px;
    color: var(--text-gray);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.page-section.cta-section .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.page-section.cta-section .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(320px, 75vw);
        background: var(--white);
        box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
        padding: 120px 32px 40px;
        margin: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        overflow-y: auto;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu a {
        font-size: 18px;
    }

    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1000;
    }

    .hamburger span {
        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .partnership-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partnership-gallery {
        min-height: 360px;
    }

    .gallery-secondary {
        position: absolute;
        width: 55%;
        right: 10%;
        bottom: -20px;
    }

    .partnership-stats {
        left: 20px;
    }

    .facts-grid,
    .services-grid,
    .process-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content,
    .industries-content,
    .why-us-content,
    .about-lcs-content {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-connector {
        display: none;
    }

    .industries-pillars {
        grid-template-columns: 1fr;
    }

    .industries-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-grid.two-column,
    .content-grid.three-column,
    .cards-grid.three,
    .cards-grid.four,
    .news-grid,
    .resource-grid,
    .step-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-card {
        grid-template-columns: 1fr;
    }

    .inner-hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
    }

    .top-bar-content {
        flex-wrap: nowrap;
        gap: 12px;
    }

    .top-bar-left {
        flex: 1;
        justify-content: center;
        gap: 16px;
    }

    .top-bar-item {
        gap: 6px;
    }

    .top-bar-item:not(.keep-label) .item-label {
        display: none;
    }

    .top-bar-right {
        flex: 1;
        justify-content: center;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .language-menu {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .hero {
        min-height: 100vh;
        padding: 110px 0 130px;
        align-items: flex-end;
    }

    .hero .container {
        width: 100%;
    }

    .hero-content {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.78) 85%
        );
        padding: 32px 20px 36px;
        border-radius: 28px;
        backdrop-filter: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        margin: 0 auto;
        max-width: 95%;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 12px;
        letter-spacing: 0.3px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 18px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 14px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-note {
        font-size: 12px;
        line-height: 1.5;
    }

    .hero-arrow,
    .hero-pagination {
        display: none;
    }

    .hero-mobile-arrows {
        display: flex;
    }

    .section-title {
        font-size: 28px;
    }

    .partnership-gallery {
        min-height: auto;
    }

    .gallery-secondary {
        position: relative;
        width: 80%;
        right: auto;
        bottom: auto;
        margin: -60px auto 0;
    }

    .partnership-stats {
        position: relative;
        left: 0;
        top: auto;
        margin-top: 20px;
    }

    .partnership-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .industries-meta {
        grid-template-columns: 1fr;
    }

    .facts-grid,
    .services-grid,
    .process-grid,
    .benefits-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .play-button {
        right: 5%;
        width: 100px;
        height: 100px;
    }

    .play-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .circular-text {
        width: 100px;
        height: 100px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
    }

    .inner-hero {
        padding: 60px 0 80px;
    }

    .breadcrumb {
        flex-wrap: wrap;
    }

    .inner-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-card {
        padding: 30px;
    }
}
