body {
    background-image: url("background image.jpeg");
    margin: 0%;
}
*{
    text-decoration: none;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 0 30px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;

}

.logo {
    width: 100px;
}

.logo img {
    height: 200px; 
    width: auto;
    padding-top: 20px;
}

ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li a {
    line-height: 80px;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul li a:hover {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
}

.homeimage{
    width: 500px;
    height: auto;
}
.main-vi {
    position: relative;
    width: 100%;
    height: 100vh; /* Make the video container full-screen */
}

.main-vi video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the video covers the whole container */
}

.logo-img {
    position: absolute;
    top: 50%; /* Position vertically in the middle */
    left: 50%; /* Position horizontally in the middle */
    transform: translate(-50%, -50%); /* Adjust to center the logo exactly */
    z-index: 10; /* Ensure the logo appears above the video */
    width: 300px; /* Set the logo width */
    height: auto; /* Maintain the aspect ratio */
}

#blog{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
}
.blog-heading{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.blog-heading span {
    color: #666;
    font-size: 1.8rem;

}
.blog-heading h3{
    font-size: 4.4rem;
     

}
.blog-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
    flex-wrap: wrap;
    
     

}
.blog-box{
    width:520px;
    background-color: #ffffff;
    border: 1px solid #ececec;
    margin:20px;
    
    
}
.blog-image{
    width: 100%;
    height: auto;

}
.blog-image img{
    width: 520px;
    height: 600px;
    object-fit: cover;
    object-position: center;
}
.blog-text{
    padding: 30px;
    width: 520px;
    display: flex;
    flex-direction: column;
    text-align: center;
    
}
.blog-text span{
    color: black;
    font-size: 1.4rem; 
}
.blog-text .blog-link{
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow:0.7px 0.8px rgba(128, 15, 0, 0.869);
    text-decoration: underline;
}
.blog-text .blog-link:hover{
    color: deeppink;
    transition: all ease;
    transform: scale(1.07);


}
.blog-text .blog-link {
    font-size: 1.2rem; /* Slightly smaller text size */
    font-weight: bold; /* Make the text bold */
    text-decoration: none;
    color: #fff; /* Default white text */
    background-color: #000; /* Black background */
    padding: 8px 16px; /* Adjust padding for a smaller button */
    border-radius: 5px; /* Rounded corners */
    text-align: center; /* Center text inside the button */
    display: inline-block; /* Keeps the button inline */
    transition: all 0.3s ease; /* Smooth transition */
    margin: 0 auto; /* Center horizontally */
}

.blog-text {
    text-align: center;
    font-size: 30px;
    padding: 3px;
     
}

.blog-text .blog-link:hover {
    color: #000; /* Black text on hover */
    background-color: #fff; /* White background on hover */
    transform: scale(1.1); /* Slightly enlarge the button on hover */
    border: 1px solid #000; /* Optional border for emphasis */
}
.blog-box {
    width: 520px;
    background-color: #ffffff;
    border: 1px solid #ececec;
    margin: 20px;
    border-radius: 12px; /* Rounded corners for the box */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for scaling and shadow */
    border-radius: 5px;
}

.blog-box:hover {
    transform: scale(1.06); /* Scale the box on hover */
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.2); /* Add a stronger shadow on hover */
}
awards-section {
    text-align: center;
    padding: 40px;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}
.awards-gallery {
    display: flex;
    gap: 60px;
    animation: scroll-loop 20s linear infinite;
}
.awards-heading {
    font-size: 36px;
    color: #324556;
    text-align: center;
    margin-bottom: 30px;
}
.awards-gallery-wrapper {
    display: flex;
    gap: 0;
    animation: scroll-seamless 20s linear infinite;
}
.award-img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    background-color: #000000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    padding: 12px;
}
@keyframes scroll-seamless {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6));
    }
}
footercontainer {
    width: 97%;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.footercontent {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.footernav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footernav ul li {
    margin: 0 10px;
}

.footernav ul li a {
    color: black;
    text-decoration: none;
    font-size: 1.1em;
    opacity: 0.6;
    transition: 0.5s;
}

.footernav ul li a:hover {
    opacity: 1;
}

.social {
    display: flex;
}

.social a {
    text-decoration: none;
    margin: 0 15px;
    border-radius: 50%;
}

.social a i {
    font-size: 2em;
    color: black;
    opacity: 0.9;
    transition: transform 0.3s, opacity 0.3s;
}

.social a:hover i {
    transform: scale(1.2);
    opacity: 1;
}

.footerbottom {
    text-align: center;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin-top: 20px;
    font-size: 1.1em;
}




