/* ================================================================
   MEDGULF CORPORATE INDUSTRIAL — Layout & Components
   Corporate authority design system
   ================================================================ */

/* ---- RESET TEMPLATE OVERRIDES ---- */
.section-space--inner--120 { padding: 100px 0 !important; }
.section-space--inner--100 { padding: 80px 0 !important; }
.section-space--bottom--50 { margin-bottom: 0 !important; }
.bg-gray { background: #F8F9FA !important; }

/* Modern card styling — rounded corners, shadows, hover elevation */
.single-feature-item,
.single-testimonial-item,
.product-card__inner,
.info-card {
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.single-feature-item:hover,
.single-testimonial-item:hover,
.product-card__inner:hover,
.info-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}

/* ================================================================
   SPLIT HERO
   ================================================================ */
.hero-split {
    display: flex;
    min-height: 85vh;
    overflow: hidden;
}

.hero-split__content {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: #fff;
}

.hero-split__inner {
    max-width: 560px;
}

.hero-split__label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #22B8CC;
    margin-bottom: 24px;
    position: relative;
    padding-left: 40px;
}

.hero-split__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: #22B8CC;
}

.hero-split__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #1A7A8A;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-split__subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.hero-split__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-split__visual {
    flex: 0 0 50%;
    position: relative;
    background: #0C3A42;
}

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

.hero-split__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 45, 68, 0.55);
    z-index: 1;
}

/* ================================================================
   CORPORATE BUTTONS
   ================================================================ */
.btn-corp {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 16px 32px;
    border: 2px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-corp--primary {
    background: #1A7A8A;
    color: #fff;
    border-color: #1A7A8A;
}

.btn-corp--primary:hover {
    background: #14616E;
    border-color: #14616E;
    color: #fff;
    text-decoration: none;
}

.btn-corp--outline {
    background: transparent;
    color: #1A7A8A;
    border-color: #1A7A8A;
}

.btn-corp--outline:hover {
    background: #1A7A8A;
    color: #fff;
    text-decoration: none;
}

.btn-corp--white {
    background: #fff;
    color: #1A7A8A;
    border-color: #fff;
}

.btn-corp--white:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    text-decoration: none;
}

.btn-corp--white-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.btn-corp--white-outline:hover {
    background: #fff;
    color: #1A7A8A;
    border-color: #fff;
    text-decoration: none;
}

.btn-corp--teal {
    background: #22B8CC;
    color: #fff;
    border-color: #22B8CC;
}

.btn-corp--teal:hover {
    background: #1A9BB0;
    color: #fff;
    text-decoration: none;
}

/* ================================================================
   STATS STRIP
   ================================================================ */
.stats-strip {
    background: #0C3A42;
    padding: 0;
}

.stats-strip__inner {
    display: flex;
    justify-content: center;
}

.stats-strip__item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.stats-strip__item:last-child {
    border-right: none;
}

.stats-strip__number {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stats-strip__label {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================================
   SECTION HEADERS (Corporate style)
   ================================================================ */
.corp-section {
    padding: 100px 0;
}

.corp-section--gray {
    background: #F8F9FA;
}

.corp-section--dark {
    background: #0C3A42;
    color: #fff;
}

.corp-section__label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #22B8CC;
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.corp-section__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: #22B8CC;
}

.corp-section--dark .corp-section__label {
    color: #22B8CC;
}

.corp-section__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #1A7A8A;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.corp-section--dark .corp-section__title {
    color: #fff;
}

.corp-section__subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
}

.corp-section--dark .corp-section__subtitle {
    color: rgba(255,255,255,0.7);
}

.corp-section__header--center {
    text-align: center;
    margin-bottom: 60px;
}

.corp-section__header--center .corp-section__subtitle {
    margin-left: auto;
    margin-right: auto;
}

.corp-section__header--center .corp-section__label {
    padding-left: 0;
}

.corp-section__header--center .corp-section__label::before {
    display: none;
}

/* ================================================================
   ABOUT PREVIEW (editorial text block)
   ================================================================ */
.about-editorial {
    padding: 100px 0;
    background: #fff;
}

