@charset "utf-8";
/* CSS Document */

 body{font-family: "Oswald", sans-serif;}
 
    /* Custom navbar styles */
    .navbar-custom {
      background-color: #462b0f; /* Dark brown */
    }

    .navbar-brand img {
      height: 86px;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .dropdown-menu {
      margin-top: 0;
    }

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 20px !important;
    padding-left: 16px !important;
    font-size: 20px !important;
}

   /* Custom navbar styles */
   
   
   
   /* Custom carousal styles */
   
   .carousel-item img {
      transition: transform 0.5s ease-in-out;
    }

    .carousel-item.active img {
      transform: scale(1.1); /* Zoom in */
    }

    .carousel-item:not(.active) img {
      transform: scale(1); /* Zoom out */
    }
   
   
   /* Custom carousal styles */





@keyframes blink {
  0% {
    opacity: 1;
    background-color: yellow;
  }
  50% {
    opacity: 1;
    background-color: sky;
  }
  100% {
    opacity: 1;
    background-color: white;
  }
}


.blinking-div {
  animation: blink 2s infinite;
}


.footerBG{
background-color: #462b0f; /* Dark brown */}


 .counter-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: auto;
        }
        .counter {
            font-size: 3rem;
            font-weight: bold;
        }
		
.countersection{
padding:30px 0px;
margin-top:20px;
margin-bottom:40px;
background-image:url(../image/counter-bg.jpg);
width:100%;
background-repeat:no-repeat;
color:white;}	

.custom-card {
            position: relative;
            overflow: hidden;
            border: none;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .custom-card:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .card-img-overlay {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .custom-card:hover .card-img-overlay {
            opacity: 1;
        }

        .view-more {
            color: #fff;
            font-size: 1.5rem;
            font-weight: bold;
            text-decoration: none;
            background-color: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background-color 0.3s, color 0.3s;
        }

        .view-more:hover {
            background-color: #fff;
            color: #000;
        }	
		
		
		.breadcrumbBar{
background-image:url(../image/breadcrumb-bg.jpg);
background-repeat:no-repeat;
padding:50px 0px;}


#lightboxImage {
            width: 100%;
            
            object-fit: cover;
            margin: 0 auto;
        }