

body {
	margin: 0px 10px 0px 10px;
	font-family: Arial, sans-serif;
	box-sizing: border-box;
	line-height: 1.6;
	max-width: auto;
}
#back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	padding: 10px 15px;
	border-radius: 50%;
	text-align: center;
	z-index: 100;
	cursor: pointer;
	display:none;
	transition: transform 0.3s ease-in-out;
}
#back-to-top:hover {
	transform: scale(1.2);
	transition: transform 0.3s ease-in-out;
}
/* Full-width container */
.container {
	width: auto;
	max-width: auto;
	margin: 0 auto;
	padding: 1rem;
}
/* Header */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0rem;
	
	color: white;
}
header .logo img {
	display: flex;
	justify-content: space-between;
	align-items: left;
	padding: 0,0,0,0 px;
	
	/* Dark green */
	color: white;
}
header .site-title {
	font-size: 0rem;
}
/* Navigation Menu Bar */


.menu-bartop {
	background-color: #00008B;
	/* Medium green */
	padding: 0rem;
	font-weight : bold;
}
.menu-bartop nav {
	display: flex;
	justify-content: right;
	gap: 1rem;
}
.menu-bartop nav a {
	color: white;
	text-decoration: none;
	padding: 0.5rem 1rem;
	font-size: 0.6rem;
	border-radius: 4px;
	transition: background-color 0.3s;
}
.menu-bartop nav a:hover {
	background-color: #0047AB;
	
	/* Light green */
}

.menu-bartop2 {
	background-color: #00008B;
	/* Medium green */
	padding: 0rem;
	font-weight : bold;
}
.menu-bartop2 nav {
	display: flex;
	justify-content: right;
	gap: 1rem;
}
.menu-bartop2 nav a {
	color: white;
	text-decoration: none;
	padding: 0.5rem 1rem;
	font-size: 0.6rem;
	border-radius: 4px;
	transition: background-color 0.3s;
}
.menu-bartop2 nav a:hover {
	background-color: #1247AB;
	
	/* Light green */
}