.about-editorial__image {
    overflow: hidden;
}

.about-editorial__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.about-editorial__content {
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-editorial__text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 16px;
}

/* ================================================================
   PRODUCT PORTFOLIO (Vertical sections, not cards)
   ================================================================ */
.product-portfolio {
    padding: 0;
}

.product-section {
    padding: 80px 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.product-section:last-child {
    border-bottom: none;
}

.product-section:nth-child(even) {
    background: #F8F9FA;
}

.product-section__number {
    font-family: 'Montserrat', sans-serif;
    font-size: 100px;
    font-weight: 900;
    color: rgba(26, 122, 138, 0.05);
    line-height: 1;
    position: absolute;
    top: 40px;
    left: 15px;
}

.product-section__image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #fff;
    min-height: 280px;
}

.product-section:nth-child(even) .product-section__image {
    background: #fff;
}

.product-section__image img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.product-section__content {
    padding-left: 40px;
}

.product-section__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1A7A8A;
    margin-bottom: 16px;
}

.product-section__desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-section__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    columns: 2;
    column-gap: 24px;
}

.product-section__list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #555;
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.product-section__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    background: #22B8CC;
}

.product-section__cta {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #22B8CC;
    text-decoration: none;
    border-bottom: 2px solid #22B8CC;
    padding-bottom: 4px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.product-section__cta:hover {
    color: #1A7A8A;
    border-color: #1A7A8A;
    text-decoration: none;
}

/* Reverse layout for even items */
.product-section:nth-child(even) .row {
    flex-direction: row-reverse;
}

.product-section:nth-child(even) .product-section__content {
    padding-left: 0;
    padding-right: 40px;
}

/* ================================================================
   NUMBERED ADVANTAGES
   ================================================================ */
.advantages-section {
    padding: 100px 0;
    background: #fff;
}

.advantage-item {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
}

.advantage-item__number {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: rgba(26, 122, 138, 0.06);
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
}

.advantage-item__content {
    padding-top: 8px;
}

.advantage-item__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A7A8A;
    margin-bottom: 8px;
}

.advantage-item__desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ================================================================
   INDUSTRY SHOWCASES (stacked full-width)
   ================================================================ */
.industry-showcase {
    position: relative;
    padding: 80px 0;
    min-height: 360px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}

.industry-showcase:nth-child(even) {
    background: #F8F9FA;
}

.industry-showcase__tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #22B8CC;
    margin-bottom: 12px;
}

.industry-showcase__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1A7A8A;
    margin-bottom: 12px;
}

.industry-showcase__desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.industry-showcase__apps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.industry-showcase__pill {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #1A7A8A;
    border: 1px solid #d0d5db;
    padding: 6px 14px;
    letter-spacing: 0.3px;
}

/* ================================================================
   EDITORIAL TESTIMONIALS
   ================================================================ */
.testimonials-editorial {
    padding: 100px 0;
    background: #fff;
}

.testimonial-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.testimonial-quote:last-child {
    margin-bottom: 0;
}

.testimonial-quote__mark {
    font-family: Georgia, serif;
    font-size: 80px;
    color: rgba(34, 184, 204, 0.15);
    line-height: 1;
    margin-bottom: -20px;
    display: block;
}

