/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap'); */
/* General Styles */
:root {
  --primary-color: #bb3143;
  --secondary-color: #b7102a;
  --secondary-hover-color: #b30519;
  --third-color: #2F4F4F;
  --fourth-color: #ffe5e7;
  --fifth-color: #21282e;
  --sixth-color: #333f48;
  --background-color: #f4f4f4;
  --text-color: #000;
}
/* 
@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #222;
    --text-color: #fff;
  }
} */

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	outline: 0;
	-webkit-tap-highlight-color: transparent;
}
html {
    overflow-anchor: none;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	color: var(--text-color);
	font-size: 14px;
	text-align: center;
    background-color: var(--background-color);
}
h1,h2,h3,h4,h5,h6{
	color: #333;
	font-weight: bold;
}
h1{
	font-size: 40px;
	line-height: 60px;
}
h2{
	font-size: 30px;
	line-height: 50px;
}
h3{
	font-size: 20px;
	line-height: 40px;
}
h4{
	font-size: 26px;
	line-height: 46px;
}
h5{
	font-size: 18px;
	line-height: 26px;
}
h6{
	font-size: 16px;
	line-height: 26px;
}
p{
	line-height: 26px;
}
hr {
	display: block;
	margin: 0px auto;
	width: 100%;
	max-width: 1200px;
	border: none;
	border-bottom: 1px solid #aaa;
}
label{
	display: block;
	font-weight: bold;
}
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=search],
input[type=number],
select,
textarea {
	width: 100%;
	padding: 10px 0;
	margin: 0px 0;
	border: none;
	border-bottom: 1px solid #aaa;
	border-radius: 0px;
	font-size: 14px;
	line-height: 1.5;
	background: none;
	transition: border-color 0.3s ease-in-out;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
	border-color: #007BFF;
	outline: none;
}
textarea {
	font-family: Arial;
	height: 120px;
	resize: none;
}
input[type=date]{
	margin-top: 3px;
	padding: 10px;
	border: 1px solid #aaa;
}
.file1 .file-label {
	display: inline-block;
	border: 1px solid #ccc;
	padding: 8px 12px;
	cursor: pointer;
	background-color: #f4f4f4;
	border-radius: 5px;
}
.file1 .file-name {
	display: none;
	background-color: #e9ecef;
	padding: 8px 12px;
	border-radius: 5px;
	position: relative;
}
.file1 .remove-btn {
	display: inline-block;
	background: none;
	border: none;
	color: red;
	font-size: 30px;
	cursor: pointer;
	margin-left: 10px;
	position: relative;
	top: 5px;
	left: 0px;
}
.error-message {
	color: red;
	display: none;
	margin-top: 5px;
}

