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

/************     MAIN NAVIGATION STYLES START   ***********/
.header {
	position: sticky; 
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
	margin: 0px;
}

.logogroup {
	width: 350px; /* Adjust size */
	height: auto;
	display: block; /* Enables grid layout */
  	justify-items: end;
}

.nav-container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}
/* 1. Base styles for all links */
.nav-container ul li a {
	color: #142035; /* Initial color for all links (the "hovered" color) */
	transition: color 0.3s ease; /* Smooth transition for color changes */
}

/* 2. When the parent container is hovered, change the color of all child links */
.nav-container ul:hover li a {
	color: lightgray; /* Color for the "non-hovered" links */
}

/* 3. When an individual link (or its parent li) is hovered, revert its color back to the initial color */
.nav-container ul li a:hover {
	color: #142035; /* Color for the hovered link (stays the same as initial) */
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-item {
	margin-left: 30px;
	position: relative;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	font-size: 16px;
	padding: 10px 0;
	display: inline-block;
	position: relative;
	transition: color 0.3s ease;		
}

.nav-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(to right, #000, #999);
	transition: width 0.3s ease;
	border-radius: 3px;
}

.nav-link:hover {
	color: #FF5F6D;
}

.nav-link:hover::before {
	width: 100%;
}

.menu-toggle {
	display: none;
	cursor: pointer;
}

.bar {
	width: 25px;
	height: 3px;
	background-color: #142035;
	margin: 5px 0;
	transition: all 0.3s ease;
	border-radius: 3px;
}

 /* Dropdown Styles */
.dropdown {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	width: 200px;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
	z-index: 100;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(10px);
}

.dropdown-item {
	display: block;
	padding: 12px 20px;
	color: #333;
	text-decoration: none;
	transition: all 0.2s ease;
}

.dropdown-item:hover {
	background-color: #f5f5f5;
	color: #FF5F6D;
	padding-left: 25px;
}

/* Navigation Indicator */
.nav-indicator {
	position: absolute;
	bottom: -2px;
	height: 2px;
	border-radius: 3px;
	background: transparent;
	transition: all 0.3s ease;
}

/* Responsive Styles */
@media screen and (max-width: 600px) {
.menu-toggle {
	display: block;
}

.nav-menu {
	position: fixed;
	left: -100%;
	top: 70px;
	flex-direction: column;
	background-color: #fff;
	width: 100%;
	text-align: center;
	transition: 0.3s;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	padding: 20px 0;
	height: calc(100vh - 70px);
	overflow-y: auto;
}

.nav-menu.active {
	left: 0;
}

.nav-item {
	margin: 15px 0;
}

.dropdown-menu {
	position: static;
	opacity: 1;
	visibility: visible;
	/*transform: none;*/
	box-shadow: none;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	padding: 0;
	transition: max-height 0.3s ease;
}

.dropdown.open .dropdown-menu {
	max-height: 300px;
	padding: 10px 0;
}

.nav-indicator {
	display: none;
/* Responsive Styles */
}
	
.logogroup {
	width: 250px; /* Adjust size */
}
}
/************   MAIN NAVIGATION STYLES END   ***********/




/***********  FOOTER SECTION START  ***********/

.footer-distributed {
  background-color: #142035;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: normal 16px sans-serif;
  padding: 45px 50px;
}

.footer-distributed .footer-left p {
  color: #8f9296;
  font-size: 14px;
  margin: 0;
}
/* Footer links */

.footer-distributed p.footer-links {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 10px;
  padding: 0;
  transition: ease .25s;
}

.footer-distributed p.footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
  transition: ease .25s;
}

.footer-distributed .footer-links a:before {
  content: "·";
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

.footer-distributed .footer-right {
  float: right;
  margin-top: 6px;
  max-width: 180px;
}

.footer-distributed .footer-right a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #33383b;
  border-radius: 2px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-left: 3px;
  transition:all .25s;
}

.footer-distributed .footer-right a:hover{transform:scale(1.1); -webkit-transform:scale(1.1);}

.footer-distributed p.footer-links a:hover{text-decoration:underline;}

/* Media Queries */

@media (max-width: 600px) {
  .footer-distributed .footer-left, .footer-distributed .footer-right {
    text-align: center;
  }
  .footer-distributed .footer-right {
    float: none;
    margin: 0 auto 20px;
  }
  .footer-distributed .footer-left p.footer-links {
    line-height: 1.8;
  }
}

/***********  FOOTER SECTION END  ***********/