.testimonial-quote__text {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-quote__author {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A7A8A;
}

.testimonial-quote__role {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

.testimonial-divider {
    width: 40px;
    height: 2px;
    background: #22B8CC;
    margin: 0 auto 60px;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.corp-cta {
    padding: 80px 0;
    background: #1A7A8A;
    text-align: center;
}

.corp-cta__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.corp-cta__text {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
}

.corp-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================================
   PAGE HEADERS (inner pages)
   ================================================================ */
.page-header-corp {
    background: #1A7A8A;
    background-size: cover;
    background-position: center;
    padding: 100px 0 70px;
    text-align: center;
    position: relative;
}

.page-header-corp__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.page-header-corp__subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* ================================================================
   INFO BAR (simplified)
   ================================================================ */
.info-bar-corp {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    z-index: 999;
    text-decoration: none;
    transition: transform 0.25s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}

/* ================================================================
   ENHANCED BUTTON ANIMATIONS (Sweep + Shadow)
   ================================================================ */
.btn-corp {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-corp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-corp:hover::before {
    left: 100%;
}

.btn-corp--primary {
    box-shadow: 0 4px 15px rgba(26, 122, 138, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-corp--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 122, 138, 0.35);
}

.btn-corp--outline {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-corp--outline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #1A7A8A;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.btn-corp--outline:hover::after {
    transform: scaleX(1);
}

.btn-corp--outline:hover {
    color: #fff;
    border-color: #1A7A8A;
    box-shadow: 0 6px 20px rgba(26, 122, 138, 0.25);
}

.btn-corp--teal {
    box-shadow: 0 4px 15px rgba(34, 184, 204, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-corp--teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 184, 204, 0.35);
}

.btn-corp--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ================================================================
   ENHANCED STATS (Glow + Line Animation)
   ================================================================ */
.stats-strip__icon {
    font-size: 36px;
    color: #22B8CC;
    margin-bottom: 12px;
    display: block;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stats-strip__item.visible .stats-strip__icon {
    opacity: 1;
    transform: scale(1);
}

.stats-strip__number {
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(34, 184, 204, 0.3);
}

.stats-strip__number::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #22B8CC, transparent);
    transform: translateX(-50%);
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.stats-strip__item.visible .stats-strip__number::after {
    width: 80%;
}

/* ================================================================
   ENHANCED HERO PARALLAX
   ================================================================ */
.hero-split__visual {
    overflow: hidden;
}

/* ================================================================
   PAGE HEADER PATTERN OVERLAY
   ================================================================ */
.page-header-corp {
    position: relative;
    overflow: hidden;
}

.page-header-corp::before {
    content: '';
    position: absolute;
    inset: -50px;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: patternSlide 60s linear infinite;
    z-index: 0;
}

.page-header-corp::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 122, 138, 0.9), rgba(15, 45, 68, 0.95));
    z-index: 1;
}

.page-header-corp > .container {
    position: relative;
    z-index: 2;
}

/* ================================================================
   ENHANCED ADVANTAGE ITEMS
   ================================================================ */
.advantage-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.advantage-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.advantage-item:hover {
    transform: translateX(10px);
}

/* ================================================================
   ENHANCED INDUSTRY SHOWCASES
   ================================================================ */
.industry-showcase {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.industry-showcase.visible {
    opacity: 1;
    transform: translateY(0);
}

.industry-showcase__pill {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

.industry-showcase__pill:hover {
    background: #22B8CC;
    color: #fff;
    border-color: #22B8CC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 184, 204, 0.25);
}

.industry-showcase.visible .industry-showcase__pill:nth-child(1) {
    animation: pillReveal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s backwards;
}
.industry-showcase.visible .industry-showcase__pill:nth-child(2) {
    animation: pillReveal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s backwards;
}
.industry-showcase.visible .industry-showcase__pill:nth-child(3) {
    animation: pillReveal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s backwards;
}
.industry-showcase.visible .industry-showcase__pill:nth-child(4) {
    animation: pillReveal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s backwards;
}
.industry-showcase.visible .industry-showcase__pill:nth-child(5) {
    animation: pillReveal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s backwards;
}

/* ================================================================
   ENHANCED TESTIMONIALS
   ================================================================ */
.testimonial-quote {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.testimonial-quote.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   CLIENT MARQUEE STRIP
   ================================================================ */
.client-marquee {
    background: #fff;
    padding: 80px 0;
    overflow: hidden;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.client-marquee__header {
    text-align: center;
    margin-bottom: 50px;
}

.client-marquee__wrapper {
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.client-marquee__track {
    display: flex;
    gap: 80px;
    animation: marqueeScroll 35s linear infinite;
    will-change: transform;
    width: max-content;
}

.client-marquee__track:hover {
    animation-play-state: paused;
}

.client-marquee__item {
    flex-shrink: 0;
    width: 160px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.client-marquee__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.4s ease;
}

.client-marquee__item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* ================================================================
   ENHANCED ABOUT EDITORIAL
   ================================================================ */
.about-editorial__image {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-editorial__image:hover {
    transform: scale(1.02);
}

.about-editorial__image img {
    transition: transform 0.6s ease;
}

.about-editorial__image:hover img {
    transform: scale(1.05);
}

/* ================================================================
   ENHANCED PRODUCT SECTIONS
   ================================================================ */
.product-section__image {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.product-section:hover .product-section__image {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(26, 122, 138, 0.12);
}

.product-section__image img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-section:hover .product-section__image img {
    transform: scale(1.08);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-split__content {
        flex: none;
        padding: 60px 30px;
    }

    .hero-split__visual {
        flex: none;
        height: 400px;
    }

    .hero-split__title {
        font-size: 38px;
    }

    .stats-strip__inner {
        flex-wrap: wrap;
    }

    .stats-strip__item {
        flex: 0 0 50%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .stats-strip__item:nth-child(2) {
        border-right: none;
    }

    .about-editorial__content {
        padding-left: 0;
        padding-top: 40px;
    }

    .product-section__content {
        padding-left: 0;
        padding-top: 30px;
    }

    .product-section:nth-child(even) .row {
        flex-direction: column;
    }

    .product-section:nth-child(even) .product-section__content {
        padding-right: 0;
        padding-top: 30px;
    }

    .product-section__number {
        font-size: 64px;
    }

    .product-section__list {
        columns: 1;
    }

    .corp-section__title {
        font-size: 32px;
    }

    .corp-cta__title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .hero-split__content {
        padding: 50px 20px;
    }

    .hero-split__title {
        font-size: 30px;
    }

    .hero-split__visual {
        height: 280px;
    }

    .hero-split__actions {
        flex-direction: column;
    }

    .hero-split__actions .btn-corp {
        text-align: center;
    }

    .stats-strip__item {
        flex: 0 0 100%;
        border-right: none;
        padding: 24px 20px;
    }

    .stats-strip__number {
        font-size: 36px;
    }

    .corp-section {
        padding: 60px 0;
    }

    .corp-section__title {
        font-size: 26px;
    }

    .product-section {
        padding: 50px 0;
    }

    .product-section__number {
        display: none;
    }

    .advantage-item__number {
        font-size: 48px;
        width: 50px;
    }

    .testimonial-quote__text {
        font-size: 17px;
    }

    .page-header-corp {
        padding: 80px 0 50px;
    }

    .page-header-corp__title {
        font-size: 32px;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }

    /* Client marquee mobile */
    .client-marquee {
        padding: 50px 0;
    }

    .client-marquee__item {
        width: 120px;
        height: 50px;
    }

    .client-marquee__track {
        gap: 40px;
    }

    /* Disable parallax on mobile */
    .hero-cinematic .hero-split__visual img {
        animation: none;
        transform: none;
    }

    /* Reduce animation distances on mobile */
    .advantage-item,
    .industry-showcase {
        transform: translateY(15px);
    }

    .fade-in { transform: translateY(15px); }
    .fade-in-left { transform: translateX(-15px); }
    .fade-in-right { transform: translateX(15px); }
}

/* ================================================================
   MODERN CARD DESIGN SYSTEM (alnasiyacont-inspired)
   ================================================================ */

/* Round hero visual */
.hero-split__visual {
    border-radius: 0 0 0 40px;
}

/* Round about editorial image */
.about-editorial__image {
    border-radius: 12px;
}

.about-editorial__image img {
    border-radius: 12px;
}

/* Round product section images */
.product-section__image {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-section:hover .product-section__image {
    box-shadow: 0 12px 40px rgba(26, 122, 138, 0.15);
}

/* Round industry pills */
.industry-showcase__pill {
    border-radius: 20px;
}

/* Round testimonial cards */
.testimonial-quote {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-quote:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Round CTA section */
.corp-cta {
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

/* Round contact form card */
.service-details-area [style*="background: #fff; padding: 50px"],
.service-details-area [style*="background: #fff; padding: 40px"] {
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

/* Round contact info cards */
.service-details-area [style*="border-top: 3px solid #22B8CC"] {
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    border-top: 3px solid #22B8CC !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.service-details-area [style*="border-top: 3px solid #22B8CC"]:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}

/* Round the stats strip items */
.stats-strip__item {
    transition: background 0.3s ease;
}

.stats-strip__item:hover {
    background: rgba(255,255,255,0.05);
}

/* Round advantage items */
.advantage-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Image zoom on hover */
.about-editorial__image,
.product-section__image,
.catalog-section__image {
    overflow: hidden;
}

.about-editorial__image:hover img,
.product-section:hover .product-section__image img {
    transform: scale(1.05);
}

/* Smooth all interactive elements */
a, button, .btn-corp, input, select, textarea {
    transition: all 0.3s ease;
}

/* Rounded form inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    border-radius: 0 !important;
    transition: border-color 0.3s ease !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-bottom-color: #22B8CC !important;
}

/* WhatsApp float rounded */
.whatsapp-float {
    border-radius: 50%;
}

/* Round FAQ items on hover */
.faq-question h5 {
    transition: color 0.3s ease;
}

/* Page header subtle gradient enhancement */
.page-header-corp {
    background: linear-gradient(135deg, #1A7A8A 0%, #0C3A42 100%);
}

/* Mobile menu button */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #1A7A8A;
    margin: 5px auto;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-navigation__nav--style3 nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        border-radius: 0 0 12px 12px;
        z-index: 1000;
        padding: 20px 0;
    }

    .header-navigation__nav--style3 nav.mobile-open {
        display: block;
    }

    .header-navigation__nav--style3 nav > ul {
        flex-direction: column !important;
    }

    .header-navigation__nav--style3 nav > ul > li {
        border-bottom: 1px solid #f0f0f0;
    }

    .header-navigation__nav--style3 nav > ul > li > a {
        display: block;
        padding: 12px 25px !important;
    }

    .header-navigation__nav--style3 nav > ul > li:last-child {
        border-bottom: none;
    }

    .header-navigation-wrapper--style3 {
        position: relative;
    }

    .navigation-top--style3 {
        display: none !important;
    }
}

/* ================================================================
   FULL-SCREEN HERO SLIDER
   ================================================================ */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 58, 66, 0.85) 0%, rgba(26, 122, 138, 0.6) 100%);
    z-index: 1;
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
}

.hero-slide__label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #22B8CC;
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1px solid rgba(34, 184, 204, 0.4);
    border-radius: 30px;
}

.hero-slide__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-slide__subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slide__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-corp--whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.btn-corp--whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-corp--whatsapp i {
    font-size: 18px;
}

/* Hero Slide Animations */
.fade-up-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.swiper-slide-active .fade-up-item:nth-child(1) { transition-delay: 0.2s; }
.swiper-slide-active .fade-up-item:nth-child(2) { transition-delay: 0.5s; }
.swiper-slide-active .fade-up-item:nth-child(3) { transition-delay: 0.8s; }
.swiper-slide-active .fade-up-item:nth-child(4) { transition-delay: 1.1s; }

.swiper-slide-active .fade-up-item {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Pagination */
.hero-pagination {
    bottom: 40px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #22B8CC;
    transform: scale(1.3);
}

/* Slow zoom effect on background */
.swiper-slide-active .hero-slide {
    animation: heroSlowZoom 8s ease-out forwards;
}

@keyframes heroSlowZoom {
    from { background-size: 100% auto; }
    to { background-size: 110% auto; }
}

/* ================================================================
   PRODUCT CATEGORY CARDS (Grid)
   ================================================================ */
.category-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(26, 122, 138, 0.2);
    text-decoration: none;
}

.category-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f0f4f5;
    padding: 0;
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-card:hover .category-card__image img {
    transform: scale(1.1);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 122, 138, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-card__overlay {
    opacity: 1;
}

.category-card__content {
    background: #fff;
    padding: 20px;
    text-align: center;
}

.category-card__content i {
    display: none;
}

.category-card:hover .category-card__content i {
    transform: scale(1.2);
}

.category-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1A7A8A;
    margin: 0;
}

/* ================================================================
   WHY CHOOSE US CARDS (Icon cards)
   ================================================================ */
.why-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1A7A8A, #22B8CC);
    transition: width 0.4s ease;
}

.why-card:hover::before {
    width: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(26, 122, 138, 0.15);
}

.why-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(34, 184, 204, 0.08);
    transition: all 0.4s ease;
}

.why-card__icon i {
    font-size: 36px;
    color: #1A7A8A;
    transition: all 0.3s ease;
}

.why-card:hover .why-card__icon {
    background: #1A7A8A;
    transform: scale(1.1);
}

.why-card:hover .why-card__icon i {
    color: #fff;
}

.why-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A7A8A;
    margin-bottom: 12px;
}

.why-card__desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ================================================================
   INDUSTRY IMAGE CARDS (with dark overlay)
   ================================================================ */
.industry-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    margin-bottom: 24px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    text-decoration: none;
}

.industry-card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform 0.6s ease;
}

.industry-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.industry-card:hover .industry-card__image,
.industry-card:hover .industry-card__img {
    transform: scale(1.1);
}

.industry-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 58, 66, 0.85) 0%, rgba(12, 58, 66, 0.2) 50%, transparent 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.industry-card:hover .industry-card__overlay {
    background: linear-gradient(to top, rgba(26, 122, 138, 0.9) 0%, rgba(26, 122, 138, 0.4) 60%, transparent 100%);
}

.industry-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    z-index: 2;
}

.industry-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.industry-card__text {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-card__text {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   TESTIMONIAL CAROUSEL CARDS
   ================================================================ */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.testimonial-card {
    text-align: center;
    padding: 50px 40px;
    background: #f5f9fa;
    border-radius: 16px;
    position: relative;
}

.testimonial-card__mark {
    font-family: Georgia, serif;
    font-size: 80px;
    color: rgba(34, 184, 204, 0.2);
    line-height: 1;
    margin-bottom: -15px;
    display: block;
}

.testimonial-card__text {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-card__author {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1A7A8A;
}

.testimonial-card__role {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

.testimonial-pagination {
    bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: #1A7A8A;
    width: 30px;
    border-radius: 5px;
}

/* ================================================================
   CTA BACKGROUND OVERLAY
   ================================================================ */
.corp-cta {
    background-size: cover;
    background-position: center;
    position: relative;
}

.corp-cta__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 122, 138, 0.92) 0%, rgba(12, 58, 66, 0.95) 100%);
    z-index: 1;
}

/* ================================================================
   HERO SLIDER RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
    .hero-fullscreen {
        height: 80vh;
        min-height: 500px;
    }
    .hero-slide {
        height: 80vh;
        min-height: 500px;
    }
    .hero-slide__title {
        font-size: 38px;
    }
    .hero-slide__subtitle {
        font-size: 16px;
    }
    .industry-card {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .hero-fullscreen {
        height: 70vh;
        min-height: 450px;
    }
    .hero-slide {
        height: 70vh;
        min-height: 450px;
    }
    .hero-slide__title {
        font-size: 28px;
    }
    .hero-slide__label {
        font-size: 11px;
        letter-spacing: 2px;
    }
    .hero-slide__subtitle {
        font-size: 14px;
    }
    .hero-slide__actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-slide__actions .btn-corp {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .category-card__image {
        height: 150px;
    }
    .category-card__content {
        padding: 15px;
    }
    .category-card__title {
        font-size: 14px;
    }
    .industry-card {
        height: 180px;
    }
    .industry-card__title {
        font-size: 16px;
    }
    .why-card {
        padding: 30px 20px;
    }
    .testimonial-card {
        padding: 30px 20px;
    }
    .testimonial-card__text {
        font-size: 16px;
    }
}

/* ================================================================
   INDUSTRY IMAGE STRIP — Horizontal scroll with hover effects
   ================================================================ */
.industry-strip {
    overflow: hidden;
    background: #0C3A42;
}

.industry-strip__track {
    display: flex;
    width: 100%;
}

.industry-strip__item {
    flex: 1;
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

.industry-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(60%);
    transition: filter 0.5s ease, transform 0.6s ease;
}

.industry-strip__item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.industry-strip__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 58, 66, 0.85) 0%, rgba(12, 58, 66, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px 20px;
    transition: background 0.4s ease;
}

.industry-strip__item:hover .industry-strip__overlay {
    background: linear-gradient(to top, rgba(26, 122, 138, 0.85) 0%, rgba(26, 122, 138, 0.2) 50%, transparent 100%);
}

.industry-strip__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(10px);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.industry-strip__item:hover .industry-strip__label {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 991px) {
    .industry-strip__item {
        height: 200px;
    }
    .industry-strip__label {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .industry-strip__track {
        flex-wrap: wrap;
    }
    .industry-strip__item {
        flex: 0 0 50%;
        height: 160px;
    }
}

/* ================================================================
   PARALLAX BREAK — Full-width image with text overlay
   ================================================================ */
.parallax-break {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.parallax-break__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 58, 66, 0.88) 0%, rgba(26, 122, 138, 0.75) 100%);
    z-index: 1;
}

.parallax-break__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.parallax-break__subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .parallax-break {
        padding: 80px 20px;
        background-attachment: scroll;
    }
    .parallax-break__title {
        font-size: 28px;
    }
    .parallax-break__subtitle {
        font-size: 15px;
    }
}

/* ================================================================
   HOW WE WORK — Process Steps
   ================================================================ */
.process-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.process-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 58, 66, 0.92) 0%, rgba(9, 31, 37, 0.95) 100%);
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 30px 15px;
    position: relative;
}

