@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* Base Content Typography */
.modern-section {
    font-family: 'Inter', sans-serif;
    color: #4a5568;
    background-color: #fafbfc;
    overflow: hidden;
    position: relative;
}

.modern-section h1,
.modern-section h2,
.modern-section h3,
.modern-section h4,
.modern-section h5,
.modern-section h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #1a202c;
    letter-spacing: -0.02em;
}

/* Typography Enhancements */
.text-gradient {
    background: linear-gradient(135deg, #fe5c24 0%, #ff8a3d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Welcome Section */
.welcome-section {
    padding: 120px 0;
    background: radial-gradient(circle at top left, #ffffff 0%, #f4f6f9 100%);
}

.welcome-content-wrapper {
    position: relative;
    z-index: 2;
}

.welcome-heading {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
}

.welcome-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
    font-weight: 400;
}

.welcome-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 10px;
}

.welcome-image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    background: linear-gradient(135deg, #fe5c2422 0%, #fe5c2400 100%);
    border-radius: 20px;
    z-index: 0;
}

.welcome-image {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    object-fit: cover;
    height: 500px;
    width: 100%;
}

.welcome-image:hover {
    transform: translateY(-10px);
}

/* Strengths Section */
.strengths-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #f0f2f5;
}

.section-title-modern {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-modern h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title-modern h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #fe5c24, #ff8a3d);
    border-radius: 4px;
}

.strength-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.8);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fe5c24, #ff8a3d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.strength-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(254, 92, 36, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.3s ease;
}

.strength-card:hover .icon-wrapper {
    background: #fe5c24;
}

.strength-card:hover .icon-wrapper i {
    color: #ffffff;
}

.icon-wrapper i,
.icon-wrapper span {
    font-size: 40px !important;
    line-height: 1;
    color: #fe5c24;
    transition: all 0.3s ease;
}

.strength-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #2d3748;
}

/* Categories Section (Premium Image Cards) */
.categories-section {
    padding: 100px 0;
    background: #fafbfc;
}

.category-card-premium {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
    margin-bottom: 30px;
}

.category-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px 20px;
    transition: background 0.3s ease;
}

.category-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-card-premium:hover img {
    transform: scale(1.08);
}

.category-card-premium:hover .category-overlay {
    background: linear-gradient(to top, rgba(254, 92, 36, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
}

.category-info h6 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.category-info {
    width: 100%;
    text-align: left;
}

.category-card-premium:hover .category-info h6 {
    transform: translateY(0);
}

.category-arrow {
    position: absolute;
    bottom: 30px;
    right: 20px;
    color: #ffffff;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    font-size: 1.2rem;
}

.category-card-premium:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}