/* Customize the label (the container) */
.checkboxcontainer1 {
	margin: 10px 20px 10px 0;
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxcontainer1 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkboxcontainer1 .checkmark {
  position: absolute;
	top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkboxcontainer1:hover input ~ .checkmark {
	top: -2px;
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkboxcontainer1 input:checked ~ .checkmark {
	top: -2px;
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkboxcontainer1 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxcontainer1 input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxcontainer1 .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.radiocontainer1 {
	margin: 10px 20px 10px 0;
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default radio button */
.radiocontainer1 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom radio button */
.radiocontainer1 .checkmark {
  position: absolute;
	top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.radiocontainer1:hover input ~ .checkmark {
	top: -2px;
  background-color: #ccc;
}
/* When the radio button is checked, add a blue background */
.radiocontainer1 input:checked ~ .checkmark {
	top: -2px;
  background-color: #2196F3;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.radiocontainer1 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the indicator (dot/circle) when checked */
.radiocontainer1 input:checked ~ .checkmark:after {
  display: block;
}
/* Style the indicator (dot/circle) */
.radiocontainer1 .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
.checkbox-label1 {
	margin: 10px 5px 0 0;
	display: inline-block;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
}
.checkbox-label1 input {
	display: none;
}
.checkbox-label1 span {
	padding: 7px 14px;
	display: block;
	text-align: center;
	font-weight: normal;
	background-color: #eee;
	border-radius: 5px;
	transition: color, background-color 0.2s ease-in-out;
}
.checkbox-label1 input:checked + span {
	color: #fff;
	background-color: #2196F3;
}
.radio-label1 {
	margin: 10px 5px 0 0;
	display: inline-block;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s;
}
.radio-label1 input {
	display: none;
}
.radio-label1 span {
	padding: 7px 14px;
	display: block;
	text-align: center;
	font-weight: normal;
	background-color: #eee;
	border-radius: 5px;
	transition: color, background-color 0.2s ease-in-out;
}
.radio-label1 input:checked + span {
	color: #fff;
	background-color: #2196F3;
}
.custom-select{
	position: relative;
}
.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.passwordwrapper1{
	position: relative;
	display: block;
}
.passwordwrapper1 i{
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	padding: 10px !important;
	font-size: 16px !important;
	background: none !important;
}
/* Fix: Add arrow only when the container has a select field */
.custom-select:has(select)::after {
	content: "▼";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
	color: #555;
	pointer-events: none;
}

a{
	color: var(--text-color);
	text-decoration: none;
}
a.underline{
	text-decoration: underline;
}
u.underline1{
	text-decoration: underline solid var(--secondary-color) 30%;
	text-underline-offset: 10%;
}
u.underline2{
	text-decoration: underline solid #fff 30%;
}
/* The switch - the box around the slider */
.switch1 {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  vertical-align: middle;
}
/* Hide default HTML checkbox */
.switch1 input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* The slider */
.switch1 .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.switch1 .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.switch1 input:checked + .slider {
  background-color: #2196F3;
}
.switch1 input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
.switch1 input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
/* Rounded sliders */
.switch1 .slider.round {
  border-radius: 34px;
}

.switch1 .slider.round:before {
  border-radius: 50%;
}

.button1, .button2, .button3{
	display: inline-block;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
    background-color: var(--secondary-color);
    padding: 12px 30px;
	width: auto;
	line-height: 1.5;
    border-radius: 5px;
	border: none;
	cursor: pointer;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
    transition: color 0.3s, background-color 0.3s;
}
.button1:hover{
    background-color:var(--secondary-hover-color);
}
.button2{
	color: #333;
    background-color: #fff;
}
.button1.big,
.button2.big{
	font-size: 20px;
    padding: 20px;
}
.button2:hover{
    background-color: var(--fourth-color);
}
.button3{
	color: #333;
    background-color: #fff;
	border: 1px solid var(--secondary-color);
}
.button3:hover{
    background-color: var(--fourth-color);
}
.button1 i,
.button2 i{
	margin: 0 !important;
	font-size: 14px !important;
	background: none !important;
	padding: 0 !important;
}
.clear{
	clear: both;
}
.desktoponly {display: block;}
.mobileonly {display: none;}
.white{
	color: #fff;
}
.grey{
	color: #777;
}
.primarycolor{
	color: var(--primary-color);
}
.secondarycolor{
	color: var(--secondary-color);
}
.red{
	color: red;
}
.small{
	font-size: 12px;
}
.tag1,
.tag2,
.tag3{
	position: absolute;
	top: 0px;
	left: 10px;
	background-color: #FF1493;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	padding: 5px 10px;
	border-radius: 0 0 5px 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.tag2{
	background-color: #32CD32;
}
.tag3{
	background-color: #4169E1;
}
ul.liststyle1 {
	list-style: none;
	padding: 0;
	width: 100%;
	margin: auto;
	text-align: left;
}
ul.liststyle1 li {
	display: flex;
	align-items: flex-start; /* Align items at the top */
	padding: 5px 0px;
}
ul.liststyle1 .icon {
	width: 30px; /* Fixed width */
	text-align: left;
	flex-shrink: 0; /* Prevents shrinking */
}
ul.liststyle1 .icon i {
	color: var(--secondary-color);
	font-size: 18px;
	margin-top: 2px;
}
ul.liststyle1 .text {
	flex-grow: 1;
}
ul.liststyle2 {
	list-style: none;
	padding: 0;
	width: 100%;
	margin: auto;
	text-align: left;
}
ul.liststyle2 li {
	display: flex;
	align-items: flex-start; /* Align items at the top */
	padding: 10px 10px;
	border: 1px solid #ccc;
	border-bottom: 0;
}
ul.liststyle2 li:last-child {
	border-bottom: 1px solid #ccc;
}
ul.liststyle2 .icon {
	width: 30px; /* Fixed width */
	color: var(--secondary-color);
	font-weight: bold;
	text-align: left;
	flex-shrink: 0; /* Prevents shrinking */
}
ul.liststyle2 .icon i {
	font-size: 18px;
	margin-top: 2px;
}
ul.liststyle2 .text {
	flex-grow: 1;
}
ul.liststyle2 li:nth-child(even) {
	background-color: #f9f9f9;
}
ul.liststyle2 li:nth-child(odd) {
	background-color: #ffffff;
}

ul.liststyle3 {
	list-style: none;
	padding: 0;
	width: 100%;
	margin: auto;
	text-align: left;
}
ul.liststyle3 li {
	display: block;
	padding: 10px 10px;
	margin-bottom: 10px;
	background-color: #ffffff;
	border: 0px solid #ccc;
	border-left: 3px solid var(--secondary-color);
}
ul.liststyle3 li:last-child {
	margin-bottom: 0px;
}

header {
	float: left;
    display: block;
	width: 100%;
	height: 70px;
    padding: 15px 0px;
	position: fixed;
	left: 0;
	top: 0;
    background-color: #fff;
    color: #000;
	vertical-align: middle;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
	z-index: 101;
}
header .headerinner {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 1240px;
	padding: 0 20px;
}
header .logo {
	float: left;
    display: inline-block;
	position: relative;
	top: 5px;
	left: 0;
}
header .logo img{
    width: 170px;
	height: auto;
}
header .logo h1 {
    margin: 0;
	color: #fff;
	font-size: 24px;
	font-weight: normal;
	line-height: 40px;
	cursor: pointer;
}
header .logo h1 a {
	color: #fff;
	text-decoration: none;
}
header nav.desktop {
	float: right;
    display: inline-block;
}
header nav.desktop ul {
    list-style: none;
	margin-top: 14px;
    padding: 0;
}
header nav.desktop ul li {
    display: inline-block;
    margin-left: 20px;
	position: relative;
}
header nav.desktop ul li a,
header nav.desktop ul li button {
    color: #555;
	font-size: 16px;
	font-weight: bold;
    text-decoration: none;
	border: none;
	cursor: pointer;
}
header nav.desktop ul > li > a{
	position: relative;
	padding: 10px 0;
    transition: border 0.3s ease-in-out;
}
header nav.desktop ul > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.4s ease-in-out;
}
header nav.desktop ul > li > a:hover::after {
  width: 100%;
  animation: slideOutIn 0.5s forwards;
}
@keyframes slideOutIn {
  0% {
    width: 0;
    left: 0;
  }
  25% {
    width: 100%;
    left: 0;
  }
  50% {
    width: 0;
    left: 100%;
  }
  75% {
    width: 0;
    left: 0;
  }
  100% {
    width: 100%;
    left: 0;
  }
}
header nav.desktop ul > li > a.activebtn{
	border-bottom: 2px solid #fff;
}
header .sgnbtncont{
	display: inline-block;
	float: right;
	margin-top: 14px;
	margin-left: 20px;
}
header .signin-button {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
    background-color: var(--secondary-color);
    padding: 10px 15px;
    border-radius: 5px;
    transition: color 0.3s, background-color 0.3s;
}
header .signin-button:hover{
    background-color:var(--secondary-hover-color);
}
header .search-button{
	margin-right: 20px;
    color: #555;
	font-size: 16px;
}
header + div{
	margin-top: 70px!important;
}
.menubutton{
	display: inline-block;
	float: right;
	margin-top: 4px;
	margin-left: 20px;
	padding: 10px 14px;
	color: #fff;
	background: var(--sixth-color);
	cursor: pointer;
    border-radius: 5px;
	position: relative;
	z-index: 100;
}
a.searchbutton {
    pointer-events: none;
}
/* Search Overlay */
.search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	color: #333;
	background: #eee;
	display: none;
	z-index: 1000;
}
.search-overlay .search-container {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	background: #fff;
	padding: 20px 20px;
	border-bottom: 1px solid #ccc
}
.search-overlay .search-container > div{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.search-overlay .search-container input {
	width: 100%;
	max-width: 1200px;
	padding: 10px 70px 10px 70px;
	font-size: 26px;
	color: #333;
	background: none;
	border: none;
	border-bottom: 0px solid #aaa;
	border-radius: 0px;
}
.search-overlay .search-container input:focus {
	outline: none;
}
.search-overlay .searchclose-btn {
	position: absolute;
	top: 0px;
	right: 0px;
	display: none;
	font-size: 50px;
	color: #eee;
	height: 50px;
	cursor: pointer;
}
.search-overlay .searchclose-btn i{
	color: #555;
}
.search-overlay .backbtn {
	position: absolute;
	top: 0px;
	left: 0px;
	font-size: 50px;
	color: #555;
	background: none;
	border: none;
	cursor: pointer;
}
.search-overlay .suggestions {
	font-size: 16px;
	margin: 0px auto 0;
	max-width: 1200px;
	max-height: 70vh;
	overflow-y: auto;
	text-align: left;
	scrollbar-width: thin; /* Firefox scrollbar */
	scrollbar-color: var(--secondary-color) #f0f0f0; /* Thumb color | Track color */
	scroll-behavior: smooth; /* Smooth scrolling */
}
.search-overlay .suggestion-item {
	padding: 15px 30px;
	cursor: pointer;
}
.search-overlay .suggestion-item:hover {
	background: #eee;
}
.suggestion-item i {
    margin-right: 20px;
}
input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

/* Mega Menu */
.mega-menu-link i {
	font-size: 12px;
}
.mega-menu {
	display: none;
	position: fixed;
	background: #fff;
	border: 1px solid #ddd;
	padding: 50px 20px;
	width: calc(100% + 2px);
	max-height: calc(100vh - 100px);
	overflow: auto;
	left: 0;
	top: 40px;
	text-align: center;
	z-index: 1000;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
.mega-menu-inner{
	display: flex;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	text-align: left;
}
.mega-menu.singlecol {
	width: 240px;
	max-height: calc(100vh - 100px);
	overflow: auto;
	padding: 10px 0px;
	position: absolute;
	top: 40px;
	left: -20px;
	right: auto;
}
.mega-menu.active {
	display: flex;
	justify-content: center;
}
.menu-column {
	flex: 1;
	padding: 0 20px;
	text-align: left;
}
.menu-column h3 {
	margin-bottom: 0px;
	font-size: 16px;
	color: #333;
}
.menu-column a:not(.button1):not(.button2) {
	display: block;
	color: #333;
	text-decoration: none;
	padding: 8px 0;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.5;
}
.menu-column a:hover span.underline{
	text-decoration: underline;
}

.overlay1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
	z-index: 100;
}
.overlay1.active {
    opacity: 1;
    visibility: visible;
}
/* Sliding Menu */
.sidemenu {
	display: block;
    position: fixed;
    top: 0;
    right: -350px; /* Hidden initially */
    width: 350px;
    height: 100vh;
	padding-bottom: 100px;
	overflow: auto;
    background: #fff;
    transition: right 0.3s ease-in-out;
    will-change: transform; /* Optimize for performance */
	z-index: 102;
}
@supports (max-height: 100dvh) {
	.sidemenu{
		height: 100dvh;
		padding-bottom: 0px;
	}   
}
/* Show menu */
.sidemenu.active {
    right: 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}
/* Close Button */
.sidemenu .close-btn {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 24px;
	width: 34px;
	height: 34px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
	border-radius: 50%;
    cursor: pointer;
	z-index: 103;
}
/* menu logo */
.sidemenu .logo {
	display: block;
	float: left;
	width: 100%;
	padding: 22px 20px;
    font-size: 24px;
	font-weight: bold;
	text-align: left;
    background: var(--primary-color);
    color: #fff;
	position: relative;
	top: 0;
}
.sidemenu .logo a{
	color: #fff;
}
/* Menu Links */
.sidemenu ul {
	display: block;
	float: left;
	width: 100%;
	padding: 20px 0;
    list-style: none;
	border-bottom: 5px solid #ddd;
}
.sidemenu ul li {
	float: left;
	display: block;
	width: 100%;
	text-align: left;
	border-bottom: 1px solid #ddd;
}
.sidemenu ul li:last-child {
	border: 0;
}
.sidemenu ul:last-child li {
	border: 0;
}
.sidemenu ul li a,
.sidemenu ul li.submenutitle {
	display: block;
    padding: 15px 20px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s, background-color 0.3s;
}
.sidemenu ul li a:hover,
.sidemenu ul li.submenutitle:hover {
	color: #000;
    background: #f4f4f4;
}
.sidemenu h3 {
	font-size: 20px;
    padding: 0px 20px 15px;
}
.sidemenu .submenutitle,
.sidemenu ul li.submenutitle {
	display: flex; /* Use Flexbox to align items */
	justify-content: space-between; /* Space between text and arrow */
	align-items: center; /* Vertically center the items */
	cursor: pointer; /* Indicate that the item is clickable */
}
.sidemenu .submenutitle span:first-child {
    flex-grow: 1; /* Allow the text to take up available space */
}
.sidemenu .submenutitle .arrow,
.sidemenu ul li.submenutitle .arrow{
	width: 20px;
	margin-right: 8px;
	color: #aaa;
	text-align: center;
}
.sidemenu .submenucont {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
	border: 0;
}
.sidemenu .submenucont.active {
    display: block; /* Show submenu content when active */
}
.sidemenu .submenu{
	padding: 0;
	border: 0;
	border-bottom: 1px solid #ddd;
}
.sidemenu .submenu li a{
	padding-left: 20px;
}
.sidemenu .submenu li a i{
	margin-right: 10px;
	color: #aaa;
}
.sidemenu .rotate-90 {
    transform: rotate(180deg); /* Rotate arrow icon */
}

.bannercontainer1{
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	padding: 50px 0;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
}
.bannercontainer1 > div{
	text-align: left;
	width: 70%;
	margin-left: calc((100% - 1200px)/2);
	padding: 30px 50px 50px;
	background-color: rgba(0, 0, 0, 0);
}
.bannercontainer1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    z-index: -1;
}
.bannercontainer1 .heading{
	color: white;
	font-size: 36px;
	line-height: 1.5;
}
.bannercontainer1 p{
	margin: 20px 0 10px;
	color: #ddd;
	font-size: 16px;
	line-height: 1.7;
}

.bannercontainer2{
	position: relative;
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	padding: 50px 0;
	overflow: hidden;
}
.bannercontainer2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    z-index: 1;
}
/* small dottet overlay */
/* .bannercontainer2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 8px 8px;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
} */
/* Larger Dotted Overlay */
/* .bannercontainer2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(white 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
} */
/* Grid-Like Dotted Overlay */
/* .bannercontainer2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(0deg, white, white 1px, transparent 1px, transparent 10px),
                      repeating-linear-gradient(90deg, white, white 1px, transparent 1px, transparent 10px);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
} */
/* Diagonal Stripes Overlay */
/* .bannercontainer2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, white, white 2px, transparent 2px, transparent 10px);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
} */
.bannercontainer2 video{
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
	background: #000;
	object-fit: cover; /* Ensures video covers the screen */
    z-index: -1;
}
.bannercontainer2 > div{
	position: relative;
    z-index: 1;
	display: block;
	float: none;
	text-align: left;
	width: 70%;
	margin-left: calc((100% - 1200px)/2);
	clear: both;
	padding: 55px 50px;
	background-color: rgba(0, 0, 0, 0);
}
.bannercontainer2 .heading{
	color: white;
	font-size: 55px;
	line-height: 1.1;
}
.bannercontainer2 .heading .big{
	font-size: 144px;
}
.bannercontainer2 p{
	margin: 20px 0 10px;
	color: #ddd;
	font-size: 16px;
	line-height: 1.7;
}
.bannercontainer3{
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	padding: 30px 0;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
}
.bannercontainer3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	backdrop-filter: blur(20px);
    z-index: -1;
}
.bannercontainer3 > div{
	display: inline-block;
	text-align: center;
	max-width: 90%;
	margin: 0 auto;
	padding: 10px 50px;
	background-color: rgba(0, 0, 0, 0.5);
}
.bannercontainer3 .heading{
	color: white;
	font-size: 30px;
	line-height: 1.5;
}
.bannercontainer4{
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	padding: 0;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
}
.bannercontainer4 .hero {
	position: relative;
	width: 100%;
	padding: 0px 0;
	overflow: hidden;
	background: #000;
}
.bannercontainer4 .heroslide {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
}
.bannercontainer4 .heroslide.active {
	opacity: 1;
	z-index: 1;
}
.bannercontainer4 .hero-content {
	position: relative;
	z-index: 3;
	text-align: left;
	width: 70%;
	margin-left: calc((100% - 1200px)/2);
	padding: 100px 50px;
	align-items: center;
	color: white;
}
.bannercontainer4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    z-index: 2;
}
.bannercontainer4 .heading{
	color: white;
	font-size: 36px;
	line-height: 1.5;
}
.bannercontainer4 p{
	margin: 20px 0 10px;
	color: #ddd;
	font-size: 16px;
	line-height: 1.7;
}
.full-wrapper {
	display: block;
	float: left;
	width: 100%;
	padding: 50px 0;
	text-align: center;
	line-height: 1.5;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	z-index: 1;
}
.full-wrapper.colorbg {
	background: var(--secondary-color);
}
.full-wrapper.paddingtopzero {
	padding-top: 20px;
}
.tinteffect{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 0.7;
	z-index: -1;
}
.tinteffect2{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(20px);
	z-index: -1;
}
.stats-container {
	display: flex;
	justify-content: center;
	text-align: center;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1240px;
	padding: 0 0px;
	margin: 0 auto;
	color: #fff;
}
.stats-container .stat-block {
	flex: 1;
	max-width: 500px;
	margin: 10px;
	padding: 20px;
}
.stats-container .stat-number {
	font-size: 40px;
	font-weight: normal;
}
.stats-container .stat-text {
	font-size: 16px;
}
.stats-container i {
	margin-bottom: 10px;
	font-size: 40px;
	padding: 20px;
	width: 82px;
	border-radius: 999px;
	border: 1px solid #e04a60;
}

.blockcontainer1 {
	display: grid;
	margin: 0 auto;
	width: 100%;
	max-width: 1240px;
	padding: 20px 20px 0;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}
.blockcontainer1 .block {
	text-decoration: none;
	color: black;
	border: 1px solid #ccc;
	padding: 20px;
	border-radius: 5px;
	transition: 0.3s;
	display: flex;
	background-color: #fff;
	justify-content: space-between;
	align-items: center;
    transition: color 0.3s, background-color 0.3s;
}
.blockcontainer1 .block:hover {
	background-color: var(--fourth-color);
}
.blockcontainer1 .block h2 {
	margin: 0;
	font-size: 18px;
	text-align: left;
}
.blockcontainer1 .block p {
	margin: 10px 0 0;
	font-size: 14px;
	color: #555;
	text-align: left;
	line-height: 1.5;
}
.blockcontainer1 .block .arrow {
	width: 40px;
	text-align: right;
	font-size: 20px;
	color: black;
	align-self: flex-center;
}

.blockcontainer1 .block2 {
	text-decoration: none;
	color: black;
	border: 1px solid #ccc;
	padding: 20px;
	border-radius: 5px;
	transition: 0.3s;
	display: grid;
	grid-template-columns: 80px auto 20px;
	background-color: #fff;
    transition: color 0.3s, background-color 0.3s;
}
.blockcontainer1 .block2:hover {
	background-color: var(--fourth-color);
}
.blockcontainer1 .block2 h5 {
	margin: 0;
	font-size: 16px;
	text-align: left;
}
.blockcontainer1 .block2 p {
	margin: 0px 0 0;
	font-size: 14px;
	color: #555;
	line-height: 1.5;
	text-align: left;
}
.blockcontainer1 .block2 .image{
	position: relative;
	top: 5px;
	left: 0;
	width: 100%;
	height: 80px;
	overflow: hidden;
}
.blockcontainer1 .block2 .image img{
	width: 100%;
	height: auto;
}
.blockcontainer1 .block2 .text {
	width: auto;
	margin-left: 15px;
}
.blockcontainer1 .block2 .arrow {
	margin-left: 10px;
	font-size: 20px;
	color: black;
	text-align: right;
}
.blockcontainer2 {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
	max-width: 1200px;
	padding: 20px 0px;
	margin: auto;
}
.blockcontainer2 .block {
	position: relative;
	flex: 1;
	min-width: 300px;
	height: 250px;
	color: white;
	text-decoration: none;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 20px;
	background-size: 100%;
	background-position: center;
	transition: background-size 0.5s ease;
	border-radius: 5px;
	overflow: hidden;
}
.blockcontainer2 .block:hover {
	background-size: 105%;
}
.blockcontainer2 .block::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}
.blockcontainer2 .block span {
	position: relative;
	font-size: 18px;
	text-align: left;
	z-index: 2;
	max-width: 90%;
}
.blockcontainer2 .block .menu-btn3 {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 40px;
	height: 40px;
	font-size: 16px;
	color: #fff;
	line-height: 40px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
}

.blockcontainer3 {
	display: block;
	width: 100%;
	max-width: 1240px;
	padding: 20px 20px 10px;
	margin: auto;
	color: #fff;
}

.full-wrapper.pricing-container{
	margin-bottom: 40px;
	padding: 0 0 0px;
	white-space: nowrap;
	/* scrollbar-width: thin;
	scrollbar-color: var(--secondary-color) #f0f0f0;
	scroll-behavior: smooth; */
}
.pricing-inner {
	display: flex;
	float: none;
	margin: 0px auto;
	width: 100%;
	text-align: left;
	max-width: 1240px;
	padding: 0 20px;
}
.pricing-container .plan {
	margin: 20px auto;
	background: white;
	padding: 20px;
	border-radius: 10px;
	border: 1px solid #ccc;
	width: 380px;
	position: relative;
	z-index: 1;
}
.pricing-container .plan h2 {
	font-size: 22px;
}
.pricing-container h2,
.pricing-container h3,
.pricing-container p {
	text-align: left;
}
.pricing-container .price {
	font-size: 24px;
	color: #333;
}
.pricing-container ul.features {
	list-style: none;
	padding: 0;
	max-width: 500px;
	margin: auto;
	text-align: left;
}
.pricing-container .features li {
	display: flex;
	align-items: flex-start; /* Align items at the top */
	background: #ffffff;
	padding: 10px 0px;
	border-top: 1px solid #ccc;
}
.pricing-container .features .icon {
	width: 30px; /* Fixed width */
	text-align: left;
	flex-shrink: 0; /* Prevents shrinking */
}
.pricing-container .features .icon i {
	margin-top: 1px;
	color: #25D366;
	font-size: 18px;
}
.pricing-container .features .text {
	flex-grow: 1;
}
.pricing-container .button1 {
	margin-top: 15px;
}
.pricing-container .popular {
	border: 2px solid var(--primary-color);
}
.pricing-container .mostpopular {
	position: relative;
	left: -22px;
	top: -22px;
	width: calc(100% + 44px);
	padding: 12px 0;
	color: #fff;
	font-weight: bold;
	text-align: center;
	background: var(--primary-color);
	border-radius: 10px 10px 0 0;
}
.pricing-container .notpopular {
	margin-top: 66px;
}
.pricing-container .discount{
	padding: 5px 10px;
	background: #ddd;
	border-radius: 20px;
}

.testimonial-container1 {
	display: flex;
	gap: 20px;
	justify-content: center;
	text-align: center;
	margin: 0 auto;
	width: 100%;
	max-width: 1240px;
	padding: 20px 20px 20px;
}
.testimonial-container1 .testimonial {
	background: #fff;
	border-radius: 5px;
	padding: 20px;
	max-width: 350px;
	flex: 1;
	min-width: 200px;
	text-align: center;
	border: 1px solid #ccc;
}
.testimonial-container1 .testimonial-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;
}
.testimonial-container1 .testimonial img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin-bottom: 10px;
	border: 1px solid #ccc;
}
.testimonial-container1 .testimonial .author {
	font-weight: bold;
	font-size: 18px;
	color: #333;
}
.testimonial-container1 .testimonial .role {
	font-size: 14px;
	color: #777;
}
.testimonial-container1 .stars {
	color: var(--secondary-color);
	margin: 10px 0;
}
.testimonial-container1 .testimonial p {
	font-size: 16px;
	color: #555;
	margin: 5px 0;
}
.testimonial-container1 .testimonial .read-more {
	color: var(--secondary-color);
	font-weight: bold;
	text-decoration: none;
}
.testimonial-container1 .testimonial video{
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}
.testimonial-container1.horizontal {
	width: 100%;
	max-width: 1200px;
	padding: 20px 0px 20px;
}
.horizontal{
	overflow-x: auto;
	white-space: nowrap;
	flex-wrap: nowrap;
	justify-content: left;
}
.horizontal p {
	white-space: normal;
}
.testimonial-container1.horizontal .testimonial {
	max-width: auto;
	width: 350px;
	flex: auto;
	min-width: auto;
	flex-shrink: 0; /* Prevents shrinking */
	scroll-snap-align: start;
}
.blockcontainer4 {
	display: flex;
	gap: 20px;
	overflow-x: auto; /* Enables horizontal scrolling */
	overflow-y: hidden;
	position: relative;
	width: 100%;
	height: 250px;
	max-width: 1200px;
	padding: 20px 0px;
	margin: 0 auto;
	white-space: nowrap; /* Prevents wrapping */
}
.blockcontainer4 .block {
	width: 200px;  /* Fixed width */
	height: 200px; /* Fixed height */
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	flex-shrink: 0; /* Prevents shrinking */
	position: relative;
}
.blockcontainer4 img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Ensures images fit inside blocks */
	border-radius: 10px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
	transition: box-shadow 0.2s ease-in-out;
}
.blockcontainer4 .block:hover img {
	box-shadow: 2px 2px 25px rgba(0,0,0,0.5);
}
.menu-container2 {
	position: absolute;
	top: 10px;
	right: 10px;
}
.menu-btn2 {
	width: 40px;
	height: 40px;
	font-size: 16px;
	color: #fff;
	line-height: 30px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.dropdown-menu2 {
	position: absolute;
	top: 45px;
	right: 0;
	width: 120px;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	background: white;
	border: 1px solid #ccc;
	border-radius: 5px;
	display: none;
	flex-direction: column;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}
.dropdown-menu2 span {
	padding: 10px;
	text-decoration: none;
	color: black;
	display: block;
	border-bottom: 1px solid #ccc;
}
.dropdown-menu2 span:last-child {
	border-bottom: 0px solid #ccc;
}
.dropdown-menu2 span:hover {
	background: #f0f0f0;
}
.dropdown-menu2 span i{
	margin-right: 10px;
}
.menu-container2.active .dropdown-menu2 {
	display: flex;
}

.blockcontainer5 {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	padding: 0px 0px 20px;
	margin: 0 auto;
}
.blockcontainer5 .left,
.blockcontainer5 .right {
	flex: 1;
	min-width: 250px;
	padding: 0px 0px;
}
.blockcontainer5 .left {
	max-width: 700px;
	text-align: left;
}
.blockcontainer5 .highlight {
	font-weight: bold;
}
.blockcontainer5 .stats {
	display: flex;
	gap: 20px;
	margin: 20px auto 0;
}
.blockcontainer5 .stat {
	margin: 0px auto;
	text-align: center;
}
.blockcontainer5 .right img {
	max-width: 100%;
	max-height: 400px;
}
.blockcontainer6 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start; /* Aligns items at the top */
	gap: 20px;
	width: 100%;
	max-width: 1200px;
	padding: 20px 0px 0px;
	margin: 0 auto;
}
.blockcontainer6 .block {
	flex: 1;
	min-width: 300px;
	min-height: 150px;
	background: white;
	padding: 20px;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
	border-radius: 5px;
	border: 1px solid #ccc;
}
.blockcontainer6 .block i {
	margin-bottom: 10px;
	font-size: 30px;
	padding: 20px;
	background: var(--fourth-color);
	border-radius: 5px;
}
.blockcontainer6 .block .imgcont {
	width: 100%;
	min-height: 150px;
	aspect-ratio: 16/9;
	margin-bottom: 10px;
	overflow: hidden;
}
.blockcontainer6 .block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blockcontainer6 iframe{
	width: 100%;
	min-height: 200px;
	aspect-ratio: 16/9;
}
.blockcontainer6 .block h3 {
	color: #333;
}
.blockcontainer6 .block p {
	color: #666;
}
.blockcontainer6 img.smallimg {
	width: 100%;
	max-width: 150px;
	height: auto;
	margin: 10px 10px;
}
.blockcontainer6.alignleft{
	justify-content: left;
}
.blockcontainer6.alignleft p{
	text-align: left;
	width: 100%;
}
.blockcontainer6.alignleft img {
	width: 100%;
	height: auto;
}