.process-step__number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(34, 184, 204, 0.15);
    line-height: 1;
    margin-bottom: 10px;
}

.process-step__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(34, 184, 204, 0.12);
    transition: all 0.4s ease;
}

.process-step__icon i {
    font-size: 28px;
    color: #22B8CC;
    transition: all 0.3s ease;
}

.process-step:hover .process-step__icon {
    background: #22B8CC;
    transform: scale(1.1);
}

.process-step:hover .process-step__icon i {
    color: #fff;
}

.process-step__image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
    opacity: 0.85;
    transition: all 0.4s ease;
}

.process-step:hover .process-step__image {
    opacity: 1;
    transform: scale(1.03);
}

.process-step__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.process-step__desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Process step connector line */
.process-steps .col-lg::after {
    content: '';
    position: absolute;
    top: 80px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: rgba(34, 184, 204, 0.3);
}

.process-steps .col-lg:last-child::after {
    display: none;
}

@media (max-width: 991px) {
    .process-section {
        background-attachment: scroll;
    }
    .process-steps .col-lg::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-section {
        padding: 70px 0;
    }
    .process-step__number {
        font-size: 36px;
    }
}

/* ================================================================
   PROJECT / APPLICATION SHOWCASE CARDS
   ================================================================ */
.project-card {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.project-card__image {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 12px;
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-card:hover .project-card__image img {
    transform: scale(1.1);
}

.project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 58, 66, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-card__overlay {
    opacity: 1;
}

.project-card__caption {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.project-card:hover .project-card__caption {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .project-card__image {
        height: 200px;
    }
    .project-card__overlay {
        opacity: 1;
    }
}

/* ================================================================
   PEOPLE & TRUST SECTION
   ================================================================ */
.people-trust {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.people-trust__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 58, 66, 0.92) 0%, rgba(9, 31, 37, 0.95) 100%);
    z-index: 1;
}

.people-trust__stats {
    display: flex;
    gap: 30px;
    margin-top: 24px;
}

.people-trust__stat {
    text-align: center;
}

.people-trust__stat strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #22B8CC;
    line-height: 1.2;
}

