* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-rendering: optimizeLegibility;
}

body {
    background-color: #f8f9fa;
    color: #343a40;
    font-size: 18px;
    
    width: 100%;
    overflow-x: hidden;
}
.active:after{
    
     background: none repeat scroll 0 0 #43BAFF;
    content: "";
    display: block;
   
    width: 100% !important;
    
    height: 5px;
    
}

#nav {
    background-color: #141D38; /* Navbar color */
    display: flex;
    justify-content: space-between;
    align-items: center; /* Center items vertically */
    padding: 15px 5%; 
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05); /* Navbar shadow */
}
.navbar ul {
    list-style-type: none; /* No bullet points */
    display: flex; 
    gap: 25px; /* Gap between nav items */
}

.navbar li a {
    color: white; 
    text-decoration: none; /* No underline */
    font-weight: 600; 
    padding: 0px 20px;
    padding-bottom:31%;
    transition: color 0.5s, border-bottom 0.5s;
}

ul li a:hover,
ul li a:focus {
    color: #43BAFF; /* Hover and focus color */
    padding-bottom:31%;
  /* Border for hover and focus */
}

.navbar li a {
    font-size: 16px;
    height: 95px;
    margin-top: -10px;
    /* background: #334960; */
    padding-right: 35px;
    color: #FFF;
    text-decoration: none;  
    line-height: 105px;
    display: inline-block;
    cursor: pointer;
}
.navbar li a:after {
    transition: all ease-in-out .2s;
    background: none repeat scroll 0 0 #43BAFF;
    content: "";
    display: block;
    height: 5px;
    width: 0;
}
.navbar li a:hover:after {
    width: 100%;
}
.headimg{
    background-image: url(./images/headimg.jpg);
    background-size: cover;
    height: 30vh;
}
.heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFF;
    margin: 4% 5%;  
    padding: 3% 4%;
    padding-left: 4rem;
    
}

.column img {
    width: 400px;
    height: 320px; 
    border-radius: 5px; 
    transition: transform 0.3s; /* Hover transition */
}

.column img:hover {
    transform: scale(1.05); /* Zoom on hover */
}


.heading {
    margin: 0;  
}

i{
    color:#007bff;
}
.container{
    border: 2px solid black;
}
#menu{
    display:none;
}
#menu-box{
    display: none;
   
}
#menu-box li{
    float: left;
    list-style-type: none;
    display: flex;
    flex-direction: column;
}
#menu-box li a{
    text-decoration: none;
    color: #ffff;
margin-left: 15px;
    cursor: pointer;
    font-size: 10px;
}
#menu-box li a {
   
  
    /* background: #334960; */
    
    /* line-height: 50px; */
    
  
    cursor: pointer;
}
#menu-box li a:after {
    transition: all ease-in-out .2s;
    background: none repeat scroll 0 0 #43BAFF;
    content: "";
    margin-top: 15px;
    display: block;
    height: 5px;
    width: 0;
}
#menu-box li a:hover:after {
    width: 100%;
}
#menu i{
    float: left;
}
@media only screen and (max-width: 600px) {
    .navbar{
        display: none;
    }
    #menu{
        display: flex;
    }
    #menu-box{
        display: none;
    }
.img{
    height: 8vh;
    width: 8vh;
}
.column img {
    width: 100%;
    height: 100%; 
    border-radius: 5px; 
    transition: transform 0.3s; /* Hover transition */
}
h2{
    color: black;
}
p{
    color: black;
}
.column img:hover {
    transform: scale(1.05); /* Zoom on hover */
}
.container {
    padding: 20px;
    flex-direction: column;
    height: 100%;
    margin-bottom: 0;
}

p{
    padding: 15px;
    font-size: 16px;
}
  }