.blockcontainer7 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-items: flex-start; /* Aligns items at the top */
	align-items: stretch; /* Ensures all items stretch to the same height */
	gap: 20px;
	width: 100%;
	max-width: 1200px;
	padding: 20px 0px 0px;
	margin: 0 auto;
}
.blockcontainer7 .block {
	flex: 1;
	position: relative;
	min-width: 240px;
	min-height: 150px;
	background: white;
	padding: 20px;
	align-items: flex-end;
	justify-content: center;
	border-radius: 5px;
	border: 1px solid #ccc;
}
.blockcontainer7 .block i {
	margin-bottom: 10px;
	font-size: 30px;
	padding: 20px;
	background: var(--fourth-color);
	border-radius: 5px;
}
.blockcontainer7 .block .imgcont {
	width: 100%;
	max-width: 300px;
	min-height: 150px;
	aspect-ratio: 16/9;
	margin: 0 auto 10px;
	overflow: hidden;
}
.blockcontainer7 .block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blockcontainer7 .block iframe{
	width: 100%;
	aspect-ratio: 16/9;
}
.blockcontainer7 .block h3 {
	color: #333;
}
.blockcontainer7 .block p {
	color: #666;
}
.blockcontainer7 .loginbannerblock {
	flex: 1;
	position: sticky;
	top: 0;
	min-width: 240px;
	min-height: 150px;
	background-size: cover;
	background-position: center;
	object-fit: contain;
	overflow: hidden;
}
.blockcontainer7 .loginbannerblock img{
	width: 100%;
	height: auto;
}
.blockcontainer8 {
	width: 100%;
	max-width: 1200px;
	padding: 20px 0px 0px;
	margin: 0 auto;
}
.blockcontainer8 .row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.blockcontainer8 .left,
.blockcontainer8 .right {
	width: 100%;
	padding: 20px 0;
	box-sizing: border-box;
}
.blockcontainer8 .left {
	text-align: left;
	order: 2;
}
.blockcontainer8 .right {
	order: 1;
}
.blockcontainer8 .left img,
.blockcontainer8 .right img {
	width: 100%;
	height: auto;
	max-height: 100vh;
	object-fit: contain;
}
.blockcontainer8 iframe{
	width: 100%;
	min-height: 200px;
	aspect-ratio: 16/9;
}
@media (min-width: 768px) {
.blockcontainer8 .left,
.blockcontainer8 .right {
	flex: 1;
	max-width: 50%;
	padding: 50px 20px;
}
.blockcontainer8 .row:nth-child(odd) .left {
	order: 1;
}
.blockcontainer8 .row:nth-child(odd) .right {
	order: 2;
}
.blockcontainer8 .row:nth-child(even) .left {
	order: 2;
}
.blockcontainer8 .row:nth-child(even) .right {
	order: 1;
}
.blockcontainer8 .left {
	text-align: left;
}
}

