* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.main-container {
    height: 100vh;
    width: 100%;
    background: linear-gradient(to right, orange, #fff, green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img {
    width: 300px;
}

/* <<<<resgined web styles>>> */

/* Navbar Styling */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 1rem;
}

.navbar-brand img {
    height: 45px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin-right: 15px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.social-icons a {
    color: #555;
    font-size: 18px;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #007bff;
}

@media (max-width: 991px) {
    .social-icons {
        margin-top: 10px;
        text-align: center;
    }
}


.lkn {
    color: #fe311a;
    font-size: 28px;
}

.ytb {
    color: #fff;
    background: #007bff;
    padding: 5px;
    font-size: 28px;
}

.insta {
    color: #0d870d;
    font-size: 28px;
}

.knowthefactsbtn {
    color: #fff;
    background: #007bff;
    padding: 10px 20px;
    border-radius: 5px;
}

.image-section {
    padding: 60px 0;
    /* background-color: #f8f9fa; */
}

.image-card {
    text-align: center;
    transition: all 0.3s ease;
}

.image-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-card h5 {
    font-weight: 600;
    color: #333;
}

.imgsize {
    width: -webkit-fill-available;
}

