body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* SECTION */
.company-section {
    padding: 40px 60px;
}

/* HEADING */
.color-move {
    font-size: 45px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;

    background: linear-gradient(90deg,
        #ff0000,#ff7300,#fffb00,#48ff00,#00ffd5,#002bff,#7a00ff,#ff00c8,#ff0000);
    background-size: 400%;
    -webkit-background-clip: text;
    color: transparent;
    animation: colorFlow 6s linear infinite;
}

/* COLOR ANIMATION */
@keyframes colorFlow {
    0% { background-position: 0%; }
    50% { background-position: 200%; }
    100% { background-position: 400%; }
}

/* INTRO */
.intro {
    text-align: center;
    max-width: 900px;
    margin: 20px auto 40px;
    font-size: 18px;
    color: #333;
    line-height: 1.7;
}

/* MAIN CONTENT */
.content-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
}

/* 3D SCENE */
.scene {
    width: 250px;
    height: 350px;
    perspective: 1000px;
}

.elevator {
    width: 250px;
    height: 350px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 6s linear infinite;
}

.side {
    position: absolute;
    width: 250px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.front { transform: translateZ(125px); }
.back  { transform: rotateY(180deg) translateZ(125px); }
.left  { transform: rotateY(-90deg) translateZ(125px); }
.right { transform: rotateY(90deg) translateZ(125px); }

@keyframes rotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* HIGHLIGHTS */
.highlights {
    width: 350px;
}

.highlights h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.highlights ul {
    list-style: none;
    padding: 0;
}

.highlights li {
    font-size: 18px;
    margin: 10px 0;
}

/* WHY CHOOSE US */
.sub-heading {
    text-align: center;
    margin-top: 60px;
    font-size: 32px;
    font-weight: 700;
}

.why-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 25px;
    padding: 0 20px;
}

.why-card {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* MISSION & VISION */
.mission-vision {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    gap: 40px;
    padding: 0 20px;
}

.mission-vision div {
    width: 50%;
    background: #f0f8ff;
    padding: 25px;
    border-radius: 12px;
}

.mission-vision h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

/* SERVICES */
.service-list {
    max-width: 700px;
    margin: 25px auto;
    font-size: 19px;
    line-height: 1.8;
}
