:root {
	--default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--heading-font: "Raleway", sans-serif;
	--nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
	--background-color: #ffffff;
	/* Background color for the entire website, including individual sections */
	--default-color: #444444;
	/* Default color used for the majority of the text content across the entire website */
	--heading-color: #555555;
	/* Color for headings, subheadings and title throughout the website */
	--accent-color: #2e9fbf;
	/* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
	--surface-color: #ffffff;
	/* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
	--contrast-color: #ffffff;
	/* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
	--nav-color: #444444;
	/* The default color of the main navmenu links */
	--nav-hover-color: #3fbbc0;
	/* Applied to main navmenu links when they are hovered over or active */
	--nav-mobile-background-color: #ffffff;
	/* Used as the background color for mobile navigation menu */
	--nav-dropdown-background-color: #ffffff;
	/* Used as the background color for dropdown items that appear when hovering over primary navigation items */
	--nav-dropdown-color: #444444;
	/* Used for navigation links of the dropdown items in the navigation menu. */
	--nav-dropdown-hover-color: #3fbbc0;
	/* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	/* background-color: var(--background-color); */
	font-family: var(--default-font);
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	color: var(--default-color);
	background-color: var(--background-color);
	transition: all 0.5s;
	z-index: 997;
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .topbar {
	/* background-color: var(--accent-color); */
	background-color: #f0f0f0;
	color: var(--contrast-color);
	height: 32px;
	padding: 0;
	transition: all 0.5s;
}

.header .branding {
	min-height: 60px;
	padding: 10px 0;
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	max-height: 56px;
	margin-right: 8px;
}

.header .logo h1 {
	font-size: 30px;
	margin: 0;
	font-weight: 700;
	color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-size: 14px;
	padding: 8px 20px;
	margin: 0 5px 0 30px;
	border-radius: 4px;
	transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
	color: var(--contrast-color);
	background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-color);
		padding: 18px 15px;
		font-size: 13px;
		font-family: var(--nav-font);
		font-weight: 500;
		/* text-transform: uppercase; */
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	.navmenu li:last-child a {
		padding-right: 0;
	}

	.navmenu li:hover>a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-hover-color);
	}

	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .dropdown ul a i {
		font-size: 12px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover>a {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .dropdown:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		/* transform: rotate(180deg); */
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown>.dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu>ul {
		display: block;
	}
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	color: var(--default-color);
	/* background-color: var(--background-color); */
	/* padding: 20px 0; */
	scroll-margin-top: 120px;
	overflow: clip;
}

@media (max-width: 1199px) {

	section,
	.section {
		scroll-margin-top: 100px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	text-align: center;
	padding-bottom: 60px;
	position: relative;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.section-title h2:after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--accent-color);
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.section-title p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	padding: 0;
}

.contact .login-form {
	background-color: var(--surface-color);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	min-height: 67vh;
	padding: 30px;
	z-index: 3;
	margin-top: 10px;
}

@media (max-width: 768px) {
	.contact .login-form {
		max-height: 90% !important; /* Adjusted height for mobile */
		padding: 20px;    /* Adjust padding for smaller screens */
	}
	.overlay{
		margin-top: 40px !important;
		bottom: 50px !important;
	}
}
.contact .login-form input[type=text]::placeholder,
.contact .login-form input[type=email]::placeholder,
.contact .login-form textarea::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .login-form button[type=submit] {
	color: var(--contrast-color);
	background: var(--accent-color);
	border: 0;
	padding: 10px 30px;
	transition: 0.4s;
	border-radius: 4px;
}

.contact .login-form button[type=submit]:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-get-started {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 8px 32px;
	transition: 0.3s;
	/* margin: 10px; */
	border-radius: 5px;
	color: var(--contrast-color);
	background: var(--accent-color);
}

.hero .btn-get-started:hover {
	background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}


/*** Custom  ***/
.custom-title-text {
	color: #1c6174;
	/*rgb(26, 47, 110);*/
}

.lined {
	text-align: center;
	/* padding: 20px; */
	transition: all ease-in-out 0.3s;
	height: 100%;
}

.lined h3 {
	font-weight: 700;
	margin-bottom: 15px;
	padding-bottom: 15px;
	font-size: 20px;
	transition: 0.3s;
	position: relative;
}

.lined h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 80px;
	height: 2px;
	background: var(--accent-color);
	bottom: 0;
	left: calc(47% - 25px);
}

.custom-form-group {
	position: relative;
	margin: 0.5rem 0;
	font-family: sans-serif;
}

/* Input and Select styling */
input[type=text],
input[type=password],
select {
	width: 100%;
	padding: 1rem 0.5rem 0.5rem;
	font-size: 13px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: white;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

/* Focus styles */
input[type=text]:focus,
input[type=password]:focus,
select:focus {
	border-color: #3f51b5;
}

/* Label styles */
label {
	position: absolute;
	left: 0.5rem;
	top: 1rem;
	font-size: 1rem;
	color: #999;
	background: white;
	padding: 0 0.25rem;
	transition: all 0.2s ease-out;
	pointer-events: none;
}

/* Floating label for input */
input[type=text]:focus+label,
input[type=password]:focus+label,
input[type=text]:not(:placeholder-shown)+label,
input[type=password]:not(:placeholder-shown)+label {
	top: -0.5rem;
	font-size: 0.75rem;
	color: #3f51b5;
}

/* Floating label for select */
select:focus+label,
select:not([value=""])+label {
	top: -0.5rem;
	font-size: 0.75rem;
	color: #3f51b5;
}

/** announcement **/
.announcement-bar {
	display: flex !important;
	align-items: center;
	justify-content: space-between !important;
	background: #eff0ed;
	/* border-top: 4px solid #2e9fbf; */
	/* padding: 0.5rem 1rem; */
	font-family: sans-serif;
	position: relative;
	gap: 1rem;
	font-size: 12px;
}

.label {
	background: #2e9fbf;
	color: white;
	font-weight: bold;
	padding: 0.4rem 1.3rem;
	clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
	min-width: max-content;
}

.message {
	flex-grow: 1;
	font-size: 12px;
	color: #333;
}

.date {
	font-size: 0.85rem;
	color: #333;
	white-space: nowrap;
}

body {
	overflow-x: hidden;
	background-image: url("../images/back8.png");
	background-size: cover;
	background-repeat: no-repeat;
}

.form-check-label {
	font-size: 13px;
}

.overlay {
	position: relative;
	bottom: 50px;
	left: 0;
	width: 100%;
	height: 75px;
	background-color: rgba(255, 255, 255, 0.7);
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	/* text-align: center; */
}

.custom-small-font {
	font-size: 12px;
}

.custom-contact-font {
	font-size: 13px;
	font-weight: bold;
}

.custom-form-area {
	z-index: 3;
}

footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: #2689a4;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 14px;
	z-index: 1000;
	/* ensure it's above other elements */
}

.bg-highlight {
	background-color: rgb(251, 251, 208);
}
.radio-label{
	padding:1px;
}
.about{
	font-size:15px;
}
.title-2{
	font-size: small !important;
}
.logo-img{
	padding-right:10px;border-right: 1px solid rgb(224, 202, 75);
}
.large-header{
	margin-right: 20px;
}