body {
	margin:  0;
background-image:url("../images/pattern-5.png");
}
.header .top-bar {
	background-color: #002366; /* Dark blue color */
	color: white;
	display: flex;
	justify-content: space-between;
	padding: 10px 20px;
	align-items: center;
}

.header .contact-info {
	font-size: 0.9em;
}
.header .contact-info{
	  margin-left: 100px;
}

.header .contact-info a {
	color: white;
	margin-left: 30px;
	text-decoration: none;
}

.header .social-icons a {
	color: white;
	margin-left: 15px;
	text-decoration: none;
	font-size: 1em;
}

.header .social-icons a:hover {
	opacity: 0.8;
}

/* Navbar */
.navbar {
	background-color: white;
	display: flex;
	align-items: center;
	padding: 10px 20px;
	justify-content: space-between;
}

.logo-img {
	height: 37px;
	margin-right: 20px; /* Adjust as needed */
}

/* Desktop Menu */
.desktop-menu {
	display: flex;
	flex: 1; /* Make it take up the remaining space */
	margin-left: 4em;
	align-items: center;
}

.desktop-menu ul {
	list-style-type: none;
	display: flex;
	margin: 0;
	padding: 0;
}

.desktop-menu ul li {
	margin-right: 35px;
}

.desktop-menu ul li a {
	text-decoration: none;
	color: black;
	font-size: 17px;
}

.desktop-menu ul li a:hover {
	color: #0056b3;
}

/* Hide Desktop Menu on Mobile */
.desktop-menu {
	display: none;
}

/* Burger Menu for Mobile */
.burger {
	display: none;
	font-size: 24px;
	cursor: pointer;
}

/* Sidebar Styles (Right Sidebar) */
.sidebar {
	height: 100%; /* Full-height */
	width: 0; /* Hidden by default */
	position: fixed; /* Stay in place */
	top: 0;
	right: 0; /* Open from the right side */
	background-color: #002366; /* Dark blue background */
	overflow-x: hidden; /* Disable horizontal scroll */
	transition: 0.5s; /* Transition effect for smooth opening */
	padding-top: 60px; /* Place content 60px from the top */
	z-index: 1000; /* Make sure it's on top */
}

.sidebar a {
	padding: 10px 20px;
	text-decoration: none;
	font-size: 1.2em;
	color: white;
	display: block;
	transition: 0.3s;
}

.sidebar a:hover {
	background-color: #0056b3; /* Light blue on hover */
}

.sidebar .closebtn {
	position: absolute;
	top: 0;
	right: 20px;
	font-size: 36px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.burger {
		display: block; /* Show burger icon on mobile */
	}

	.desktop-menu {
		display: none; /* Hide desktop menu on mobile */
	}

	/* Hide contact info on mobile */
	.contact-info {
		display: none; /* Hide contact info on mobile */
	}
	.header{
	  margin-bottom:-7em;

	}
}

/* Desktop View */
@media (min-width: 769px) {
	.burger {
		display: none; /* Hide burger icon on desktop */
	}

	.desktop-menu {
		display: flex; /* Show desktop menu */
	}

	.sidebar {
		display: none; /* Hide sidebar on desktop */
	}
}


#overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	/* Semi-transparent black */
	display: none;
	/* Initially hidden */
	z-index: 1000;
	/* Ensure it's above other content */
}

#loadingMessage {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	text-align: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	/* Optional: Add a box shadow */
}

.page-content {
	width: 100%;
	margin:  0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-o-justify-content: center;
	-ms-justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	align-items: center;
	-o-align-items: center;
	-ms-align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
}
.form-v6-content  {
	background: #fff;
	width: 968px;
	border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	margin: 80px 0;
	font-family: 'Poppins', sans-serif;
	color: #fff;
	font-weight: 700;
	position: relative;
	display: flex;
	display: -webkit-flex;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .form-v6-content {
        width: 90%; /* Responsive width for smaller screens */
        margin: 40px 0; /* Reduced top and bottom margin for mobile */
    }
}
.form-v6-content .form-left {
    margin-bottom: -6px; /* Default style, can be applied to all devices */
}

.responsive-image {
    width: auto; /* Default width for larger screens */
    max-width: 30em; /* Maintain the maximum width */
    height: auto; /* Keep the aspect ratio */
}

