/* ===========================
   HERO SECTION
   =========================== */

/* Full Width Section - Break out of container */
.crosslinks-hero-section {
    display: block !important; /* FIX: prevent flex inheritance issues */
    float: none !important;    /* FIX: prevent floating problems */
    width: 100vw !important;   /* FIX: maintain full width */
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;

    position: relative;
    min-height: 600px;
    height: 85vh;
    max-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Image */
.crosslinks-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.crosslinks-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crosslinks-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.95) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(30, 41, 59, 0.4) 100%);
}

/* Diagonal Blue Accent - Moved left edge to the right */
.crosslinks-hero-angle-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(14, 165, 233, 0.9) 100%);
    transform: skewX(-15deg);
    transform-origin: top right;
    z-index: 2;
}

.crosslinks-hero-angle-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    width: 100px;
    height: 100%;
    background: inherit;
}

/* Container - Constrained content */
.crosslinks-hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Content Wrapper */
.crosslinks-hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Content */
.crosslinks-hero-content {
    flex: 1;
    max-width: 600px;
    padding-left: 20px;
    border-left: 4px solid #0066CC;
}

/* Badge */
.crosslinks-hero-badge {
    display: inline-block;
    color: #0ea5e9;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Title */
.crosslinks-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
}


.crosslinks-hero-title h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 5px;
}


.crosslinks-hero-content h3 {
    font-size: 24px;
    font-weight: 500; /* medium weight */
    line-height: 1.4;
    color: #ffffff;
    margin: 16px 0 20px;
    max-width: 720px;
letter-spacing: 0.2px;

}






.crosslinks-hero-title-highlight {
    color: #ffffff;
    display: block;
}

/* Description */
.crosslinks-hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Buttons */
.crosslinks-hero-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.crosslinks-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

/* Primary Button */
.crosslinks-hero-btn-primary {
    background: linear-gradient(135deg, #0066CC 0%, #0ea5e9 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.4);
}

.crosslinks-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.5);
    background: linear-gradient(135deg, #0ea5e9 0%, #0066CC 100%);
}

.crosslinks-hero-btn-primary i {
    transition: transform 0.3s ease;
}

.crosslinks-hero-btn-primary:hover i {
    transform: translateX(5px);
}

/* Video Button */
.crosslinks-hero-btn-video {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.crosslinks-hero-btn-video:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.crosslinks-video-play-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0066CC;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.crosslinks-hero-btn-video:hover .crosslinks-video-play-icon {
    background: #0ea5e9;
    transform: scale(1.1);
}

.crosslinks-video-play-icon i {
    font-size: 14px;
    margin-left: 2px;
}

/* Right Image */
.crosslinks-hero-image {
    flex: 0 0 auto;
    position: relative;
    z-index: 4;
}

.crosslinks-hero-person-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Responsive Design */
@media (max-width: 1024px) {
    .crosslinks-hero-content-wrapper { gap: 40px; }
    .crosslinks-hero-title { font-size: 48px; }
    .crosslinks-hero-person-image { max-width: 400px; }
    .crosslinks-hero-angle-accent { width: 50%; }
}

@media (max-width: 768px) {
    .crosslinks-hero-section {
        height: auto;
        min-height: 700px;
        padding: 60px 0;
    }
    .crosslinks-hero-content-wrapper {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    .crosslinks-hero-content {
        padding-left: 0;
        border-left: none;
        border-top: 4px solid #0066CC;
        padding-top: 20px;
    }
    .crosslinks-hero-title { font-size: 38px; }
    .crosslinks-hero-buttons { justify-content: center; }
    .crosslinks-hero-angle-accent {
        width: 100%;
        height: 60%;
        top: auto;
        bottom: 0;
        transform: skewY(-5deg);
        transform-origin: bottom right;
    }
    .crosslinks-hero-angle-accent::before { display: none; }
    .crosslinks-hero-person-image { max-width: 350px; }
}

@media (max-width: 480px) {
    .crosslinks-hero-section { min-height: 650px; }
    .crosslinks-hero-title { font-size: 32px; }
    .crosslinks-hero-description { font-size: 15px; }
    .crosslinks-hero-buttons { flex-direction: column; width: 100%; }
    .crosslinks-hero-btn { width: 100%; justify-content: center; }
    .crosslinks-hero-person-image { max-width: 280px; }
}






/* About Section Homepage */

/* About Us Section */
.crosslinks-about-section {
    padding: 80px 0;
    background: #ffffff;
}

.crosslinks-about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.crosslinks-about-grid {
    display: grid;
    grid-template-columns: 200px 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Left Column - Stats */
.crosslinks-about-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.crosslinks-stat-item {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.crosslinks-stat-item:last-child {
    border-bottom: none;
}

.crosslinks-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 8px;
    line-height: 1;
}

.crosslinks-stat-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

/* Middle Column - Single Image */
.crosslinks-about-images {
    position: relative;
    height: 550px;
}

.crosslinks-main-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.crosslinks-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.crosslinks-main-image:hover img {
    transform: scale(1.05);
}

/* Right Column - Content */
.crosslinks-about-content {
    padding-left: 20px;
}

.crosslinks-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.crosslinks-about-badge i {
    font-size: 14px;
}

.crosslinks-about-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 25px;
}

.crosslinks-about-description {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

.crosslinks-about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.crosslinks-about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 15px;
}

.crosslinks-about-list i {
    color: #ff6b35;
    font-size: 8px;
}

/* Founder Section */
.crosslinks-about-founder {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
}

.crosslinks-founder-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f1f5f9;
    flex-shrink: 0;
}

.crosslinks-founder-info {
    flex: 1;
}

.crosslinks-signature {
    height: 50px;
    width: auto;
    margin-bottom: 8px;
    display: block;
}

.crosslinks-founder-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
}

.crosslinks-founder-title {
    font-size: 0.9rem;
    color: #64748b;
}

/* Read More Button */
.crosslinks-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ff6b35;
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.crosslinks-about-btn:hover {
    background: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    gap: 17px;
}

.crosslinks-about-btn i {
    transition: transform 0.3s ease;
}

.crosslinks-about-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .crosslinks-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .crosslinks-about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .crosslinks-stat-item {
        border-bottom: none;
        border-right: 1px solid #e5e7eb;
        padding: 0 20px;
    }
    
    .crosslinks-stat-item:last-child {
        border-right: none;
    }
    
    .crosslinks-about-images {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .crosslinks-about-section {
        padding: 60px 0;
    }
    
    .crosslinks-about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .crosslinks-stat-item {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 20px 0;
    }
    
    .crosslinks-about-images {
        height: 400px;
    }
    
    .crosslinks-about-title {
        font-size: 2.2rem;
    }
    
    .crosslinks-about-content {
        padding-left: 0;
    }
    
    .crosslinks-about-founder {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .crosslinks-signature {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .crosslinks-stat-number {
        font-size: 2.5rem;
    }
    
    .crosslinks-about-title {
        font-size: 1.8rem;
    }
    
    .crosslinks-about-btn {
        width: 100%;
        justify-content: center;
    }
    
    .crosslinks-about-images {
        height: 350px;
    }
}
