/* Base reset */
* {
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(135deg, #e0f7e9, #c3cfe2);
  
    overflow-x: hidden !important;
}

/* Container for both sides */
.container-fluid {
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Horizontally center the content */
    height: 100vh; /* Cover the full screen height */
    padding: 0;
}

/* Left side with logo */
.left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}
.img-fluid{
    margin-top: 7rem;
}
.left .logo img {
    margin-top: 10rem;
    width: 100%;
    height: auto;
}

/* Right side with content */
.right {
    flex: 1.5;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* General styling for the "coming-soon" text */
.coming-soon {
    font-size: 4rem;
    color: #2e3b4e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: fadeIn 2s ease-out forwards, slideInFromLeft 2s ease-out forwards;
}

/* Fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Slide-in animation from left */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100vw) translateY(-50%);
    }
    100% {
        transform: translateX(-50%) translateY(-50%);
    }
}

/* Styling for finance details */
.finance-details {
    font-size: 1.8rem;
    color: #2e3b4e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.5;
    opacity: 0;
    animation: fadeInFromRight 1.5s ease-out forwards;
    text-align: left;
}

/* Animation for fade-in and slide-in from right to left */
@keyframes fadeInFromRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Adding a gradient text effect */
.finance-details {
    margin-top: 10rem;
    background: linear-gradient(45deg, black, green);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Styling for feature list */
.features {
    margin-top: 50px;
    opacity: 0;
    animation: fadeInFromRight 2s ease-out forwards;
    display: flex;
    flex-direction: column;
    align-items: left;
}

.feature {
    font-family: 'Courier New', Courier, monospace;
    margin-top: 1rem;
    font-size: 1.9rem;
    color: #2e3b4e;
    margin: 10px 0;
    opacity: 0;
    animation: fadeInFromRight 2s ease-out forwards;
    text-align:left;
    font-weight: 600;
}

.feature-icon {
    margin-top: -1rem;
    width: 55px;
    height: auto;
    margin-right: 10px;
    object-fit: contain;
}

/* Delay animation for each feature */
.feature:nth-child(1) {
    animation-delay: 0.3s;
}

.feature:nth-child(2) {
    animation-delay: 0.6s;
}

.feature:nth-child(3) {
    animation-delay: 0.9s;
}

/* Basic Neu-button Styling */
.neu-button {
   
    margin-top: -1rem;
    background-color: #e0e0e0;
    border-radius: 50px;
    box-shadow: inset 4px 4px 10px #bcbcbc, inset -4px -4px 10px #ffffff;
    color: #4d4d4d;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px 1rem;
    transition: all 0.2s ease-in-out;
    border: 2px solid rgb(206, 206, 206);
    display: inline-block;
    text-align: center;
}

.neu-button:hover {
    box-shadow: inset 2px 2px 5px #bcbcbc, inset -2px -2px 5px #ffffff, 2px 2px 5px #bcbcbc, -2px -2px 5px #ffffff;
}

.neu-button:focus {
    outline: none;
    box-shadow: inset 2px 2px 5px #bcbcbc, inset -2px -2px 5px #ffffff, 2px 2px 5px #bcbcbc, -2px -2px 5px #ffffff;
}

/* Mobile Responsiveness */
@media screen and (max-width: 1200px) {
    .container-fluid {
        flex-direction: column;
    }

    .coming-soon {
        font-size: 3rem;
    }

    .finance-details {
        font-size: 1.3rem;
    }

    .contact-number {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .container-fluid {
        flex-direction: column;
    }

    .coming-soon {
        font-size: 2.2rem;
    }

    .finance-details {
        font-size: 1.1rem;
    }

    .features {
        margin-top: 20px;
    }

    .contact-number {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .container-fluid {
        flex-direction: column;
    }

    .left .logo img {
        width: 50%;
    }

    .coming-soon {
        font-size: 2rem;
    }

    .finance-details {
        margin-top:13px;
        font-size: 1rem;
        text-align: left;
    }

    .features {
        margin-top: 15px;
        
    }
      
    .feature{
        font-size: 1.5rem;

    }
    .contact-number {
        font-size: 1rem;
    }
}

@media screen and (max-width: 360px) {
    .container-fluid {
        flex-direction: column;
    }

    .left .logo img {
        width: 60%;
    }

    .coming-soon {
        font-size: 1.8rem;
    }

    .finance-details {
        margin-top: 10px;
        font-size: 0.9rem;
        text-align: left;
    }

    .features {
        margin-top: 12px;
    }
    
    .feature {
        font-size: 1.4rem;
    }

    .contact-number {
        font-size: 0.9rem;
    }
}
