﻿body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.navbar {
    padding-top: 30px;
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .navbar .navbar-brand img {
        height: 60px;
        border-radius: 20%;
    }

.login-button{
    border:none;
    padding:10px 20px;
    background-color:black;
    color:white;
    border-radius:5px;
    font-weight:700;

}

.main-container {
    background-image: url('../images/LanderImgFinal.png');
    background-size: cover;
    background-position: center;
}

.hero-section {
    height: 87vh;
    display: flex;
    justify-content: center;
    align-items:center;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items:center;
    width:100%;
}

.login-box {
    width: 300px;
    padding: 40px;
    padding-bottom: 60px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

    .login-box:hover {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); 
    }

    .login-box h2 {
        margin-bottom: 20px;
        font-size: 24px;
        color: #333;
        font-weight: 600;
    }

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

    .input-group label {
        display: block;
        margin-bottom: 5px;
        color: #555;
        font-size: 14px;
    }

    .input-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        box-sizing: border-box;
        background-color: rgba(255, 255, 255, 0.7); 
        transition: border-color 0.3s ease, background-color 0.3s ease;
    }

        .input-group input:focus {
            border-color: #5c82e2; 
            background-color: #d1e0ff;
            outline: none;
        }

    .input-group.remember-me {
        display: flex;
        align-items: center;
    }

        .input-group.remember-me label {
            margin-left: 5px;
            font-size: 14px;
        }

.btn {
    width: 100%;
    padding: 10px;
    background-color: #0069d9; 
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #0056b3; 
    }


.login-footer {
    display: flex;
    flex-direction: column;
}

    .login-footer a {
        padding-top: 10px;
        text-align: left;
        text-decoration: none;
        font-size: small;
    }

@media (max-width: 1200px) {
    .login-box {
        width: 70%;
        padding: 60px;
        padding-bottom: 80px;
    }
    .input-group {
        margin-bottom: 60px;
    }

        .input-group label {
            font-size: 20px;
        }

        .input-group input {
            padding: 15px;
            font-size: 16px;
        }

    .btn {
        padding: 12px;
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .login-box {
        width: 95%;
    }
}

/******** Heading Box Css ********/

.hero-box {
    text-align: center;
    border: 1px solid #ddd;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    background-color: #fff; 
    width: 100%;
    height:200px;
}


/* Headline Styling */
.hero-box h1 {
    font-size: 24px;
    margin: 10px 0;
    color: #333;
}

.hero-box .highlight {
    color: #ff9900; /* Highlight color */
    font-weight: bold;
}

/* Subtext Styling */
.hero-box p {
    margin: 10px 0;
    font-size: 16px;
    color: #555;
}

.hero-box .sub-text {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

/* Button Styling */
.explore-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff; /* Blue background */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

    .explore-button:hover {
        background-color: #0056b3; /* Darker blue on hover */
    }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-box h1 {
        font-size: 20px;
    }

    .hero-box p {
        font-size: 14px;
    }

    .explore-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}


/*************** Heading setion in welcome page ******************/
.heading-section-cantainer {
    padding: 50px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.description-section {
    color: black;
    padding: 30px;
    border-radius: 30px
}

    .description-section h1 {
        font-size: 30px;
        text-align: center;
    }

    .description-section p {
        font-size: 20px;
        text-align: center;
    }

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.grid-item {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-bottom: 4px solid;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-weight: 500;
}

    .grid-item:nth-child(1) {
        border-bottom-color: red;
    }

    .grid-item:nth-child(2) {
        border-bottom-color: yellow;
    }

    .grid-item:nth-child(3) {
        border-bottom-color: blue;
    }

    .grid-item:nth-child(4) {
        border-bottom-color: lightseagreen;
    }

    .grid-item:nth-child(5) {
        border-bottom-color: hotpink;
    }

    .grid-item:nth-child(6) {
        border-bottom-color: orange;
    }

    .grid-item:nth-child(7) {
        border-bottom-color: blueviolet;
    }

    .grid-item:nth-child(8) {
        border-bottom-color: greenyellow;
    }

    .grid-item:nth-child(9) {
        border-bottom-color: orange;
    }

    .grid-item:nth-child(10) {
        border-bottom-color: blueviolet;
    }

    .grid-item:nth-child(11) {
        border-bottom-color: greenyellow;
    }

    .grid-item:nth-child(12) {
        border-bottom-color: orange;
    }

    .grid-item:nth-child(13) {
        border-bottom-color: blueviolet;
    }

    .grid-item:nth-child(14) {
        border-bottom-color: greenyellow;
    }
/****************** Footer section in welcome page ******************/
.footer {
    background-color: #c8d3e4;
    padding: 80px 20px;
    text-align: left;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 20px;
}

.footer-column h2 {
    margin-top: 0;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-column ul li {
        margin-bottom: 10px;
    }

        .footer-column ul li a {
            color: black;
            text-decoration: none;
            transition: color 0.3s;
        }

            .footer-column ul li a:hover {
                color: ghostwhite;
            }

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
}

    .footer-bottom p {
        margin: 0;
    }

@media (max-width: 768px) {
    .footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}
