  /* Custom CSS for hover effect */
 /*    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
      display: block;
    }

    /* Optional: Adjust dropdown position when hovering
    .navbar-nav .nav-item.dropdown:hover .nav-link {
		background-color: rgb(69, 70, 129);
		color:#FFF !important;
	
    }
 */ /*
    .dropdown-menu {
      display: none;
	  --bs-dropdown-bg: rgb(69, 70, 129);
    }
    .dropdown-item {
     color:white;
    } */
	.zoom-text {
	  font-size: 0.875rem;
      font-weight: normal;
      display: inline-block;
      transition: transform 0.3s ease-in-out;
      transform-origin: left; /* Ensures zoom starts from the left */
    }

    .zoom-text:hover {
      transform: scaleX(1.1); /* Stretch the text horizontally */
    }
    
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
    
    
    /*
	.video-container {
      width: 100% !important;   Full width of the container
      height: 100% !important;  Optional: full height if you want to fill the screen 
      position: relative !important;
    }
	
	.video-container video {
		width: 100% !important;
		height: 550px !important;
		object-fit: fill !important;
	}
	*/
	
	
	.custom-logo{		
		width:80px !important;
		height:80px !important;
	}
	
	
		.carousel-container2 {
		  position: relative;
		  width: 100%;
		  overflow: hidden;
		  margin: 0 auto;
		}

		.carousel2 {
		  display: flex;
		  transition: transform 0.5s ease-in-out;
		}

		.carousel2 ul {
		  display: flex;
		  padding: 0;
		  margin: 0;
		}

		.carousel2 li {
		  list-style: none;
		  flex: 0 0 25%; /* 4 items visible at once */
		}

		.carousel2 img {
		  width: 100%;
		  height: auto;
		}
		
		
		.carousel-container3 {
		  position: relative;
		  width: 100%;
		  overflow: hidden;
		  margin: 0 auto;
		}

		.carousel3 {
		  display: flex;
		  transition: transform 0.5s ease-in-out;
		}

		.carousel3 ul {
		  display: flex;
		  padding: 0;
		  margin: 0;
		}

		.carousel3 li {
		  list-style: none;
		  flex: 0 0 25%; /* 4 items visible at once */
		}

		.carousel3 img {
		  width: 100%;
		  height: auto;
		}

		/* Buttons in the middle of the carousel */
		.d-flex2 {
		  position: absolute;
		  top: 50%;
		  left: 0;
		  right: 0;
		  transform: translateY(-50%);
		  display: flex;
		  justify-content: space-between;
		  width: 100%;
		  z-index: 1; /* Ensure buttons are above carousel */
		}

		.pointer3 {
		  cursor: pointer;
		  color: white;
		  /* font-size: 2rem; */
		  padding: 10px;
		  background-color: rgba(0, 0, 0, 0.5); /* Optional: Add a transparent black background */
		  /* border-radius: 50%;
		  transition: background-color 0.3s ease; */
		}

		.pointer3:hover {
		  background-color: rgba(0, 0, 0, 0.8);
		}
		
		.parent3{
			display:flex;	
			flex-wrap: wrap;
			align-items: center;
		}
		.pointer2 {
		  cursor: pointer;
		  color: white;
		  /* font-size: 2rem; */
		  padding: 10px;
		  background-color: rgba(0, 0, 0, 0.5); /* Optional: Add a transparent black background */
		  /* border-radius: 50%;
		  transition: background-color 0.3s ease; */
		}

		.pointer2:hover {
		  background-color: rgba(0, 0, 0, 0.8);
		}
		
		.parent2{
			display:flex;	
			flex-wrap: wrap;
			align-items: center;
		}
		 
		 .child21{
			height:60px;
			width:15%;
			text-align:center;
		 }	
		 .child22{
			height:60px;
			width:45%;
			text-align:center;
		 }
		 
		 #lg2{
			display:flex;
			background-color: rgba(225, 225, 225,0.7);
			flex-shrink: 15;
			align-self: self-end;	
			justify-content:center;
			align-items:center;
			height: 2.6rem;
		} 
				
		#inpt2{
			display:flex;
			background-color: rgba(210,221,0,0.7);
			flex-grow: 32;
			align-self: self-end;	
			justify-content:space-between;
			align-items:center;
			height: 2.6rem;
		}
		
		 /* Custom styling for the social icons */
		.social-icons a {
		  display: block;
		  text-decoration: none;
		  color: #fff;
		  background-color: #007bff;
		  width: 50px;
		  height: 50px;
		  margin-bottom: 10px;
		  border-radius: 50%;
		  display: flex;
		  align-items: center;
		  justify-content: center;
		  transition: background-color 0.3s ease;
		}
		.social-icons a:hover {
		  background-color: #0056b3;
		}
		
		.pointer{
			cursor:pointer;
		}
		
