/* History Section */
.history-section {
    width: 100%;
    position: relative;
    padding: 80px 40px;
    background: var(--primary-bg);
    overflow: hidden;
    margin: 0;
}

.history-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(239, 122, 4, 0.2);
    box-shadow: var(--shadow-light);
    transition: transform 0.4s ease;
}

.history-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.history-container h2 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 3.2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInDown 1s ease-out;
}

.history-container p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 35px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.history-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 45px;
    background: var(--btn-gradient);
    color: var(--text-primary);
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.history-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(239, 122, 4, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.history-btn:hover {
    background: linear-gradient(90deg, var(--accent-blue-dark), var(--accent-blue));
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.history-btn:active {
    transform: translateY(2px);
    box-shadow: 0 3px 10px rgba(239, 122, 4, 0.4);
}

/* Background Pulse Effect */
.history-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.25;
    z-index: 0;
    animation: pulse 14s infinite ease-in-out;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .history-section {
        padding: 60px 20px;
    }

    .history-container {
        padding: 35px;
    }

    .history-container h2 {
        font-size: 2.4rem;
    }

    .history-container p {
        font-size: 1.2rem;
    }

    .history-btn {
        padding: 12px 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .history-section {
        padding: 40px 15px;
    }

    .history-container {
        padding: 25px;
    }

    .history-container h2 {
        font-size: 1.2rem; /* Max heading size at 480px */
    }

    .history-container p {
        font-size: 0.8rem; /* Max paragraph size at 480px */
    }

    .history-btn {
        padding: 10px 25px;
        font-size: 0.6rem; /* Max button size at 480px */
    }
}

/* Our Journey Section */
.our-journey-section {
    width: 100%;
    position: relative;
    padding: 80px 40px;
    background: var(--primary-bg);
    overflow: hidden;
    margin: 0;
}

.journey-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(239, 122, 4, 0.2);
    box-shadow: var(--shadow-light);
    transition: transform 0.4s ease;
}

.journey-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.journey-text {
    padding: 20px;
}

.journey-text p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.8;
    animation: fadeInLeft 1s ease-out 0.3s forwards;
    opacity: 0;
}

.journey-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.journey-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.journey-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.4), rgba(239, 122, 4, 0.2));
    border-radius: 16px;
    z-index: 1;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.journey-image:hover .journey-img {
    transform: scale(1.05);
}

.journey-image:hover::before {
    opacity: 0.4;
}

/* Background Pulse Effect */
.our-journey-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.25;
    z-index: 0;
    animation: pulse 14s infinite ease-in-out;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-journey-section {
        padding: 60px 20px;
    }

    .journey-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 35px;
    }

    .journey-text {
        padding: 0;
        text-align: center;
    }

    .journey-text p {
        font-size: 1.2rem;
    }

    .journey-image {
        height: 300px;
        order: 2;
    }
}

@media (max-width: 480px) {
    .our-journey-section {
        padding: 40px 15px;
    }

    .journey-content {
        padding: 25px;
    }

    .journey-text p {
        font-size: 0.8rem; /* Max paragraph size at 480px */
    }

    .journey-image {
        height: 200px;
    }
}

/* Our Values Section */
.our-values-section {
    width: 100%;
    position: relative;
    padding: 80px 40px;
    background: var(--primary-bg);
    overflow: hidden;
    margin: 0;
}

.values-wrapper {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(239, 122, 4, 0.2);
    box-shadow: var(--shadow-light);
    transition: transform 0.4s ease;
}

.values-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.values-wrapper h3 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 2.8rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInDown 1s ease-out;
}

.values-wrapper p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 35px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.values-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 45px;
    background: var(--btn-gradient);
    color: var(--text-primary);
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.values-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(239, 122, 4, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.values-btn:hover::before {
    width: 200%;
    height: 200%;
}

.values-btn:hover {
    background: linear-gradient(90deg, var(--accent-blue-dark), var(--accent-blue));
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.values-btn:active {
    transform: translateY(2px);
    box-shadow: 0 3px 10px rgba(239, 122, 4, 0.4);
}

/* Background Pulse Effect */
.our-values-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.25;
    z-index: 0;
    animation: pulse 14s infinite ease-in-out;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-values-section {
        padding: 60px 20px;
    }

    .values-wrapper {
        padding: 35px;
    }

    .values-wrapper h3 {
        font-size: 2.2rem;
    }

    .values-wrapper p {
        font-size: 1.2rem;
    }

    .values-btn {
        padding: 12px 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .our-values-section {
        padding: 40px 15px;
    }

    .values-wrapper {
        padding: 25px;
    }

    .values-wrapper h3 {
        font-size: 1.2rem; /* Max heading size at 480px */
    }

    .values-wrapper p {
        font-size: 0.8rem; /* Max paragraph size at 480px */
    }

    .values-btn {
        padding: 10px 25px;
        font-size: 0.6rem; /* Max button size at 480px */
    }
}

/* Our Promise Section */
.our-promise-section {
    width: 100%;
    position: relative;
    padding: 80px 40px;
    background: var(--primary-bg);
    overflow: hidden;
    margin: 0;
}

.promise-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(239, 122, 4, 0.2);
    box-shadow: var(--shadow-light);
    transition: transform 0.4s ease;
}

.promise-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.promise-content p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 35px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.promise-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 45px;
    background: var(--btn-gradient);
    color: var(--text-primary);
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.promise-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(239, 122, 4, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.promise-btn:hover {
    background: linear-gradient(90deg, var(--accent-blue-dark), var(--accent-blue));
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.promise-btn:active {
    transform: translateY(2px);
    box-shadow: 0 3px 10px rgba(239, 122, 4, 0.4);
}

/* Background Pulse Effect */
.our-promise-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--pulse-effect);
    opacity: 0.25;
    z-index: 0;
    animation: pulse 14s infinite ease-in-out;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-promise-section {
        padding: 60px 20px;
    }

    .promise-content {
        padding: 35px;
    }

    .promise-content p {
        font-size: 1.4rem;
    }

    .promise-btn {
        padding: 12px 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .our-promise-section {
        padding: 40px 15px;
    }

    .promise-content {
        padding: 25px;
    }

    .promise-content p {
        font-size: 0.8rem; /* Max paragraph size at 480px */
    }

    .promise-btn {
        padding: 10px 25px;
        font-size: 0.6rem; /* Max button size at 480px */
    }
}