/* Slider Section */
.slider {
	background-color: #a5d6a7;
	/* Light green background */
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	color: #2e7d32;
	/* Dark green text */
	border-radius: 4px;
}
* {
	box-sizing:border-box
}
/* Slideshow container */
.slideshow-container {
	position: relative;
	margin: auto;
}
/* Hide the images by default */
.mySlides {
	display: none;
}
/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}
/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
}
/* Caption text */
.text {
	color: #f2f2f2;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}
/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #191970;
	border-radius: 80%;
	display: inline-block;
	transition: background-color 0.6s ease;
}
.active, .dot:hover {
	background-color: #717171;
}
/* Fading animation */
.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}
@keyframes fade {
	from {
		opacity: .4
}
	to {
		opacity: 1
}
}
/* About Us Section */
.about-us {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	background-color: #717171;
}
.about-us .box {
	background-color: #e8f5e2;
	/* Very light green */
	padding: 1rem;
	border-radius: 4px;
	text-align: center;
	color:#191970;
	/* Medium green */
	font-size: 16px;
	font-family: Verdana, serif;
}
/* Other Data Section */
.other-data {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
.other-data .box {
	background-color: #e8f5e9;
	padding: 1rem;
	border-radius: 4px;
	text-align: left;
	color: #191970;
}
.other-data .box ul {
	background: #3399ff;
	padding: 20px;
}
.other-data .box .ul li {
	background: #cce5ff;
	color: #191970;
	margin: 5px;
}
/* Team Section */
.team {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}
.team .team-member {
	background-color: #e8f5e9;
	padding: 1rem;
	text-align: center;
	border-radius: 4px;
	color: #191970;
}
/* Blog Posts Section */
.blog {
	display: grid;
	grid-template-columns: repeat(3, 2fr);
	gap: 1rem;
}
.blog .blog-post {
	background-color: #e8f5e9;
	font-size: 14px;
	font-family: Verdana, serif;
	padding: 1rem;
	border-radius: 4px;
	text-align: left;
	color: #191970;
}
/* Footer */
.footer-5-column {
	padding-top: 3rem;
	margin-top: 2rem;
	background-color: #191970;
}
.footer-5-column p {
	color: #fff;
}
.footer-5-column .footer-container {
	max-width: 1320px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-left: 12px;
	padding-right: 12px;
	box-sizing: border-box;
}
.footer-5-column .footer-container .footer-navbar-container {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-bottom: 3rem;
	margin-right: auto;
	margin-left: auto;
}
.footer-5-column.footer-container.footer-navbar-container.footer-company-details {
	width: 35%;
	max-width: 100%;
	flex: 0 0 auto;
	padding-right: 2rem;
	line-height: 1.428;
}
.footer-5-column.footer-container.footer-navbar-container.footer-company-details.footer-logo {
	width: 60px;
}
.footer-5-column.footer-container.footer-navbar-container.footer-company-details.footer-logoimg {
	max-width: 100%;
	height: auto;
}
.footer-5-column.footer-container.footer-navbar-container.footer-company-details.footer-logosvg {
	width: 100%;
	height: auto;
}
.footer-5-column.footer-container.footer-navbar-container.footer-company-details.footer-content {
	margin-top: 1rem;
	font-size: 16px;
	line-height: 1.8;
	padding-right: 1rem;
}
.footer-5-column.footer-container.footer-navbar-container.footer-company-details.footer-icons {
	margin-top: 1.5rem;
}
.footer-5-column.footer-container.footer-navbar-container.footer-company-details.footer-iconsul {
	display: flex;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.footer-5-column.footer-container.footer-navbar-container.footer-company-details.footer-iconsulli {
	list-style: none;
	display: flex;
	flex-direction: row;
	margin-right: 14px;
}
.footer-5-column.footer-container.footer-navbar-container.footer-company-details.footer-iconsullia {
	width: 30px;
	padding: 6px;
}
.footer-5-column .footer-navbar {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: flex-start;
	flex-grow: 1;
	line-height: 1.428;
}
.footer-5-column .footer-navbar > .footer-navbar-col {
	width: 25%;
	flex: 0 0 auto;
}
.footer-5-column .footer-navbar .footer-navbar-col h5 {
	margin-bottom: 1.5rem;
	color: #fff;
	text-decoration : underline;
	overflow-wrap: break-word;
	padding: 0 0.5rem 0 0;
}
.footer-5-column .footer-navbar .footer-navbar-col ul {
	padding: 0 0.5rem 0 0;
	margin: 0;
}
.footer-5-column .footer-navbar .footer-navbar-col ul li {
	list-style: none;
}
.footer-5-column .footer-navbar .footer-navbar-col ul li:not(:last-child) {
	margin-bottom: 1rem;
}
.footer-5-column .footer-navbar .footer-navbar-col ul li a {
	font-size: 16px;
	text-decoration: none;
	color: #fff;
	overflow-wrap: break-word;
}
.footer-5-column .footer-navbar .footer-navbar-col ul li a:hover {
	color: #000;
}
.footer-5-column .footer-copyright {
	padding: 1rem 0;
	border-top: 0.2px solid rgb(219, 215, 215);
}
.footer-5-column .footer-copyright p {
	font-size: 14px;
	margin-bottom: 0;
}
@media all and (max-width: 1140px) {
	.footer-5-column .footer-container .footer-navbar-container,.footer-5-column .footer-navbar {
		row-gap: 3rem;
	}
	.footer-5-column.footer-container.footer-navbar-container.footer-company-details,.footer-5-column .footer-container .footer-navbar-container .footer-navbar {
		padding: 0;
		width: 100%;
	}
}
@media all and (max-width: 992px) {
	.footer-5-column .footer-navbar .footer-navbar-col {
		width: 50%;
	}
}
@media all and (max-width: 576px) {
	.footer-5-column .footer-navbar .footer-navbar-col {
		/* width: 100%;
		*/
	}
}
/* Button Style (Optional) */
button {
	background-color: #191970;
	color: white;
	border: none;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
}
button :hover {
	background-color: #0041AB;
	color: white;
	text-decoration: none;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	border-radius: 4px;
	transition: background-color 0.3s;
}
button a:hover {
	background-color: #191970;
}

.danger {
	background-color: #ffdddd;
	border-left: 6px solid #f44336;
}
.success {
	background-color: #ffdddd;
	border-left: 6px solid #f44336;
}
.warning {
	background-color: #ffdddd;
	border-left: 6px solid #f44336;
}
hr.new2 {
	border-top: 1px dashed gray;
}
.dark-mode {
	background-color: black;
	color: white;
}
ul.d-flex {
	display: flex;
	gap: 5px;
	/* Space between the icons */
	list-style: none;
	padding: 0;
}
ul.d-flex li {
	display: inline-block;
}
.theme-icon {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	/* Makes the div round */
	cursor: pointer;
	border: 2px solid #fff;
	/* White border around the icon */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.theme-icon:hover {
	transform: scale(1.1);
	/* Slightly increase size on hover */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	/* Add shadow effect on hover */
}
.theme-icon:active {
	transform: scale(0.95);
	/* Slightly decrease size when clicked */
}
.buttonyteam {
	background-color: #192170;
	/* Green */
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	margin: 4px 2px;
	cursor: pointer;
	width:40%;
	-webkit-transition-duration: 0.4s;
	/* Safari */
	transition-duration: 0.4s;
}
.buttony2team:hover {
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
.disabled {
	opacity: 1;
	cursor: not-allowed;
}


/* About Us Section */
 .about-section {
            padding: 40px;
            text-align: center;
        }
        .about-section h1 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        .about-section p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .about-images {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        .about-images img {
            width: 300px;
            height: auto;
            border-radius: 8px;
        }

.grid
 {
  display: grid;
  grid-template-columns: 180px 180px 180px 180px 180px 180px;  /* six columns */
  grid-template-rows: 150px 150px 150px; /* three rows  */
  place-self: center;
  
}

.grid-item {
  background: #fff;
  border:thin black solid;
  align-items : center;
  
}
@media all and (max-width: 1080px) {
	.grid .grid-item {
		width: 80%;
	}
}

@media all and (max-width: 992px) {
	.grid .grid-item {
		width: 80%;
	}
}

@media all and (max-width: 576px) {
	.grid .grid-item {
		width: 80%;
	}
}
.animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -255deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #ffb123 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
  font-size: 14px;
  text-align : center;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.grid quazi-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 10px;
        }
		
		
table.unstyledTable {
}
table.unstyledTable td, table.unstyledTable th {
  padding: 1px 1px;
}