.blockcontainer9 {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	width: 100%;
	max-width: 1200px;
	padding: 20px 0px 0px;
	margin: 0 auto;
}
.blockcontainer9 .column {
	flex: 1;
	padding: 20px 0;
	min-width: 240px; /* Ensures it doesn't get too small */
	max-width: 50%;
}
.blockcontainer9 .left {
	text-align: center
}
.blockcontainer9 .right {
	text-align: center;
}
.blockcontainer9 .column img{
	width: 100%;
	margin: 0 atuo;
}
.blockcontainer9 .alignleft {
	text-align: left
}

.map-container1 iframe{
	margin-top: 30px;
	width: 100%;
	height: 300px;
}
.app-download-cont div{
	display: inline-block;
	vertical-align: middle;
}
.app-download-cont div a{
	display: inline-block;
	margin: 20px 10px;
	width: calc(45% - 20px);
	max-width: 160px;
	vertical-align: middle;
}
.app-download-cont img{
	width: 100%;
	height: auto;
}
.full-wrapper.map-container2{
	width: 100%;
	height: 450px;
	padding: 0;
	margin: 0;
}
.full-wrapper.map-container2 iframe{
	width: 100%;
	height: 100%;
}

.faq-container {
    width: 100%;
	max-width: 1200px;
	padding: 20px 20px;
    margin: 20px auto 20px;
	line-height: 1.5;
    background-color: #fff;
	border: 1px solid #ccc;
}
.faq-container .faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.faq-container .faq-item:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
}
.faq-container .faq-question {
    font-size: 18px;
    font-weight: bold;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
	text-align: left;
}
.faq-container .faq-answer {
    display: none;
    padding: 0px 0 20px;
    font-size: 16px;
    color: #555;
	text-align: left;
}
.faq-container .toggle-icon {
    font-size: 20px;
    font-weight: bold;
	width: 20px;
	text-align: center;
}

