:root {
    --theme-color: #0058AB;
    --primary-color: #0FABDC;
    --secondary-color: #EFA666;
    --hover-color: #f6333a;
    --text-primary-color: #222222;
    --text-secondary-color: #596478;
    --heading-color: #1D3B69;
    --heading-color-2: #298D13;
    --bg-color-1: #f2f2f2;
    --bg-color-2: #11101d;
  
  }




.gallery-box{
    overflow: hidden;
}
.gallery-box img{
    width: 100%;
    transition: all 1.5s ease-in;
}
.gallery-box:hover img{
    transform: scale(1.2);
}

.gallery-title h2{
    position: relative;
    font-weight: 600;
    display: block;
    margin-bottom: 2.5rem ;
    padding-bottom: 10px; 

}


.gallery-title h2::after {
    content: '';
    display: block;
    width: 100%; /* width of the line, adjust as needed */
    height: 1px; /* height of the line */
    background-color: #0058AB; /* color of the line */
    margin: 0 auto; 
    margin-top: 5px; /* spacing between the text and line */
}