.people-trust__stat span {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.people-trust__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 400px;
}

.people-trust__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.people-trust__img:hover {
    transform: scale(1.03);
}

.people-trust__img--large {
    grid-row: 1 / 3;
}

@media (max-width: 991px) {
    .people-trust {
        background-attachment: scroll;
    }
    .people-trust__grid {
        height: 300px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .people-trust {
        padding: 70px 0;
    }
    .people-trust__stats {
        gap: 20px;
    }
    .people-trust__stat strong {
        font-size: 24px;
    }
    .people-trust__grid {
        height: 250px;
    }
}

/* ================================================================
   ABOUT PAGE — Image Collage
   ================================================================ */
.about-image-collage__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 15px;
    height: 480px;
    position: relative;
}

.about-image-collage__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.about-image-collage__img:hover {
    transform: scale(1.03);
}

.about-image-collage__img--main {
    grid-row: 1 / 3;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.about-image-collage__img--secondary {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.about-image-collage__stat {
    background: linear-gradient(135deg, #1A7A8A 0%, #0C3A42 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.about-image-collage__stat strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #22B8CC;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}

.about-image-collage__stat span {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .about-image-collage__grid {
        height: 350px;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .about-image-collage__grid {
        height: 280px;
        grid-template-columns: 1fr 1fr;
    }
    .about-image-collage__stat strong {
        font-size: 28px;
    }
}

/* ================================================================
   ABOUT PAGE — Vision/Mission Cards
   ================================================================ */
.about-vm-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(26, 122, 138, 0.18);
}

.about-vm-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.about-vm-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-vm-card:hover .about-vm-card__image img {
    transform: scale(1.08);
}

.about-vm-card__icon {
    position: absolute;
    bottom: -28px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #1A7A8A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(26, 122, 138, 0.3);
    transition: all 0.3s ease;
}

.about-vm-card:hover .about-vm-card__icon {
    background: #22B8CC;
    transform: scale(1.1);
}

.about-vm-card__icon i {
    font-size: 26px;
    color: #fff;
}

.about-vm-card__content {
    padding: 40px 30px 30px;
}

.about-vm-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1A7A8A;
    margin-bottom: 12px;
}

.about-vm-card__text {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 767px) {
    .about-vm-card__image {
        height: 180px;
    }
    .about-vm-card__title {
        font-size: 18px;
    }
}

/* ================================================================
   ABOUT PAGE — Value Cards with Images
   ================================================================ */
.about-value-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: calc(100% - 30px);
}

.about-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(26, 122, 138, 0.18);
}

.about-value-card__image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.about-value-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-value-card:hover .about-value-card__image img {
    transform: scale(1.08);
}

.about-value-card__content {
    padding: 30px 25px;
    text-align: center;
}

.about-value-card__icon {
    width: 60px;
    height: 60px;
    margin: -50px auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1A7A8A;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(26, 122, 138, 0.3);
    transition: all 0.3s ease;
}

.about-value-card:hover .about-value-card__icon {
    background: #22B8CC;
    transform: scale(1.1);
}

.about-value-card__icon i {
    font-size: 28px;
    color: #fff;
}

.about-value-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A7A8A;
    margin-bottom: 10px;
}

.about-value-card__text {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 767px) {
    .about-value-card__image {
        height: 160px;
    }
}

/* ================================================================
   ABOUT PAGE — Goal Image
   ================================================================ */
.about-goal-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    height: 100%;
}

.about-goal-image__main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-goal-image:hover .about-goal-image__main {
    transform: scale(1.05);
}

.about-goal-image__badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(135deg, #1A7A8A 0%, #22B8CC 100%);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(26, 122, 138, 0.4);
}

.about-goal-image__badge i {
    font-size: 28px;
    color: #fff;
}

.about-goal-image__badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .about-goal-image__main {
        height: 350px !important;
    }
    .about-goal-image {
        margin-bottom: 40px;
    }
}

/* ================================================================
   ABOUT PAGE — Checklist
   ================================================================ */
.about-checklist__item {
    display: flex;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.about-checklist__item:last-child {
    border-bottom: none;
}

.about-checklist__item > i {
    font-size: 22px;
    color: #1A7A8A;
    margin-right: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-checklist__item:hover > i {
    color: #22B8CC;
    transform: scale(1.2);
}

.about-checklist__item strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.about-checklist__item p {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}