.faq-container2 {
    width: 100%;
	max-width: 1200px;
	padding: 20px 20px 0;
    margin: 20px auto 20px;
	line-height: 1.5;
}
.faq-container2 .faq-item {
    margin-bottom: 10px;
	padding: 10px 20px;
    background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 10px;
}
.faq-container2 .faq-item:last-child {
    margin-bottom: 0px;
}
.faq-container2 .faq-question {
    font-size: 18px;
    font-weight: bold;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
	text-align: left;
}
.faq-container2 .faq-answer {
    padding: 0;
    font-size: 16px;
    color: #555;
	text-align: left;
	max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.faq-container2 .faq-answer > div{
	padding: 0px 0 20px;
}
.faq-container2 .toggle-icon {
    font-size: 20px;
    font-weight: bold;
	width: 20px;
	text-align: center;
}

.timeline {
	position: relative;
	max-width: 1200px;
	margin: 30px auto 30px;
}
.timeline::after {
	content: '';
	position: absolute;
	width: 6px;
	background-color: var(--secondary-color);
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -3px;
}
.timeline-item {
	padding: 20px;
	position: relative;
	background: white;
	width: 45%;
	text-align: left;
	border-radius: 8px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
}
.timeline-item:nth-child(odd) {
	left: 50%;
	transform: translateX(-100%);
}
.timeline-item:nth-child(even) {
	left: 50%;
}
.timeline-item::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	top: 24px;
	right: -10px;
}
.timeline-item:nth-child(odd)::after {
	left: auto;
	right: -10px;
}
.timeline-item:nth-child(even)::after {
	left: -10px;
}
.timeline-item h3 {
	margin-bottom: 10px;
	color: var(--primary-color);
	line-height: 1.5;
}

