/* Skywork Design Replication CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --sky-red: #e11d48;
    --sky-dark: #0f172a;
    --sky-gray: #64748b;
    --sky-light: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif !important;
}

/* --- Utilities --- */
.text-sky-red {
    color: var(--sky-red) !important;
}

.text-sky-dark {
    color: var(--sky-dark) !important;
}

.bg-sky-red {
    background-color: var(--sky-red) !important;
}

.bg-sky-dark {
    background-color: var(--sky-dark) !important;
}

/* --- Sky Hero Section --- */
.sky-hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.sky-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

/* Red Glow Effect on Right */
.sky-hero-overlay::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.sky-hero-content {
    position: relative;
    z-index: 2;
}

.sky-hero-content p {
	color:#fff !important;
	font-size:18px;
	line-height:1.5rem;
}

.btn-primary .fa-arrow-right {
	    padding: 4px 0 0 10px;
}

section.section.section-height-3 {
    padding: 0.6153846154rem 0 !important;
}

.appear-animation .card {
	border:1px solid #dedede !important;
}

.appear-animation .card:hover {
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	border:1px solid var(--sky-red) !important;
	transition:auto;
}

.sky-hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.sky-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -1px;
    color: #ffffff !important;
}

.sky-hero-title span {
    color: var(--sky-red);
}

.bg-sky-red-btn {
    background-color: var(--sky-red);
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.bg-sky-red-btn:hover {
    background-color: #be123c;
    color: #fff;
    transform: translateY(-2px);
}

.btn-sky-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-sky-outline:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.sky-hero-contact-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.sky-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
}

.sky-contact-item i {
    color: var(--sky-red);
    font-size: 16px;
}

/* --- Sky Services Section --- */
.sky-services-section {
    padding: 100px 0;
    background-color: #fff;
}

.sky-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sky-section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--sky-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.sky-service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.sky-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--sky-red);
}

.sky-icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(225, 29, 72, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--sky-red);
    font-size: 24px;
    transition: all 0.3s ease;
}

.sky-service-card:hover .sky-icon-circle {
    background-color: var(--sky-red);
    color: #fff;
}

.sky-service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--sky-dark);
    margin-bottom: 12px;
}

.sky-service-desc {
    color: var(--sky-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Sky Mission/Vision --- */
.sky-mission-section {
    padding: 20px 0;
    background-color: var(--sky-light);
}

.sky-mission-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sky-mission-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--sky-dark);
    margin-bottom: 20px;
}

.sky-mission-text {
    color: var(--sky-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* --- Sky Advantage --- */
.sky-advantage-section {
    padding: 100px 0;
    background-color: #fff;
}

.sky-feature-item {
    text-align: center;
    padding: 20px;
}

.sky-feature-icon {
    font-size: 48px;
    color: var(--sky-red);
    margin-bottom: 24px;
    display: inline-block;
}

.sky-feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--sky-dark);
    margin-bottom: 16px;
}

/* --- Sky CTA --- */
.sky-cta-section {
    padding: 120px 0;
    background-color: var(--sky-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.sky-cta-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sky-cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    color: #ffffff !important;
}

.sky-cta-btn {
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
}

/* --- Animations --- */
[data-appear-animation="fadeInUpShorter"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-appear-animation="fadeInUpShorter"].appear-animation-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .sky-hero-title {
        font-size: 48px;
    }

    .sky-contact-item {
        justify-content: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .sky-hero-title {
        font-size: 36px;
    }

    .sky-hero-contact-bar {
        position: relative;
        background: var(--sky-dark);
    }
}