/* Define the width and height of the scrollbars */
    /* Vertical Scrollbar */
    ::-webkit-scrollbar {
      width: 5px; /* width of vertical scrollbar */
      height: 1px; /* height of horizontal scrollbar */
    }

    /* Define the style of the scrollbar thumb (the draggable part) */
    ::-webkit-scrollbar-thumb {
      background-color: #888; /* Gray color */
      border-radius: 10px;
    }

    /* Define the style of the scrollbar track (the part the thumb slides along) */
    ::-webkit-scrollbar-track {
      background-color: #f1f1f1; /* Light gray */
      border-radius: 10px;
    }

    /* Add hover effect for the scrollbar thumb */
    ::-webkit-scrollbar-thumb:hover {
      background-color: #555; /* Darker gray on hover */
    }

    /* Apply some content to make the scrollbar appear */
    .content {
      height: 300px;
      width: 100%;
      overflow: auto;
    }

    .inner-content {
      height: 600px;
      background: linear-gradient(to bottom, #ff7e5f, #feb47b);
    }
	
.borderline{
	border-bottom-style: solid;
	border-width: thick
}	
	/* Animated Shadow Effect on Hover */
.dropdown-menu {
  display: none;
  position: absolute; 
  min-width: 160px;
  border: 1px solid #ddd;
  border-radius: 8px;
  z-index: 1;
  margin-top: 2px;
  padding: 10px;
  transition: box-shadow 0.3s ease-in-out; /* Add transition */
}

.dropdown:hover .dropdown-menu {
  display: block;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4), 0 3px 12px rgba(0, 0, 0, 0.2); /* Hover shadow */
}

.fixed-top-adjustment{
	background-color: rgba(0,0,0,0.5); 
	top: 93.001px;
	z-index: 1049;
}

@media (max-width: 468px) {
	.logo-text1 {
		font-size: 10px !important;
	}
	.custom-logo{		
		width:40px !important;
		height:40px !important;
	}
	.fixed-top-adjustment{
		background-color: rgba(0,0,0,0.5); 
		top: 63.001px !important;
		z-index: 1049;
	}
	.implnk{
		font-size:8px !important;
	}
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Styles for very small phones */
  .logo-text1 {
    font-size: 11px !important;
  }
  .custom-logo{		
		width:50px !important;
		height:50px !important;
	}
	.fixed-top-adjustment{
		background-color: rgba(0,0,0,0.5); 
		top: 63.001px !important;
		z-index: 1049;
	}
	.implnk{
		font-size:8px !important;
	}
}

/* Small devices (phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Styles for standard smartphones */
  .logo-text1 {
    font-size: 12px !important;
  }
  .custom-logo{		
		width:60px !important;
		height:60px !important;
	}
	.fixed-top-adjustment{
		background-color: rgba(0,0,0,0.5); 
		top: 63.001px !important;
		z-index: 1049;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Styles for tablets and phablets */
  .logo-text1 {
    font-size: 13px !important;
  }
  .custom-logo{		
		width:70px !important;
		height:70px !important;
	}
	.fixed-top-adjustment{
		background-color: rgba(0,0,0,0.5); 
		top: 82.551px !important;
		z-index: 1049;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  /* Styles for larger screens */
  .logo-text1 {
    font-size: 25px !important;
  }
  .custom-logo{		
		width:80px !important;
		height:80px !important;
	}
	.fixed-top-adjustment{
		background-color: rgba(0,0,0,0.5); 
		top: 93.001px !important;
		z-index: 1049;
	}
}