/* Mobile styles */
@media (max-width: 768px) { /* Adjust the max-width as needed */
    .form-v6-content .form-left {
        margin-bottom: -6px; /* Mobile-specific style */
    }

    .responsive-image {
        width: 100%; /* Make the image take up 100% of its container on mobile */
    }
}
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%; /* Image width */
    max-width: 700px; /* Max image width */
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}


.form-v6-content .form-left img {
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}
.form-v6-content .form-detail {
    padding: 30px 40px;
	position: relative;
	width: 100%;
}
.form-v6-content .form-detail h2 {
	color: #333;
	font-size: 35px;
	text-align: center;
	position: relative;
	padding: 6px 0 0;
	margin-bottom: 25px;
}
.form-v6-content .form-detail h5 {
	color: #7c7b7b;
	font-size: 14px;
	text-align: center;
	position: relative;
	padding: 6px 0 0;
	margin-bottom: 67px;
}
.form-v6-content .form-detail h6 {
	color: #7c7b7b;
	font-size: 17px;
	text-align: left;
	position: relative;
	margin-top: -10px;
	margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .form-v6-content .form-detail h5 {
        text-align:left;
    }
    .form-v6-content .form-detail h2 {
              text-align:left;
    }
}
.form-row {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    gap: 20px; /* Increase space between options */
}

.checkbox-group label {
    font-size: 1em; /* Increase font size */
    display: flex;
    align-items: center;
}

.checkbox-group input[type="radio"] {
    width: 1.5em; /* Increase the width of the radio button */
    height: 1.5em; /* Increase the height of the radio button */
    margin-right: 10px; /* Space between radio and text */
}

h6 {
    margin: 0 0 10px 0; /* Space below the heading */
}

.form-v6-content .form-row {
    width: 100%;
}
.form-v6-content .form-detail .form-row-last {
	text-align: left;
}
.form-v6-content .form-detail .input-text {
	margin-bottom: 35px;
}
.form-v6-content .form-detail input[type="text"] {
	width: 92%;
    /*padding: 0px 15px 10px 15px;*/
    border: 2px solid transparent;
    border-bottom: 2px solid #e5e5e5;
    appearance: unset;
    -moz-appearance: unset;
    -webkit-appearance: unset;
    -o-appearance: unset;
    -ms-appearance: unset;
    outline: none;
    -moz-outline: none;
    -webkit-outline: none;
    -o-outline: none;
    -ms-outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}
.form-v6-content .form-detail  {
	width: 92%;
    padding: 0px 15px 10px 15px;

    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}
.form-v6-content .form-detail .form-row input:focus {
	border-bottom: 2px solid #468Ae7;
}
.form-v6-content .form-detail .register {
	background: #468Ae7;
	border-radius: 6px;
	-o-border-radius: 6px;
	-ms-border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	width: 160px;
	box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
	-o-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
	-ms-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
	border: none;
	margin: 11px 0 50px 0px;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
}
.form-v6-content .form-detail .register:hover {
	background: #e37b27;
}
.form-v6-content .form-detail .form-row-last input {
	padding: 13px;
}
input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #666;
  font-size: 16px;
}
input::-moz-placeholder { /* Firefox 19+ */
  color: #666;
  font-size: 16px;
}
input:-ms-input-placeholder { /* IE 10+ */
  color: #666;
  font-size: 16px;
}
input:-moz-placeholder { /* Firefox 18- */
  color: #666;
  font-size: 16px;
}

/* Responsive */
@media screen and (max-width: 991px) {
	.form-v6-content {
		margin: 180px 20px;
		flex-direction:  column;
		-o-flex-direction:  column;
		-ms-flex-direction:  column;
		-moz-flex-direction:  column;
		-webkit-flex-direction:  column;
	}
	.form-v6-content .form-left {
		width: 100%;
	}
	.form-v6-content .form-left img {
		width: 100%;
		border-bottom-left-radius: 0px;
	    border-top-right-radius: 8px;
	}
	.form-v6-content .form-detail {
		padding: 30px 20px 30px 20px;
	    width: auto;
	}
	.form-v6-content .form-detail .form-row input {
		width: 96%;
	}
	.form-v6-content .form-detail .register {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 767px) {
	.form-v6-content .form-detail .form-row input {
		width: 94%;
	}
}

@media screen and (max-width: 575px) {
	.form-v6-content .form-detail .form-row input {
	    width: 89%;
	}
}
