/*-------------------footer Box--------------------*/

.main-section {
    width: 914px;
    height: 875px;
    padding: 20px;
    box-sizing: border-box;
    background: #111;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    
}
.main-section h1{
    text-align: center;
    color: #0ff;
}

h4 {
    text-align: center;
    color: #0ff;
}

.content-box {
    width: 834px;
    height: 144px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
    margin: 20px auto;
    color: #ffdd57; /* Warm golden yellow for better contrast */
    gap:20px;
}

.two-column-box {
    display: flex;
    width: 834px;
    height: 378px;
    margin: 40px auto;
    gap: 20px;
}

.description-box {
    width: 407px;
    height: 378px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
    text-align: left;
    color: #ffdd57; /* Warm golden yellow for better contrast */
}

.image-box {
    width: 407px;
    height: 378px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-box img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.extra-content {
    margin-top: 40px;
    text-align: center;
    color: #ffdd57; /* Warm golden yellow for better contrast */
}

.center-button {
    display: block;
    margin: 30px auto;
    padding: 10px 20px;
    background: #0ff;
    color: #111;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.center-button:hover {
    background: #00aaff;
}

/*------------Footer 4 Column--------------*/

.fourcolumns {
    max-width: 1450px;
    margin: 20px auto;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 234, 255, 0.7);
    backdrop-filter: blur(15px);
    text-align: left;
    
}

.fourcolumns h1 {
    font-size: 2.0rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00eaff;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(0, 234, 255, 0.8);
    font-family: 'Orbitron', sans-serif;
    text-align: center;
}

/* Grid Layout for Columns */
.columns-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

/* Individual Column Styling */
.columns-container > div {
    position: relative;
    background: rgba(25, 25, 25, 0.8);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.5);
    transition: background 0.3s ease, transform 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
}

.columns-container > div:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.8);
}

/* Headings Inside Columns */
.fourcolumns h5 {
    font-size: 1.2rem;
    color: #ff00ff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

/* List Styling */
.fourcolumns ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fourcolumns li {
    padding: 8px 0;
    transition: background 0.3s ease;
}

.fourcolumns li:hover {
    background: rgba(0, 234, 255, 0.1);
}

/* Link Styling */
.fourcolumns a {
    color: #00eaff;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.fourcolumns a:hover {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}
/* View More Styling */
.vmorenew {
    text-align: center;
}

/* Targeting the <a> inside .vmore */
.vmorenew a {
    color: #ff4500; /* Example color (Orange-Red) */
    background-color: #000; /* Example background (Black) */
    padding: 10px 15px; /* Adds spacing inside the button */
    display: inline-block; /* Ensures padding applies properly */
    border-radius: 5px; /* Adds rounded corners */
    text-decoration: none; /* Removes underline */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect for better UI */
.vmorenew a:hover {
    background-color: #ff4500; /* Change background on hover */
    color: #fff; /* White text on hover */
}


/*---------------------Footer Navigation------------------*/

    .footenavigation {
        background: rgba(20, 20, 20, 0.9);
        color: #fff;
        font-family: 'Poppins', sans-serif;
        padding: 40px 20px;
        border-top: 2px solid rgba(0, 255, 255, 0.7);
    }

    .footer-desc-container {
        text-align: center;
        margin-bottom: 30px;
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 28px;
        font-weight: bold;
        color: #0ff;
        text-shadow: 0 0 10px #0ff;
    }

    .logo img {
        height: 40px;
    }

    .footer-desc-container p {
        max-width: 600px;
        margin: 10px auto;
        font-size: 14px;
        opacity: 0.8;
    }

    .social-icons {
        margin-top: 10px;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

  .social-icons a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(0, 255, 255, 0.2);
        color: #0ff;
        text-decoration: none;
        font-size: 18px;
        transition: 0.3s;
    }

    .social-icons a:hover {
        background: rgba(240, 0, 255, 0.5);
        color: #f0f;
    }
    .footer-nav-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 20px;
    }

    .footer-column {
        flex: 1;
        min-width: 200px;
    }

    .footer-column h5 {
        font-size: 16px;
        margin-bottom: 15px;
        color: #0ff;
        text-shadow: 0 0 5px #0ff;
        border-bottom: 1px solid rgba(0, 255, 255, 0.5);
        padding-bottom: 5px;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

    .footer-column ul li {
        margin: 8px 0;
        font-size: 14px;
        opacity: 0.8;
        transition: 0.3s;
    }

    .footer-column ul li a {
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }

    .footer-column ul li a:hover {
        color: #f0f;
    }
    
     .footer-copyright {
        background: rgba(0, 0, 0, 0.8);
        color: #888;
        text-align: center;
        font-size: 12px;
        padding: 10px 0;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
      .footer-subscribe {
        margin-top: 20px;
    }

    .footer-subscribe input {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 5px;
        margin-top: 10px;
        font-size: 14px;
    }

    .footer-subscribe button {
        margin-top: 10px;
        padding: 10px 20px;
        border: none;
        background: #0ff;
        color: #000;
        font-size: 14px;
        cursor: pointer;
        transition: 0.3s;
    }

    .footer-subscribe button:hover {
        background: #f0f;
        color: #fff;
    }
