html body {
	margin:0px;
}
/*
@font-face {
    font-family: 'GothamBook';
    src: url('font/GothamBook.ttf') format('truetype');
    font-weight: 400; 
    font-style: normal;
}

@font-face {
    font-family: 'Gotham-BookItalic';
    src: url('font/Gotham-BookItalic.otf') format('opentype'); 
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'GothamMedium';
    src: url('font/GothamMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'GothamMediumItalic';
    src: url('font/GothamMediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham-Bold';
    src: url('font/Gotham-Bold.otf') format('opentype'); 
    font-weight: 700;
    font-style: normal;
}

*/

body {
    font-family:'Gotham', sans-serif;
	font-size: 1em; /* 1em is equal to the browser's default font size */
	margin-left: 15px;
	margin-right: 15px;
	margin-top:0px;
	margin-bottom:0px;
 }
 
 
.font12mmBold {
font-size: 1.45em;
font-weight: 700;
font-family: 'Gotham-Bold';
}

.font10mmBold {
font-size: 1.35em;
font-weight: 700;
font-family: 'Gotham-Bold';

}

.font10mmItalic {
font-size: 1.35em;
font-weight: 400;
font-style: italic;
font-family: 'Gotham-BookItalic';
}


.font9mmMedium {
font-size: 1.25em;
font-weight: 500;
font-family: 'GothamMedium';
}

.font8mmBold {
font-size: 1.1em;
font-weight: 700;
font-family: 'Gotham-Bold';
}

.font8mmMedium {
font-size: 1.1em;
font-weight: 500;
font-family: 'GothamMedium';
}

.font8mmItalic {
font-size: 1.1em;
font-weight: 400;
font-style: italic;
font-family: 'Gotham-BookItalic';
} 
.font8mmNormal {
font-size: 1.1em;
font-weight: 400;
font-family: 'GothamBook';
} 
.font7mmNormal {
font-size: 0.95em;
font-weight: 400;
font-family: 'GothamBook';
}

.font7mmMedium {
font-size: 0.95em;
font-weight: 500;
font-family: 'GothamMedium';
}

.font7mmItalic {
font-size: .90em;
font-weight: 400;
font-style: italic;
font-family: 'Gotham-BookItalic';
}


.font6mmItalic {
font-size: 0.85em;
font-weight: 400;
font-style: italic;
font-family: 'Gotham-BookItalic';
}

.font6mmNormal {
font-size: 0.85em;
font-weight: 400;
font-family: 'GothamBook';
}

.font6mmMedium {
font-size: 0.85em;
font-weight: 500;
font-family: 'GothamMedium';
}

.font5mmNormal {
font-size: 0.80em;
font-weight: 400;
font-family: 'GothamBook';
}