/* General slider styles that apply to all sliders */
.tabslider-navbar-container {
	display: block;
	float: left;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	margin: -10px 0;
	border-bottom: 1px solid #ccc;
}
.tabslider-navbar {
	width: max-content;
	min-width: 100%;
	padding: 0px 0px;
	display: inline-flex;
	gap: 0px;
}
.tabslider-navbar-container::-webkit-scrollbar {
	height: 0px;
}
.tabslider-navbar-container::-webkit-scrollbar-thumb {
	background: transparent;
	border-radius: 2px;
}
.tabslider-navbar-container::-webkit-scrollbar-track {
	background: transparent;
}
.tabslider-navbar a {
	font-size: 16px;
	color: #777;
	font-weight: bold;
	text-decoration: none;
	padding: 15px 10px;
	cursor: pointer;
	transition: 0.3s;
	flex-shrink: 0;
	border-bottom: 3px solid transparent;
}
.tabslider-navbar a.active {
	color: #333;
	border-bottom: 3px solid var(--secondary-color);
}
@media (min-width: 1000px) {
	.tabslider-navbar a:hover {
		background: #ddd;
		border-radius: 5px 5px 0 0;
	}
}
/* Sections container for swipe functionality */
.tabslider-sections-container {
	display: block;
	float: left;
	position: relative;
	width: 100%;
	overflow: hidden;
	margin: -10px auto;
}
.tabslider-section {
	width: 100%;
	min-height: 300px;
	padding: 20px 0 0;
	position: absolute;
	top: 0;
	left: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: left;
	align-items: left;
}
.tabslider-section.active {
	position: relative;
	transform: translateX(0);
	opacity: 1;
	z-index: 1;
}
.tabslider-section.next {
	transform: translateX(100%);
	opacity: 0;
}
.tabslider-section.prev {
	transform: translateX(-100%);
	opacity: 0;
}

/* Unique background colors for each slider */
.slider1-section { background: none; }
.slider2-section { background: #33aaff; }

.socialcontainer1 {
	width: 100%;
	max-width: 1240px;
	padding: 0px 20px;
    margin: 20px auto 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.socialcontainer1 .social-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	background: #fff;
	padding: 10px;
	border-radius: 8px;
	width: 100%;
	max-width: 220px;
	text-align: left;
	position: relative;
	overflow: hidden;
	transition: 0.3s ease-in-out;
}
.socialcontainer1 .social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: left 0.6s ease-in-out;
}
.socialcontainer1 .social-link:hover::before {
  left: 100%;
}
.socialcontainer1 .social-link i {
	width: 40px;
	height: 40px;
	margin-right: 15px;
    color: var(--secondary-color);
}
.socialcontainer1 .social-text {
	display: flex;
	flex-direction: column;
}
.socialcontainer1 .social-name {
	font-weight: bold;
}
.table-container1 {
	width: 100%;
	overflow-x: auto;
}
.table-container1 table {
	width: 100%;
	border-collapse: collapse;
}
.table-container1 th,
.table-container1 td {
	border: 1px solid #ccc;
	padding: 10px;
	text-align: left;
}
.table-container1 th {
	color: #fff;
	background-color: var(--primary-color);
}
.table-container1 tr:nth-child(even) {
	background-color: #f9f9f9;
}
.table-container1 tr:nth-child(odd) {
	background-color: #ffffff;
}

.form-container1 {
	background: white;
	border-radius: 5px;
	border: 1px solid #ccc;
	width: 100%;
	max-width: 1200px;
	padding: 20px 20px;
    margin: 20px auto 20px;
	text-align: left;
}
.form-container1 .heading{
	margin: 0px 0 20px;
	padding: 5px 10px 5px 10px;
	background: #eee;
}
.form-container1 .form-row {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 15px;
	gap: 20px;
}
.form-container1 .form-group {
	flex: 1;
	padding: 0px;
	position: relative;
}
/* 
.form-container1 .form-group label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
}
.form-container1 .form-group input,
.form-container1 .form-group select,
.form-container1 .form-group textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
}
 */
/* Full-width row */
.form-container1 .full-width {
	flex: 100%;
}
/* Responsive Design */
@media (max-width: 600px) {
.form-container1 .form-row {
	flex-direction: column;
}
}

