*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Noto Sans Tamil", serif;
}
.carousel-item img{
    object-fit: fill;
}
/* javscript css */
.clip-videos{
    display: none;
    transition: 2s;
}
.clip-close{
    display: none ;
    border: solid red 1px;
}
.clip-videos:hover{
    color: white;
    
}
/* navbar */
nav ul li a{
    text-underline-offset: 10px;
}

/* புகைப்படம் style */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
    margin: 20px 0 ;
}
.gallery img {
    width: 220px;
    height: 200px;
    /* margin: 10px 0; */
    border-radius: 10px;
    
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.gallery img:hover {
    transform: scale(1.05);
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.popup img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}
.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Navigation Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    user-select: none;
}
.left-arrow {
    left: 20px;
}
.right-arrow {
    right: 20px;
}

/* Caption Styles */
.caption {
    color: white;
    font-size: 20px;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
    width: fit-content;
}

@media (max-width:420px){
    table{
        width: 35%;
        font-size:12px ;
    }
    .video{
        width: 99%;

    }
  }
  @media (min-width:700px){
  
    .video{
        width: 49%;

    }
   
  }
  @media (min-width:1020px){
  
    .video{
        width: 24%;
    }
   
  }

@media (max-width:1100px){
    nav ul {
        font-size: 14px;
    }
}




