﻿    /* LIFE SECTION - UNIQUE STYLING */
    .life{
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(202, 46, 62, 0.15) 100%); */
    background: rgb(42, 39, 39);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .life {
        padding: 60px 15px;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .life {
        padding: 40px 15px;
        min-height: 350px;
    }
}

/* Background decorative elements */
.life::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202, 46, 62, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.life::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(202, 46, 62, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.life .container {
    position: relative;
    z-index: 2;
}

/* Content wrapper for better styling */
.life-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced heading styling */
.life .fw-bold1 {
    position: relative;
    display: inline-block;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .life .fw-bold1 {
        font-size: 45px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .life .fw-bold1 {
        font-size: 32px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
}

/* Decorative line under main heading */
.life .fw-bold1::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #bc9a34, transparent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Subheading styling */
.life .fw-bold {
    display: inline-block;
    font-size: 50px;
    font-weight: 700;
    color: #bc9a34;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .life .fw-bold {
        font-size: 36px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .life .fw-bold {
        font-size: 24px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
}

/* Paragraph styling */
.life p {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 20px 0;
    letter-spacing: 0.5px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .life p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .life p {
        font-size: 12px;
        line-height: 1.5;
        margin: 15px 0;
    }
}

/* Button in life section */
.life .custom-btn {
    margin-top: 30px;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid #bc9a34;
    background: transparent;
    color: #bc9a34;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

    .life .custom-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #bc9a34;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: -1;
    }

    .life .custom-btn:hover {
        color: #fff;
        border-color: #bc9a34;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(202, 46, 62, 0.4);
    }

        .life .custom-btn:hover::before {
            left: 0;
        }

@media (max-width: 768px) {
    .life .custom-btn {
        padding: 12px 35px;
        font-size: 14px;
        margin-top: 25px;
        border: 2px solid #bc9a34;
    }
}

@media (max-width: 480px) {
    .life .custom-btn {
        padding: 10px 25px;
        font-size: 12px;
        margin-top: 20px;
        border: 2px solid #bc9a34;
        letter-spacing: 1px;
    }
}

@media (max-width: 378px) {
    .life .custom-btn {
        padding: 8px 20px;
        font-size: 11px;
        margin-top: 15px;
        border: 2px solid #bc9a34;
        letter-spacing: 0.5px;
        width: 100%;
        max-width: 250px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Decorative accent */
.life-accent {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #bc9a34;
    border-radius: 50%;
    margin: 0 10px;
    opacity: 0.7;
}

@media (max-width: 480px) {
    .life-accent {
        width: 6px;
        height: 6px;
        margin: 0 5px;
    }
}

@media (max-width: 378px) {
    .life-accent {
        width: 5px;
        height: 5px;
        margin: 0 3px;
    }
}

/* LIFE SECTION - UNIQUE STYLING */