/* Footer Styles */
footer.footer1 {
    display: block;
	float: left;
	width: 100%;
    padding: 50px 0;
    background-color: var(--fifth-color);
    color: white;
	vertical-align: top;
}
footer.footer1 .footerinner {
	display: flex;
	margin: 0 auto;
	width: 100%;
	max-width: 1240px;
	padding: 0 20px;
}
footer.footer1 .footer-left {
	float: left;
	display: inline-block;
	flex: 1;
	text-align: left;
}
footer.footer1 .footer-left a {
	display: inline-block;
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
footer.footer1 .footer-left a:first-child {
	margin-left: 0;
}
footer.footer1 .footer-right {
	float: right;
	display: inline-block;
	margin-left: 20px;
	margin-right: 0px;
    text-align: right;
}
.social-icons1 {
    display: flex;
    list-style: none;
    padding: 0;
    text-align: center;
    justify-content: center;
}
.social-icons1 li {
    margin: 0;
}
.social-icons1 a {
	margin: 0 5px;
    color: white;
    text-decoration: none;
}
.social-icons1.set2{
	text-align: left;
	padding: 5px 0 0px;
	border: 0;
}
.social-icons1.set2 li{
	display: inline-block;
	margin: 10px 0 0px;
	width: auto;
}
.social-icons1.set2 a{
	display: inline-block;
	margin: 0px 5px 0;
	padding: 0px;
}
.social-icons1.set2 a i{
	margin: 0px 0px 0;
	padding: 5px;
	font-size: 14px;
	color: #fff;
	background: var(--secondary-color);
}
.sidemenu .social-icons1.set2{
	padding: 0 0 10px 15px;
}
#main-slider .splide__slide {
	/* aspect-ratio: 16/9; default is 1 for square */
	max-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ccc;
}
#main-slider .splide__slide a{
	display: inline-block;
	width: 100%;
	height: 100%;
}
.splide__slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 0px;
}
#main-slider .splide__arrows{
	display: none;
}
#thumbnail-slider {
	margin-top: 10px;
}
#thumbnail-slider .splide__slide {
	opacity: 0.6;
	cursor: pointer;
}
#thumbnail-slider .splide__slide.is-active {
	opacity: 1;
	border: 3px solid var(--secondary-color);
}

footer.footer2 {
	display: block;
	float: left;
	width: 100%;
	background-color: var(--sixth-color);
	color: white;
	padding: 50px 0;
}
footer.footer2 .footer-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
	width: 100%;
	max-width: 1240px;
	padding: 0 20px;
	margin: 0 auto;
}
footer.footer2 .footer-column {
	flex: 1;
	min-width: 150px;
	text-align: left;
}
footer.footer2 .footer-column h3 {
	margin-bottom: 10px;
	font-size: 18px;
	color: #fff;
}
footer.footer2 .footer-column ul {
	list-style: none;
	padding: 0;
}
footer.footer2 .footer-column ul li {
	margin-bottom: 5px;
}
footer.footer2 .footer-column ul li a {
	color: white;
	line-height: 2;
	text-decoration: underline;
}
footer.footer2 .footer-column ul li a:hover {
	text-decoration: underline;
}

/* Scrollbar styles for better UX */
.customscrollbar::-webkit-scrollbar {
	width: 8px;
	height: 8px; /* Scrollbar thickness */
}
.customscrollbar::-webkit-scrollbar-track {
	background: #f0f0f0; /* Light gray track */
	border-radius: 10px;
}
.customscrollbar::-webkit-scrollbar-thumb {
	background: var(--secondary-color); /* Dark gray thumb */
	border-radius: 10px;
}
.customscrollbar::-webkit-scrollbar-thumb:hover {
	background: var(--third-color); /* Darker gray when hovered */
}

.overlay2 {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	justify-content: center;
	align-items: center;
	z-index: 104;
}
.overlay2 .popup {
	background: white;
	max-width: 500px;
	padding: 20px 20px 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	z-index: 101;
}
.overlay2 .buttons {
	margin-top: 20px;
	text-align: right;
}
.overlay2 .buttons button {
	margin: 0;
	margin-left: 15px;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
.overlay2 .yes {
	background-color: red;
	color: white;
}
.overlay2 .no {
	background-color: gray;
	color: white;
}

.overlay3 {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	justify-content: center;
	align-items: center;
	z-index: 104;
}
.overlay3 .popupmenu1 {
    background: white;
    max-width: 90%;
    width: 240px;
    max-height: 80vh; /* This ensures that the popup menu has a defined height */
    padding: 0px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 101;
    display: flex;
    flex-direction: column; /* Ensures proper child element stretching */
}
.overlay3 .popupmenu1 > div {
    overflow: auto;
    flex-grow: 1; /* Makes the div take up available space */
}

.overlay3 .popupmenu1 .toplinecont{
	display: none;
	text-align: center;
}
.overlay3 .popupmenu1 .toplinecont .topline{
	display: block;
	margin: 0px auto 0;
	width: 40px;
	height: 3px;
	background: #777;
}
.overlay3 .popupmenu1 .options{
	display: block;
	width: 100%;
	padding: 20px 20px;
	font-size: 14px;
	font-weight: bold;
	color: #333;
	border: 0;
	border-bottom: 1px solid #ddd;
	background: none;
	outline: none;
	cursor: pointer;
}
.overlay3 .popupmenu1 .options:last-child{
	border: 0;
}
#scrollToTopBtn {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: none; /* Hidden initially */
    align-items: center;
    justify-content: center;
	opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
	z-index: 100;
}
#scrollToTopBtn:hover {
    opacity: 1;
}
.whatsapp-button1,
.whatsapp-button2 {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #25D366;
	color: white;
	padding: 10px 10px;
	border-radius: 30px;
	border: 0;
	display: flex;
	align-items: center;
	text-decoration: none;
	font-family: Arial, sans-serif;
	font-weight: bold;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	outline: none;
	cursor: pointer;
	z-index: 100;
}
.whatsapp-button1 {
	padding: 10px 15px;
}
.whatsapp-button1 img,
.whatsapp-button2 img {
	width: 20px;
	height: 20px;
}
.whatsapp-button1 .chat-text,
.whatsapp-button2 .chat-text{
	margin-left: 5px;
}
.whatsapp-popup {
	position: fixed;
	bottom: 80px;
	right: 20px;
	width: 300px;
	background-color: #007C4B;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	display: none;
	overflow: hidden;
	z-index: 100;
}
.whatsapp-popup .popup-header {
	background-color: #007C4B;
	color: white;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.whatsapp-popup .popup-header .logo {
	display: flex;
	align-items: center;
	text-align: left;
}
.whatsapp-popup .popup-header .logo div span:first-child{
	font-size: 16px;
}
.whatsapp-popup .popup-header img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 8px;
}
.whatsapp-popup .popup-header button {
	background: none;
	border: none;
	color: #ccc;
	font-size: 30px;
	cursor: pointer;
}
.whatsapp-popup .popup-body {
	padding: 15px 15px 50px;
	text-align: left;
	background-color: #ddd;
}
.whatsapp-popup .popup-body span{
	display: inline-block;
	padding: 10px 100px 10px 15px;
	text-align: left;
	line-height: 1;
	background-color: #fff;
	border-radius: 0 10px 10px 10px;
}
.whatsapp-popup .popup-body span p{
	margin-top: 5px;
	font-size: 12px;
	line-height: 1.3;
}
.whatsapp-popup .popup-footer {
	padding: 10px;
	text-align: center;
	background: #fff;
	position: relative;
}
.whatsapp-popup .popup-footer a {
	position: relative;
	top: 0px;
	left: 0px;
	display: block;
	background-color: #25D366;
	color: white;
	font-weight: bold;
	border: none;
	padding: 10px;
	width: 100%;
	cursor: pointer;
	border-radius: 5px;
}
.whatsapp-popup .online-status {
	font-size: 12px;
	color: #d4f8d4;
}

.alignleft {
	text-align: left!important;
}