.body-container
{
margin-top: 100px; /* Adjust this value to create space below the header */
margin-left:50px;
margin-right:50px;
}
/*Header Css */
/*Header Css */
        .header {
			width: 100%;
			height: 100px;
			
			/*background: linear-gradient(to bottom, rgba(0, 28, 45, 1) 0%, rgba(255, 255, 255, 0));*/
			
			background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20.56%, rgba(255,255,255, 0) 100%), linear-gradient(to bottom, rgba(0, 28, 45, 1) 20.56%, rgba(255,255,255, 0) 100%);
			background-blend-mode: screen;
			display: flex;
			justify-content: space-between;
			align-items: top;
			 position: fixed; /* Add this to create a stacking context */
			z-index: 2;  /* Add a higher z-index value to keep the header on top */
			top:0;
			
		}
        .logo {
            margin-left: 20px;
            color: white;
			margin-top:5px;
			
        }
		.logoText {
		display: inline-block;
		margin-top: 20px;
		font-size: 1em; /* font size as needed 8mm */
		font-weight: 500; /* font weight medium */
		color: white;
		}
			.logoSubText {
		vertical-align: middle;
		text-align:center;
		font-size: 0.5em; /* font size as needed 6mm */
		font-weight: 400; /* font weight book */
	letter-spacing:1em; /* Adjust the letter-spacing value */
    margin-right: 0.5em; /* Adjust the margin value for additional space */
		 
		}
        .menu {
            margin-right: 20px;
        }

        .menu ul {
            list-style: none;
            padding: 0;
            display: flex;
			position:relative;
        }

        .menu li {
            margin-right: 30px;
            font-size: 1.0em; /* font size as needed 7mm */
			font-weight: 500; /* font weight medium */
         /*   position: relative;*/
            opacity: 0.6;
        }

        .menu li a.menuItem {
            color: #fff;
            text-decoration: none;
        }

        .menu li.highlighted {
            opacity: 1;
        }
		
        .submenu {
            display: block;
			visibility:visible;
            position: absolute;
            top: 100%;
            right: 0px;
			float:right;
			padding: 10px;
			font-size: 0.9em; 
			font-weight: 500; 
			color: #fff;
			
        }
		
		.submenu ul {
    white-space: nowrap; 
    list-style: none;
    padding: 0;
    display: flex;
	flex-direction:row;
}


}
       .menu li:hover .submenu {
            display: block;
			visibility:visible;
        }

		


        .submenu li a {
            margin-right: 0px;
            font-size: 0.9em; /* font size as needed 6mm */
			font-weight: 500; /* font weight medium */
            opacity: 0.7;			/* 100% opacity for submenu items */
			color:#fff;
			text-decoration: none;
		}
		
		
		.submenu li a.highlighted {
            opacity: 1;
			color:#fff;
			border-bottom:2px solid;
			padding-bottom:2px;
			
			
        }		
		
		.submenu li:hover {
			border-bottom:2px solid;
			padding-bottom:2px;
			
			
		}
		/*Header Css */



/* Home Carousel*/
/* Home Carousel*/

.homeimage-container {
    position: relative;
    max-width: 100%;
    height: 100vh; /* Adjust the height as needed */
    overflow: hidden;
}

.homeimage-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 6s;

}

.homeimage-container img:nth-child(1) {
    opacity: 1;
    animation: image-fade 35s linear infinite;
}

.homeimage-container img:nth-child(2) {
    animation: image-fade 35s linear 5s; /* Delay the second image by 2 seconds */
}

.homeimage-container img:nth-child(3) {
    animation:image-fade 35s linear 10s; /* Delay the third image by 4 seconds */
}
.homeimage-container img:nth-child(4) {
    animation: image-fade 35s linear 15s; /* Delay the third image by 4 seconds */
}

.homeimage-container img:nth-child(5) {
    animation: image-fade 35s linear 20s; /* Delay the third image by 4 seconds */
}
.homeimage-container img:nth-child(6) {
       animation: image-fade 35s linear 25s; /* Delay the third image by 4 seconds */
}
.homeimage-container img:nth-child(7) {
       animation: image-fade 35s linear 30s;/* Delay the third image by 4 seconds */
}.homeimage-container img:nth-child(8) {
       animation: image-fade 35s linear 35s; /* Delay the third image by 4 seconds */
}
 0%, 6.25% { opacity: 0; } /* Fade in */
    6.25%, 18.75% { opacity: 1; } /* Hold */
    18.75%, 25% { opacity: 1; } /* Fade out */
    25%, 31.25% { opacity: 0; } /* Fade in */
    31.25%, 43.75% { opacity: 1; } /* Hold */
    43.75%, 50% { opacity: 1; } /* Fade out */
    50%, 56.25% { opacity: 0; } /* Fade in */
    56.25%, 68.75% { opacity: 1; } /* Hold */
    68.75%, 75% { opacity: 1; } /* Fade out */
    75%, 81.25% { opacity: 0; } /* Fade in */
    81.25%, 93.75% { opacity: 1; } /* Hold */
    93.75%, 100% { opacity: 1; } /* Fade out */


  .slider-icons {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 3; /* Add a higher z-index to keep the icons above the images */
			pointer-events: none;
        }

      


.slider-icons span {
    width: 30px;
    height: 3px; /* Adjust the height as needed for the dash */
    background-color: #3a3a3a;
    display: inline-block;
    margin: 0 10px;
    cursor: pointer;
}

