.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero h1 {
    font-size: 4rem;
    color: #ff7043;
    text-shadow: 0px 0px 15px rgba(255, 112, 67, 0.8);
    animation: fadeIn 2s ease-in-out;
}
.cont{
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
#origin {
    color: #ffffff;
    padding: 80px 10%;
    text-align: center;
}
#origin .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

#origin .left img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease-in-out;
}

#origin .left img:hover {
    transform: scale(1.05);
}

#origin .right {
    flex: 1;
    text-align: left;
}

#origin .right p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
}

@media (max-width: 768px) {
    #origin .content {
        flex-direction: column;
        text-align: center;
    }
    #origin .right {
        text-align: center;
    }
}
values {
    text-align: center;
    padding: 50px;
    background: #121212;
    color: white;
}
.grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
h1 {
    align-items: center;
    justify-content: center;
    text-align: center;
}
.value {
    color: white;
    position: relative;
    width: 300px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease, background 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #7e57c2, #ff7043);
    background-size: 200% 200%;
    background-position: 0% 50%;
}
.value:hover {
    transform: scale(1.1);
    background-position: 100% 50%;
    box-shadow: 0px 0px 30px rgba(255, 112, 67, 0.5);
}
.value::after {
    content: attr(data-desc);
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    padding: 10px;
    background: #333;
    color: white;
    font-size: 14px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    text-align: center;
}
.value:hover::after {
    opacity: 1;
    visibility: visible;
}
.meet-the-team {
    text-align: center;
    padding: 50px 20px;
    color: white;
}
.team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.team-card {
    position: relative;
    width: 250px;
    background: #222;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.team-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 30px rgba(255, 112, 67, 0.5);
}
.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.team-info {
    padding: 15px;
}
.team-info h2 {
    font-size: 20px;
    color: #7e57c2;
}
.team-info p {
    font-size: 14px;
    color: #bbb;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
}
.social-links img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
}
.team-card:hover .social-links {
    opacity: 1;
}
.social-links a:hover img {
    transform: scale(1.2);
}
.timeline {
    text-align: center;
    padding: 50px 20px;
    color: white;
}
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: auto;
}
.timeline-item {
    position: relative;
    padding: 20px;
    margin: 20px 0;
    background: #222;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}
.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #7e57c2;
}
.timeline-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(255, 112, 67, 0.5);
    background: linear-gradient(135deg, #ff7043, #7e57c2);
}
.content {
    font-size: 16px;
    color: white;
    padding: 10px;
}
@media (max-width: 768px) {
    .timeline-container {
        max-width: 90%;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
button {
    background: linear-gradient(135deg, #7e57c2, #ff7043);
    background-size: 200% 200%;
    background-position: 0% 50%;;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s, 0.3s, 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
button:hover {
    background-position: 100% 50%;
    transform: scale(1.05);
    box-shadow: 0px 0px 30px rgba(255, 112, 67, 0.5);
}
button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.join {
    text-align: center;
    padding: 80px 10px;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}
.join::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(126, 87, 194, 0.2) 0%, rgba(30, 30, 30, 1) 100%);
    animation: pulse 6s infinite alternate;
    z-index: -5;
}
.join h1 {
    font-size: 2.8rem;
    color: #ff7043;
    text-shadow: 0px 0px 10px rgba(255, 112, 67, 0.7);
    position: relative;
    z-index: 1;
}
.join p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 10px auto 30px;
    position: relative;
    z-index: 1;
}
.join-button {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ff7043, #7e57c2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(255, 112, 67, 0.4);
}
.join-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 112, 67, 0.6);
}
.join-button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(255, 112, 67, 0.8);
}
.timeline-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.timeline-item {
    display: flex;
    justify-content: center;
}
@keyframes pulse {
    0% {
        transform: rotate(0deg) scale(1);
    }
    100% {
        transform: rotate(360deg) scale(1.1);
    }
}
.industry-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 2fr));
    gap: 30px;
    padding: 40px;
    justify-content: center;
    max-width: 100%;
}
.industry-card {
    position: relative;
    width: 320px;
    height: 160px;
    perspective: 1000px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.industry-card .content {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    backface-visibility: hidden;
    transition: transform 0.5s ease-in-out;
    padding: 20px;
    word-wrap: break-word;
}
.industry-card .front {
    background: linear-gradient(135deg, #ff7043, #7e57c2);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.industry-card .back {
    background: #222;
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.industry-card:hover .front {
    transform: rotateY(180deg);
}
.industry-card:hover .back {
    transform: rotateY(0);
}
.industry-card.flipped .front {
    transform: rotateY(180deg);
}
.industry-card.flipped .back {
    transform: rotateY(0);
}