/* Responsive Design */
@media (max-width: 1000px) {
.desktoponly {display: none;}
.mobileonly {display: block;}
.button1.fullsize,
.button2.fullsize{
	display: block;
	width: 100%;
	text-align: center;
}
u.underline1.nounderlineonmobile{
	text-decoration: none;
}
header .logo h1 {
	font-size: 20px;
}
header nav.desktop{
	display: none;
}
header .sgnbtncont{
	margin-top: 2px;
	margin-right: 0px;
}
header .signin-button {
	display: inline-block;
	margin-left: auto;
	color: #555;
    background-color: #fff;
    border: 1px solid var(--secondary-color);
}
header .signin-button:hover{
    background-color: var(--fourth-color);
}
header .search-button{
	margin-right: 20px;
}
.menubutton{
	display: inline-block;
	margin-top: 0px;
	margin-left: 0px;
	right: -7px;
	color: #555;
	font-size: 20px;
	background: none;
}
.overlay1,
.overlay3 {
    background: rgba(0, 0, 0, 0.5);
}
.sidemenu .logo {
    font-size: 20px;
}
.bannercontainer1{
	padding: 50px 20px;
	text-align: center;
}
.bannercontainer1 > div{
	float: none;
	width: 100%;
	margin: 0 auto;
	padding: 30px 0px 50px;
}
.bannercontainer1 .heading{
	font-size: 24px;
}
.bannercontainer1 p{
	font-size: 14px;
	line-height: 1.7;
}
.bannercontainer2{
	padding: 50px 20px;
	text-align: center;
}
.bannercontainer2 > div{
	float: none;
	width: 100%;
	margin: 0 auto;
	padding: 30px 0px
}
.bannercontainer2 .heading{
	font-size: 30px;
}
.bannercontainer2 .heading .big{
	font-size: 60px;
}
.bannercontainer2 p{
	font-size: 14px;
	line-height: 1.7;
}
.bannercontainer4 .hero-content {
	width: 100%;
	margin-left: 0;
	padding: 60px 20px 70px;
}
.bannercontainer4 .heading{
	font-size: 30px;
}
.bannercontainer4 p{
	font-size: 14px;
	line-height: 1.7;
}
.full-wrapper {
	padding: 50px 20px 50px;
}

.pricing-container {
	width: calc(100% - 30px);
	overflow: auto;
	margin: 0 15px;
}
.pricing-inner {
	width: 900px;
	padding: 0 0px;
}
.pricing-container .plan {
	margin-left: 5px;
	margin-right: 5px;
	padding: 20px;
	width: 290px;
}
.overlay2 .popup {
	max-width: 80%;
}

.blockcontainer6.alignleft{
	margin-bottom: 20px;
}
.blockcontainer6.alignleft img {
	width: 100%;
	height: auto;
}
.blockcontainer7 .loginbannerblock {
	display: none;
}
.faq-container2 {
	padding: 20px 0px 0;
}
#thumbnail-slider .splide__arrows{
	display: none;
}
#scrollToTopBtn {
	display: none !important;
}
/* Scrollbar styles for better UX */
.customscrollbar::-webkit-scrollbar {
	height: 0px; /* Scrollbar thickness */
}
}

/* Responsive Design */
@media (max-width: 768px) {
.sidemenu {
    right: -100%; /* Hidden initially */
    width: 100%;
}
.search-overlay .search-container input {
	font-size: 20px;
	padding: 10px 40px 10px 40px;
}
.search-overlay .backbtn {
	top: 0px;
	font-size: 30px;
	height: 50px;
}
.search-overlay .searchclose-btn {
	top: -2px;
	right: 0px;
	font-size: 30px;
	padding: 10px 0;
}
.search-overlay .suggestion-item {
	padding: 15px 10px;
}
.suggestion-item i {
    margin-right: 10px;
}
.stats-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
}
.stats-container .stat-block {
	margin: 0;
}
.stats-container .stat-block:nth-child(1) {
	border-bottom: 1px solid #e04a60;
	border-right: 1px solid #e04a60;
}
.stats-container .stat-block:nth-child(2) {
	border-bottom: 1px solid #e04a60;
}
.stats-container .stat-block:nth-child(3) {
	border-right: 1px solid #e04a60;
}

.blockcontainer1 {
	padding: 20px 0px 0;
}
.blockcontainer5{
	flex-direction: column;
	text-align: center;
}
.blockcontainer5 .left,
.blockcontainer5 .right {
	padding: 0px;
}
.blockcontainer5 .left {
	margin-bottom: 20px;
}
.blockcontainer5 .stats {
	justify-content: center;
}
.blockcontainer6 {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.blockcontainer6 .block {
	width: 100%;
}
.blockcontainer6.alignleft{
	align-items: start;
}
.blockcontainer9 {
	flex-direction: column;
	width: 100%;
	max-width: 100%;
}
.blockcontainer9 .column {
	max-width: 100%;
}
.testimonial-container1 {
	flex-direction: column;
	align-items: center;
	padding: 20px 0;
}
.testimonial-container1 .testimonial {
	max-width: 100%;
}
.testimonial-container1.horizontal{
	flex-direction: row;
	align-items: normal;
}
.testimonial-container1.horizontal .testimonial {
	max-width: 240px;
}
.socialcontainer1 {
	gap: 0;
}
.socialcontainer1 .social-link {
	width: auto;
	padding: 0 5px;
	background: none;
	border: 0;
}
.socialcontainer1 .social-link i {
	margin: 0;
    color: #fff;
	width: auto;
}
.socialcontainer1 .social-text {
	display: none;
}

.timeline::after {
	left: 15px;
}
.timeline-item {
	width: calc(100% - 30px);
	left: 15px;
	border-radius: 0 8px 8px 0;
	transform: none !important;
}
.timeline-item:nth-child(odd) {
	margin-top: 20px;
	left: 17px;
}
.timeline-item:nth-child(even) {
	margin-top: 20px;
	left: 17px;
}
.timeline-item::after {
	left: -12px !important;
	right: auto !important;
}
.form-container1 .heading{
	text-align: center;
}
.social-icons1 {
    display: block;
}
.social-icons1 li {
    float: left;
}
.social-icons1 a {
	margin: 0;
	margin-right: 10px;
}
.social-icons1.set2 {
    display: flex;
}
.social-icons1.set2 li {
    float: none;
}
.sidemenu .social-icons1 {
    display: block;
}
/* Footer Styles */
footer.footer1 {
    display: block;
	margin-top: 0px;
}
footer.footer1 .footerinner {
	display: block;
}
footer.footer1 .footer-left {
	display: block;
}
footer.footer1 .footer-left a {
	margin: 0;
	margin-right: 20px;
	line-height: 2;
}
footer.footer1 .footer-right {
	float: left;
	display: block;
	margin: 20px auto;
	width: 100%;
	text-align: left;
}
footer.footer2 .footer-container {
	flex-direction: column;
	gap: 10px;
}
footer.footer2 .footer-column {
	padding: 0 0 20px;
	border-bottom: 1px solid #555;
}
footer.footer2 .footer-column:last-child {
	padding: 0;
	border-bottom: 0px solid #555;
}
.overlay3 {
	align-items: flex-end;
}
.overlay3 .popupmenu1 {
	max-width: 100%;
	width: 100%;
	padding: 10px 0px 0;
	border-radius: 20px 20px 0 0;
	position: relative;
}
.overlay3 .popupmenu1 .toplinecont{
	display: block;
}
.overlay3 .popupmenu1 .options{
	text-align: left;
}
	
}

/* Responsive Design */
@media (max-width: 400px) {
header .sgnbtncont{
	margin-top: 12px;
	margin-right: 0;
}
header .signin-button{
	display: none;
}
header .search-button{
	margin-right: 0px;
}
}