.slider-icons span.active {
    background-color: #fff;
}

		
/* Thumbnail */
.image-group {
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }
		

        .image-group a {
            max-width: 23%;
         /*   margin: 7px 5px 7px 5px; /* Add spacing between images */
        }

        .image-group img {
            max-width: 100%;
            height: auto;
        }

.thumbnail-container {
      position: relative;
      display: inline-block;
      overflow: hidden;
      margin: 1px 2px 1px 2px;
	  max-width:24%;
    }

    .thumbnail {
      transition: filter 0.3s;
	  max-width: 100%;
	  filter: blur(0); /* Initial blur value */
    height: auto;
    }

    .thumbnail:hover {
      filter: blur(15px);
    }

    .overlay {
      position: absolute;
    top: 49%;
    left: 50%;
    transform: translate(-49%, -50%);
    width: 100%;
    height: 95%;
    background: rgba(0, 0, 0, 0.5); /* Black translucent background */
    color: #fff; /* Text color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    }

    .thumbnail-container:hover .overlay {
      opacity: 1;
    }

.icon {
    position: relative;
    /*top: 8px;
    left: 50%;*/
    transform: translateX(-5%);
    width: 50px; /* Adjust the size of the icon */
    height: 50px;
    /* Add any icon styling here, e.g., background-image, background-size, etc. */
}
/*Scrolling image Css */


	/* Image Fade-in Effect CSS */
	.images {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	/*.image-container {
		margin-top: 50px; /* Adjust the margin to match the height of your header 
		height: 70vh;
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
	}
	*/
	
	.image-container a{
		height: 90vh;
		display: flex;
		align-items: center;
		/*justify-content: center;
		overflow: hidden;*/
	}
.image-container {
  width: 100%;
  height: 70vh; /* 70% of the viewport height */
  margin: 0 auto; /* Center the container horizontally */
  display: flex;
  flex-direction: column;
  align-items: center;
  /*min-height: 300vh;  Adjust based on the number of images */
}
.scrollImg  {
  margin-top: 70px;
  margin-bottom: 25px;
  width: auto; /* Let the width adjust based on the container */
  height: auto; /* Let the height adjust based on the container */
  max-width: 100%; /* Limit the width to 100% of the container */
  max-height: 90%; /* Limit the height to 100% of the container */
  opacity: 0.25;
  transition: opacity 0.1s;
}

.center {
  opacity: 1 !important; /* Highest opacity for the center image */
}
/*img.center {
  border: 2px solid #00f; /* Change border style to highlight the active image 
}*/

.image-item {
  position: relative;
   height: 90vh;
  
}

	

.image-text {
 position: absolute;
  bottom: 2%; /* Adjust the bottom spacing as needed */
  left: 1%; /* Adjust the left spacing as needed */
  color: #FFF;
  font-size: 1.5vw; /* Use viewport width units for responsive font size */
  opacity: 1;
  font-weight:400;
  transition: opacity 0.5s;
  font-family:GothamBook;
  background-color: rgba(0, 0, 0, 0.3); /* Adjust the alpha value for the desired translucency */
  padding: 10px; /* Adjust padding as needed */
  border-radius: 0px; /* Optional: Add rounded corners */
}
.image-item:hover .image-text {
  opacity: 1;
}

	.fade-in-image {
		height: 100%;
		width: 80%;
		opacity: 0;
            animation: fadeIn 4s ease-in-out forwards;
	}
	

	@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  
  20%
   {
    opacity: 0.2;
  }
  
  45% {
    opacity: 0.5;
  }
  75%{
   
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
/*Scrolling image Css */		
					
/* Site details */


.carousel-container {
    flex: 70%; /* Adjust the percentage based on your layout */
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column; /* Stack carousel and description vertically */
}

.description {
    padding: 20px;
  /*  background-color: #f2f2f2;*/
    box-sizing: border-box;
flex: 30%;
 text-align: justify;
}

/* Add other necessary styling for your description */

.group_container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    width: 100%;
};.,

/* Add other styles as needed */



.carousel {
    width: 100%;
    display: flex;
}

.carousel-item {
    flex: 0 0 100%;
    display: none;
    transition: opacity 0.5s;
}

.carousel-item.active {
    display: block;
    opacity: 1;
}

.carousel-item img {
    max-width: 90%;
    max-height: 30%;
	object-fit: cover;
	 margin-left: 20px;

}

/*
.description h2 {
    font-size: 24px;
    margin: 0;
}

.description p {
    font-size: 16px;
*/

/*Carousel*/		
/*about us*/

.profile-container {
    position: relative;
    width: 250px; /* Set the width and height according to your image size */
    height: 250px;
}

.profile {
    max-width: 100%;
    max-height: 100%;
}

.profile-container::before {
    content: "";
    position: absolute;
    top: 8px; /* Adjust these values to control the 3D effect */
    left: -1px;
    right: 2px;
    bottom: 6px;
    box-shadow: 13px 13px 0px 0px #001c2d;/* Adjust the shadow color and size */

}


.text-layout {
    display: flex;
    align-items: center;
    width: 100%; /* Adjust the width as needed */
    padding: 10px;
	 text-align: justify;
}

.left-text, .right-text {
    flex: 1;
    padding: 0,0,0,20px;
	margin: 0 20px;
}

 .profile-text {
	margin: 0 20px;
    flex: 1;
    padding: 20px;
}

.separator {
    width: 2px; /* Adjust the separator width as needed */
    height: 100px; /* Adjust the separator height as needed */
    background-color: #333; /* Adjust the separator color as needed */
    margin: 0 10px;
}

/*about us*/

/*Services*/


/*Services*/

/*Contact US*/

.left-icon {
    padding: 10px;
}

.left-icon img {
    max-width: 43px; /* Adjust the maximum width as needed */
    max-height: 43px; /* Adjust the maximum height as needed */
    display: block;
	margin-right: 10px; /* Add some spacing between the icon and text */
            float: left; /* Float the icon to the left */
        
}
/*Contact Us*/


.toggle-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.toggle-menu span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 6px 2px;
}

/* Media Query for smaller screens */
@media screen and (max-width: 768px) {
	
	
.description {
    padding: 20px;
    
    box-sizing: border-box;
	flex-basis:auto;
	 text-align: justify;

}

 .toggle-menu {
        display: flex;
    }

    .menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
      /*  background-color: rgba(0, 28, 45, 1);*/
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
		margin-left:10px;
		margin-right:10px;
    }

    .menu.show-menu {
        display: flex;
    }

    .submenu {
        position: absolute;
        float: none;
        width: 100%;
        box-sizing: border-box;
		
    }
.submenu ul {
    white-space:inherit;
    list-style: none;
    padding: 0;
    display: flex;
flex-direction:row;
}
.menu li {
        margin-right: 5PX;
        margin-bottom: 10px;
        opacity: 1;
    }
	 .submenu li a {
            margin-right: 0px;
            /* font size as needed 6mm */
			 /* font weight medium */
            opacity: 0.7;			/* 100% opacity for submenu items */
			color:#3a3a3a;
			text-decoration: none;
		}
    .body-container {
 /*       margin-top: 180px; /* Adjust the margin to make space for the fixed header */
    }
	.header {
		position:relative;
	width:100%;	
	height:180px;
	}
	.font7mmNormal{
		font-size: 0.85em;
font-weight: 400;
font-family: 'GothamBook';

		
	}
	.font7mmMedium {
    font-size: 0.80em;
    font-weight: 500;
	font-family: 'GothamMedium';	
	}
	
	
    .logo {
        margin-left: 20px;
        margin-top: 10px; /* Adjust margin for spacing */
    }

    .logoText {
        margin-top: 12px; /* Adjust margin for spacing */
    }

    .logoSubText {
        margin-right: 0; /* Reset margin for smaller screens */
    }
	.menu li a.menuItem {
            color: #fff;
            text-decoration: none;
        }
		
	.image-item {
    position: relative;
    height: 40vh;
	
}	.image-container a{
		height: 40vh;
		
	}
}



@media screen and (min-width: 768px) and (max-width: 1000px) {
	.image-item {
    position: relative;
    height: 40vh;
	
}	.image-container a{
		height: 40vh;
		
	}
}

@media screen and (min-width: 1000px) and (max-width: 1024px) {
.image-item {
    position: relative;
    height: 70vh;
}
.image-container a{
		height: 70vh;
		
	}
}